/* =========================================================
   & Less BEAUTY ─ Magnet Eye Lush POP-UP LP
   Premium Japanese beauty retail / mobile-first
   ========================================================= */

:root {
  /* palette: white / pearl base, charcoal text, muted champagne */
  --c-bg:        #FFFFFF;        /* white */
  --c-bg-warm:   #EFE6D7;        /* warm sand */
  --c-surface:   #FFFFFF;        /* white surface */
  --c-surface-2: #F7F3EC;        /* soft card / strip */
  --c-line:      #E0D5BF;        /* hairline */
  --c-line-soft: #ECE3D0;
  --c-text:      #1F1B16;        /* charcoal */
  --c-text-2:    #4B433A;        /* secondary */
  --c-muted:     #7A6F5E;        /* tertiary */
  --c-blush:     #E9D6CC;        /* subtle blush */
  --c-accent:    #B79968;        /* champagne / gold */
  --c-accent-d:  #957849;
  --c-on-accent: #1F1B16;

  /* typography */
  --ff-jp:    "Zen Kaku Gothic New", system-ui, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --ff-latin: "General Sans", "Zen Kaku Gothic New", system-ui, sans-serif;
  --ff-disp:  "Fraunces", "Shippori Mincho", "Times New Roman", serif;

  /* sizes */
  --text-xs:  clamp(11px, 0.72rem + 0.05vw, 12px);
  --text-sm:  clamp(13px, 0.85rem + 0.05vw, 14px);
  --text-base:clamp(15px, 0.95rem + 0.1vw, 16px);
  --text-md:  clamp(17px, 1rem + 0.3vw, 19px);
  --text-lg:  clamp(20px, 1.1rem + 0.6vw, 24px);
  --text-xl:  clamp(26px, 1.4rem + 1.2vw, 36px);
  --text-2xl: clamp(34px, 1.6rem + 3vw,  56px);
  --text-3xl: clamp(44px, 2rem + 4.5vw,  88px);

  /* spacing */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-8: 48px; --s-10: 64px;
  --s-12: 80px; --s-16: 112px; --s-20: 144px;

  /* radius */
  --r-sm: 6px; --r-md: 10px; --r-lg: 18px; --r-xl: 28px; --r-pill: 999px;

  /* easing */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-jp);
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--c-text);
  background: var(--c-bg);
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; line-height: 1.3; letter-spacing: 0.005em; }
p { margin: 0; }
ul, ol, dl { margin: 0; padding: 0; list-style: none; }
dt, dd { margin: 0; }
em { font-style: normal; }
small { font-size: 0.82em; }

::selection { background: var(--c-accent); color: var(--c-on-accent); }

/* ===== layout helpers ===== */
.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 12px; top: 12px; background: var(--c-text); color: var(--c-bg); padding: 8px 12px; z-index: 100; border-radius: var(--r-sm); }
.muted { color: var(--c-muted); }
.small { font-size: var(--text-sm); }
.thin { font-weight: 400; }
.hide-sm { display: none; }
@media (min-width: 720px) { .hide-sm { display: inline; } }

/* ===== eyebrow / section heads ===== */
.eyebrow {
  font-family: var(--ff-latin);
  font-size: var(--text-xs);
  letter-spacing: 0.28em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--c-accent-d);
  margin: 0 0 var(--s-4);
}
.eyebrow.light { color: var(--c-accent); }

.section-head { margin-bottom: var(--s-8); max-width: 720px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title {
  font-family: var(--ff-disp);
  font-weight: 500;
  font-size: var(--text-xl);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--c-text);
}
.section-sub { color: var(--c-text-2); margin-top: var(--s-4); font-size: var(--text-base); }
.section-sub .note { display: block; margin-top: var(--s-2); color: var(--c-muted); font-size: var(--text-xs); }

/* ===== buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 3px; }
.btn-primary { background: var(--c-text); color: #FBF7F0; }
.btn-primary:hover { background: #000; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--c-text); border-color: var(--c-line); }
.btn-ghost:hover { border-color: var(--c-text); }
.btn-link { padding: 14px 4px; color: var(--c-text-2); border-bottom: 1px solid var(--c-line); border-radius: 0; }
.btn-link:hover { color: var(--c-text); border-color: var(--c-text); }
.btn-sm { padding: 10px 16px; font-size: var(--text-xs); }
.btn-lg { padding: 18px 30px; font-size: var(--text-base); }
.btn-arrow { transition: transform .25s var(--ease); display: inline-block; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ===== header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { border-color: var(--c-line); background: rgba(255, 255, 255, 0.96); }
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--c-text); }
.brand-mark { width: 30px; height: 30px; flex: 0 0 30px; color: var(--c-text); }
.brand-text {
  font-family: var(--ff-disp);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.02em;
  display: inline-flex; align-items: baseline; gap: 4px;
}
.brand-amp { color: var(--c-accent-d); }
.brand-suffix {
  font-family: var(--ff-latin);
  font-weight: 600;
  font-size: 0.62em;
  letter-spacing: 0.32em;
  margin-left: 6px;
  color: var(--c-muted);
}
.brand-text.small { font-size: 15px; }

.site-nav { display: none; gap: clamp(18px, 2.5vw, 32px); }
.site-nav a {
  font-family: var(--ff-latin);
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--c-text-2);
  position: relative;
}
.site-nav a:hover { color: var(--c-text); }
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1px; background: var(--c-text);
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s var(--ease);
}
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-cta { display: none; }

@media (min-width: 880px) {
  .site-nav { display: inline-flex; }
  .header-cta { display: inline-flex; }
}

/* ===== hero ===== */
.hero {
  position: relative;
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 120px);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 85% 10%, rgba(233, 214, 204, 0.5), transparent 60%),
    radial-gradient(55% 60% at 5% 90%, rgba(183, 153, 104, 0.10), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid; gap: clamp(28px, 4vw, 56px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 880px) {
  .hero-grid { grid-template-columns: 1.1fr 1fr; }
}
.hero-copy { order: 2; }
.hero-visual { order: 1; }
@media (min-width: 880px) {
  .hero-copy { order: 1; }
  .hero-visual { order: 2; }
}
.hero-title {
  font-family: var(--ff-disp);
  font-weight: 500;
  font-size: var(--text-3xl);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--c-text);
  margin: 0 0 var(--s-5);
}
.hero-title .line-1 { display: block; }
.hero-title .line-2 {
  display: block;
  font-family: var(--ff-jp);
  font-weight: 900;
  letter-spacing: -0.015em;
}
.hero-lede {
  font-size: var(--text-md);
  color: var(--c-text-2);
  line-height: 1.85;
  margin-bottom: var(--s-6);
}
.event-meta {
  display: grid; gap: var(--s-3);
  padding: var(--s-5);
  border: 1px solid var(--c-line);
  background: var(--c-surface);
  border-radius: var(--r-lg);
  margin-bottom: var(--s-6);
}
.event-meta > div { display: grid; grid-template-columns: 64px 1fr; align-items: center; gap: var(--s-3); }
.event-meta dt {
  font-family: var(--ff-latin);
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.24em;
  color: var(--c-accent-d);
  text-transform: uppercase;
  border-right: 1px solid var(--c-line);
  padding-right: var(--s-3);
}
.event-meta dd { display: grid; gap: 2px; }
.meta-strong {
  font-family: var(--ff-disp);
  font-weight: 600;
  font-size: var(--text-md);
  color: var(--c-text);
  font-feature-settings: "tnum" 1, "lnum" 1;
}
.meta-strong small { font-family: var(--ff-jp); font-weight: 500; font-size: 0.7em; margin-left: 2px; }
.meta-sub { font-size: var(--text-sm); color: var(--c-muted); }

.hero-cta { display: flex; align-items: center; gap: var(--s-4); flex-wrap: wrap; }

.hero-visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(50, 35, 15, 0.25);
}
.hero-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(31, 27, 22, 0.18));
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: contain;
  aspect-ratio: 1 / 1;
  background: #FFFFFF;
}
@media (min-width: 880px) {
  .hero-visual img { aspect-ratio: 1 / 1; }
}
.hero-caption {
  position: static;
  display: inline-flex;
  font-family: var(--ff-latin);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted);
  background: transparent;
  padding: 10px 2px 0;
  border-radius: var(--r-sm);
  backdrop-filter: none;
}
.hero-scroll {
  display: none;
  position: absolute; left: 50%; bottom: 16px;
  transform: translateX(-50%);
  font-family: var(--ff-latin);
  font-size: 11px; letter-spacing: 0.32em;
  color: var(--c-muted);
  align-items: center; gap: 8px;
}
@media (min-width: 880px) { .hero-scroll { display: inline-flex; flex-direction: column; } }
.hero-scroll-line { display: block; width: 1px; height: 32px; background: var(--c-line); }

/* ===== benefits ===== */
.benefits {
  background: var(--c-bg-warm);
  border-top: 1px solid var(--c-line-soft);
  border-bottom: 1px solid var(--c-line-soft);
  padding: clamp(40px, 5vw, 64px) 0;
}
.benefit-grid {
  display: grid; gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .benefit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .benefit-grid { grid-template-columns: repeat(4, 1fr); } }
.benefit-grid li {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  padding: var(--s-5);
  border-radius: var(--r-md);
  position: relative;
  transition: transform .3s var(--ease);
}
.benefit-grid li:hover { transform: translateY(-3px); }
.benefit-num {
  font-family: var(--ff-disp);
  font-style: italic;
  font-weight: 500;
  font-size: 36px;
  color: var(--c-accent);
  display: block;
  line-height: 1;
  margin-bottom: var(--s-3);
}
.benefit-grid h3 {
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: var(--text-md);
  margin-bottom: var(--s-2);
}
.benefit-grid p { font-size: var(--text-sm); color: var(--c-text-2); line-height: 1.7; }
.price-line {
  display: block;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 2px;
}
.price-emphasis {
  display: inline-block;
  margin-top: 4px;
  font-weight: 700;
  color: var(--c-accent-d);
}
s {
  color: var(--c-muted);
  text-decoration-thickness: 1px;
}

/* ===== about ===== */
.about { padding: clamp(72px, 10vw, 140px) 0; }
.about-grid {
  display: grid; gap: clamp(32px, 4vw, 72px);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 880px) { .about-grid { grid-template-columns: 1.05fr 0.95fr; } }
.about-copy .lead {
  font-size: var(--text-md);
  color: var(--c-text-2);
  margin: var(--s-5) 0 var(--s-8);
  line-height: 1.85;
}
.section-title em {
  font-family: var(--ff-disp);
  font-style: italic;
  font-weight: 500;
  color: var(--c-accent-d);
}

.steps { display: grid; gap: var(--s-5); }
.steps li {
  border-top: 1px solid var(--c-line);
  padding-top: var(--s-5);
  display: grid; gap: var(--s-2);
}
.step-num {
  font-family: var(--ff-latin);
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.28em;
  color: var(--c-accent-d);
}
.steps h4 {
  font-family: var(--ff-disp);
  font-weight: 600;
  font-size: var(--text-lg);
}
.steps p { color: var(--c-text-2); font-size: var(--text-base); line-height: 1.8; }

.about-visual {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: var(--c-surface-2);
}
.about-visual img { aspect-ratio: 4 / 3; object-fit: cover; }
.about-visual figcaption {
  position: absolute; left: 16px; bottom: 14px;
  font-family: var(--ff-latin);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FBF7F0;
  background: rgba(31, 27, 22, 0.55);
  padding: 6px 10px; border-radius: var(--r-sm);
}

/* ===== reel ===== */
.reel {
  padding: clamp(72px, 10vw, 140px) 0;
  background: var(--c-bg);
}
.reel-grid {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 880px) {
  .reel-grid { grid-template-columns: 0.85fr 1fr; }
}
.reel-copy {
  max-width: 520px;
}
.reel-copy .btn {
  margin-top: var(--s-6);
}
.reel-thumb {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
  background: var(--c-surface-2);
  box-shadow: 0 30px 70px -40px rgba(31, 27, 22, 0.35);
  aspect-ratio: 4 / 5;
  max-width: 520px;
  width: min(100%, 520px);
  justify-self: center;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.reel-thumb:hover {
  transform: translateY(-4px);
  border-color: var(--c-accent);
  box-shadow: 0 36px 80px -42px rgba(31, 27, 22, 0.42);
}
.reel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(0.98);
}
.reel-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(31,27,22,0.04) 48%, rgba(31,27,22,0.56) 100%),
    radial-gradient(circle at 50% 45%, rgba(255,255,255,0.28), transparent 38%);
}
.reel-badge,
.reel-caption,
.play-button {
  position: absolute;
  z-index: 2;
}
.reel-badge {
  top: 16px;
  left: 16px;
  font-family: var(--ff-latin);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--r-pill);
  padding: 7px 11px;
  backdrop-filter: blur(8px);
}
.play-button {
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(31, 27, 22, 0.88);
}
.play-button svg {
  width: clamp(64px, 10vw, 88px);
  height: clamp(64px, 10vw, 88px);
  filter: drop-shadow(0 14px 28px rgba(31, 27, 22, 0.26));
}
.reel-caption {
  left: 18px;
  right: 18px;
  bottom: 16px;
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: var(--text-base);
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: var(--s-3);
  align-items: center;
}
.reel-caption::after {
  content: "→";
  font-family: var(--ff-latin);
}
@media (max-width: 559px) {
  .reel-thumb { aspect-ratio: 1 / 1.15; }
}

/* ===== lineup ===== */
.lineup {
  background: var(--c-surface);
  padding: clamp(72px, 10vw, 140px) 0;
  border-top: 1px solid var(--c-line-soft);
  border-bottom: 1px solid var(--c-line-soft);
}
.style-grid {
  display: grid; gap: var(--s-4);
  grid-template-columns: 1fr;
  margin-top: var(--s-6);
}
@media (min-width: 560px) { .style-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 880px) { .style-grid { grid-template-columns: repeat(2, 1fr); } }
.style-card {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  padding: var(--s-5);
  border-radius: var(--r-md);
  position: relative;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.style-card:hover { transform: translateY(-3px); border-color: var(--c-accent); }
.style-no {
  font-family: var(--ff-latin);
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.24em;
  color: var(--c-muted);
}
.style-card h3 {
  font-family: var(--ff-disp);
  font-weight: 600;
  font-size: var(--text-lg);
  margin: 8px 0 var(--s-2);
}
.style-card p { font-size: var(--text-sm); color: var(--c-text-2); line-height: 1.7; }
.style-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 var(--s-3);
}
.style-tags li {
  font-size: var(--text-xs);
  line-height: 1.2;
  color: var(--c-accent-d);
  border: 1px solid var(--c-line-soft);
  background: var(--c-surface-2);
  border-radius: var(--r-pill);
  padding: 6px 9px;
}
.lineup-note {
  margin-top: var(--s-6);
  font-size: var(--text-xs);
  color: var(--c-muted);
}

/* ===== access ===== */
.access {
  padding: clamp(72px, 10vw, 140px) 0;
  background:
    linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-warm) 100%);
}
.access-grid {
  display: grid; gap: clamp(28px, 4vw, 56px);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 880px) { .access-grid { grid-template-columns: 1fr 0.85fr; } }
.access-list { display: grid; gap: 0; margin: var(--s-6) 0; }
.access-list > div {
  display: grid; grid-template-columns: 110px 1fr;
  gap: var(--s-4);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--c-line);
  align-items: baseline;
}
.access-list dt {
  font-family: var(--ff-latin);
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.24em;
  color: var(--c-accent-d);
  text-transform: uppercase;
}
.access-list dd { font-size: var(--text-base); color: var(--c-text); }
.access-list dd .muted { font-size: var(--text-sm); }

.access-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: sticky; top: 88px;
}
.map-mock { aspect-ratio: 5 / 4; }
.map-mock svg { width: 100%; height: 100%; display: block; }
.access-card-body { padding: var(--s-4) var(--s-5); }

/* ===== faq ===== */
.faq { padding: clamp(72px, 10vw, 140px) 0; }
.faq-wrap { max-width: 820px; }
.faq-list { display: grid; gap: 0; margin-top: var(--s-6); }
.faq-list details {
  border-top: 1px solid var(--c-line);
  padding: var(--s-4) 0;
}
.faq-list details:last-child { border-bottom: 1px solid var(--c-line); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: flex-start; gap: var(--s-3);
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: var(--text-md);
  color: var(--c-text);
  padding: var(--s-2) 0;
  position: relative;
  padding-right: 48px;
  line-height: 1.6;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font-family: var(--ff-disp);
  font-weight: 400;
  font-size: 24px;
  color: var(--c-accent-d);
  transition: transform .3s var(--ease);
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list .q {
  font-family: var(--ff-disp);
  font-style: italic;
  color: var(--c-accent-d);
  flex: 0 0 auto;
}
.faq-list .a {
  padding: var(--s-2) 0 var(--s-3) 32px;
  color: var(--c-text-2);
  font-size: var(--text-base);
  line-height: 1.85;
}

/* ===== closing ===== */
.closing {
  background: var(--c-text);
  color: var(--c-bg);
  padding: clamp(64px, 10vw, 120px) 0;
  text-align: center;
}
.closing-inner { max-width: 820px; margin-inline: auto; }
.closing .eyebrow { color: var(--c-accent); font-size: var(--text-xs); }
.closing-title {
  font-family: var(--ff-disp);
  font-weight: 500;
  font-size: var(--text-2xl);
  line-height: 1.25;
  margin: var(--s-4) 0 var(--s-8);
  color: var(--c-bg);
}
.closing .btn-primary {
  background: var(--c-accent);
  color: var(--c-on-accent);
}
.closing .btn-primary:hover { background: #C9AC7B; }

/* ===== footer ===== */
.site-footer {
  background: var(--c-bg-warm);
  padding: var(--s-6) 0;
  border-top: 1px solid var(--c-line);
}
.footer-row {
  display: flex; flex-direction: column; gap: var(--s-3);
  align-items: flex-start; justify-content: space-between;
}
@media (min-width: 720px) {
  .footer-row { flex-direction: row; align-items: center; }
}
.footer-brand .muted { margin-top: 4px; }

/* ===== sticky mobile cta ===== */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  display: flex; gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--c-line);
  z-index: 60;
}
.sticky-btn {
  flex: 1;
  text-align: center;
  padding: 14px 12px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  transition: transform .2s var(--ease);
}
.sticky-btn:active { transform: scale(0.98); }
.sticky-btn.primary { background: var(--c-text); color: var(--c-bg); }
.sticky-btn.ghost { background: var(--c-surface); color: var(--c-text); border: 1px solid var(--c-line); }
@media (min-width: 880px) { .sticky-cta { display: none; } }
@media (max-width: 879px) { body { padding-bottom: 76px; } }

/* ===== reveal animation ===== */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
