/* WabiFace LP — dark navy + gold flake palette */
:root {
  --bg: #0b0e16;
  --bg-soft: #131826;
  --bg-card: #1a2030;
  --gold: #d4af37;
  --gold-soft: #e8c869;
  --gold-dim: rgba(212, 175, 55, 0.4);
  --ink: #f5f1e8;
  --ink-mute: #a8a59a;
  --line: rgba(212, 175, 55, 0.18);
  --serif: 'Cormorant Garamond', 'Noto Serif JP', serif;
  --sans: 'Inter', 'Helvetica Neue', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-soft); }
img { max-width: 100%; display: block; }

/* === Nav === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11, 14, 22, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 18px 32px;
  display: flex; justify-content: space-between; align-items: center;
}
.logo {
  font-family: var(--serif); font-size: 24px; font-weight: 500;
  letter-spacing: 0.02em;
}
.logo span { color: var(--gold); }
.nav nav { display: flex; gap: 32px; align-items: center; }
.nav nav a { font-size: 14px; font-weight: 400; color: var(--ink-mute); }
.nav nav a:hover { color: var(--ink); }
.nav nav a.lang {
  border: 1px solid var(--gold-dim); padding: 6px 14px;
  border-radius: 20px; color: var(--gold);
}

/* === Hero === */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 32px 80px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(212, 175, 55, 0.08), transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(120, 80, 40, 0.06), transparent 55%);
  z-index: 0;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 600px;
}
.eyebrow {
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 28px; letter-spacing: -0.01em;
}
.lead {
  font-size: 18px; color: var(--ink-mute);
  margin-bottom: 40px; max-width: 520px;
}
.cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; align-items: center; }

/* Google Play badge in hero */
.play-badge-hero-link { display: inline-flex; line-height: 0; }
.play-badge-hero {
  height: 60px;
  width: auto;
  display: block;
  transition: opacity .2s;
}
.play-badge-hero-link:hover .play-badge-hero { opacity: 0.85; }
@media (max-width: 540px) {
  .play-badge-hero { height: 52px; }
}
.btn-primary, .btn-secondary {
  padding: 14px 28px; border-radius: 4px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.05em;
  transition: all .25s ease; display: inline-block;
}
.btn-primary { background: var(--gold); color: #0b0e16; }
.btn-primary:hover { background: var(--gold-soft); color: #0b0e16; transform: translateY(-1px); }
.btn-secondary { border: 1px solid var(--gold-dim); color: var(--ink); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.hero-meta { font-size: 13px; color: var(--ink-mute); }
.hero-promo-link {
  margin-top: 14px;
  font-size: 14px;
}
.hero-promo-link a {
  color: var(--gold-soft, #e8c46d);
  border-bottom: 1px solid rgba(232, 196, 109, 0.35);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.hero-promo-link a:hover {
  color: #fff;
  border-bottom-color: #fff;
}

/* FAQ highlight (free-promo question pinned at top) */
.faq-highlight {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 8px;
  padding: 4px 18px;
  margin-bottom: 16px;
}
.faq-highlight summary {
  color: var(--gold);
  font-weight: 500;
}

.hero-faces {
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  width: 50%; height: 600px; z-index: 1; pointer-events: none;
}
.hf {
  position: absolute; border-radius: 50%;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(212, 175, 55, 0.1);
}
.hf-1 { width: 320px; height: 320px; right: 100px; top: 40px; }
.hf-2 { width: 220px; right: 280px; top: 280px; opacity: 0.85; }
.hf-3 { width: 180px; right: 40px; top: 320px; opacity: 0.75; }
.hf-video {
  overflow: hidden;
  background: #000;
}
.hf-video video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

/* === Kanji of the day === */
.kanji-today {
  text-align: center;
  max-width: 1100px;
}
.kanji-eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 18px;
}
.kanji-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
  margin-bottom: 28px;
}
.kanji-tile {
  padding: 32px 12px 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, var(--bg-card), var(--bg-soft));
  text-align: center;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.kanji-tile:hover {
  border-color: var(--gold-dim);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4), 0 0 24px rgba(212, 175, 55, 0.08);
}
.kanji-tile.is-today {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold-dim), 0 16px 40px rgba(0,0,0,0.5), 0 0 32px rgba(212, 175, 55, 0.18);
}
.kanji-tile-glyph {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 14px;
  text-shadow: 0 0 24px rgba(212, 175, 55, 0.18);
}
.kanji-tile-romaji {
  display: block;
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 4px;
  text-transform: capitalize;
  letter-spacing: 0.02em;
}
.kanji-tile-reading {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}
.kanji-tile-meaning {
  display: block;
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  font-style: italic;
}
.kanji-note {
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  margin-top: 8px;
  font-style: italic;
}
@media (max-width: 880px) {
  .kanji-grid { grid-template-columns: repeat(5, 1fr); gap: 10px; }
  .kanji-tile { padding: 24px 6px 18px; }
  .kanji-tile-glyph { font-size: 48px; margin-bottom: 10px; }
  .kanji-tile-romaji { font-size: 14px; }
  .kanji-tile-reading { font-size: 11px; }
  .kanji-tile-meaning { font-size: 10px; }
}
@media (max-width: 560px) {
  .kanji-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .kanji-tile { padding: 28px 12px 22px; }
  .kanji-tile-glyph { font-size: 56px; }
  .kanji-tile-romaji { font-size: 16px; }
  .kanji-tile-reading { font-size: 12px; }
  .kanji-tile-meaning { font-size: 11px; }
}

/* === Section common === */
section { padding: 100px 32px; max-width: 1200px; margin: 0 auto; }
section h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400; text-align: center;
  margin-bottom: 16px; letter-spacing: -0.01em;
}
.section-sub {
  text-align: center; color: var(--ink-mute);
  margin-bottom: 56px; font-size: 16px;
}

/* === Featured grid === */
.grid { display: grid; gap: 24px; }
.grid-featured { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: 8px; overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--gold-dim); }
.card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.card-body { padding: 20px; }
.card-body h3 {
  font-family: var(--serif); font-size: 22px; font-weight: 500;
  margin-bottom: 6px; color: var(--gold);
}
.card-body p { font-size: 14px; color: var(--ink-mute); }

/* === All faces === */
.all-faces { background: var(--bg-soft); max-width: none; }
.all-faces > h2, .all-faces > .section-sub,
.all-faces > .grid { max-width: 1200px; margin-left: auto; margin-right: auto; }
.grid-all { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 20px; }
.face {
  text-align: center;
  transition: transform .25s ease;
}
.face:hover { transform: translateY(-2px); }
.face img {
  width: 100%; aspect-ratio: 1; border-radius: 50%;
  border: 1px solid var(--line);
  margin-bottom: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.face span { font-size: 12px; color: var(--ink-mute); display: block; }

/* === Story === */
.story { max-width: 760px; text-align: center; }
.story p {
  font-family: var(--serif); font-size: 20px; font-weight: 300;
  color: var(--ink); margin-bottom: 24px; line-height: 1.7;
}
.story-sign { color: var(--gold) !important; font-style: italic; margin-top: 32px !important; }

/* === How it works === */
.how { max-width: 1000px; }
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.step {
  text-align: center; padding: 32px 24px;
  border: 1px solid var(--line); border-radius: 8px;
  background: var(--bg-card);
}
.step-num {
  font-family: var(--serif); font-size: 36px;
  color: var(--gold); display: block; margin-bottom: 12px;
}
.step h3 {
  font-family: var(--serif); font-size: 22px; font-weight: 500;
  margin-bottom: 12px;
}
.step p { color: var(--ink-mute); font-size: 14px; }

/* === Waitlist === */
.waitlist {
  background: linear-gradient(135deg, var(--bg-soft), var(--bg-card));
  max-width: none; text-align: center;
}
.waitlist > h2, .waitlist > p, .waitlist > form { max-width: 600px; margin-left: auto; margin-right: auto; }
.waitlist > p { color: var(--ink-mute); margin-bottom: 32px; }
.waitlist-form {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 16px;
}
.waitlist-form input[type="email"] {
  flex: 1; min-width: 240px;
  padding: 14px 18px; font-size: 15px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 4px; color: var(--ink); font-family: var(--sans);
}
.waitlist-form input[type="email"]:focus { outline: none; border-color: var(--gold); }
.waitlist-form button {
  padding: 14px 32px; font-size: 14px; font-weight: 500;
  letter-spacing: 0.05em; background: var(--gold); color: #0b0e16;
  border: none; border-radius: 4px; cursor: pointer;
  font-family: var(--sans); transition: background .2s ease;
}
.waitlist-form button:hover { background: var(--gold-soft); }
.form-note { font-size: 12px; color: var(--ink-mute); }

/* === FAQ === */
.faq { max-width: 800px; }
.faq details {
  border-bottom: 1px solid var(--line); padding: 20px 0;
}
.faq summary {
  font-family: var(--serif); font-size: 20px; font-weight: 500;
  cursor: pointer; list-style: none; padding-right: 32px; position: relative;
}
.faq summary::after {
  content: '+'; position: absolute; right: 0; top: -2px;
  color: var(--gold); font-size: 24px; transition: transform .2s ease;
}
.faq details[open] summary::after { content: '−'; }
.faq details p { color: var(--ink-mute); margin-top: 12px; font-size: 15px; }

/* === Footer === */
footer {
  background: #06080d; padding: 60px 32px 32px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-col .logo { font-size: 22px; margin-bottom: 8px; }
.footer-tag { color: var(--ink-mute); font-size: 13px; }
.footer-col h4 {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 14px; color: var(--ink-mute);
  margin-bottom: 8px;
}
.footer-col a:hover { color: var(--ink); }
.copyright {
  text-align: center; font-size: 12px; color: var(--ink-mute);
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line);
}
.footer-fineprint {
  text-align: center;
  font-size: 10px;
  color: rgba(168, 165, 154, 0.55);
  margin: 12px auto 0;
  max-width: 720px;
  line-height: 1.55;
  padding: 0 24px;
}
.footer-fineprint p {
  margin: 3px 0;
  font-size: 10px;
  line-height: 1.55;
}
@media (max-width: 540px) {
  .footer-fineprint,
  .footer-fineprint p { font-size: 10px; }
}

/* === Legal pages === */
.legal {
  max-width: 760px; padding: 140px 32px 80px;
  font-size: 15px; line-height: 1.8;
}
.legal h1 {
  font-family: var(--serif); font-size: 42px; font-weight: 400;
  margin-bottom: 8px;
}
.legal .meta { color: var(--ink-mute); font-size: 13px; margin-bottom: 40px; }
.legal h2 {
  font-family: var(--serif); font-size: 24px; font-weight: 500;
  text-align: left; margin: 40px 0 16px; color: var(--gold);
}
.legal p { margin-bottom: 16px; color: var(--ink); }
.legal ul { margin: 16px 0 16px 24px; }
.legal li { margin-bottom: 8px; color: var(--ink); }
.legal a { color: var(--gold); text-decoration: underline; }

/* === Responsive === */
@media (max-width: 880px) {
  .hero {
    padding: 110px 24px 60px;
    min-height: auto;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .lead { margin-left: auto; margin-right: auto; }
  .cta-row { justify-content: center; }
  .hero-faces {
    position: relative; right: auto; top: auto; transform: none;
    width: 100%; height: 320px;
    margin-top: 48px;
  }
  .hf-1 { width: 200px; height: 200px; right: auto; left: 50%; top: 20px; transform: translateX(-50%); }
  .hf-2 { width: 120px; height: 120px; right: 12%; top: 170px; }
  .hf-3 { width: 100px; height: 100px; left: 12%; right: auto; top: 190px; }
  .nav-inner { padding: 16px 20px; }
  .nav nav { gap: 18px; }
  .nav nav a { font-size: 13px; }
  section { padding: 70px 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .nav nav a:not(.lang) { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .grid-all { grid-template-columns: repeat(2, 1fr); }
  .hero-faces { height: 280px; margin-top: 40px; }
  .hf-1 { width: 170px; height: 170px; top: 0; }
  .hf-2 { width: 100px; height: 100px; right: 8%; top: 140px; }
  .hf-3 { width: 84px; height: 84px; left: 8%; top: 160px; }
}

/* === Status badges (Sakura: in review, others: coming soon) === */
.card, .face { position: relative; }
.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 2;
  pointer-events: none;
}
.badge-soon {
  background: rgba(0, 0, 0, 0.55);
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
}
.badge-soon-on {
  background: rgba(214, 167, 80, 0.95);
  color: #1a1208;
}
.badge-launching {
  background: rgba(212, 175, 55, 0.95);
  color: #1a1208;
  box-shadow: 0 2px 12px rgba(212, 175, 55, 0.40);
  font-weight: 600;
}
.badge-available {
  background: rgba(214, 56, 56, 0.95);
  color: #fff;
  box-shadow: 0 2px 12px rgba(214, 56, 56, 0.45);
  animation: badge-pulse 2.4s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 2px 12px rgba(214, 56, 56, 0.45); }
  50%      { box-shadow: 0 2px 22px rgba(214, 56, 56, 0.85); }
}
.face-available {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.25s ease;
}
.face-available:hover {
  transform: translateY(-3px);
}
.face .badge {
  top: 8px;
  right: 8px;
  padding: 3px 8px;
  font-size: 10px;
}
/* === Image protection (casual download prevention) === */
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.face:has(.badge-soon) img,
.card:has(.badge-soon) img {
  opacity: 0.22;
  filter: blur(10px) saturate(0.6);
  transition: opacity 0.4s ease, filter 0.4s ease;
}
.face:has(.badge-soon):hover img,
.card:has(.badge-soon):hover img {
  opacity: 0.45;
  filter: blur(4px) saturate(0.8);
}

/* === Promo banner (top of page, above fixed nav) === */
.promo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(90deg, rgba(180, 30, 30, 0.95) 0%, rgba(214, 56, 56, 0.95) 50%, rgba(180, 30, 30, 0.95) 100%);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 180, 180, 0.3);
  color: #fff5ee;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background .25s ease;
}
.promo-banner:hover {
  background: linear-gradient(90deg, rgba(200, 40, 40, 0.98) 0%, rgba(235, 70, 70, 0.98) 50%, rgba(200, 40, 40, 0.98) 100%);
}
.promo-banner strong {
  color: #fff;
  font-weight: 600;
}
.promo-banner-arrow {
  display: inline-block;
  font-size: 16px;
  transition: transform .25s ease;
}
.promo-banner:hover .promo-banner-arrow {
  transform: translateX(5px);
}
/* Conditional layout: only apply when promo-banner exists on the page */
body:has(.promo-banner) {
  padding-top: 46px;
}
body:has(.promo-banner) .nav {
  top: 46px;
}
@media (max-width: 540px) {
  .promo-banner {
    font-size: 12px;
    padding: 9px 12px;
    gap: 6px;
  }
  body:has(.promo-banner) {
    padding-top: 76px;
  }
  body:has(.promo-banner) .nav {
    top: 76px;
  }
}

/* === Video intro section (YouTube Shorts embed) === */
.video-intro {
  padding: 100px 24px 80px;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(214, 56, 56, 0.06) 0%, transparent 60%);
}
.video-intro h2 {
  margin: 8px 0 12px;
}
.video-intro .section-sub {
  margin-bottom: 36px;
}
.youtube-shorts-embed {
  --vw: min(220px, 70vw);
  width: var(--vw);
  height: calc(var(--vw) * 16 / 9);
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06);
  background: #000;
}
.youtube-shorts-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 540px) {
  .youtube-shorts-embed { --vw: min(180px, 55vw); }
  .video-intro { padding: 60px 16px 50px; }
}

/* === Roadmap stages === */
.roadmap-stage {
  margin-top: 60px;
  margin-bottom: 24px;
  font-size: 22px;
  font-weight: 500;
  color: rgba(245, 230, 211, 0.7);
  letter-spacing: 0.04em;
  text-align: center;
}
.roadmap-stage:first-of-type {
  margin-top: 40px;
}
.future-list {
  margin-top: 24px;
  padding: 0 24px;
  font-size: 14px;
  line-height: 2.0;
  color: rgba(245, 230, 211, 0.5);
  text-align: center;
  font-style: italic;
  letter-spacing: 0.02em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* === Story sub-section (The name itself) === */
.story-sub {
  margin-top: 56px;
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(245, 230, 211, 0.85);
  text-align: center;
  font-style: italic;
}
.kanji-inline {
  color: rgba(212, 175, 55, 0.95);
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* === Cookie Consent Banner === */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(11, 14, 22, 0.97);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  padding: 14px 18px;
  animation: cookieSlideUp .35s ease-out;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner-text {
  flex: 1 1 380px;
  min-width: 280px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(245, 230, 211, 0.85);
  margin: 0;
}
.cookie-banner-text a {
  color: var(--gold-soft, #e8c46d);
  text-decoration: underline;
}
.cookie-banner-text strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 4px;
  border: 1px solid var(--gold-dim, rgba(212, 175, 55, 0.4));
  cursor: pointer;
  transition: all .2s ease;
  letter-spacing: 0.03em;
}
.cookie-btn-reject {
  background: transparent;
  color: rgba(245, 230, 211, 0.7);
}
.cookie-btn-reject:hover {
  color: rgba(245, 230, 211, 1);
  border-color: rgba(245, 230, 211, 0.5);
}
.cookie-btn-accept {
  background: var(--gold, #d6a750);
  color: #0b0e16;
  border-color: var(--gold, #d6a750);
}
.cookie-btn-accept:hover {
  background: var(--gold-soft, #e8c46d);
}

@media (max-width: 540px) {
  .cookie-banner { padding: 12px 14px; }
  .cookie-banner-inner { gap: 12px; }
  .cookie-banner-text { font-size: 12px; flex-basis: 100%; }
  .cookie-banner-actions { width: 100%; justify-content: flex-end; }
  .cookie-btn { padding: 8px 18px; font-size: 12px; }
}

/* === Cookie gate (replaces form when cookies declined) === */
.cookie-gate {
  max-width: 420px;
  margin: 0 auto;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  text-align: center;
}
.cookie-gate p {
  font-size: 14px;
  color: rgba(245, 230, 211, 0.85);
  line-height: 1.6;
  margin: 0 0 18px;
}
.cookie-gate .btn-primary {
  cursor: pointer;
  font-family: inherit;
  border: 0;
}

/* ============================================================
   TEMP SALE BANNER 2026-05-11 ~ 2026-05-18
   Reddit Ads 50% off campaign. Remove this block after sale ends.
   ============================================================ */
.sale-banner {
  background: linear-gradient(135deg, #ffe8ec 0%, #ffd1da 100%);
  color: #8B2C3A;
  padding: 12px 20px;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(139, 44, 58, 0.18);
  line-height: 1.5;
}
.sale-banner strong {
  font-weight: 600;
  color: #6E1F2A;
}
.sale-banner-link {
  display: block;
  text-decoration: none;
  color: #8B2C3A;
  transition: filter .2s ease;
}
.sale-banner-link:hover {
  filter: brightness(1.04) saturate(1.12);
  color: #8B2C3A;
}
.hero-meta-link {
  color: var(--gold);
  border-bottom: 1px dotted var(--gold-dim);
  padding-bottom: 1px;
  transition: color .2s ease, border-color .2s ease;
}
.hero-meta-link:hover {
  color: var(--gold-soft);
  border-bottom-color: var(--gold);
}
@media (max-width: 600px) {
  .sale-banner {
    font-size: 13px;
    padding: 10px 14px;
  }
}
.hero-meta strong {
  color: #6E1F2A;
  font-weight: 600;
}

/* ============================================================
   v3 additions — kyoto-free funnel + motion grid + free badges
   ============================================================ */

/* FREE badge (kyoto highlight) */
.badge-free {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  z-index: 3;
}
.badge-price {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(11, 14, 22, 0.85);
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 4px 11px;
  border-radius: 999px;
  z-index: 3;
}

/* "Best place to start" subtle highlight for kyoto card in featured grid */
.face-free {
  outline: 1px solid rgba(212, 175, 55, 0.55);
  outline-offset: -1px;
}

/* Motion grid (3 video cards, one per available flavor) */
.motion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 40px auto 0;
}
.motion-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.motion-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-dim);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}
.motion-card-free {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.15);
}
.motion-card-free:hover {
  border-color: rgba(212, 175, 55, 0.85);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45),
              0 0 0 1px rgba(212, 175, 55, 0.25);
}
.motion-video {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #000;
  overflow: hidden;
}
.motion-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.motion-card figcaption {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.motion-card figcaption h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.motion-card figcaption p {
  font-size: 14px;
  color: var(--ink-mute);
  flex: 1;
}
.btn-mini {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: all .2s ease;
  text-align: center;
}
.btn-mini:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.motion-card-free .btn-mini {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.motion-card-free .btn-mini:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: var(--bg);
}

/* Make hf-2 also a video container (was static img) */
.hero-faces .hf-2.hf-video {
  /* hf-video styling inherits from existing v1 .hf-video */
}

@media (max-width: 900px) {
  .motion-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ============================================================
   FROM THE FILMS — YouTube gallery (haute-horlogerie inspired)
   ============================================================ */
.films {
  position: relative;
  padding: 120px 40px 110px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, #06080f 100%);
  text-align: center;
}
.films::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, transparent, var(--gold) 50%, transparent);
  opacity: 0.55;
}
.films .kanji-eyebrow {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.films h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.15;
  margin: 0 auto 18px;
  max-width: 820px;
}
.films .section-sub {
  font-size: 15px;
  color: var(--ink-mute);
  max-width: 560px;
  margin: 0 auto 64px;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

.film-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto;
}

.film-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  background: rgba(11, 14, 22, 0.5);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform .45s cubic-bezier(.2,.7,.2,1),
    border-color .35s ease,
    box-shadow .45s ease;
}
.film-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow:
    0 28px 60px -22px rgba(212, 175, 55, 0.28),
    0 0 0 1px rgba(212, 175, 55, 0.12);
}
.film-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.film-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.film-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.86) saturate(0.92);
  transition: transform .9s ease, filter .45s ease;
}
.film-card:hover .film-thumb img {
  transform: scale(1.045);
  filter: brightness(1) saturate(1.05);
}
.film-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
}

.film-play {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(11, 14, 22, 0.78);
  border: 1px solid rgba(212, 175, 55, 0.55);
  color: var(--gold);
  font-size: 13px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .25s ease, color .25s ease, transform .25s ease;
  z-index: 1;
}
.film-card:hover .film-play {
  background: var(--gold);
  color: #0b0e16;
  transform: scale(1.08);
}

.film-meta {
  padding: 24px 26px 28px;
  text-align: left;
}
.film-index {
  display: inline-block;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.film-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1.3;
  margin: 0 0 6px;
  color: var(--ink);
}
.film-sub {
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  margin: 0;
}

.film-note {
  margin: 56px auto 0;
  text-align: center;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

@media (max-width: 980px) {
  .films { padding: 90px 24px 80px; }
  .film-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@media (max-width: 600px) {
  .films { padding: 72px 18px 64px; }
  .film-grid { grid-template-columns: 1fr; gap: 18px; }
  .film-meta { padding: 20px 22px 24px; }
}
