/* =============================================
   Memoresse — shared site stylesheet
   Brand: cream/ink/peach/sage — Recoleta + Satoshi
   ============================================= */

@font-face {
  font-family: 'Recoleta';
  src: url('../fonts/Recoleta-Regular.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Recoleta';
  src: url('../fonts/Recoleta-SemiBold.otf') format('opentype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Variable.ttf') format('truetype');
  font-weight: 300 900; font-style: normal; font-display: swap;
}

/* ---- tokens ---- */
:root {
  --stage:    #f7f3ec;
  --stage-2:  #efe8de;
  --surface:  #ffffff;
  --surface-2:#f1ece3;
  --line:     #e7ddd0;
  --ink:      #243140;
  --muted:    #4a5764;
  --faint:    #6e7b8a;           /* bumped from #8893a0 for WCAG AA */
  --peach:    #dd8163;
  --peach-deep:#c2643c;
  --accent-text:#c2643c;
  --sage:     #6fa89f;
  --sage-deep:#3f8a82;
  --plum:     #6e5f86;
  --grad:     linear-gradient(90deg,#3bc4ff,#c078ff,#ff71a6,#f2c447);
  --display:  'Recoleta', Georgia, 'Times New Roman', serif;
  --body:     'Satoshi', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --maxw:     1180px;
}

/* ---- reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background:
    radial-gradient(1100px 720px at 82% -8%,  rgba(196,189,212,.45), transparent 60%),
    radial-gradient(1000px 820px at -8% 105%, rgba(178,199,185,.42), transparent 62%),
    radial-gradient(900px  600px at 50% 125%, rgba(221,129,99,.12),  transparent 60%),
    var(--stage);
  background-attachment: fixed;
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: 17px;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--peach); color: #3a2317; }

/* ---- skip link (a11y) ---- */
.skip-link {
  position: absolute; left: -9999px; top: 8px;
  padding: 8px 16px; background: var(--ink); color: #fff;
  border-radius: 6px; font-size: 14px; z-index: 999;
}
.skip-link:focus { left: 16px; }

/* ---- layout ---- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---- type ---- */
.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--accent-text);
  margin-bottom: 18px; display: inline-block;
}
.eyebrow.sage { color: var(--sage-deep); }
h1, h2, h3 { font-family: var(--display); font-weight: 500; line-height: 1.08; letter-spacing: -.01em; }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
p.lead { font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: var(--muted); max-width: 60ch; }
.muted { color: var(--muted); }

/* ---- wave divider ---- */
.thread { height: 2px; width: 100%; background: var(--grad); background-size: 220% 100%;
  opacity: .85; animation: flow 9s linear infinite; border: 0; }
@keyframes flow { to { background-position: 220% 0; } }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--body); font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: 40px; cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 30px -10px rgba(192,120,255,.35); }
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.1); box-shadow: 0 16px 38px -10px rgba(192,120,255,.5); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.hero-tiles {
  grid-column: 1 / -1;
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1.4vw, 16px);
}
.hero-tile {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(10px, 1.8vh, 16px) clamp(12px, 1.4vw, 18px);
}
.hero-tile .dot {
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid var(--line);
  flex-shrink: 0; color: var(--sage-deep);
}
.hero-tile h4 { font-family: var(--body); font-size: clamp(.85rem, min(1.05vw, 1.7vh), .95rem); font-weight: 600; margin: 0 0 2px; letter-spacing: .01em; }
.hero-tile p  { font-size: clamp(.8rem, min(.95vw, 1.55vh), .875rem); color: var(--muted); line-height: 1.45; margin: 0; }
.btn-ghost:hover { border-color: var(--peach); color: var(--peach); transform: translateY(-2px); }
.btn-sage { background: var(--sage-deep); color: #0f1b18; box-shadow: 0 10px 30px -12px rgba(63,138,130,.7); }
.btn-sage:hover { transform: translateY(-2px); }

/* ---- header ---- */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, backdrop-filter .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
header.scrolled {
  background: rgba(251,249,245,.88);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
nav {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px; gap: 20px;
}
.brand img { height: 30px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 14.5px; color: var(--muted); font-weight: 500;
  transition: color .2s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--peach); border-radius: 2px;
}
.nav-links a.pill {
  padding: 9px 18px; border-radius: 30px;
  background: var(--grad); color: #fff; font-weight: 600;
}
.nav-links a.pill:hover { color: #fff; transform: translateY(-1px); filter: brightness(1.1); }
.nav-links a.pill.active::after { display: none; }
.menu-btn {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 10px; color: var(--ink); padding: 8px 12px;
  cursor: pointer; font-size: 14px; font-family: var(--body);
}
.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 8px 18px 18px;
  background: rgba(251,249,245,.98);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a {
  padding: 12px 6px; color: var(--muted);
  border-bottom: 1px solid var(--surface-2); font-size: 15px;
}
.mobile-menu a:last-child { border-bottom: 0; }

/* ---- hero (home) ---- */
/* Hero is sized to stay above the fold: type and spacing scale against viewport
   HEIGHT as well as width (the min(vw, vh) pairs), so short laptop screens get a
   smaller hero instead of pushing the CTA below the fold. Top padding never drops
   below 84px — it has to clear the fixed header. */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  padding: clamp(84px, 11vh, 120px) 0 clamp(44px, 7vh, 70px); overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 78% 30%, rgba(221,129,99,.10), transparent 55%),
    radial-gradient(90%  80% at 10% 90%, rgba(63,138,130,.10), transparent 60%);
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1.05fr; /* figure column widened for the outsized hero art */
  gap: clamp(30px, 3.6vw, 54px); align-items: center; width: 100%;
  row-gap: clamp(16px, 2.8vh, 34px); /* the hero-tiles row sits closer than the column gap */
}
.hero h1 {
  font-size: clamp(2.4rem, min(5vw, 7.2vh), 4.6rem);
  margin-bottom: clamp(12px, 1.9vh, 24px);
}
.hero h1 .accent { font-style: italic; color: var(--peach-deep); }
.hero .lead { font-size: clamp(1rem, min(1.45vw, 2vh), 1.18rem); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: clamp(18px, 3vh, 34px); }
.hero-figure { position: relative; }
.hero-figure .glow {
  position: absolute; inset: -8% -6% -6% -6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221,129,99,.28), transparent 62%);
  filter: blur(8px); z-index: -1;
}
.hero-figure img {
  width: 100%; height: auto; max-height: min(52vh, 520px); object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 50px 90px -40px rgba(36,49,64,.20);
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.05); } }
/* Transparent-cutout hero art (composition matters top-to-bottom — never crop it).
   Deliberately outsized (Ed, 2026-09-01): the image is the wow — the tile row may
   fall below the fold, but headline, lead, and CTAs must stay above it. */
.hero-figure img.cutout {
  object-fit: contain;
  border-radius: 0; box-shadow: none;
  max-height: min(78vh, 760px);
}
.wave-mark {
  position: absolute; top: 5%; right: 5%; width: 22%;
  opacity: .55; z-index: 1; animation: bob 11s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: var(--faint);
  display: flex; align-items: center; justify-content: center;
}
.scroll-hint svg {
  display: block;
  animation: pls 2.4s ease-in-out infinite;
}
@keyframes pls { 0%,100% { opacity: .3; } 50% { opacity: 1; } }
/* Only drop the hint on very short screens, where it would reach the hero CTA. */
@media (max-height: 600px) { .scroll-hint { display: none; } }

/* ---- page hero (deep pages) ---- */
.page-hero {
  padding: 148px 0 72px;
  background: var(--stage-2);
  border-bottom: 1px solid var(--line);
}
.page-hero .breadcrumb {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--faint); margin-bottom: 22px;
  transition: color .2s;
}
.page-hero .breadcrumb:hover { color: var(--accent-text); }
.page-hero .breadcrumb svg { opacity: .6; }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); margin-bottom: 20px; }
.page-hero h1 .accent { font-style: italic; color: var(--peach-deep); }
.page-hero p.lead { margin-top: 4px; }

/* ---- bands (generic sections) ---- */
section.band { padding: 96px 0; position: relative; }
.band.alt { background: var(--stage-2); }

/* ---- founder question ---- */
.question {
  padding: 88px 0; text-align: center;
  background: linear-gradient(180deg, var(--stage), var(--stage-2));
}
.question .q {
  font-family: var(--display); font-style: italic;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--ink); max-width: 18ch; margin: 0 auto;
}
.question .sub {
  margin-top: 22px; color: var(--muted); max-width: 52ch;
  margin-left: auto; margin-right: auto;
}

/* ---- split / feature list ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-list { display: flex; flex-direction: column; gap: 22px; margin-top: 34px; }
.feature { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; }
.feature .dot {
  width: 38px; height: 38px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid var(--line);
  font-size: 18px; flex-shrink: 0; color: var(--sage-deep);
}
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-width: 720px; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.spec-row { display: contents; }
.spec-row > * { padding: 14px 20px; border-bottom: 1px solid var(--line); font-size: 15px; }
.spec-row:last-child > * { border-bottom: none; }
.spec-label { font-weight: 600; color: var(--ink); background: var(--surface-2); }
.spec-value { color: var(--muted); background: var(--surface); }
.feature h4 { font-family: var(--body); font-size: 15.5px; font-weight: 600; margin-bottom: 3px; letter-spacing: .01em; }
.feature p  { font-size: 15px; color: var(--muted); line-height: 1.55; }
.figure-card {
  position: relative; border-radius: 18px; overflow: hidden;
  box-shadow: 0 40px 80px -45px rgba(36,49,64,.24);
}
.figure-card img { width: 100%; height: 100%; object-fit: cover; }
.figure-grain {
  position: absolute; right: -22px; bottom: -26px;
  width: 46%; border-radius: 14px;
  border: 5px solid var(--stage); box-shadow: 0 26px 50px -24px rgba(36,49,64,.20);
}

/* ---- story ---- */
.story-photos {
  display: grid; grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto; gap: 18px; margin-top: 8px;
}
.story-photos .p1 { grid-row: 1 / 3; }
.story-photos figure { border-radius: 16px; overflow: hidden; background: var(--surface); }
.story-photos img { width: 100%; height: 100%; object-fit: cover; }
.story-photos figcaption {
  font-size: 12.5px; color: var(--faint);
  padding: 10px 13px; letter-spacing: .02em;
}
.story-text p { margin-bottom: 18px; color: var(--muted); }
.story-text .pull {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--ink); line-height: 1.25; margin: 6px 0 22px;
}
.sig { font-family: var(--display); font-style: italic; font-size: 1.4rem; color: var(--peach-deep); margin-top: 6px; }
.sig small {
  display: block; font-family: var(--body); font-style: normal;
  font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--faint); margin-top: 6px;
}

/* ---- guru ---- */
.guru-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: start; }
.guru-points { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.guru-points li {
  list-style: none; display: flex; gap: 13px; align-items: flex-start;
  color: var(--muted); font-size: 15.5px;
}
.guru-points li::before {
  content: ''; flex-shrink: 0; margin-top: 9px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sage-deep); box-shadow: 0 0 0 4px rgba(63,138,130,.18);
}
.book-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 20px; padding: 26px;
  box-shadow: 0 40px 80px -50px rgba(36,49,64,.20);
}
.book-card h3 { font-size: 1.7rem; margin-bottom: 6px; }
.book-card .lead { font-size: 15px; margin-bottom: 18px; }
.calendly-inline-widget { border-radius: 14px; overflow: hidden; background: #fff; }

/* ---- try / demo cards ---- */
.try-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.demo {
  position: relative; background: var(--surface);
  border: 1px solid var(--line); border-radius: 20px;
  padding: 34px; transition: transform .3s, border-color .3s, box-shadow .3s;
  overflow: hidden;
}
.demo::before {
  content: ''; position: absolute; left: 0; top: 0;
  height: 3px; width: 100%; background: var(--grad);
  background-size: 200%; opacity: 0; transition: opacity .3s;
}
.demo:hover { transform: translateY(-6px); border-color: var(--surface-2); box-shadow: 0 40px 70px -45px rgba(36,49,64,.20); }
.demo:hover::before { opacity: 1; }
.demo .tag { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--sage-deep); font-weight: 600; }
.demo h3 { font-size: 1.9rem; margin: 10px 0 8px; }
.demo p { color: var(--muted); font-size: 15px; margin-bottom: 22px; min-height: 48px; }
.demo .go { display: inline-flex; align-items: center; gap: 8px; color: var(--accent-text); font-weight: 600; font-size: 15px; }
.demo .go svg { transition: transform .25s; }
.demo:hover .go svg { transform: translateX(5px); }

/* ---- teaser cards (home → deep pages) ---- */
.teaser-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 44px; }
.teaser {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 20px; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.teaser:hover { transform: translateY(-6px); box-shadow: 0 40px 70px -45px rgba(36,49,64,.22); }
.teaser-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.teaser-body { padding: 26px 28px 30px; }
.teaser-body .tag { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--accent-text); font-weight: 600; }
.teaser-body h3 { font-size: 1.55rem; margin: 10px 0 8px; }
.teaser-body p { color: var(--muted); font-size: 15px; margin-bottom: 20px; }
.teaser-body .go { display: inline-flex; align-items: center; gap: 7px; color: var(--accent-text); font-weight: 600; font-size: 15px; }
.teaser-body .go svg { transition: transform .25s; }
.teaser:hover .go svg { transform: translateX(5px); }

/* ---- testimonials ---- */
.tp-slot { margin: 26px 0 34px; min-height: 0; }
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.quote {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 18px; padding: 28px; position: relative;
}
.quote .mark { font-family: var(--display); font-size: 3.4rem; line-height: .4; color: var(--peach); opacity: .5; height: 24px; }
.quote p { font-family: var(--display); font-size: 1.32rem; line-height: 1.4; color: var(--ink); margin: 4px 0 18px; }
.quote .who { font-size: 13px; color: var(--faint); letter-spacing: .02em; }
.tp-note { margin-top: 26px; font-size: 13px; color: var(--faint); display: flex; align-items: center; gap: 10px; justify-content: center; }
.stars { color: #D69A2E; letter-spacing: 2px; }

/* ---- reserve / lead-capture ---- */
.reserve { background: linear-gradient(180deg, var(--stage-2), var(--stage)); text-align: center; }
.reserve .inner { max-width: 640px; margin: 0 auto; }
.reserve h2 { margin-bottom: 14px; }
.reserve-form {
  display: flex; flex-direction: column; gap: 12px; max-width: 520px;
  margin: 30px auto 0;
}
.reserve-form input, .reserve-form textarea {
  width: 100%; padding: 15px 20px; box-sizing: border-box;
  border-radius: 14px; border: 1px solid var(--line);
  background: var(--surface); color: var(--ink);
  font-family: var(--body); font-size: 15px;
}
.reserve-form textarea { resize: vertical; min-height: 96px; line-height: 1.55; }
.reserve-form input:focus, .reserve-form textarea:focus {
  outline: none; border-color: var(--peach);
  box-shadow: 0 0 0 3px rgba(221,129,99,.2);
}
.reserve-form input.error, .reserve-form textarea.error { border-color: var(--peach-deep); }
.reserve-form button { align-self: center; }
.formnote { margin-top: 16px; font-size: 13px; color: var(--faint); }
.confirm { margin-top: 22px; font-size: 15px; display: none; }
.confirm.show { display: block; }
.confirm.success { color: var(--sage-deep); }
.confirm.fail { color: var(--muted); }

/* ---- about ---- */
.about-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.about-photo { border-radius: 18px; overflow: hidden; background: var(--surface); box-shadow: 0 40px 80px -50px rgba(36,49,64,.20); }
.about-photo img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.about-photo figcaption { font-size: 12.5px; color: var(--faint); padding: 11px 15px; letter-spacing: .02em; }
.about-spark { height: 62px; width: auto; margin: 2px 0 20px; }
.addr h3 { font-size: 1.9rem; margin-bottom: 14px; }
.addr address { font-style: normal; color: var(--muted); font-size: 16px; line-height: 1.9; }
.addr .dir { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--accent-text); font-weight: 600; font-size: 15px; }

/* ---- made / flag ---- */
.made { padding: 26px 0 72px; background: var(--stage); text-align: center; }
.made img { display: block; width: 100%; max-width: 960px; margin: 0 auto; border-radius: 16px; box-shadow: 0 30px 70px -50px rgba(36,49,64,.20); }

/* ---- footer ---- */
footer { background: var(--stage-2); border-top: 1px solid var(--line); padding: 56px 0 40px; }
.foot-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; }
.foot-brand img { height: 30px; margin-bottom: 16px; }
.foot-love { font-family: var(--display); font-size: 1.5rem; color: var(--ink); }
.foot-links { display: flex; gap: 28px; flex-wrap: wrap; }
.foot-links a { color: var(--muted); font-size: 14.5px; }
.foot-links a:hover { color: var(--accent-text); }
.foot-legal {
  margin-top: 34px; padding-top: 22px;
  border-top: 1px solid var(--surface-2);
  font-size: 12.5px; color: var(--faint); line-height: 1.7;
  display: flex; flex-wrap: wrap; gap: 8px 24px; align-items: flex-start;
}
.foot-legal-links { display: flex; gap: 16px; flex-wrap: wrap; }
.foot-legal-links a { color: var(--faint); text-decoration: underline; text-underline-offset: 3px; }
.foot-legal-links a:hover { color: var(--accent-text); }

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

/* ---- moments bridge (home page: Try Moments with graph) ---- */
.moments-bridge { background: var(--stage); }
.moments-inner {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 64px;
  align-items: center;
}
.moments-copy h2 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); }
.moments-graph {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 40px 80px -50px rgba(36,49,64,.22);
  background: url('../img/brand-bg.jpg') center/cover no-repeat;
}
.moments-graph svg { width: 100%; height: auto; display: block; }

/* ---- homepage value props ---- */
.vp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 48px; }
.vp-media { display: flex; flex-direction: column; gap: 16px; }
.media-slot {
  display: grid; place-items: center; text-align: center; gap: 10px;
  padding: 34px 28px; min-height: 200px;
  border: 2px dashed var(--line); border-radius: 18px;
  background: var(--surface-2); color: var(--faint);
}
.media-slot .ms-icon { color: var(--sage-deep); }
.media-slot .ms-label {
  font-family: var(--body); font-weight: 600; font-size: 12px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
}
.media-slot .ms-note { font-size: 13.5px; line-height: 1.5; max-width: 36ch; }

/* ---- archivist plan ---- */
.plan-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 24px; margin-top: 44px; align-items: stretch; }
.plan-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 18px; padding: 34px 32px 30px;
  display: flex; flex-direction: column;
}
.plan-card.featured {
  border: 2px solid transparent;
  background: linear-gradient(var(--surface), var(--surface)) padding-box, var(--grad) border-box;
}
.plan-kicker { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--accent-text); font-weight: 600; }
.plan-price { font-family: var(--display); font-size: 2.7rem; line-height: 1.1; margin-top: 12px; }
.plan-price span { font-family: var(--body); font-size: 1.05rem; color: var(--muted); }
.plan-sub { font-size: 15px; color: var(--muted); margin-top: 6px; }
.plan-list { list-style: none; padding: 0; margin: 22px 0 28px; display: flex; flex-direction: column; gap: 13px; }
.plan-list li { display: flex; align-items: baseline; gap: 10px; font-size: 15px; line-height: 1.55; color: var(--muted); }
.plan-list li::before { content: "—"; color: var(--peach); flex-shrink: 0; }
.plan-card .btn { margin-top: auto; align-self: flex-start; }
.plan-note { font-size: 13px; color: var(--faint); margin-top: 14px; }

/* ---- responsive ---- */
@media (max-width: 1100px) {
  .hero-tiles { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-btn { display: block; }
  .hero-grid, .split, .guru-grid, .about-grid, .moments-inner { grid-template-columns: 1fr; }
  /* Stacked hero: the figure sits above the copy, so cap it hard — otherwise the
     photo alone eats the fold and pushes the CTA off-screen. */
  .hero-grid { gap: clamp(18px, 3vh, 36px); }
  .hero-figure { order: -1; max-width: 440px; margin: 0 auto; }
  .hero-figure img { max-height: min(30vh, 300px); }
  .wave-mark { display: none; }
  .try-grid, .teaser-grid, .plan-grid { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .story-photos { grid-template-columns: 1fr 1fr; }
  .story-photos .p1 { grid-row: auto; }
  .figure-grain { position: static; width: 60%; margin: 14px auto 0; border-width: 0; }
  section.band { padding: 72px 0; }
}
@media (max-width: 560px) {
  .story-photos { grid-template-columns: 1fr; }
  .reserve-form { flex-direction: column; }
  .hero-tiles { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
