:root {
  --green-900: #183328;
  --sage: #8FAE96;
  --cream: #F8F3E8;
  --sand: #E8DCC7;
  --blue-sage: #6E8B8E;
  --gold: #C5A15A;
  --ink: #15251f;
  --muted: rgba(24, 51, 40, .68);
  --white: #fffdf8;
  --glass: rgba(248, 243, 232, .72);
  --glass-dark: rgba(24, 51, 40, .72);
  --shadow: 0 24px 70px rgba(12, 30, 22, .18);
  --shadow-soft: 0 18px 45px rgba(12, 30, 22, .11);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 15%, rgba(197, 161, 90, .18), transparent 32rem),
    radial-gradient(circle at 88% 8%, rgba(143, 174, 150, .35), transparent 34rem),
    linear-gradient(135deg, #fbf7ef 0%, var(--cream) 52%, #e9efe8 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(24,51,40,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,51,40,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 75%);
  z-index: -3;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; display: block; }

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  transform: translateY(-150%);
  padding: .75rem 1rem;
  border-radius: 999px;
  background: var(--green-900);
  color: var(--cream);
  z-index: 1000;
}
.skip-link:focus { transform: translateY(0); }

.ambient { position: fixed; inset: 0; overflow: hidden; pointer-events: none; z-index: -2; }
.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: .82;
  animation: floatOrb 14s var(--ease) infinite alternate;
}
.orb-one { width: 19rem; height: 19rem; left: -8rem; top: 12rem; background: rgba(197,161,90,.16); }
.orb-two { width: 24rem; height: 24rem; right: -10rem; top: 26rem; background: rgba(110,139,142,.18); animation-delay: -5s; }
.grain {
  position: absolute;
  inset: -50%;
  background-image: radial-gradient(rgba(24, 51, 40, .12) .6px, transparent .6px);
  background-size: 18px 18px;
  opacity: .22;
  animation: grain 12s steps(8) infinite;
}

@keyframes floatOrb { to { transform: translate3d(30px, -50px, 0) scale(1.08); } }
@keyframes grain { to { transform: translate3d(3%, -2%, 0); } }

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: calc(var(--max) + 44px);
  margin: 0 auto;
  padding: 16px 22px;
  backdrop-filter: blur(18px);
}
.topbar.scrolled .brand,
.topbar.scrolled .main-nav {
  box-shadow: 0 14px 42px rgba(24, 51, 40, .12);
  background: rgba(248, 243, 232, .84);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: .62rem .9rem .62rem .62rem;
  border: 1px solid rgba(24, 51, 40, .1);
  border-radius: 999px;
  background: rgba(248, 243, 232, .58);
  transition: transform .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
.brand:hover { transform: translateY(-2px); }
.brand-mark { width: 46px; height: 46px; border-radius: 16px; box-shadow: 0 10px 26px rgba(24,51,40,.18); }
.brand strong { display: block; font-family: Georgia, 'Times New Roman', serif; letter-spacing: .18em; font-size: 1.02rem; color: var(--green-900); }
.brand small { display: block; color: var(--muted); margin-top: -.05rem; font-size: .75rem; letter-spacing: .04em; }

.main-nav {
  display: flex;
  align-items: center;
  gap: .16rem;
  padding: .42rem;
  border: 1px solid rgba(24, 51, 40, .1);
  border-radius: 999px;
  background: rgba(248, 243, 232, .58);
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 .92rem;
  border-radius: 999px;
  color: rgba(24, 51, 40, .78);
  font-size: .92rem;
  font-weight: 650;
  transition: color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}
.main-nav a:hover { color: var(--green-900); background: rgba(143, 174, 150, .16); transform: translateY(-1px); }
.main-nav a.active { color: var(--cream); background: var(--green-900); }
.main-nav .nav-cta { background: var(--gold); color: var(--green-900); box-shadow: 0 10px 24px rgba(197, 161, 90, .24); }
.main-nav .nav-cta.active { background: var(--green-900); color: var(--cream); }

.menu-toggle { display: none; }

.app {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 72vh;
}
.page {
  animation: pageIn .56s var(--ease) both;
  padding: clamp(1.8rem, 4vw, 4.4rem) 0 5rem;
}
@keyframes pageIn { from { opacity: 0; transform: translateY(18px) scale(.992); } to { opacity: 1; transform: translateY(0) scale(1); } }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
  min-height: calc(100vh - 150px);
  padding-top: clamp(1rem, 3vw, 2.8rem);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1rem;
  padding: .42rem .74rem;
  width: max-content;
  max-width: 100%;
  border: 1px solid rgba(197, 161, 90, .4);
  border-radius: 999px;
  color: var(--green-900);
  background: rgba(255, 253, 248, .55);
  font-size: .86rem;
  font-weight: 750;
  letter-spacing: .02em;
}
.eyebrow::before {
  content: "";
  width: .48rem;
  height: .48rem;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(197,161,90,.16);
}
h1, h2, h3 { margin: 0; line-height: .96; letter-spacing: -.055em; color: var(--green-900); }
h1 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(3.5rem, 10.5vw, 8.6rem); font-weight: 500; }
.hero h1 span { display: block; color: transparent; -webkit-text-stroke: 1px rgba(24, 51, 40, .56); text-shadow: none; }
h2 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(2.1rem, 6vw, 5.2rem); font-weight: 520; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); letter-spacing: -.025em; line-height: 1.12; }
.lead {
  margin: 1.35rem 0 0;
  max-width: 64ch;
  font-size: clamp(1.06rem, 1.8vw, 1.32rem);
  line-height: 1.72;
  color: rgba(24, 51, 40, .76);
}
.hero-actions, .actions { display: flex; flex-wrap: wrap; gap: .85rem; align-items: center; margin-top: 1.8rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 50px;
  padding: .95rem 1.15rem;
  border: 1px solid rgba(24, 51, 40, .14);
  border-radius: 999px;
  color: var(--green-900);
  background: rgba(255, 253, 248, .64);
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(24, 51, 40, .08);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .28s var(--ease);
}
.btn:hover, .btn:focus-visible { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.btn.primary { background: var(--green-900); color: var(--cream); border-color: var(--green-900); }
.btn.gold { background: var(--gold); color: var(--green-900); border-color: transparent; }
.btn.ghost { background: transparent; border-color: rgba(24, 51, 40, .2); box-shadow: none; }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.hero-card {
  position: relative;
  min-height: 560px;
  border-radius: 42px;
  overflow: hidden;
  background: linear-gradient(152deg, rgba(24,51,40,.98), rgba(24,51,40,.86) 48%, rgba(110,139,142,.78));
  color: var(--cream);
  box-shadow: var(--shadow);
  isolation: isolate;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(248, 243, 232, .18);
  border-radius: 41px;
  z-index: 2;
  pointer-events: none;
}
.hero-card::after {
  content: "";
  position: absolute;
  right: -8rem;
  top: -6rem;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  border: 44px solid rgba(197, 161, 90, .23);
  z-index: -1;
}
.card-visual {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 64% 22%, rgba(197,161,90,.42), transparent 18rem),
    radial-gradient(circle at 24% 75%, rgba(143,174,150,.3), transparent 16rem);
}
.cup-cluster { position: absolute; inset: 0; }
.cup {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 42% 36%, rgba(255,255,255,.8), rgba(232,220,199,.45) 28%, rgba(197,161,90,.25) 43%, rgba(24,51,40,.32) 64%, rgba(24,51,40,.7) 100%);
  border: 1px solid rgba(248,243,232,.28);
  box-shadow: inset 0 0 40px rgba(255,255,255,.25), 0 35px 75px rgba(0,0,0,.26);
  animation: hoverCup 5.5s var(--ease) infinite alternate;
}
.cup::after {
  content: "";
  position: absolute;
  inset: 20%;
  border: 1px solid rgba(248,243,232,.35);
  border-radius: 50%;
}
.cup.one { width: 180px; height: 180px; left: 36px; top: 84px; }
.cup.two { width: 128px; height: 128px; right: 46px; top: 160px; animation-delay: -2s; }
.cup.three { width: 210px; height: 210px; right: 70px; bottom: 58px; animation-delay: -3.5s; }
@keyframes hoverCup { to { transform: translateY(-18px) rotate(4deg); } }
.hero-panel {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 1.25rem;
  border: 1px solid rgba(248, 243, 232, .18);
  border-radius: 28px;
  background: rgba(248, 243, 232, .12);
  backdrop-filter: blur(18px);
}
.hero-panel p { margin: .55rem 0 0; color: rgba(248,243,232,.78); line-height: 1.6; }
.hero-panel h2 { font-size: clamp(1.7rem, 4vw, 3rem); color: var(--cream); letter-spacing: -.045em; }
.badges { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1rem; }
.badge, .chip {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  padding: .44rem .65rem;
  border-radius: 999px;
  background: rgba(248,243,232,.15);
  color: var(--cream);
  border: 1px solid rgba(248,243,232,.16);
  font-size: .82rem;
  font-weight: 750;
}
.chip { color: var(--green-900); background: rgba(143,174,150,.16); border-color: rgba(143,174,150,.25); }

.section { padding: clamp(3.2rem, 8vw, 7rem) 0 0; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(280px, .58fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(1.4rem, 4vw, 2.6rem);
}
.section-kicker { margin: 0 0 .75rem; color: var(--gold); text-transform: uppercase; font-size: .78rem; letter-spacing: .22em; font-weight: 900; }
.section-head p { margin: 0; color: var(--muted); line-height: 1.75; }

.grid { display: grid; gap: 1rem; }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  position: relative;
  padding: clamp(1.1rem, 2.8vw, 1.65rem);
  border: 1px solid rgba(24, 51, 40, .1);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, .58);
  box-shadow: 0 16px 42px rgba(24, 51, 40, .07);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(197,161,90,.14), transparent 42%);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); background: rgba(255,253,248,.78); }
.card:hover::before { opacity: 1; }
.card > * { position: relative; z-index: 1; }
.card p { color: rgba(24, 51, 40, .7); line-height: 1.68; }
.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--green-900);
  color: var(--cream);
  box-shadow: 0 14px 32px rgba(24, 51, 40, .16);
  margin-bottom: 1rem;
}
.icon svg { width: 27px; height: 27px; }

.premium-band {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, .65fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
  margin-top: clamp(3rem, 7vw, 6rem);
  padding: clamp(1.2rem, 3.4vw, 2rem);
  border-radius: 42px;
  background: var(--green-900);
  color: var(--cream);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.premium-band::after {
  content: "";
  position: absolute;
  width: 18rem;
  height: 18rem;
  right: -7rem;
  top: -8rem;
  border-radius: 50%;
  border: 46px solid rgba(197,161,90,.22);
}
.premium-band h2, .premium-band h3 { color: var(--cream); }
.premium-band p { color: rgba(248,243,232,.74); line-height: 1.7; }
.premium-band .card { background: rgba(248, 243, 232, .1); border-color: rgba(248,243,232,.14); box-shadow: none; }
.premium-band .chip { color: var(--cream); background: rgba(248,243,232,.12); border-color: rgba(248,243,232,.16); }

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, .55fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  padding: clamp(2rem, 6vw, 6rem) 0 clamp(2rem, 5vw, 4rem);
}
.page-hero .lead { margin-top: 1.2rem; }
.intro-card {
  border-radius: 36px;
  padding: 1.5rem;
  background: rgba(24, 51, 40, .9);
  color: var(--cream);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.intro-card::after {
  content: "";
  position: absolute;
  width: 14rem;
  height: 14rem;
  right: -5rem;
  bottom: -6rem;
  border-radius: 50%;
  background: rgba(197,161,90,.18);
}
.intro-card p { color: rgba(248,243,232,.78); line-height: 1.75; position: relative; z-index: 1; }
.intro-card strong { color: var(--sand); }

.service-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.filters { display: flex; flex-wrap: wrap; gap: .55rem; }
.filter-btn {
  border: 1px solid rgba(24, 51, 40, .13);
  border-radius: 999px;
  background: rgba(255,253,248,.58);
  color: var(--green-900);
  padding: .7rem .92rem;
  cursor: pointer;
  font-weight: 800;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.filter-btn:hover { transform: translateY(-2px); }
.filter-btn.active { background: var(--green-900); color: var(--cream); }
.service-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card .meta { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1rem 0; }
.service-card ul { margin: .75rem 0 0; padding-left: 1.1rem; color: rgba(24, 51, 40, .7); line-height: 1.7; }
.service-card .price { margin-top: auto; padding-top: 1.1rem; font-weight: 900; color: var(--green-900); }
.service-card.hidden { display: none; }

.timeline { position: relative; display: grid; gap: 1rem; }
.step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}
.step-num {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--green-900);
  color: var(--cream);
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(24,51,40,.16);
}
.step-content { padding-bottom: .8rem; }
.step-content p { margin-bottom: 0; }

.callout {
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border-radius: 32px;
  border: 1px solid rgba(197,161,90,.3);
  background: linear-gradient(135deg, rgba(197,161,90,.16), rgba(248,243,232,.7));
  box-shadow: var(--shadow-soft);
}
.callout p { margin: .75rem 0 0; color: rgba(24, 51, 40, .72); line-height: 1.72; }
.warning {
  border-color: rgba(197, 161, 90, .45);
  background: linear-gradient(135deg, rgba(24,51,40,.95), rgba(24,51,40,.84));
  color: var(--cream);
}
.warning h3 { color: var(--cream); }
.warning p, .warning li { color: rgba(248,243,232,.8); }

.list-check { display: grid; gap: .78rem; padding: 0; margin: 1rem 0 0; list-style: none; }
.list-check li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  color: rgba(24, 51, 40, .72);
  line-height: 1.62;
}
.list-check li::before {
  content: "";
  flex: 0 0 1.05rem;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: .22rem;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: inset 0 0 0 4px rgba(248,243,232,.9);
}
.warning .list-check li::before { background: var(--gold); box-shadow: inset 0 0 0 4px var(--green-900); }

.faq-list { display: grid; gap: .8rem; }
.faq-item {
  border: 1px solid rgba(24, 51, 40, .1);
  border-radius: 22px;
  background: rgba(255,253,248,.62);
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(24, 51, 40, .055);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  color: var(--green-900);
  padding: 1.15rem 1.25rem;
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}
.faq-question span { line-height: 1.25; }
.faq-question i {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(143,174,150,.18);
  font-style: normal;
  transition: transform .25s var(--ease);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq-answer p { margin: 0; padding: 0 1.25rem 1.2rem; color: rgba(24,51,40,.7); line-height: 1.7; }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-item.open .faq-answer { max-height: 220px; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .68fr) minmax(320px, .62fr);
  gap: clamp(1.2rem, 4vw, 2.4rem);
  align-items: start;
}
.contact-form {
  display: grid;
  gap: .9rem;
}
.field { display: grid; gap: .45rem; }
.field label { font-weight: 850; color: var(--green-900); }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid rgba(24, 51, 40, .14);
  border-radius: 18px;
  background: rgba(255,253,248,.72);
  color: var(--green-900);
  padding: .95rem 1rem;
  outline: none;
  transition: border .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: rgba(197,161,90,.8);
  box-shadow: 0 0 0 5px rgba(197,161,90,.15);
  background: var(--white);
}
.form-note { margin: .3rem 0 0; color: var(--muted); font-size: .92rem; line-height: 1.55; }
.contact-list { display: grid; gap: .8rem; }
.contact-link {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .9rem;
  border-radius: 18px;
  background: rgba(248, 243, 232, .12);
  border: 1px solid rgba(248,243,232,.16);
  color: var(--cream);
}
.contact-link b { display: block; }
.contact-link small { display: block; color: rgba(248,243,232,.68); margin-top: .1rem; }

.footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 1.2rem;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr minmax(240px, .78fr) auto;
  gap: 1rem;
  align-items: center;
  border-radius: 28px;
  background: rgba(24, 51, 40, .92);
  color: var(--cream);
}
.footer > div { display: flex; align-items: center; gap: .8rem; }
.footer p { margin: 0; color: rgba(248,243,232,.74); line-height: 1.5; }
.footer strong { color: var(--cream); }
.footer-mark { width: 44px; height: 44px; border-radius: 14px; }
.footer a { justify-self: end; padding: .75rem .9rem; border-radius: 999px; background: rgba(248,243,232,.12); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .hero, .page-hero, .section-head, .premium-band, .contact-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 2rem; }
  .hero-card { min-height: 480px; }
  .grid.three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer { grid-template-columns: 1fr; }
  .footer a { justify-self: start; }
}

@media (max-width: 760px) {
  .topbar { padding: 12px 14px; }
  .brand { padding-right: .72rem; }
  .brand-mark { width: 42px; height: 42px; }
  .menu-toggle {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(24, 51, 40, .12);
    border-radius: 18px;
    background: rgba(248,243,232,.8);
    cursor: pointer;
    z-index: 120;
  }
  .menu-toggle span {
    width: 22px;
    height: 2px;
    margin: 2px 0;
    background: var(--green-900);
    border-radius: 999px;
    transition: transform .25s var(--ease), opacity .25s var(--ease);
  }
  .menu-toggle em { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .main-nav {
    position: fixed;
    inset: 12px;
    top: 84px;
    display: grid;
    align-content: start;
    gap: .55rem;
    padding: 1rem;
    border-radius: 30px;
    background: rgba(248,243,232,.94);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    transform: translateY(-16px) scale(.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  body.nav-open .main-nav { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
  .main-nav a { width: 100%; min-height: 54px; justify-content: flex-start; padding: 0 1rem; font-size: 1.04rem; }
  .app, .footer { width: min(100% - 24px, var(--max)); }
  h1 { font-size: clamp(3.2rem, 18vw, 5.8rem); }
  .hero-card { min-height: 430px; border-radius: 32px; }
  .hero-card::before { border-radius: 31px; }
  .cup.one { width: 142px; height: 142px; left: 18px; top: 74px; }
  .cup.two { width: 108px; height: 108px; right: 24px; top: 142px; }
  .cup.three { width: 158px; height: 158px; right: 38px; bottom: 62px; }
  .hero-panel { left: 14px; right: 14px; bottom: 14px; border-radius: 24px; }
  .grid.two, .grid.three { grid-template-columns: 1fr; }
  .page { padding-bottom: 3.4rem; }
}

@media (max-width: 430px) {
  .hero-actions, .actions { align-items: stretch; }
  .btn { width: 100%; }
  .eyebrow { white-space: normal; }
  .card, .callout, .intro-card { border-radius: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
