:root {
  --ink: #1e2c26;
  --muted: #66736d;
  --green: #355b4b;
  --green-dark: #243f34;
  --sage: #dfe9e2;
  --cream: #f7f2e8;
  --rose: #e9c7c8;
  --white: #ffffff;
  --line: #dfe4e0;
  --shadow: 0 18px 50px rgba(30, 44, 38, 0.10);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fffdf9;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
}
.skip-link:focus { top: 16px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.announcement {
  background: var(--green-dark);
  color: #edf4ef;
  font-size: 0.88rem;
}
.announcement__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.announcement p { margin: 0; }
.announcement a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(223, 228, 224, 0.8);
}
.header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand__mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--sage);
  border-radius: 50%;
}
.brand__mark svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.brand strong,
.brand small { display: block; }
.brand strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.32rem; line-height: 1.1; }
.brand small { color: var(--muted); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 3px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.94rem;
  font-weight: 650;
}
.main-nav > a:not(.button) { position: relative; }
.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--green);
  transition: right .2s ease;
}
.main-nav > a:not(.button):hover::after { right: 0; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform .2s ease, opacity .2s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 750;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(53, 91, 75, 0.18);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--green-dark); box-shadow: 0 14px 28px rgba(53,91,75,.24); }
.button--small { min-height: 42px; padding-inline: 18px; font-size: .9rem; }
.button--outline { color: var(--green); background: transparent; box-shadow: none; }
.button--outline:hover { color: var(--white); }
.button--light { color: var(--green-dark); background: var(--white); border-color: var(--white); box-shadow: none; }
.button--light:hover { color: var(--green-dark); background: var(--cream); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 66px 0 78px;
  background:
    radial-gradient(circle at 10% 15%, rgba(233,199,200,.45), transparent 28%),
    radial-gradient(circle at 88% 92%, rgba(223,233,226,.8), transparent 32%),
    var(--cream);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(53,91,75,.12);
}
.hero::before { width: 520px; height: 520px; left: -330px; top: 40px; }
.hero::after { width: 420px; height: 420px; right: -250px; bottom: -140px; }
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 68px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow--light { color: #dfeee6; }
.hero h1,
.section-heading h2,
.story h2,
.cta-box h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.025em;
  line-height: 1.08;
}
.hero h1 { margin: 0; max-width: 700px; font-size: clamp(2.65rem, 5.4vw, 5rem); font-weight: 500; }
.hero__lead { max-width: 610px; margin: 24px 0 0; color: #52625b; font-size: 1.1rem; }
.hero__actions { display: flex; align-items: center; gap: 22px; margin-top: 31px; flex-wrap: wrap; }
.text-link { color: var(--green); font-weight: 750; }
.text-link span, .card-link span { display: inline-block; transition: transform .2s ease; }
.text-link:hover span, .card-link:hover span { transform: translateX(5px); }
.hero__notes { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 34px; color: var(--muted); font-size: .9rem; }
.hero__notes span::before { content: "✓"; margin-right: 7px; color: var(--green); font-weight: 900; }
.hero__media { position: relative; margin: 0; }
.hero__media img { width: 100%; aspect-ratio: 1.02 / 1; object-fit: cover; border-radius: 48% 48% 20px 20px; box-shadow: var(--shadow); }
.hero__media figcaption {
  position: absolute;
  left: -32px;
  bottom: 24px;
  width: min(330px, 78%);
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 35px rgba(26,42,34,.16);
}
.hero__media figcaption strong,
.hero__media figcaption span { display: block; }
.hero__media figcaption span { margin-top: 3px; color: var(--muted); font-size: .84rem; line-height: 1.45; }

.section { padding: 92px 0; }
.section--soft { background: #edf3ef; }
.section-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 42px;
}
.section-heading h2,
.story h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.55rem); font-weight: 500; }
.section-heading > p { margin: 0; color: var(--muted); max-width: 520px; justify-self: end; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(30,44,38,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-card__image { position: relative; display: block; overflow: hidden; }
.product-card__image img { width: 100%; aspect-ratio: 1.18 / 1; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-card__image img { transform: scale(1.04); }
.badge {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 7px 11px;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.badge--light { color: var(--green-dark); background: var(--cream); }
.product-card__body { padding: 24px 24px 26px; }
.product-card__category { margin: 0 0 6px; color: var(--green); font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.product-card h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.6rem; font-weight: 500; }
.product-card__body > p:not(.product-card__category) { margin: 10px 0 18px; color: var(--muted); font-size: .94rem; }
.card-link { color: var(--green); font-weight: 800; font-size: .92rem; }

.story { display: grid; grid-template-columns: 1.12fr .88fr; gap: 76px; align-items: center; }
.story__content > p:not(.eyebrow) { color: var(--muted); font-size: 1.03rem; margin: 22px 0 0; }
.feature-list { display: grid; gap: 18px; padding: 0; margin: 30px 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.feature-list__icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--white); color: var(--green); font-size: 1.2rem; }
.feature-list strong,
.feature-list span { display: block; }
.feature-list li div span { margin-top: 3px; color: var(--muted); font-size: .92rem; }
.quote-card {
  position: relative;
  padding: 56px 48px 46px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 36px 8px 36px 8px;
  box-shadow: var(--shadow);
}
.quote-card__mark { position: absolute; top: 13px; left: 28px; color: rgba(255,255,255,.25); font-family: Georgia, serif; font-size: 5rem; line-height: 1; }
.quote-card blockquote { position: relative; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.6rem, 3vw, 2.25rem); line-height: 1.35; }
.quote-card p { margin: 24px 0 0; color: #bcd0c6; font-size: .9rem; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.post-card__meta { margin: 0 0 13px; color: var(--green); font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.post-card h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; line-height: 1.25; font-weight: 500; }
.post-card > p:not(.post-card__meta) { color: var(--muted); margin: 14px 0 20px; font-size: .93rem; }

.cta-section { padding: 0 0 92px; }
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 54px 58px;
  color: var(--white);
  background: var(--green);
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.cta-box h2 { max-width: 720px; margin: 0; font-size: clamp(2rem, 4vw, 3.45rem); font-weight: 500; }

.site-footer { color: #d7e2dc; background: #1b2d25; }
.footer__grid { display: grid; grid-template-columns: 1.5fr .7fr 1fr; gap: 60px; padding: 70px 0 46px; }
.brand--footer { color: var(--white); }
.brand--footer .brand__mark { color: #d7e2dc; background: rgba(255,255,255,.09); }
.brand--footer small { color: #9db1a7; }
.footer__about { max-width: 410px; color: #9db1a7; }
.footer__title { margin: 4px 0 16px; color: var(--white); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; }
.footer__grid > div:not(:first-child) a { display: block; margin: 10px 0; color: #b7c7bf; }
.footer__grid a:hover { color: var(--white); }
.footer__bottom { display: flex; justify-content: space-between; gap: 24px; padding: 22px 0 28px; border-top: 1px solid rgba(255,255,255,.1); color: #8fa49a; font-size: .86rem; }
.footer__bottom p { margin: 0; }

:focus-visible { outline: 3px solid #e3aeb0; outline-offset: 4px; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav > a { padding: 12px 8px; }
  .main-nav .button { margin-top: 8px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__content { max-width: 760px; }
  .hero__media { width: min(100%, 720px); justify-self: end; }
  .product-grid, .post-grid { grid-template-columns: repeat(2, 1fr); }
  .story { grid-template-columns: 1fr; gap: 46px; }
  .quote-card { max-width: 720px; }
  .footer__grid { grid-template-columns: 1.4fr .7fr 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .announcement__inner { justify-content: center; text-align: center; }
  .announcement a { display: none; }
  .header__inner { min-height: 72px; }
  .hero { padding: 48px 0 62px; }
  .hero h1 { font-size: clamp(2.4rem, 12vw, 4rem); }
  .hero__media figcaption { left: 12px; right: 12px; bottom: 12px; width: auto; }
  .section { padding: 68px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 16px; margin-bottom: 30px; }
  .section-heading > p { justify-self: start; }
  .product-grid, .post-grid { grid-template-columns: 1fr; }
  .product-card__image img { aspect-ratio: 1.3 / 1; }
  .quote-card { padding: 50px 28px 36px; }
  .cta-section { padding-bottom: 68px; }
  .cta-box { align-items: flex-start; flex-direction: column; padding: 38px 28px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; padding-top: 54px; }
  .footer__bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
