/* ============================================================
   ORQUID MASSAGE THERAPY — sample/demo website by Sitely.
   A bespoke, boutique-wellness art direction (not a template):
   warm "bone" canvas, botanical sage green + a dusty orchid-mauve
   signature accent, deep aubergine ink. Editorial, asymmetric,
   whitespace-forward. Cormorant Garamond display + Jost sans,
   arched imagery, a hand-drawn orchid line motif, gentle motion.
   All content is placeholder; not affiliated with the business.
   ============================================================ */

:root {
  --bone:      #f7f2ea;   /* page canvas, warm off-white */
  --bone-2:    #f1e8dc;   /* secondary warm panel */
  --shell:     #eadfce;   /* deeper warm neutral */
  --ink:       #2a2129;   /* deep aubergine-cacao text */
  --ink-soft:  #4b3f47;   /* softer headings */
  --taupe:     #6f6169;   /* muted body copy */
  --mauve:     #a9738c;   /* dusty orchid — signature accent */
  --mauve-d:   #8c566f;   /* darker orchid (hover / on light) */
  --mauve-t:   #efe0e7;   /* pale orchid wash */
  --sage:      #869a80;   /* botanical secondary */
  --sage-d:    #66795f;   /* deeper sage */
  --sage-t:    #e4e9dc;   /* pale sage wash */
  --aubergine: #241b22;   /* dark band background */
  --aubergine-2:#312530;  /* dark panel */
  --line:      rgba(42,33,41,.14);
  --line-soft: rgba(42,33,41,.08);
  --shadow:    0 30px 70px -30px rgba(58,38,50,.42);
  --shadow-sm: 0 18px 40px -22px rgba(58,38,50,.34);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', -apple-system, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--bone);
  line-height: 1.75;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.08; letter-spacing: -.005em; color: var(--ink); }
em, i { font-style: italic; }
section { scroll-margin-top: 96px; }

.wrap { width: min(1180px, 90%); margin-inline: auto; }

/* eyebrow / labels */
.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--mauve-d);
  margin-bottom: 1.1rem;
}
.eyebrow-light { color: #d8b9c8; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 400; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 1.05rem 2rem; border-radius: 2px; cursor: pointer;
  border: 1px solid transparent; transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.btn-solid { background: var(--mauve); color: #fff; }
.btn-solid:hover { background: var(--mauve-d); transform: translateY(-2px); }
.btn-line { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-line:hover { border-color: var(--mauve); color: var(--mauve-d); transform: translateY(-2px); }
.btn-line-dark { border-color: rgba(42,33,41,.25); }
.btn-line-light { color: #f3e7ec; border-color: rgba(255,255,255,.4); }
.btn-line-light:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.7); }
.btn-wide { width: 100%; }

/* orchid line motif */
.orchid-float, .rule-mark { color: var(--mauve); }

/* ---------- slim top strip ---------- */
.strip {
  background: var(--aubergine); color: #e9dcdf;
  font-size: .74rem; letter-spacing: .1em; font-weight: 300;
}
.strip-in { display: flex; justify-content: space-between; align-items: center; padding: .55rem 0; gap: 1rem; }
.strip-r a { color: #f0d9e2; border-bottom: 1px solid rgba(240,217,226,.4); padding-bottom: 1px; }
.strip-r a:hover { color: #fff; }

/* ---------- header ---------- */
.head {
  position: sticky; top: 0; z-index: 60;
  background: rgba(247,242,234,.72);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  transition: background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.head.scrolled { background: rgba(247,242,234,.94); border-bottom-color: var(--line-soft); box-shadow: 0 10px 30px -24px rgba(58,38,50,.5); }
.head-in { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: .9rem 0; }

.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--ink); }
.brand-mark { width: 40px; height: 40px; color: var(--mauve); flex: none; }
.brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-weight: 500; font-size: 1.72rem; letter-spacing: .01em; }
.brand-sub { font-family: var(--sans); font-weight: 400; font-size: .58rem; text-transform: uppercase; letter-spacing: .34em; color: var(--taupe); margin-top: .28rem; }

.nav { display: flex; gap: 2.1rem; }
.nav a {
  font-family: var(--sans); font-size: .8rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: .16em; color: var(--ink-soft);
  position: relative; padding: .3rem 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 100%;
  background: var(--mauve); transform: scaleX(0); transform-origin: right; transition: transform .3s;
}
.nav a:hover { color: var(--mauve-d); }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.head-right { display: flex; align-items: center; gap: 1.3rem; }
.head-call { display: flex; flex-direction: column; text-align: right; line-height: 1.2; }
.head-call small { font-size: .58rem; text-transform: uppercase; letter-spacing: .22em; color: var(--taupe); }
.head-call b { font-family: var(--serif); font-weight: 500; font-size: 1.18rem; color: var(--ink); }
.head-book { padding: .8rem 1.5rem; }

.burger { display: none; width: 40px; height: 40px; background: none; border: none; cursor: pointer; position: relative; z-index: 80; }
.burger span { display: block; width: 24px; height: 1.5px; background: var(--ink); margin: 5px auto; transition: transform .3s, opacity .3s; }

/* ---------- hero ---------- */
.hero { position: relative; padding: clamp(3rem, 7vw, 6.5rem) 0 clamp(4rem, 8vw, 7rem); overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; z-index: 0; pointer-events: none; }
.blob-1 { width: 460px; height: 460px; background: var(--sage-t); top: -120px; left: -140px; }
.blob-2 { width: 420px; height: 420px; background: var(--mauve-t); bottom: -160px; right: -120px; opacity: .6; }
.hero-in { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }

.kick {
  display: inline-block; font-family: var(--sans); font-weight: 400; font-size: .74rem;
  text-transform: uppercase; letter-spacing: .2em; color: var(--sage-d);
  border: 1px solid var(--line); border-radius: 999px; padding: .5rem 1.1rem; margin-bottom: 1.6rem;
}
.kick i { color: var(--mauve-d); font-family: var(--serif); font-size: 1rem; letter-spacing: 0; text-transform: none; }
.hero-copy h1 { font-size: clamp(2.9rem, 6.6vw, 5.4rem); font-weight: 300; letter-spacing: -.02em; }
.hero-copy h1 .accent { font-style: italic; font-weight: 500; color: var(--mauve-d); }
.lede { font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--taupe); max-width: 34ch; margin: 1.7rem 0 2.2rem; line-height: 1.85; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-note { display: flex; align-items: center; gap: .6rem; margin-top: 1.9rem; font-size: .82rem; letter-spacing: .04em; color: var(--ink-soft); }
.hero-note .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 4px var(--sage-t); flex: none; }

.hero-figure { position: relative; }
.arch {
  position: relative; overflow: hidden;
  border-radius: 47% 47% 10px 10px / 34% 34% 6px 6px;
  box-shadow: var(--shadow);
  background: var(--shell);
}
.arch img { width: 100%; height: 100%; object-fit: cover; }
.hero-figure .arch { aspect-ratio: 1 / 1.34; }
.orchid-float { position: absolute; width: 92px; height: 92px; left: -46px; bottom: 42px; color: var(--sage); opacity: .8; }

/* ---------- manifesto ---------- */
.manifesto { padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem); text-align: center; }
.manifesto-in { max-width: 860px; }
.rule-mark { width: 60px; height: 60px; margin: 0 auto 1.4rem; color: var(--mauve); opacity: .85; }
.manifesto-lead { font-family: var(--serif); font-weight: 300; font-size: clamp(1.6rem, 3.6vw, 2.85rem); line-height: 1.28; color: var(--ink-soft); letter-spacing: -.01em; }
.manifesto-lead em { color: var(--mauve-d); font-style: italic; }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 3vw, 3rem); margin-top: clamp(3rem, 6vw, 5rem); text-align: left; }
.value { border-top: 1px solid var(--line); padding-top: 1.5rem; }
.value-no { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--mauve); }
.value h3 { font-size: 1.55rem; font-weight: 500; margin: .5rem 0 .6rem; }
.value p { font-size: .96rem; color: var(--taupe); }

/* ---------- treatments ---------- */
.treat { padding: clamp(3.5rem, 7vw, 6.5rem) 0; background: var(--bone-2); }
.treat-head { max-width: 720px; margin-bottom: clamp(2.4rem, 4vw, 3.6rem); }
.treat-head h2 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); font-weight: 300; }
.treat-sub { color: var(--taupe); font-size: 1.02rem; margin-top: 1rem; max-width: 52ch; }

.menu { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.menu-list { list-style: none; }
.menu-row {
  border-top: 1px solid var(--line); padding: 1.6rem 0 1.5rem; cursor: pointer;
  transition: padding-left .3s, border-color .3s; outline: none; position: relative;
}
.menu-row:last-child { border-bottom: 1px solid var(--line); }
.menu-row .m-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.m-name { font-family: var(--serif); font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 400; transition: color .3s; }
.m-meta { font-family: var(--sans); font-size: .78rem; letter-spacing: .08em; color: var(--taupe); white-space: nowrap; }
.m-desc { color: var(--taupe); font-size: .95rem; max-width: 46ch; margin-top: .55rem; }
.menu-row .m-thumb { display: none; margin-top: 1.1rem; border-radius: 6px; box-shadow: var(--shadow-sm); }
.menu-row.is-active { padding-left: 1.4rem; }
.menu-row.is-active::before {
  content: ""; position: absolute; left: 0; top: 1.7rem; width: 4px; height: calc(100% - 3.1rem);
  background: var(--mauve); border-radius: 2px;
}
.menu-row.is-active .m-name { color: var(--mauve-d); }
.menu-row:focus-visible .m-name { color: var(--mauve-d); }

.menu-figure { position: sticky; top: 108px; }
.arch-sm { border-radius: 44% 44% 8px 8px / 26% 26% 5px 5px; aspect-ratio: 1 / 1.16; }
.menu-figure .arch { aspect-ratio: 1 / 1.16; }
#menuImg { transition: opacity .3s, transform .5s; }
#menuImg.swapping { opacity: 0; transform: scale(1.02); }
.menu-figcap { display: block; text-align: center; margin-top: 1rem; font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--ink-soft); }
.menu-note { font-size: .78rem; color: var(--taupe); margin-top: 2.4rem; font-style: italic; }

/* ---------- ritual ---------- */
.ritual { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.ritual-head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.ritual-head h2 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); font-weight: 300; }
.ritual-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.steps { list-style: none; }
.step { display: flex; gap: 1.6rem; padding: 1.5rem 0; border-top: 1px solid var(--line); }
.step:first-child { border-top: none; padding-top: 0; }
.step-no { font-family: var(--serif); font-style: italic; font-size: 2.4rem; line-height: 1; color: var(--sage); flex: none; width: 2.6rem; }
.step h3 { font-size: 1.5rem; font-weight: 500; margin-bottom: .3rem; }
.step p { color: var(--taupe); font-size: .96rem; }
.ritual-figure { box-shadow: var(--shadow); }

/* ---------- about / karely ---------- */
.about { padding: clamp(3.5rem, 7vw, 6.5rem) 0; background: var(--sage-t); }
.about-in { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.about-figure { aspect-ratio: 1 / 1.2; box-shadow: var(--shadow); }
.about-copy h2 { font-size: clamp(2.3rem, 4.6vw, 3.4rem); font-weight: 300; margin-bottom: 1.2rem; }
.about-copy p { color: var(--ink-soft); margin-bottom: 1.1rem; max-width: 54ch; }
.about-copy p em { color: var(--mauve-d); font-style: italic; }
.sig { font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--mauve-d); margin: 1.4rem 0 1.8rem !important; }

/* ---------- invitation (dark band) ---------- */
.invite { background: var(--aubergine); color: #efe3e7; padding: clamp(3.5rem, 7vw, 6rem) 0; position: relative; overflow: hidden; }
.invite-in { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.invite-figure { border-radius: 44% 44% 8px 8px / 26% 26% 5px 5px; overflow: hidden; aspect-ratio: 1 / 1.2; box-shadow: 0 40px 80px -40px rgba(0,0,0,.8); }
.invite-line { font-family: var(--serif); font-weight: 300; font-size: clamp(2.3rem, 5vw, 4rem); line-height: 1.14; color: #fff; letter-spacing: -.01em; margin: .3rem 0 2rem; }
.invite-cta { display: flex; flex-wrap: wrap; gap: .9rem; }

/* ---------- words / reviews ---------- */
.words { padding: clamp(3.5rem, 7vw, 6.5rem) 0 clamp(2.5rem, 5vw, 4rem); text-align: center; }
.words-head { max-width: 760px; margin: 0 auto clamp(2.4rem, 4vw, 3.4rem); }
.words-head h2 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); font-weight: 300; }
.words-note { color: var(--taupe); font-size: .96rem; margin-top: 1.1rem; }
.words-note strong { color: var(--mauve-d); font-weight: 500; }
.words-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; max-width: 900px; margin-inline: auto; }
.word-card { background: var(--bone-2); border: 1px solid var(--line-soft); border-radius: 8px; padding: 2.2rem 2rem 1.8rem; text-align: left; position: relative; }
.word-tag {
  display: inline-block; font-family: var(--sans); font-size: .6rem; text-transform: uppercase;
  letter-spacing: .18em; color: var(--sage-d); background: var(--sage-t);
  padding: .3rem .7rem; border-radius: 999px; margin-bottom: 1.1rem;
}
.word-card blockquote { font-family: var(--serif); font-style: italic; font-size: 1.5rem; line-height: 1.4; color: var(--ink-soft); }
.word-card figcaption { display: flex; align-items: center; gap: .7rem; margin-top: 1.4rem; font-size: .82rem; color: var(--taupe); letter-spacing: .04em; }
.word-av { width: 34px; height: 34px; border-radius: 50%; background: var(--mauve-t); color: var(--mauve-d); display: grid; place-items: center; font-family: var(--serif); font-size: 1rem; flex: none; }

/* ---------- faq ---------- */
.faq { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.faq-head { text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.faq-head h2 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); font-weight: 300; }
.faq-list { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.5rem 2.4rem 1.5rem 0; position: relative;
  font-family: var(--serif); font-size: clamp(1.25rem, 2.2vw, 1.55rem); font-weight: 400; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-weight: 300; font-size: 1.5rem; color: var(--mauve); transition: transform .3s;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { color: var(--taupe); font-size: .98rem; padding: 0 2.4rem 1.6rem 0; margin-top: -.3rem; }
.faq-item p a { color: var(--mauve-d); border-bottom: 1px solid var(--mauve-t); }

/* ---------- visit / contact ---------- */
.visit { padding: clamp(3.5rem, 7vw, 6.5rem) 0; background: var(--bone-2); }
.visit-in { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2.4rem, 5vw, 5rem); align-items: start; }
.visit-info h2 { font-size: clamp(2.3rem, 4.6vw, 3.4rem); font-weight: 300; margin-bottom: 1rem; }
.visit-lead { color: var(--taupe); max-width: 40ch; margin-bottom: 2.2rem; }
.contact-list { list-style: none; display: grid; gap: 1.3rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.c-ic {
  width: 44px; height: 44px; flex: none; border-radius: 50%; display: grid; place-items: center;
  background: var(--mauve-t); color: var(--mauve-d); font-size: 1.1rem;
}
.contact-list b { display: block; font-family: var(--sans); font-weight: 500; font-size: .68rem; text-transform: uppercase; letter-spacing: .18em; color: var(--taupe); margin-bottom: .15rem; }
.contact-list a, .contact-list span { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); }
.contact-list a:hover { color: var(--mauve-d); }

.visit-form { background: var(--bone); border: 1px solid var(--line); border-radius: 10px; padding: clamp(1.8rem, 3vw, 2.6rem); box-shadow: var(--shadow-sm); }
.visit-form h3 { font-size: 1.9rem; font-weight: 500; }
.form-intro { color: var(--taupe); font-size: .92rem; margin: .4rem 0 1.6rem; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.fld { display: flex; flex-direction: column; margin-bottom: 1rem; }
.fld label { font-family: var(--sans); font-size: .68rem; text-transform: uppercase; letter-spacing: .16em; color: var(--taupe); margin-bottom: .45rem; }
.fld input, .fld select, .fld textarea {
  font-family: var(--sans); font-size: .95rem; font-weight: 300; color: var(--ink);
  background: var(--bone-2); border: 1px solid var(--line); border-radius: 4px; padding: .8rem .9rem;
  transition: border-color .25s, background .25s; width: 100%;
}
.fld input:focus, .fld select:focus, .fld textarea:focus { outline: none; border-color: var(--mauve); background: #fff; }
.fld textarea { resize: vertical; }
.form-status { margin-top: 1rem; font-size: .9rem; color: var(--sage-d); min-height: 1.2em; }
.form-status.err { color: var(--mauve-d); }

/* ---------- footer ---------- */
.foot { background: var(--aubergine); color: #cdbcc4; padding: clamp(3rem, 5vw, 4.5rem) 0 0; }
.foot-in { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); padding-bottom: 3rem; }
.brand-foot { color: #f4e9ee; margin-bottom: 1.2rem; }
.brand-foot .brand-mark { color: #d8a9bd; }
.brand-foot .brand-sub { color: #a78e9a; }
.foot-brand p { font-size: .9rem; max-width: 40ch; color: #b7a4ad; }
.foot h4 { font-family: var(--sans); font-weight: 500; font-size: .7rem; text-transform: uppercase; letter-spacing: .2em; color: #d8a9bd; margin-bottom: 1.1rem; }
.foot-nav, .foot-contact { display: flex; flex-direction: column; gap: .6rem; }
.foot-nav a, .foot-contact a, .foot-contact span { font-size: .92rem; color: #c8b7bf; }
.foot-nav a:hover, .foot-contact a:hover { color: #fff; }
.foot-legal {
  border-top: 1px solid rgba(255,255,255,.1); padding: 1.5rem 0 2rem; font-size: .74rem;
  line-height: 1.8; color: #9c8993; letter-spacing: .02em;
}
.foot-legal strong { color: #c8b7bf; font-weight: 500; }
.foot-legal a { color: #d8a9bd; border-bottom: 1px solid rgba(216,169,189,.4); }

/* ---------- demo chip ---------- */
.demo-chip {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--ink); color: #f4ecef; border-radius: 999px;
  padding: .6rem 1.1rem; font-family: var(--sans); font-size: .78rem; letter-spacing: .02em;
  box-shadow: 0 16px 34px -14px rgba(0,0,0,.55); transition: transform .25s;
}
.demo-chip b { font-weight: 500; color: #e6c3d3; }
.demo-chip:hover { transform: translateY(-2px); }
.chip-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mauve); box-shadow: 0 0 0 3px rgba(169,115,140,.3); flex: none; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-in { gap: 2.5rem; }
  .values { gap: 1.6rem; }
  .nav { gap: 1.5rem; }
  .head-book { display: none; }
}

@media (max-width: 900px) {
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82%); flex-direction: column;
    align-items: flex-start; gap: 0; background: var(--bone); padding: 6rem 2rem 2rem;
    box-shadow: -30px 0 60px -30px rgba(58,38,50,.5); transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1); z-index: 70;
  }
  .nav.open { transform: none; }
  .nav a { width: 100%; padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: .9rem; }
  .nav a::after { display: none; }
  .burger { display: block; }
  .head-call { display: none; }

  .hero-in { grid-template-columns: 1fr; }
  .hero-figure { order: -1; max-width: 440px; margin: 0 auto; }
  .hero-figure .arch { aspect-ratio: 1 / 1.05; }
  .lede { max-width: 52ch; }
  .orchid-float { width: 70px; height: 70px; left: -20px; }

  .values { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }

  .menu { grid-template-columns: 1fr; }
  .menu-figure { display: none; }
  .menu-row .m-thumb { display: block; }
  .menu-row.is-active { padding-left: 0; }
  .menu-row.is-active::before { display: none; }
  .menu-row.is-active .m-name { color: var(--ink); }

  .ritual-grid { grid-template-columns: 1fr; }
  .ritual-figure { max-width: 380px; margin: 1rem auto 0; }

  .about-in { grid-template-columns: 1fr; }
  .about-figure { order: -1; max-width: 400px; margin-inline: auto; }

  .invite-in { grid-template-columns: 1fr; text-align: center; }
  .invite-figure { max-width: 320px; margin: 0 auto; order: -1; }
  .invite-cta { justify-content: center; }

  .words-grid { grid-template-columns: 1fr; max-width: 520px; }
  .visit-in { grid-template-columns: 1fr; }
  .foot-in { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .strip-l { display: none; }
  .strip-in { justify-content: center; }
  .hero-copy h1 { font-size: clamp(2.6rem, 11vw, 3.4rem); }
  .f-row { grid-template-columns: 1fr; gap: 0; }
  .foot-in { grid-template-columns: 1fr; }
  .menu-row .m-head { flex-direction: column; }
  .m-meta { white-space: normal; }
  .demo-chip { right: 12px; bottom: 12px; font-size: .72rem; padding: .5rem .85rem; }
  .btn { padding: .95rem 1.5rem; }
  .hero-cta .btn, .invite-cta .btn { flex: 1 1 auto; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  #menuImg, .btn, .nav a::after { transition: none; }
}
