:root {
  --leaf: #0c6b3b;
  --leaf-dark: #073b26;
  --leaf-soft: #dcedca;
  --gold: #d6aa39;
  --gold-bright: #f3ca45;
  --rose: #f4d75a;
  --ink: #172117;
  --muted: #647160;
  --paper: #fffdf6;
  --mist: #f3f7ef;
  --line: rgba(23, 33, 23, .12);
  --shadow: 0 28px 90px rgba(20, 66, 39, .18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(243, 202, 69, .24), transparent 26%),
    linear-gradient(135deg, #f9fbf4 0%, #ffffff 48%, #edf5e8 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  overflow: hidden;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 48px rgba(19, 70, 42, .12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 900;
  color: var(--leaf-dark);
}

.brand img,
.brand-seal {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex: 0 0 42px;
}

.brand img {
  object-fit: cover;
  background: #fff;
  border: 1px solid rgba(12, 107, 59, .16);
}

.brand-seal {
  display: grid;
  place-items: center;
  color: var(--leaf-dark);
  background: var(--gold-bright);
  font-family: Fraunces, Georgia, serif;
  font-size: 1.4rem;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-right: 4px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--leaf-dark);
  background: rgba(12, 107, 59, .08);
}

.hero-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  align-items: center;
  gap: clamp(34px, 5vw, 86px);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 72px;
  position: relative;
}

.hero-section:before {
  content: "";
  position: absolute;
  inset: 92px auto auto -180px;
  width: 360px;
  aspect-ratio: 1;
  border: 48px solid rgba(214, 170, 57, .22);
  border-radius: 50%;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--leaf);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  font-family: Fraunces, Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin: 0;
  color: var(--leaf-dark);
  font-size: clamp(3.25rem, 8vw, 8rem);
  line-height: .9;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.15rem, 4.4vw, 4.8rem);
  line-height: .98;
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  color: #31402f;
  font-size: clamp(1.06rem, 1.7vw, 1.42rem);
  line-height: 1.75;
  font-weight: 650;
}

.hero-actions,
.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--leaf), #159158);
  box-shadow: 0 18px 40px rgba(12, 107, 59, .24);
}

.button.ghost {
  color: var(--leaf-dark);
  background: rgba(255, 255, 255, .72);
  border-color: rgba(12, 107, 59, .18);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
}

.hero-facts article {
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(12, 107, 59, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .66);
}

.hero-facts span,
.product-card dt,
.contact-list span,
.market-label span {
  display: block;
  color: var(--leaf);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-facts strong {
  display: block;
  margin-top: 8px;
  font-size: .98rem;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
}

.product-stage {
  position: relative;
  width: min(420px, 82vw);
  aspect-ratio: .72;
  display: grid;
  place-items: center;
  border-radius: 42% 42% 12% 12%;
  background:
    linear-gradient(180deg, rgba(243, 202, 69, .34), rgba(243, 202, 69, .06) 34%, transparent 72%),
    radial-gradient(circle at 50% 18%, rgba(255, 248, 183, .78), rgba(220, 237, 202, .68) 44%, rgba(12, 107, 59, .18) 100%);
  box-shadow: var(--shadow);
}

.product-stage:before,
.product-stage:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.product-stage:before {
  inset: 7% 11%;
  border: 20px solid rgba(214, 170, 57, .36);
}

.product-stage:after {
  width: 116%;
  height: 28%;
  bottom: -8%;
  background: radial-gradient(ellipse, rgba(7, 59, 38, .18), transparent 68%);
}

.hero-pack {
  position: relative;
  z-index: 1;
  max-height: 540px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 36px rgba(71, 65, 23, .24));
}

.steam {
  position: absolute;
  width: 130px;
  height: 230px;
  border-left: 4px solid rgba(12, 107, 59, .18);
  border-radius: 50%;
  animation: floatSteam 5s ease-in-out infinite;
}

.steam-one {
  top: 58px;
  left: 16%;
}

.steam-two {
  top: 90px;
  right: 8%;
  height: 180px;
  border-color: rgba(214, 170, 57, .34);
  animation-delay: -2s;
}

.taste-note {
  position: absolute;
  right: 0;
  bottom: 68px;
  width: min(250px, 70%);
  padding: 18px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--leaf-dark), var(--leaf));
  box-shadow: 0 18px 45px rgba(7, 59, 38, .28);
}

.taste-note span {
  color: var(--gold-bright);
  font-size: .72rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .1em;
}

.taste-note strong {
  display: block;
  margin-top: 6px;
  line-height: 1.35;
}

section:not(.hero-section) {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .78fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

.section-heading p:not(.eyebrow),
.product-copy p,
.ritual-copy p,
.story-grid p,
.moment-track p,
.benefit-grid p,
.faq-list p,
.message-form,
.form-note {
  color: var(--muted);
  line-height: 1.75;
}

.story-section {
  position: relative;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: 24px;
  align-items: stretch;
}

.story-grid > p {
  margin: 0;
  padding: 32px;
  border-left: 6px solid var(--gold);
  background: rgba(255, 255, 255, .72);
  border-radius: var(--radius);
  font-size: 1.06rem;
}

.story-panel {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(7, 59, 38, .92), rgba(12, 107, 59, .78)),
    radial-gradient(circle at 20% 0%, rgba(243, 202, 69, .65), transparent 45%);
}

.story-panel span {
  color: var(--gold-bright);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.story-panel strong {
  margin-top: 20px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.1;
}

.product-section {
  display: block;
}

.product-copy {
  max-width: 860px;
  margin-bottom: 32px;
}

.product-copy p:not(.eyebrow) {
  max-width: 720px;
}

.product-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
}

.product-card {
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 100%;
  align-self: start;
  flex-direction: column;
  gap: 18px;
  padding: 18px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(23, 33, 23, .06);
}

.product-card:first-child {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(320px, .88fr) minmax(0, 1.12fr);
  align-items: center;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 253, 246, .86), rgba(255, 255, 255, .72)),
    rgba(255, 255, 255, .78);
}

.product-card:nth-child(4) {
  grid-column: auto;
}

.product-image {
  min-height: 235px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 48% 30%, rgba(255, 246, 178, .9), rgba(220, 237, 202, .58) 42%, rgba(12, 107, 59, .14) 100%),
    linear-gradient(135deg, rgba(12, 107, 59, .16), rgba(243, 202, 69, .24));
  overflow: hidden;
}

.product-image img {
  max-height: 220px;
  width: min(100%, 260px);
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(70, 62, 21, .22));
}

.product-card:first-child .product-image {
  min-height: 460px;
}

.product-card:first-child .product-image img {
  max-height: 390px;
  width: min(88%, 360px);
}

.product-details h3 {
  margin: 10px 0 8px;
  font-size: clamp(1.22rem, 1.55vw, 1.55rem);
  line-height: 1.05;
}

.product-card:first-child .product-details h3 {
  font-size: clamp(2.2rem, 4.6vw, 4.9rem);
  line-height: .95;
}

.product-details p {
  line-height: 1.65;
}

.subtitle {
  margin: 0 0 14px;
  color: var(--leaf);
  font-weight: 900;
}

.badge,
.price-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--gold-bright);
  color: var(--leaf-dark);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.product-details dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 20px 0;
}

.product-card:first-child .product-details dl {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card:not(:first-child) .product-details > p:not(.subtitle),
.product-card:not(:first-child) .price-label {
  display: none;
}

.product-card:not(:first-child) .product-details dl {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 0;
}

.product-details dl div {
  padding: 14px;
  border-radius: var(--radius);
  background: var(--mist);
}

.product-card dd {
  margin: 5px 0 0;
  font-weight: 900;
}

.product-details {
  min-width: 0;
}

.benefit-grid,
.moment-track,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.benefit-grid article,
.moment-track article {
  min-height: 250px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
}

.benefit-grid article span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--leaf);
  font-weight: 900;
}

.benefit-grid h3,
.moment-track h3 {
  margin: 24px 0 10px;
  font-size: 1.25rem;
}

.ritual-section {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: center;
  border-radius: 28px;
}

.ritual-copy {
  padding: 34px;
  color: #fff;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 10% 0%, rgba(243, 202, 69, .45), transparent 42%),
    linear-gradient(145deg, var(--leaf-dark), var(--leaf));
  box-shadow: var(--shadow);
}

.ritual-copy .eyebrow,
.ritual-copy p {
  color: rgba(255, 255, 255, .8);
}

.ritual-copy h2 {
  color: #fff;
}

.ritual-steps {
  display: grid;
  gap: 14px;
}

.ritual-steps article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid rgba(12, 107, 59, .12);
  border-radius: var(--radius);
  background: #fff;
}

.ritual-steps article > span {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  color: var(--leaf-dark);
  background: var(--gold-bright);
  font-weight: 900;
}

.ritual-steps h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.ritual-steps p {
  margin: 0;
}

.ritual-steps em {
  display: block;
  margin-top: 12px;
  color: var(--leaf);
  font-style: normal;
  font-weight: 900;
}

.moments-section {
  padding-top: 54px;
}

.moment-track article {
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(243, 202, 69, .18), rgba(255, 255, 255, .78)),
    #fff;
}

.moment-track span {
  color: var(--leaf);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 253, 246, .82);
  border: 1px solid var(--line);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 246, 178, .68), transparent 42%),
    linear-gradient(135deg, rgba(220, 237, 202, .7), rgba(243, 202, 69, .16));
}

.gallery-grid figcaption {
  display: grid;
  gap: 4px;
  padding: 16px;
}

.gallery-grid span {
  color: var(--muted);
  font-size: .92rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .75fr);
  gap: 28px;
  align-items: stretch;
  padding-bottom: 48px;
}

.contact-copy,
.message-form {
  padding: 30px;
  border-radius: var(--radius);
}

.contact-copy {
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(243, 202, 69, .46), transparent 36%),
    linear-gradient(135deg, #062f22, #0b6b3d);
}

.contact-copy .eyebrow,
.contact-copy p {
  color: rgba(255, 255, 255, .78);
}

.contact-copy h2 {
  color: #fff;
}

.contact-list {
  margin-top: 26px;
}

.contact-list a,
.empty-contact {
  min-width: min(240px, 100%);
  flex: 1 1 220px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .16);
}

.contact-list span {
  color: var(--gold-bright);
}

.contact-list strong {
  display: block;
  margin-top: 8px;
  color: #fff;
}

.message-form {
  display: grid;
  gap: 16px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(23, 33, 23, .1);
}

.message-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.message-form input,
.message-form select,
.message-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 33, 23, .14);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.message-form input:focus,
.message-form select:focus,
.message-form textarea:focus {
  outline: 3px solid rgba(243, 202, 69, .35);
  border-color: var(--gold);
}

.form-note {
  margin: 0;
  font-size: .92rem;
}

.faq-section {
  padding-top: 34px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .74);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}

.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 30px 0 42px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer strong {
  color: var(--leaf-dark);
}

@keyframes floatSteam {
  0%, 100% {
    transform: translateY(0) rotate(6deg);
    opacity: .42;
  }
  50% {
    transform: translateY(-18px) rotate(-4deg);
    opacity: .18;
  }
}

@media (max-width: 980px) {
  .site-header {
    top: 10px;
    width: min(720px, calc(100% - 20px));
  }

  .nav-links {
    display: none;
  }

  .hero-section,
  .ritual-section,
  .contact-section,
  .story-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 104px;
  }

  .hero-visual {
    min-height: 520px;
    order: -1;
  }

  .product-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .product-card:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    grid-template-columns: 1fr;
  }

  .product-card:nth-child(4) {
    grid-column: 1 / -1;
  }

  .benefit-grid,
  .moment-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 8px;
  }

  .brand span:last-child {
    font-size: .96rem;
  }

  .hero-section,
  section:not(.hero-section),
  .site-footer {
    width: min(100% - 22px, 560px);
  }

  .hero-section {
    min-height: auto;
    padding-bottom: 42px;
  }

  .hero-section:before,
  .steam,
  .taste-note {
    display: none;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
    line-height: .94;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .hero-facts,
  .product-card,
  .product-details dl,
  .product-board,
  .benefit-grid,
  .moment-track,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .product-card:first-child .product-details dl {
    grid-template-columns: 1fr;
  }

  .product-card:nth-child(4) {
    grid-column: auto;
  }

  .product-card:first-child {
    display: flex;
    grid-template-columns: none;
    padding: 18px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .product-stage {
    width: min(320px, 86vw);
  }

  .hero-pack {
    max-height: 380px;
  }

  .product-card:first-child .product-image {
    min-height: 320px;
  }

  .product-card:first-child .product-image img {
    max-height: 290px;
  }

  section:not(.hero-section) {
    padding: 56px 0;
  }

  .story-grid > p,
  .ritual-copy,
  .contact-copy,
  .message-form {
    padding: 22px;
  }

  .ritual-steps article {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}
