/* ===== Just Manalized — BOHO-HIPPIE design system =====
   Sun-bleached 70s desert wanderer meets coastal artisan. Warm oat & cream
   paper, terracotta as the single hero accent, sage + dusty teal companions,
   ONE burnt-ochre sunset note. Yeseva One (warm boho display, Title Case),
   DM Sans (humanist body/UI), Caveat (hand-drawn flourishes). Boho ARCHES,
   wavy/scalloped dividers, sun/moon line-art, subtle grain + woven texture.
   NO gold, NO metallic gradients, NO flare/sweep rings. Text pairs >= 4.5:1.

   Fonts load via <link> in each HTML <head> (no @import here):
   <link href="https://fonts.googleapis.com/css2?family=Yeseva+One&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&family=Caveat:wght@500;600;700&display=swap" rel="stylesheet" /> */

:root {
  /* ===== SURFACES — oat / sand / warm cream ===== */
  --bg:        #F2E7D2;  /* warm oat sand — base paper */
  --bg-2:      #EBDFC8;  /* oat — voice band, chat header, nav-solid wash */
  --bg-3:      #E0D1B6;  /* deeper oat — reserve band, footer, placeholders */
  --bg-clay:   #ECD9C4;  /* faint terracotta-tinted sand — section alternation */
  --card:      #FBF4E6;  /* soft cream card surface */
  --card-2:    #F6EAD5;  /* slightly deeper cream — modal headers / insets */

  /* ===== INK — warm cocoa ===== */
  --ink:       #38492E;  /* primary text — ~9.7:1 on --bg */
  --ink-soft:  #5E6B4F;  /* secondary text — ~4.8:1 on --bg (AA body OK) */
  --ink-mute:  #8A765F;  /* decorative/disabled only, NOT for body text */

  /* ===== ACCENTS — terracotta hero, sage, dusty teal, one sunset ochre ===== */
  --clay:        #6F7D58;  /* terracotta — primary decorative accent, borders, washes */
  --clay-deep:   #41573A;  /* deep terracotta — CTA fill, prices, links (~6.0:1 on --bg) */
  --clay-press:  #344A2F;  /* pressed/hover state for clay-deep fills */
  --clay-pale:   #C2CFA8;  /* dusty clay — hairlines / accents over photo scrims */
  --clay-tint:   rgba(65, 87, 58, 0.10);  /* clay wash for panels/notes */
  --clay-tint-2: rgba(65, 87, 58, 0.18);  /* clay wash for borders/hovers */

  --sage:       #6F7D58;  /* olive sage — earthy secondary accent (text-safe) */
  --sage-soft:  #7E8B66;  /* lighter sage — decorative fills/icons only */
  --sage-deep:  #41573A;  /* deep sage — replaces clay for TEXT (prices, links, labels) ~5:1 on --bg */
  --sage-press: #344A2F;  /* darker sage — text hover/press */
  --sage-pale:  #C2CFA8;  /* pale sage — light text accents over dark photo sections */
  --teal:       #357F75;  /* dusty teal — boho pop (text-safe on cream) */
  --teal-soft:  #3E9488;  /* lighter teal — decorative arrows/icons on dark scrims */
  --teal-press: #2A665E;  /* pressed/hover state for teal outlines */
  --teal-tint:  rgba(53, 127, 117, 0.10);  /* teal wash for ghost-button hovers */
  --line-teal:  rgba(53, 127, 117, 0.55);  /* teal hairline — shop card frame (matches the button) */
  /* legacy alias — some rules referenced --turquoise */
  --turquoise:  #357F75;

  --ochre:      #C9762F;  /* THE one warm sunset accent — burnt amber */
  --ochre-soft: #E0985A;  /* lighter ochre — gradient stops in sun emblems only */

  /* ===== PHOTO / SCRIM ===== */
  --photo-ink:  #F6EEDD;  /* warm cream — text over photo scrims */
  --scrim:      48, 36, 26;  /* warm brown for photo washes */
  --scrim-deep: 32, 24, 17;  /* deeper warm brown for bottom-of-photo fades */

  /* ===== HAIRLINES ===== */
  --line:      rgba(58, 42, 30, 0.16);   /* default hairline */
  --line-soft: rgba(58, 42, 30, 0.08);   /* faint divider */
  --line-clay: rgba(65, 87, 58, 0.38);  /* terracotta hairline — replaces gold rules */

  /* ===== TYPE ===== */
  --display: "Yeseva One", Georgia, "Times New Roman", serif;
  --sans:    "DM Sans", system-ui, -apple-system, sans-serif;
  --accent:  "Caveat", "Segoe Script", cursive;
  --serif:   "Yeseva One", Georgia, serif;  /* legacy alias, repointed — never gold */

  /* ===== SHAPE — generous organic radii + boho arch geometry ===== */
  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   22px;
  --r-pill: 999px;
  --r-card: 18px;
  --arch:   140px;   /* arch crown radius for boho horseshoe tops */
  --r-blob: 62% 38% 44% 56% / 58% 42% 58% 42%; /* organic blob radius */

  /* ===== MOTION ===== */
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.33, 0.0, 0.2, 1);

  /* ===== LEGACY (kept so nothing breaks; no longer gold) ===== */
  --logo-ink: none;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.js { scroll-behavior: auto; }
body {
  font-family: var(--sans);
  font-weight: 400;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--clay-deep); color: var(--bg); }

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ===== Eyebrow label — hand-drawn Caveat accent (the boho "voice") =====
   Applied consistently everywhere a label/eyebrow appears. */
.label {
  font-family: var(--accent); font-weight: 600;
  font-size: 18px; letter-spacing: 0; text-transform: none;
  color: var(--sage-deep); margin-bottom: 16px; max-width: none;
  line-height: 1.2;
}

/* ===== Display headings — Yeseva One, warm Title Case (NOT caps) ===== */
h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.18; letter-spacing: 0.005em; text-transform: none;
  max-width: 18em; color: var(--ink);
}
.body-copy { font-size: 17px; line-height: 1.75; max-width: 34em; margin-top: 22px; color: var(--ink-soft); }

.section-light { background: var(--bg); color: var(--ink); padding: clamp(90px, 14vh, 160px) 0; }
.voice.section-light { background: var(--bg-2); }
.section-dark  { color: var(--photo-ink); }

/* ===== Grain — neutral paper noise (dialed back so it reads as paper) ===== */
.grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.32; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 240px 240px;
}

/* ===== Woven / dotted micro-texture utilities (rattan feel) ===== */
.weave {
  background-image: radial-gradient(rgba(58,42,30,0.06) 1px, transparent 1.2px);
  background-size: 14px 14px;
}
.weave-straw {
  background-image:
    repeating-linear-gradient(45deg, rgba(58,42,30,0.04) 0 2px, transparent 2px 7px),
    repeating-linear-gradient(-45deg, rgba(58,42,30,0.03) 0 2px, transparent 2px 7px);
}

/* ===== Section dividers (inline SVG, aria-hidden) ===== */
.divider { display: block; width: 100%; }
.divider-wave { height: clamp(28px, 5vw, 60px); }
.divider-scallop { height: clamp(16px, 2.6vw, 30px); }

/* ===== Boho ARCH helpers (apply to FRAME elements, never the img) ===== */
.arch-top { border-radius: var(--arch) var(--arch) var(--r-md) var(--r-md); overflow: hidden; }
.arch-soft { border-radius: var(--r-lg) var(--r-lg) var(--r-md) var(--r-md); overflow: hidden; }
@media (min-width: 720px) {
  .arch-clip {
    border-radius: 50% 50% var(--r-md) var(--r-md) / 38% 38% var(--r-md) var(--r-md);
    overflow: hidden;
  }
}

/* ===== Sun / moon emblems (decorative, aria-hidden) ===== */
.emblem-sun { display: block; }
.emblem-moon { display: inline-block; vertical-align: middle; }

/* ===== Hand-drawn wavy underline (clay stroke, never gold) ===== */
.wavy-underline {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='6'%3E%3Cpath d='M0 3 C 10 0, 20 6, 30 3 S 50 0, 60 3 70 6, 80 3' fill='none' stroke='%23B5562F' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-x; background-position: 0 100%; background-size: 80px 6px;
  padding-bottom: 6px;
}

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 28px;
  transition: background-color 0.5s var(--ease), border-color 0.5s var(--ease),
              color 0.5s var(--ease), text-shadow 0.5s var(--ease);
  background: rgba(251, 244, 230, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: var(--ink);
}
.has-js .nav:not(.visible):not(.nav-solid):not(.menu-open) {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  color: var(--photo-ink);
  text-shadow: 0 1px 10px rgba(26, 21, 17, 0.7);
}
.has-js .nav:not(.visible):not(.nav-solid):not(.menu-open) .nav-logo {
  filter: drop-shadow(0 1px 6px rgba(26, 21, 17, 0.65)) drop-shadow(0 2px 16px rgba(26, 21, 17, 0.4));
}
.has-js .nav:not(.visible):not(.nav-solid):not(.menu-open) .nav-cta {
  border-color: rgba(246, 238, 221, 0.8); color: var(--photo-ink);
}
.has-js .nav:not(.visible):not(.nav-solid):not(.menu-open) .nav-cta:hover {
  background: rgba(244, 239, 231, 0.14);
}
.nav-brand { font-family: var(--display); font-size: 18px; letter-spacing: 0.02em; }
.nav-links { display: flex; gap: 28px; align-items: center; font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; }
.nav-links a { white-space: nowrap; }
.nav-links a { opacity: 0.85; transition: opacity 0.3s; }
.nav-links a:hover { opacity: 1; }
.nav-cta { border: 1px solid var(--teal); border-radius: var(--r-pill); padding: 8px 18px; color: var(--teal); opacity: 1 !important; }
.nav-cta:hover { background: var(--teal-tint); color: var(--teal-press); border-color: var(--teal-press); }
@media (max-width: 480px) {
  .nav { padding: 9px 14px; }
  .nav .nav-logo { height: 38px; }
  .nav-links { gap: 12px; font-size: 11px; }
  .nav-cta { padding: 6px 12px; }
}
@media (max-width: 480px) {
  .nav-links a:nth-child(2) { display: none; }
}

/* ===== Hero — bright portrait, warm veil, boho arch crown ===== */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: grid; place-items: center; overflow: hidden; color: var(--photo-ink); background: linear-gradient(168deg, #717F59 0%, #525F3C 100%); }
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%;
  filter: sepia(0.06) contrast(1.0) brightness(0.98);
  animation: kenburns 30s var(--ease) infinite alternate;
}
/* Hero photo stays full-bleed so the transparent nav (white logo + light links)
   reads cleanly over it; the boho edge comes from the wavy divider at the bottom. */
@keyframes kenburns { from { transform: scale(1) translateY(0); } to { transform: scale(1.08) translateY(-1.5%); } }
.hero-wash {
  position: absolute; inset: 0; border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(var(--scrim), 0.55) 0%, rgba(var(--scrim), 0) 26%),
    radial-gradient(ellipse 80% 70% at 50% 45%, rgba(var(--scrim), 0.6) 0%, rgba(var(--scrim), 0) 75%),
    linear-gradient(180deg, rgba(var(--scrim), 0.38) 0%, rgba(var(--scrim), 0.34) 45%, rgba(var(--scrim-deep), 0.94) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 20px; }
.hero-name { line-height: 1.05; }
/* Sunburst emblem faintly behind the hero logo (decorative) */
.hero-sun {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -64%);
  width: clamp(220px, 40vw, 420px); height: auto; z-index: 1;
  opacity: 0.42; pointer-events: none;
}
.hero-logo { width: min(540px, 80vw); height: auto; margin: 0 auto; filter: drop-shadow(0 2px 10px rgba(26, 21, 17, 0.7)) drop-shadow(0 2px 28px rgba(26, 21, 17, 0.5)); }
.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; }
.nav-logo { height: 46px; width: auto; display: block; object-fit: contain; object-position: left center; }
.nav-brand { min-width: 0; display: inline-flex; align-items: center; }
.brand-logo { height: 54px; width: auto; display: block; }
@media (max-width: 480px) { .brand-logo { height: 42px; } }
.brand-logo-light { display: none; }
.brand-logo-dark { display: block; }
.has-js .nav:not(.visible):not(.nav-solid):not(.menu-open) .brand-logo-dark { display: none; }
.has-js .nav:not(.visible):not(.nav-solid):not(.menu-open) .brand-logo-light { display: block; }
.hero-logo-img { position: relative; z-index: 2; display: block; width: min(448px, 67vw); height: auto; margin: 0 auto; filter: drop-shadow(0 2px 18px rgba(26, 21, 17, 0.55)); }
.reserve-logo-img { display: block; width: min(360px, 66vw); height: auto; margin: 0 auto; }
.hero-sub { margin-top: 18px; font-size: 12px; font-weight: 500; letter-spacing: 0.4em; text-indent: 0.4em; text-transform: uppercase; color: var(--photo-ink); text-shadow: 0 1px 12px rgba(26, 21, 17, 0.6); }
/* "Made once. Never again." — a hand-written sunset signature */
.hero-line {
  margin-top: 22px; font-family: var(--accent); font-weight: 600;
  font-size: clamp(20px, 2.6vw, 30px); line-height: 1.2;
  letter-spacing: 0; text-indent: 0; text-transform: none;
  color: var(--photo-ink); text-shadow: 0 1px 12px rgba(26, 21, 17, 0.6);
}
.cta {
  display: inline-block; margin-top: 38px; padding: 16px 38px;
  border: 1.5px solid var(--teal); border-radius: var(--r-pill); background: transparent;
  font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal); position: relative;
  transition: border-color 0.4s, color 0.4s, background-color 0.4s;
}
button.cta { font-family: inherit; line-height: inherit; cursor: pointer; appearance: none; -webkit-appearance: none; }
.hero .cta { color: var(--photo-ink); border-color: rgba(246, 238, 221, 0.85); }
/* thin double hand-drawn border (craft feel) */
.cta::before {
  content: ""; position: absolute; inset: 3px; border-radius: var(--r-pill);
  border: 1px dashed var(--teal-soft); opacity: 0.5; pointer-events: none;
  transition: opacity 0.4s, border-color 0.4s;
}
.cta:hover { border-color: var(--teal-press); color: var(--teal-press); background: var(--teal-tint); }
.cta:hover::before { border-color: var(--teal); opacity: 0.7; }
.hero .cta { color: var(--photo-ink); }
.hero .cta:hover { border-color: var(--photo-ink); color: var(--photo-ink); background: rgba(244, 239, 231, 0.12); }
.hero .cta::before { border-color: rgba(246, 238, 221, 0.5); }
/* "solid" variant now shares the ghost treatment — transparent, teal outline */
.cta-solid { background: transparent; border-color: var(--teal); color: var(--teal); }
.cta-solid::before { border-color: var(--teal-soft); }
.cta-solid:hover { background: var(--teal-tint); border-color: var(--teal-press); color: var(--teal-press); }
.scroll-cue { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-cue span {
  display: block; width: 1px; height: 64px; background: rgba(246, 238, 221, 0.8);
  transform-origin: top; animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue { 0% { transform: scaleY(0); } 55% { transform: scaleY(1); transform-origin: top; } 56% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ===== Philosophy ===== */
.split-2 { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.photo-portrait { aspect-ratio: 3 / 4; overflow: hidden; border-radius: var(--r-lg) var(--r-lg) var(--r-md) var(--r-md); }
.photo-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; filter: sepia(0.05) saturate(0.99) brightness(0.99) contrast(1.01); }
@media (max-width: 820px) { .split-2 { grid-template-columns: 1fr; } .photo-portrait { order: -1; max-width: 420px; } }

/* ===== Credentials — terracotta timeline ===== */
.credentials { margin-top: 42px; }
.credentials .label { margin-bottom: 22px; }
.cred-list { list-style: none; max-width: 34em; }
.cred-item { position: relative; padding-left: 30px; }
.cred-item + .cred-item { margin-top: 24px; }
.cred-item::before { /* terracotta node */
  content: ""; position: absolute; left: 0; top: 4px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 3px var(--clay-tint);
}
.cred-item::after { /* terracotta thread to the next entry */
  content: ""; position: absolute; left: 4px; top: 20px; bottom: -20px;
  width: 1px;
  background: linear-gradient(180deg, var(--line-clay), rgba(65, 87, 58, 0.12));
}
.cred-item:last-child::after { content: none; }
.cred-year {
  display: block;
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--sage-deep);
}
.cred-title {
  display: block; margin-top: 7px;
  font-family: var(--display); font-weight: 400;
  font-size: 17px; line-height: 1.45; letter-spacing: 0.01em;
  text-transform: none; color: var(--ink);
}
.cred-detail {
  display: block; margin-top: 5px;
  font-size: 13.5px; line-height: 1.6; color: var(--ink-soft);
}
/* Closing flourish — soft clay panel (no gilt frame) */
.about-flourish { margin-top: 40px; }
.ig-link {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--sage-deep); font-family: var(--display);
  font-size: 20px; letter-spacing: 0.01em; line-height: 1;
  transition: color 0.3s var(--ease);
}
.ig-link:hover { color: var(--teal-press); }
.ig-icon { flex: none; display: block; }

/* ===== Treatments (legacy — restyled, not booking) ===== */
.treatments .wrap { position: relative; }
.t-list { list-style: none; margin-top: 40px; }
.t-group { margin-top: 56px; }
.t-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 18px;
  padding: 22px 8px; border-bottom: 1px solid var(--line);
  position: relative;
  transition: background-color 0.3s var(--ease);
}
.t-name {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(16px, 1.9vw, 20px); line-height: 1.5;
  letter-spacing: 0.01em; text-transform: none;
}
.t-link { color: inherit; transition: color 0.3s; }
.t-link::after { content: ""; position: absolute; inset: 0; }
.t-link:focus-visible { outline: none; }
.t-row:has(.t-link:focus-visible) { outline: 2px solid var(--clay-deep); outline-offset: 2px; }
.t-name .t-sub { font-family: var(--sans); font-weight: 400; font-size: 13px; color: var(--ink-soft); margin-left: 10px; letter-spacing: 0.04em; text-transform: none; }
.t-price { flex: none; margin-left: auto; color: var(--sage-deep); font-size: 15px; letter-spacing: 0.05em; }
.t-price small { color: var(--ink-soft); font-size: 12px; }
.t-arrow {
  flex: none; align-self: center; color: var(--teal); font-size: 17px; line-height: 1;
  transition: transform 0.3s var(--ease);
}
@media (hover: hover) {
  .t-row:hover { background: var(--card); }
  .t-row:hover .t-link { color: var(--sage-deep); text-decoration: underline; text-decoration-color: var(--sage-deep); text-underline-offset: 6px; text-decoration-thickness: 1px; }
  .t-row:hover .t-arrow { transform: translateX(6px); }
}
@media (max-width: 560px) {
  .t-row { flex-direction: column; align-items: flex-start; gap: 6px; padding: 18px 36px 18px 8px; }
  .t-arrow { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); }
  .t-row:hover .t-arrow { transform: translateY(-50%) translateX(4px); }
}

/* ===== Setting — photo band, light text over warm scrim ===== */
.setting { position: relative; min-height: 80vh; min-height: 80svh; display: grid; align-items: end; overflow: hidden; }
.setting-media { position: absolute; inset: -12% 0; will-change: transform; }
.setting-slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: 50% 20%;
  filter: brightness(0.82) contrast(1.01) sepia(0.05);
  opacity: 0; transition: opacity 1.2s var(--ease);
}
.setting-slide.is-active { opacity: 1; }
.setting-wash { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(var(--scrim), 0.6), rgba(var(--scrim), 0.68) 42%, rgba(var(--scrim-deep), 0.94)); }
.setting-content { position: relative; z-index: 2; padding-top: 16vh; padding-bottom: 11vh; }
.setting .label { color: var(--sage-pale); }
.setting-head {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(26px, 3.4vw, 42px); line-height: 1.25;
  letter-spacing: 0.005em; text-transform: none;
  color: var(--photo-ink); max-width: 16em;
  text-shadow: 0 1px 14px rgba(26, 21, 17, 0.45);
}
.setting-head em { font-style: normal; color: var(--sage-pale); }
.setting-line {
  margin-top: 22px;
  font-size: 15px; font-weight: 500; line-height: 1.75;
  letter-spacing: 0.015em; color: var(--photo-ink); max-width: 37em;
  text-shadow: 0 1px 10px rgba(26, 21, 17, 0.5);
}
.setting-stats {
  list-style: none;
  margin-top: clamp(34px, 5.5vh, 52px); padding-top: clamp(24px, 3.5vh, 34px);
  position: relative;
  display: flex; align-items: flex-start;
}
.setting-stats::before { /* terracotta hairline shelf */
  content: ""; position: absolute; left: 0; top: 0; height: 1px;
  width: min(100%, 620px);
  background: linear-gradient(90deg, var(--clay-pale), rgba(216,169,140,0.2) 60%, transparent);
}
.setting-stats li { max-width: 13.5em; }
.setting-stats li + li {
  position: relative;
  margin-left: clamp(26px, 4.5vw, 56px); padding-left: clamp(26px, 4.5vw, 56px);
}
.setting-stats li + li::before { /* vertical terracotta thread between stats */
  content: ""; position: absolute; left: 0; top: 8px; bottom: 4px; width: 1px;
  background: linear-gradient(180deg, rgba(216,169,140,0.55), rgba(216,169,140,0.1));
}
.stat-num {
  display: block;
  font-family: var(--display);
  font-size: clamp(48px, 6.5vw, 84px); line-height: 1;
  color: var(--sage-pale);
  text-shadow: 0 1px 14px rgba(26, 21, 17, 0.4);
}
.stat-cap {
  display: block; margin-top: 10px;
  font-size: 10.5px; font-weight: 600; line-height: 1.75;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--photo-ink);
  text-shadow: 0 1px 10px rgba(26, 21, 17, 0.5);
}
.setting-cta {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: clamp(30px, 4.5vh, 42px); padding-bottom: 7px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--photo-ink);
  border-bottom: 1px solid var(--clay-pale);
  transition: color 0.4s, border-color 0.4s;
}
.setting-cta-arrow { transition: transform 0.4s var(--ease); }
.setting-cta:hover { color: var(--sage-pale); border-color: var(--photo-ink); }
.setting-cta:hover .setting-cta-arrow { transform: translateX(5px); }
@media (max-width: 640px) {
  .setting-content { padding-top: 14vh; padding-bottom: 12vh; }
  .setting-stats { flex-direction: column; }
  .setting-stats li { max-width: none; display: flex; align-items: baseline; gap: 16px; }
  .setting-stats li + li { margin-left: 0; padding-left: 0; margin-top: 18px; padding-top: 18px; }
  .setting-stats li + li::before {
    top: 0; bottom: auto; left: 0; width: 72px; height: 1px;
    background: linear-gradient(90deg, rgba(216,169,140,0.7), rgba(216,169,140,0.1));
  }
  .stat-num { font-size: 46px; min-width: 2.6ch; }
  .stat-cap { margin-top: 0; }
}

/* ===== Voice ===== */
.voice blockquote p { font-family: var(--display); text-transform: none; letter-spacing: 0.01em; font-size: clamp(20px, 2.6vw, 31px); line-height: 1.4; max-width: 30em; color: var(--ink); }
.voice figcaption { display: block; margin-top: 24px; font-family: var(--accent); font-style: normal; font-size: 19px; font-weight: 600; letter-spacing: 0; text-transform: none; color: var(--sage-deep); }

/* ===== Reserve — deep sand band, light ===== */
.reserve { background: var(--bg-3); padding: clamp(100px, 16vh, 180px) 0 0; text-align: center; }
.reserve-logo { margin: 0 auto; }
.reserve-line { margin-top: 30px; font-family: var(--display); font-size: clamp(18px, 2vw, 24px); line-height: 1.4; letter-spacing: 0.01em; text-indent: 0; text-transform: none; color: var(--sage-deep); max-width: none; margin-left: auto; margin-right: auto; }
.reserve-meta { margin-top: 34px; font-style: normal; font-size: 14px; color: var(--ink-soft); }
.reserve-meta a { text-decoration: underline; text-underline-offset: 3px; }
.reserve-meta a:hover { color: var(--sage-deep); }
:focus-visible { outline: 2px solid var(--clay-deep); outline-offset: 3px; }
.footer {
  margin-top: clamp(70px, 10vh, 120px); padding: 22px 28px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; align-items: center;
  font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: none;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}
.footer-moon { color: var(--sage-pale); margin-right: 8px; }

/* ===== Animation initial states (JS removes) ===== */
.js .reveal, .js .reveal-soft { opacity: 0; transform: translateY(28px); }
.js .img-reveal img { transform: scale(1.08); }
.js .hero-name { opacity: 0; }

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  .hero-media img, .scroll-cue span { animation: none !important; transition: none !important; }
  .js .reveal, .js .reveal-soft, .js .hero-name { opacity: 1 !important; transform: none !important; }
  .js .img-reveal img { transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ===== Concierge chat ===== */
.chat-launcher {
  position: fixed; right: 24px; bottom: 24px; z-index: 80;
  width: 64px; height: 64px; border-radius: 50%;
  border: none; cursor: pointer;
  background: radial-gradient(circle at 50% 42%, #8C9A72 0%, #5A6B45 55%, #38492E 100%);
  backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px);
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(58, 51, 44, 0.35), inset 0 1px 0 rgba(255, 253, 249, 0.28);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.chat-launcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(58, 51, 44, 0.4), inset 0 1px 0 rgba(255, 253, 249, 0.28);
}
.chat-launcher:focus-visible { outline: 2px solid var(--clay-deep); outline-offset: 3px; }
.chat-launcher svg { display: block; }
/* Static terracotta ring (replaces the conic flare). */
.chat-launcher::after {
  content: ""; position: absolute; inset: -3px; border-radius: 50%;
  border: 2px solid var(--clay); pointer-events: none;
}
/* Breathing pulse ring — draws the eye until the chat is opened once */
.chat-launcher::before {
  content: ""; position: absolute; inset: -2px; border-radius: 50%;
  border: 2px solid var(--clay); pointer-events: none;
  animation: chat-pulse 3.2s var(--ease) infinite;
}
@keyframes chat-pulse {
  0% { transform: scale(1); opacity: 0.65; }
  70%, 100% { transform: scale(1.42); opacity: 0; }
}
.chat-launcher.calm::before { animation: none; opacity: 0; }

/* Intro teaser — "Meet Vassili" card above the launcher */
.chat-teaser {
  position: fixed; right: 24px; bottom: 102px; z-index: 80;
  width: min(300px, calc(100vw - 32px));
  background: var(--card); color: var(--ink);
  border: 1px solid var(--line-clay); border-radius: var(--r-md);
  box-shadow: 0 14px 40px rgba(58, 51, 44, 0.2);
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.chat-teaser.show { opacity: 1; transform: none; }
.chat-teaser[hidden] { display: none; }
.chat-teaser::after { /* notch pointing to the launcher */
  content: ""; position: absolute; right: 24px; bottom: -7px;
  width: 12px; height: 12px; background: var(--card);
  border-right: 1px solid var(--line-clay); border-bottom: 1px solid var(--line-clay);
  transform: rotate(45deg);
}
.chat-teaser-body {
  display: block; width: 100%; text-align: left;
  background: none; border: none; cursor: pointer;
  padding: 14px 38px 14px 18px; border-radius: var(--r-md);
  color: inherit;
}
.chat-teaser-body:focus-visible { outline: 2px solid var(--clay-deep); outline-offset: 2px; }
.chat-teaser-name {
  display: block; font-family: var(--display); font-weight: 400;
  font-size: 16px; line-height: 1.4; letter-spacing: 0.01em;
  text-transform: none; color: var(--sage-deep);
  margin-bottom: 6px;
}
.chat-teaser-line {
  display: block; font-family: var(--sans); font-weight: 400;
  font-size: 13px; line-height: 1.5; color: var(--ink-soft);
}
.chat-teaser-close {
  position: absolute; top: 8px; right: 8px;
  background: none; border: none; cursor: pointer; padding: 6px;
  color: var(--ink-soft); display: grid; place-items: center;
  border-radius: 6px; transition: color 0.3s;
}
.chat-teaser-close:hover { color: var(--ink); }
.chat-teaser-close:focus-visible { outline: 2px solid var(--clay-deep); outline-offset: 1px; }

.chat-card {
  position: fixed; right: 24px; bottom: 102px; z-index: 80;
  width: 360px; max-width: calc(100vw - 32px); max-height: 60vh;
  display: flex; flex-direction: column;
  background: var(--card); color: var(--ink);
  border: 1px solid var(--line-clay); border-radius: var(--r-md);
  box-shadow: 0 18px 50px rgba(58, 51, 44, 0.22);
  overflow: hidden;
  animation: chat-in 0.35s var(--ease);
}
.chat-card[hidden] { display: none; }
@keyframes chat-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.chat-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px; border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.chat-title { font-family: var(--display); font-weight: 400; font-size: 16px; letter-spacing: 0.01em; text-transform: none; color: var(--sage-deep); }
.chat-close {
  background: none; border: none; cursor: pointer; padding: 6px;
  color: var(--ink-soft); display: grid; place-items: center;
  border-radius: 6px; transition: color 0.3s;
}
.chat-close:hover { color: var(--ink); }

.chat-messages {
  flex: 1; overflow-y: auto; padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 120px;
}
.chat-bubble {
  max-width: 85%; padding: 10px 14px; border-radius: 12px;
  font-size: 14px; line-height: 1.55; white-space: pre-wrap; word-break: break-word;
}
.chat-assistant {
  align-self: flex-start; border-bottom-left-radius: 4px;
  background: var(--bg-2); color: var(--ink);
}
.chat-user {
  align-self: flex-end; border-bottom-right-radius: 4px;
  background: var(--clay-tint); color: var(--ink);
  border: 1px solid var(--clay-tint-2);
}
.chat-link { color: var(--sage-deep); text-decoration: underline; text-underline-offset: 3px; }
.chat-link:hover { color: var(--sage-press); }

.chat-typing { display: flex; gap: 5px; align-items: center; padding: 14px; }
.chat-typing span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--clay-deep);
  opacity: 0.4; animation: chat-dot 1.2s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes chat-dot { 0%, 60%, 100% { opacity: 0.35; } 30% { opacity: 1; } }

.chat-input {
  display: flex; gap: 8px; padding: 12px;
  border-top: 1px solid var(--line); background: var(--bg-2);
}
.chat-input input {
  flex: 1; min-width: 0; padding: 10px 14px;
  background: var(--bg); color: var(--ink);
  border: 1px solid rgba(58, 51, 44, 0.22); border-radius: var(--r-pill);
  font-family: var(--sans); font-size: 14px; font-weight: 400;
}
.chat-input input::placeholder { color: var(--ink-soft); }
.chat-input input:focus { outline: none; border-color: var(--clay-deep); }
.chat-send {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--teal); background: transparent; color: var(--teal);
  cursor: pointer; display: grid; place-items: center; transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.chat-send:hover { background: var(--teal-tint); color: var(--teal-press); border-color: var(--teal-press); }
.chat-send:disabled { opacity: 0.5; cursor: default; }

@media (max-width: 480px) {
  .chat-launcher { right: 16px; bottom: 16px; }
  .chat-teaser { right: 16px; bottom: 92px; width: min(300px, calc(100vw - 32px)); }
  .chat-card { right: 16px; left: 16px; width: auto; bottom: 92px; }
}
@media (prefers-reduced-motion: reduce) {
  .chat-card { animation: none !important; }
  .chat-launcher { transition: none !important; }
  .chat-launcher::before { animation: none !important; opacity: 0; }
  .chat-teaser { transition: none !important; transform: none; }
  .chat-typing span { animation: none !important; opacity: 0.8; }
}

/* Reserve dual CTAs */
.reserve-content .cta-row {
  margin-top: 38px;
  display: flex; justify-content: center; align-items: stretch;
  gap: 14px; flex-wrap: wrap;
}
.reserve-content .cta-row .cta {
  margin: 0;
  display: inline-flex; align-items: center; justify-content: center;
  height: 54px; padding: 0 38px; line-height: 1;
  border-width: 1px; border-style: solid;
}

/* ===== Treatment info card modal ===== */
html.tmodal-open { overflow: hidden; }
.tmodal-overlay {
  position: fixed; inset: 0; z-index: 70;
  display: grid; place-items: center; padding: 24px;
  background: rgba(33, 27, 22, 0.55);
  backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  animation: tmodal-fade 0.3s var(--ease);
}
.tmodal-overlay[hidden] { display: none; }
@keyframes tmodal-fade { from { opacity: 0; } to { opacity: 1; } }
.tmodal {
  position: relative;
  width: min(560px, 100%); max-height: min(84vh, 720px); overflow-y: auto;
  background: var(--card); color: var(--ink);
  border: 1px solid var(--line-clay); border-radius: var(--r-card);
  padding: 38px 38px 34px;
  box-shadow: 0 24px 70px rgba(33, 27, 22, 0.35);
  animation: tmodal-in 0.4s var(--ease);
}
@keyframes tmodal-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.tmodal:focus { outline: none; }
.tmodal-close {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px; border-radius: 50%;
  background: none; border: none; cursor: pointer;
  display: grid; place-items: center;
  color: var(--ink-soft); transition: color 0.3s, background-color 0.3s;
}
.tmodal-close:hover { color: var(--ink); background: var(--bg-2); }
.tmodal-title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(20px, 2.8vw, 26px); line-height: 1.3;
  letter-spacing: 0.01em; text-transform: none;
  color: var(--ink); padding-right: 34px;
}
.tmodal-sub {
  margin-top: 10px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage-deep);
}
.tmodal-body { margin-top: 18px; font-size: 15px; line-height: 1.8; color: var(--ink-soft); }
.tmodal-detail { margin-top: 16px; font-size: 14px; letter-spacing: 0.04em; color: var(--sage-deep); }
.tmodal-actions {
  margin-top: 28px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
}
.tmodal-book {
  display: inline-block; padding: 15px 34px; border-radius: var(--r-pill);
  background: transparent; color: var(--teal); border: 1.5px solid var(--teal);
  font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.tmodal-book:hover { background: var(--teal-tint); color: var(--teal-press); border-color: var(--teal-press); }
.tmodal-wa {
  font-size: 13px; color: var(--ink-soft);
  text-decoration: underline; text-underline-offset: 3px;
  transition: color 0.3s;
  background: none; border: 0; padding: 0; font-family: inherit; cursor: pointer;
}
.tmodal-wa:hover { color: var(--sage-deep); }
@media (max-width: 560px) {
  .tmodal-overlay { padding: 0; align-items: end; grid-template-columns: 1fr; place-items: end stretch; }
  .tmodal {
    width: 100%; max-height: 86vh; max-height: 86svh;
    border-radius: var(--r-lg) var(--r-lg) 0 0; border-left: 0; border-right: 0; border-bottom: 0;
    padding: 30px 24px calc(28px + env(safe-area-inset-bottom));
    animation: tmodal-up 0.45s var(--ease);
  }
  @keyframes tmodal-up { from { transform: translateY(40px); opacity: 0; } to { transform: none; opacity: 1; } }
  .tmodal-actions { align-items: stretch; }
  .tmodal-book { text-align: center; }
  .tmodal-wa { text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .tmodal-overlay, .tmodal { animation: none !important; }
}

/* ===== Journal ===== */
.journal-main { padding-top: clamp(110px, 16vh, 170px); }
.journal-head { margin-bottom: clamp(44px, 7vh, 76px); }
.journal-title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(34px, 5vw, 60px); line-height: 1.12;
  letter-spacing: 0.005em; text-transform: none; color: var(--ink);
}
.journal-desc { margin-top: 18px; font-size: 16px; line-height: 1.7; color: var(--ink-soft); max-width: 34em; }

.journal-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; padding-bottom: clamp(80px, 12vh, 140px);
}
@media (max-width: 1020px) { .journal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .journal-grid { grid-template-columns: 1fr; gap: 24px; } }

.post-card {
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line-clay); border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(58, 51, 44, 0.06);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.post-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(58, 51, 44, 0.14); }
.post-card:focus-visible { outline: 2px solid var(--clay-deep); outline-offset: 3px; }

/* Card photography — boho arch crown on top */
.post-art {
  position: relative; aspect-ratio: 16 / 10; overflow: hidden;
  border-radius: var(--arch) var(--arch) 0 0;
  background: var(--bg-2);
}
@media (max-width: 680px) {
  .post-art { aspect-ratio: 4 / 3; }
}
.post-art img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.post-card:hover .post-art img { transform: scale(1.04); }
@media (prefers-reduced-motion: reduce) {
  .post-art img { transition: none; }
  .post-card:hover .post-art img { transform: none; }
}

.post-body { display: flex; flex-direction: column; flex: 1; padding: 22px 22px 24px; }
.post-meta {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--sage-deep);
}
.post-title {
  margin-top: 12px;
  font-family: var(--display); font-weight: 400;
  font-size: 19px; line-height: 1.35; letter-spacing: 0.01em;
  text-transform: none; color: var(--ink); max-width: none;
}
.post-excerpt { margin-top: 12px; flex: 1; font-size: 14.5px; line-height: 1.65; color: var(--ink-soft); }
.post-read {
  margin-top: 20px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--sage-deep);
}
.post-card:hover .post-read { text-decoration: underline; text-underline-offset: 4px; }

/* Article reading layout */
.article-wrap { max-width: 760px; margin: 0 auto; padding: 0 24px clamp(80px, 12vh, 140px); }
.article-back {
  display: inline-block; margin-bottom: 28px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--sage-deep);
}
.article-back:hover { text-decoration: underline; text-underline-offset: 4px; }
.article-art { aspect-ratio: 21 / 9; border-radius: var(--r-lg) var(--r-lg) var(--r-md) var(--r-md); overflow: hidden; }
@media (max-width: 680px) {
  .article-art { aspect-ratio: 16 / 10; }
}
.article-meta { margin-top: 32px; }
.article-title {
  margin-top: 14px;
  font-family: var(--display); font-weight: 400;
  font-size: clamp(26px, 3.4vw, 36px); line-height: 1.25;
  letter-spacing: 0.01em; text-transform: none; color: var(--ink);
}
.article-body { margin-top: 34px; max-width: 65ch; }
.article-body p { font-size: 17px; line-height: 1.85; color: var(--ink); }
.article-body p + p { margin-top: 1.35em; }
.article-body h2 {
  margin: 2.4em 0 1em;
  font-size: 24px; line-height: 1.3; letter-spacing: 0.01em; max-width: none;
}

/* Quiet end-of-article CTA row */
.article-cta {
  margin-top: clamp(56px, 9vh, 88px); padding-top: 38px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px;
}
.article-cta-line {
  width: 100%;
  font-family: var(--display); text-transform: none; letter-spacing: 0.01em;
  font-size: 22px; color: var(--ink);
}
.article-cta .cta { margin-top: 0; padding: 13px 30px; }

.footer-flat { margin-top: 0; background: var(--bg-3); }

@media (prefers-reduced-motion: no-preference) {
  .post-card, .article-wrap > * { animation: journal-rise 0.8s var(--ease) backwards; }
  .post-card:nth-child(2) { animation-delay: 0.07s; }
  .post-card:nth-child(3) { animation-delay: 0.14s; }
  .post-card:nth-child(4) { animation-delay: 0.21s; }
  .post-card:nth-child(5) { animation-delay: 0.28s; }
  .post-card:nth-child(6) { animation-delay: 0.35s; }
  .article-wrap > *:nth-child(2) { animation-delay: 0.06s; }
  .article-wrap > *:nth-child(3) { animation-delay: 0.12s; }
  .article-wrap > *:nth-child(4) { animation-delay: 0.18s; }
  .article-wrap > *:nth-child(n+5) { animation-delay: 0.24s; }
}
@keyframes journal-rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

/* ===== Studio Shop ===== */
.shop-trust {
  margin-top: 20px; display: flex; flex-wrap: wrap; align-items: baseline;
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sage-deep);
}
.shop-trust span { white-space: nowrap; padding: 2px 0; }
.shop-trust span + span::before { content: "·"; margin: 0 12px; color: var(--sage-deep); font-weight: 400; }

.shop-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 30px 24px; padding-bottom: clamp(130px, 18vh, 200px);
}
@media (max-width: 1020px) { .shop-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px)  { .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; } }
@media (max-width: 540px)  { .shop-grid { grid-template-columns: 1fr; gap: 26px; } }

.shop-card {
  position: relative; cursor: pointer;
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line-teal); border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(58, 51, 44, 0.05), 0 12px 32px -20px rgba(58, 51, 44, 0.2);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.shop-card:focus-visible { outline: none; border-color: var(--teal); }
.shop-card:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }
@media (hover: hover) {
  .shop-card:hover {
    transform: translateY(-5px); border-color: var(--teal);
    box-shadow: 0 2px 4px rgba(58, 51, 44, 0.05), 0 26px 48px -20px rgba(58, 51, 44, 0.3);
  }
  .shop-card:hover .shop-art img { transform: scale(1.03); }
}

/* Art frame — photo (or placeholder) edge-to-edge, square, boho arch crown */
.shop-art {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden;
  border-radius: var(--arch) var(--arch) 0 0;
  background: linear-gradient(165deg, var(--tint-a, var(--bg-2)), var(--tint-b, var(--bg-3)));
  display: grid; place-items: center;
}
.shop-art::before { /* soft window light for the placeholder art (photos cover it) */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(85% 65% at 28% 18%, rgba(255, 253, 249, 0.5), transparent 70%);
}
.shop-initial {
  position: relative;
  font-family: var(--display);
  font-size: clamp(72px, 8.5vw, 110px); line-height: 1;
  color: var(--sage-deep); opacity: 0.3;
  user-select: none; -webkit-user-select: none;
}
.shop-art img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: 50% 22%;
  filter: sepia(0.04) saturate(0.99) contrast(1.01) brightness(1.0);
  transition: transform 0.6s var(--ease);
}
.shop-art::after { /* faint clay veil + hairline keeps photos seated in the card */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(65, 87, 58, 0.08), rgba(65, 87, 58, 0.07));
  mix-blend-mode: multiply;
  box-shadow: inset 0 -1px 0 var(--line);
}

.shop-body { display: flex; flex-direction: column; flex: 1; padding: 18px 20px 20px; }
.shop-name {
  font-family: var(--display); font-weight: 400;
  font-size: 18px; line-height: 1.35; letter-spacing: 0.01em;
  text-transform: none; color: var(--ink); max-width: none;
}
.shop-sub {
  margin-top: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft);
}
.shop-price {
  margin-top: 14px; flex: 1;
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--display); font-size: 19px; font-weight: 400; letter-spacing: 0.01em; color: var(--sage-deep);
}
.shop-price small { font-family: var(--sans); font-size: 12.5px; font-weight: 500; letter-spacing: 0.04em; color: var(--ink-soft); }

/* Add-to-order — earthy solid clay pill (NO gold, NO flare) */
.shop-action { margin-top: 16px; min-height: 46px; display: flex; }
.shop-add {
  position: relative; isolation: isolate;
  width: 100%; min-height: 46px; padding: 12px 16px; border-radius: var(--r-pill); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--teal); background: transparent; color: var(--teal);
  font-family: var(--sans); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; white-space: nowrap;
  transition: background-color 0.3s, color 0.3s, transform 0.2s var(--ease), border-color 0.3s;
}
.shop-add:hover { background: var(--teal-tint); border-color: var(--teal-press); color: var(--teal-press); }
.shop-add:active { transform: scale(0.98); }
.shop-add:focus-visible { outline: 2px solid var(--teal); outline-offset: 4px; }
/* Sold-out variant (shop.js also sets inline opacity/cursor) */
.shop-add-soldout {
  background: var(--bg-3); color: var(--ink-mute); cursor: default;
  box-shadow: none;
}
.shop-add-soldout:hover { background: var(--bg-3); box-shadow: none; }
.shop-stepper {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  border: 1.5px solid var(--teal); border-radius: var(--r-pill); overflow: hidden;
  background: transparent; min-height: 46px;
}
.shop-step {
  width: 52px; min-height: 44px; align-self: stretch; border: none; background: none; cursor: pointer;
  font-family: var(--sans); font-size: 20px; line-height: 1; color: var(--teal);
  display: grid; place-items: center;
  transition: background-color 0.3s;
}
.shop-step:hover { background: var(--teal-tint); }
.shop-step:focus-visible { outline: 2px solid var(--teal); outline-offset: -3px; border-radius: var(--r-pill); }
.shop-qty { min-width: 32px; text-align: center; font-size: 16px; font-weight: 600; color: var(--ink); }

@media (prefers-reduced-motion: no-preference) {
  .shop-card { animation: journal-rise 0.8s var(--ease) backwards; }
  .shop-card:nth-child(2) { animation-delay: 0.05s; }
  .shop-card:nth-child(3) { animation-delay: 0.1s; }
  .shop-card:nth-child(4) { animation-delay: 0.15s; }
  .shop-card:nth-child(5) { animation-delay: 0.2s; }
  .shop-card:nth-child(6) { animation-delay: 0.25s; }
  .shop-card:nth-child(7) { animation-delay: 0.3s; }
  .shop-card:nth-child(8) { animation-delay: 0.35s; }
}

/* Floating cart bar */
.cart-bar {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 60;
  display: inline-flex; align-items: center; gap: 16px;
  max-width: min(560px, calc(100vw - 200px));
  padding: 16px 28px; border: 1.5px solid var(--teal); border-radius: var(--r-pill); cursor: pointer;
  background: rgba(251, 244, 230, 0.86); color: var(--teal);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-family: var(--sans); font-size: 13.5px; font-weight: 600; letter-spacing: 0.06em;
  box-shadow: 0 14px 36px rgba(33, 27, 22, 0.18);
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
  animation: cart-in 0.4s var(--ease);
}
.cart-bar:hover { background: rgba(251, 244, 230, 0.96); color: var(--teal-press); border-color: var(--teal-press); box-shadow: 0 18px 42px rgba(33, 27, 22, 0.24); }
.cart-bar:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }
.cart-bar[hidden] { display: none; }
.cart-bar-sum { white-space: nowrap; }
.cart-bar-cta {
  white-space: nowrap; text-transform: uppercase; letter-spacing: 0.16em; font-size: 11.5px; color: var(--bg);
  border-left: 1px solid rgba(246, 238, 221, 0.35); padding-left: 16px;
}
@keyframes cart-in { from { opacity: 0; transform: translate(-50%, 14px); } to { opacity: 1; transform: translate(-50%, 0); } }
@media (max-width: 640px) {
  .cart-bar {
    left: 16px; right: 92px; bottom: 16px; transform: none;
    max-width: none; justify-content: space-between;
    padding: 14px 16px; gap: 10px; font-size: 13px;
  }
  .cart-bar-cta { padding-left: 10px; letter-spacing: 0.1em; font-size: 11px; }
  @keyframes cart-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
}

/* Product detail modal */
html.pmodal-open { overflow: hidden; }
html.pmodal-open .chat-launcher,
html.pmodal-open .chat-teaser,
html.pmodal-open .chat-card { display: none; }
.pmodal-overlay {
  position: fixed; inset: 0; z-index: 70;
  display: grid; place-items: center; padding: 24px;
  background: rgba(33, 27, 22, 0.55);
  backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  animation: tmodal-fade 0.3s var(--ease);
}
.pmodal {
  position: relative;
  width: min(560px, 100%); max-height: min(88vh, 780px); overflow-y: auto;
  background: var(--card); color: var(--ink);
  border: 1px solid var(--line-clay); border-radius: var(--r-card);
  box-shadow: 0 24px 70px rgba(33, 27, 22, 0.35);
  animation: tmodal-in 0.4s var(--ease);
}
.pmodal:focus { outline: none; }
.pmodal-close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255, 253, 249, 0.85); border: none; cursor: pointer;
  display: grid; place-items: center;
  color: var(--ink); transition: color 0.3s, background-color 0.3s;
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
}
.pmodal-close:hover { background: var(--card); color: var(--teal-press); }
/* Large product photo — crowned in a boho arch */
.pmodal-art {
  position: relative; height: clamp(340px, 58vh, 520px); overflow: hidden;
  border-radius: var(--arch) var(--arch) 0 0;
  background: linear-gradient(165deg, var(--tint-a, var(--bg-2)), var(--tint-b, var(--bg-3)));
  display: grid; place-items: center;
}
.pmodal-art img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; object-position: center; filter: none;
}
.pmodal-art::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 -1px 0 var(--line);
}
.pmodal-body { padding: 26px 34px 34px; }
.pmodal-title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(22px, 3vw, 28px); line-height: 1.25;
  letter-spacing: 0.01em; text-transform: none;
  color: var(--ink); max-width: none;
}
.pmodal-sub {
  margin-top: 10px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage-deep);
}
.pmodal-desc { margin-top: 16px; font-size: 15px; line-height: 1.8; color: var(--ink-soft); }
.pmodal-price {
  margin-top: 18px;
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--display); font-size: 24px; font-weight: 400; letter-spacing: 0.01em; color: var(--sage-deep);
}
.pmodal-price small { font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: 0.04em; color: var(--ink-soft); }
.pmodal-action { margin-top: 24px; display: flex; }
.pmodal-action .shop-add { min-height: 52px; font-size: 12.5px; }
.pmodal-action .shop-stepper { min-height: 52px; }
@media (max-width: 560px) {
  .pmodal-overlay { padding: 0; align-items: end; place-items: end stretch; }
  .pmodal {
    width: 100%; max-height: 90vh; max-height: 90svh;
    border-radius: var(--r-lg) var(--r-lg) 0 0; border-left: 0; border-right: 0; border-bottom: 0;
    animation: tmodal-up 0.45s var(--ease);
  }
  .pmodal-art { height: clamp(300px, 46vh, 420px); }
  .pmodal-body { padding: 24px 22px calc(28px + env(safe-area-inset-bottom)); }
}

/* Order panel */
html.order-open { overflow: hidden; }
html.order-open .chat-launcher,
html.order-open .chat-teaser,
html.order-open .chat-card { display: none; }
.order-overlay {
  position: fixed; inset: 0; z-index: 70;
  display: grid; place-items: center; padding: 24px;
  background: rgba(33, 27, 22, 0.55);
  backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  animation: tmodal-fade 0.3s var(--ease);
}
.order-overlay[hidden] { display: none; }
.order-panel {
  position: relative;
  width: min(540px, 100%); max-height: min(86vh, 760px); overflow-y: auto;
  background: var(--card); color: var(--ink);
  border: 1px solid var(--line-clay); border-radius: var(--r-md);
  padding: 38px 36px 34px;
  box-shadow: 0 24px 70px rgba(33, 27, 22, 0.35);
  animation: tmodal-in 0.4s var(--ease);
}
.order-panel:focus { outline: none; }
.order-close {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px; border-radius: 50%;
  background: none; border: none; cursor: pointer;
  display: grid; place-items: center;
  color: var(--ink-soft); transition: color 0.3s, background-color 0.3s;
}
.order-close:hover { color: var(--ink); background: var(--bg-2); }
.order-title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(22px, 3vw, 28px); line-height: 1.25;
  letter-spacing: 0.01em; text-transform: none;
  color: var(--ink); padding-right: 34px; max-width: none;
}
.order-items { list-style: none; margin-top: 20px; border-top: 1px solid var(--line); }
.order-items li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
  padding: 11px 0; border-bottom: 1px solid var(--line);
  font-size: 14.5px; line-height: 1.5;
}
.order-item-name { color: var(--ink); }
.order-item-qty { color: var(--ink-soft); font-size: 13px; }
.order-item-price { margin-left: auto; white-space: nowrap; color: var(--sage-deep); }
.order-total {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
  padding-top: 14px; font-size: 15.5px; font-weight: 600;
}
.order-total-sum { color: var(--sage-deep); white-space: nowrap; }
.order-total-sum small { font-weight: 500; font-size: 12.5px; color: var(--ink-soft); }

.cod-note {
  margin-top: 20px; padding: 14px 16px;
  border: 1px solid var(--clay); border-radius: var(--r-sm);
  background: var(--clay-tint);
  color: var(--sage-deep); font-size: 13.5px; line-height: 1.65;
}

.order-form { margin-top: 10px; }
.order-field { margin-top: 16px; }
.order-field label {
  display: block; margin-bottom: 7px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sage-deep);
}
.order-field input, .order-field textarea {
  width: 100%; padding: 12px 14px;
  background: var(--bg); color: var(--ink);
  border: 1px solid rgba(58, 51, 44, 0.22); border-radius: var(--r-sm);
  font-family: var(--sans); font-size: 15px; font-weight: 400; line-height: 1.5;
}
.order-field textarea { resize: vertical; min-height: 72px; }
.order-field input::placeholder, .order-field textarea::placeholder { color: var(--ink-soft); opacity: 1; }
.order-field input:focus, .order-field textarea:focus { outline: none; border-color: var(--clay-deep); }
.field-error { display: none; margin-top: 6px; font-size: 12.5px; color: #9C2F1D; }
.order-field.invalid input, .order-field.invalid textarea { border-color: #9C2F1D; }
.order-field.invalid .field-error { display: block; }

.order-submit {
  display: block; width: 100%; margin-top: 24px; min-height: 50px;
  padding: 15px 34px; border: 1.5px solid var(--teal); border-radius: var(--r-pill); cursor: pointer;
  background: transparent; color: var(--teal);
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, opacity 0.3s;
}
.order-submit:hover { background: var(--teal-tint); color: var(--teal-press); border-color: var(--teal-press); }
.order-submit:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }
.order-submit:disabled { opacity: 0.6; cursor: default; }

.order-fail {
  margin-top: 16px; padding: 13px 15px;
  border: 1px solid rgba(156, 47, 29, 0.45); border-radius: var(--r-sm);
  background: rgba(156, 47, 29, 0.06);
  color: #8E2B1A; font-size: 13.5px; line-height: 1.65;
}
.order-fail[hidden] { display: none; }
.order-fail a { color: inherit; text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }

.order-success { text-align: center; padding: 26px 4px 12px; }
.order-success-mark {
  width: 56px; height: 56px; margin: 0 auto 20px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--clay-tint); color: var(--sage-deep);
  font-size: 24px;
}
.order-success-title {
  font-family: var(--display); font-weight: 400;
  font-size: 20px; line-height: 1.3; letter-spacing: 0.01em;
  text-transform: none; color: var(--ink); max-width: none;
}
.order-success-line { margin-top: 12px; font-size: 14.5px; line-height: 1.7; color: var(--ink-soft); }
.order-success .order-submit { margin-top: 26px; }

@media (max-width: 560px) {
  .order-overlay { padding: 0; align-items: end; place-items: end stretch; }
  .order-panel {
    width: 100%; max-height: 90vh; max-height: 90svh;
    border-radius: var(--r-lg) var(--r-lg) 0 0; border-left: 0; border-right: 0; border-bottom: 0;
    padding: 28px 22px calc(26px + env(safe-area-inset-bottom));
    animation: tmodal-up 0.45s var(--ease);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cart-bar, .order-overlay, .order-panel { animation: none !important; }
  .shop-card { animation: none !important; transition: none !important; }
  .shop-card:hover { transform: none; }
  .shop-art img { transition: none; }
  .shop-card:hover .shop-art img { transform: none; }
  .shop-add, .shop-add:active { transition: none; transform: none; }
  .pmodal-overlay, .pmodal { animation: none !important; }
}

/* Progressive nav-link hiding (no-JS phones) */
@media (max-width: 430px) {
  .nav-links a:nth-child(3) { display: none; }
}
@media (max-width: 390px) {
  .nav-links a:nth-child(4) { display: none; }
}

/* ===== Mobile menu (nav.js) ===== */
html.has-navjs .nav-right {
  display: flex; align-items: center; gap: 28px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
}
html.has-navjs .nav-right a { white-space: nowrap; }
.nav-toggle { display: none; }

@media (max-width: 480px) {
  html.has-navjs .nav-right { gap: 12px; font-size: 11px; }
}

@media (max-width: 700px) {
  html.has-navjs .nav-right { gap: 10px; }

  html.has-navjs .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; align-items: flex-end;
    gap: 7px; width: 44px; height: 44px; padding: 0 9px;
    margin: -4px -9px -4px -2px;
    background: none; border: 0; border-radius: 8px; cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  html.has-navjs .nav-toggle:focus-visible {
    outline: 2px solid currentColor; outline-offset: 2px;
  }
  html.has-navjs .nav-toggle-line {
    display: block; height: 2px; border-radius: 2px;
    background: linear-gradient(90deg, var(--clay), var(--clay-deep));
    transition: transform 0.35s var(--ease), width 0.35s var(--ease),
                background-color 0.3s, box-shadow 0.3s;
  }
  html.has-navjs .nav-toggle-line:nth-child(1) { width: 26px; }
  html.has-navjs .nav-toggle-line:nth-child(2) { width: 17px; }
  .has-js .nav:not(.visible):not(.nav-solid):not(.menu-open) .nav-toggle-line {
    background: var(--photo-ink);
    box-shadow: 0 1px 6px rgba(26, 21, 17, 0.65), 0 2px 14px rgba(26, 21, 17, 0.4);
  }
  html.has-navjs .nav.menu-open .nav-toggle-line:nth-child(1) {
    width: 22px; transform: translateY(4.5px) rotate(45deg);
  }
  html.has-navjs .nav.menu-open .nav-toggle-line:nth-child(2) {
    width: 22px; transform: translateY(-4.5px) rotate(-45deg);
  }

  /* Panel: full-width card dropdown, terracotta hairline on top */
  html.has-navjs .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    display: block; padding: 10px 0 18px;
    background: var(--card); color: var(--ink); text-shadow: none;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 28px 48px -22px rgba(33, 27, 22, 0.35);
    visibility: hidden; opacity: 0; transform: translateY(-8px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0s 0.3s;
  }
  html.has-navjs .nav-links::before { /* terracotta hairline — replaces gold rule */
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, rgba(65, 87, 58, 0) 0%, var(--clay) 22%, var(--clay-deep) 78%, rgba(65, 87, 58, 0) 100%);
  }
  html.has-navjs .nav.menu-open .nav-links {
    visibility: visible; opacity: 1; transform: none;
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0s;
  }

  html.has-navjs .nav-links a {
    display: block; padding: 16px 28px;
    font-family: var(--display); font-weight: 400; font-size: 19px; line-height: 1.4;
    letter-spacing: 0.02em; text-transform: none; color: var(--ink);
    opacity: 0; transform: translateY(10px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  }
  html.has-navjs .nav-links a + a { border-top: 1px solid var(--line-soft); }
  html.has-navjs .nav-links a:focus-visible {
    outline: 2px solid var(--clay-deep); outline-offset: -2px;
  }
  html.has-navjs .nav-links a[hreflang] {
    font-family: var(--sans); font-weight: 600; font-size: 12px;
    letter-spacing: 0.24em; text-transform: uppercase; color: var(--sage-deep);
    padding-top: 17px; padding-bottom: 17px;
  }
  html.has-navjs .nav.menu-open .nav-links a { opacity: 1; transform: none; }
  html.has-navjs .nav.menu-open .nav-links a:nth-child(1) { transition-delay: 0.04s; }
  html.has-navjs .nav.menu-open .nav-links a:nth-child(2) { transition-delay: 0.08s; }
  html.has-navjs .nav.menu-open .nav-links a:nth-child(3) { transition-delay: 0.12s; }
  html.has-navjs .nav.menu-open .nav-links a:nth-child(4) { transition-delay: 0.16s; }
  html.has-navjs .nav.menu-open .nav-links a:nth-child(5) { transition-delay: 0.20s; }
}

@media (prefers-reduced-motion: reduce) {
  html.has-navjs .nav-links,
  html.has-navjs .nav.menu-open .nav-links,
  html.has-navjs .nav-links a,
  html.has-navjs .nav-toggle-line {
    transition: none !important; transition-delay: 0s !important;
  }
}

/* ===== Collection — sideways product carousel ===== */
.collection { padding: clamp(70px, 12vh, 160px) 0; overflow: hidden; }
.collection-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: clamp(20px, 4vw, 44px); }
.collection-head h2 { margin-top: 0; }

.collection-arrows { display: none; gap: 10px; flex: none; }
.coll-arrow {
  width: 46px; height: 46px; border-radius: var(--r-pill); border: 1px solid var(--line);
  background: var(--card); color: var(--ink); display: grid; place-items: center; cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), opacity 0.3s;
}
.coll-arrow:hover { background: var(--teal-tint); color: var(--teal-press); border-color: var(--teal); }
.coll-arrow:disabled { opacity: 0.3; cursor: default; }

.collection-track {
  display: flex; gap: 14px;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
  padding: 4px 20px 14px;
  scroll-padding-left: 20px;
  scrollbar-width: none; -ms-overflow-style: none;
  touch-action: pan-x;
}
.collection-track::-webkit-scrollbar { display: none; }

.coll-card {
  flex: 0 0 min(80vw, 320px); min-width: 0;
  scroll-snap-align: start; display: flex; flex-direction: column; color: var(--ink);
}
/* Bulletproof image fill + boho ARCH crown (does NOT touch the img positioning) */
.coll-card-img {
  position: relative; display: block; width: 100%; aspect-ratio: 3 / 4;
  overflow: hidden; border-radius: var(--arch) var(--arch) var(--r-md) var(--r-md);
  background: linear-gradient(165deg, var(--bg-2), var(--bg-3));
}
.coll-card-img img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 18%;
  transition: transform 0.7s var(--ease);
}
.coll-card-meta { display: grid; grid-template-columns: 1fr auto; gap: 2px 12px; margin-top: 14px; align-items: baseline; }
.coll-card-name { font-family: var(--display); font-size: 20px; letter-spacing: 0.01em; text-transform: none; }
.coll-card-price { font-family: var(--display); font-size: 17px; color: var(--sage-deep); text-align: right; white-space: nowrap; }
.coll-card-sub { grid-column: 1 / -1; font-family: var(--sans); font-size: 12.5px; color: var(--ink-soft); letter-spacing: 0.02em; margin-top: 2px; }

/* trailing "shop all" tile — matching arch crown */
.coll-card-all-inner {
  display: grid; place-items: center; text-align: center; aspect-ratio: 3 / 4; width: 100%;
  border: 1px solid var(--clay); border-radius: var(--arch) var(--arch) var(--r-md) var(--r-md); color: var(--sage-deep);
  font-family: var(--display); text-transform: none; letter-spacing: 0.01em; font-size: 19px; line-height: 1.4;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.coll-card-all-arrow { display: block; margin-top: 12px; font-size: 22px; }

/* Touch swipe hint — hand-drawn Caveat accent */
.collection-foot { margin-top: clamp(18px, 3vw, 34px); display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.collection-swipe { font-family: var(--accent); font-size: 16px; letter-spacing: 0; text-transform: none; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 8px; }
.collection-swipe::after { content: "→"; animation: coll-swipe 1.6s var(--ease) infinite; }
@keyframes coll-swipe { 0%,100% { transform: translateX(0); opacity: 0.5; } 50% { transform: translateX(6px); opacity: 1; } }

@media (min-width: 640px) {
  .coll-card { flex-basis: clamp(240px, 46vw, 300px); }
  .collection-track { gap: 18px; }
}

@media (hover: hover) and (pointer: fine) and (min-width: 900px) {
  .collection-arrows { display: flex; }
  .collection-track {
    gap: clamp(18px, 2vw, 24px);
    padding: 6px max(24px, calc((100vw - 1100px) / 2 + 24px)) 10px;
    scroll-padding-left: max(24px, calc((100vw - 1100px) / 2 + 24px));
  }
  .coll-card { flex-basis: clamp(228px, 24vw, 296px); }
  .coll-card:hover .coll-card-img img { transform: scale(1.05); }
  .coll-card-all:hover .coll-card-all-inner { background: var(--clay-deep); color: var(--bg); }
  .collection-swipe { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .collection-track { scroll-behavior: auto; }
  .coll-card-img img { transition: none; }
  .collection-swipe::after { animation: none; }
}
