/* ═══════════════════════════════════════════════════
   toca.la — shared stylesheet
   home.html + about.html

   Figma palette
   --bg      #1D1F20  page base, nav
   --surface #252728  content areas, pull sections
   --card    #2B2D2E  cards, modals, elevated
   --border  #404243  all outlines & dividers

   Accent: --amber #E8A838
   ═══════════════════════════════════════════════════ */

/* ── VARIABLES ────────────────────────────────────── */
:root {
  --bg:       #1D1F20;
  --surface:  #252728;
  --card:     #2B2D2E;
  --border:   #404243;
  --cream:    #F5F0E8;
  --mid:      #888;
  --dim:      #666;
  --ghost:    #666;
  --amber:    #E8A838;
  --amber2:   #F0B840;
  --indigo:   #5C7AEA;
  --red:      #E84F4F;
  --teal:     #3DBFA8;
  --purple:   #9B6ED4;
  --green:    #4CAF50;
}

/* ── RESET ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'DM Mono', monospace;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 1000;
  pointer-events: none; opacity: .45;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23g)' opacity='.05'/%3E%3C/svg%3E");
}

/* ── TYPOGRAPHY ───────────────────────────────────── */
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400; line-height: 1.15;
  letter-spacing: -.01em; margin-bottom: 24px;
}
h2 em { font-style: italic; color: var(--amber); }
h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 400; line-height: 1.2; margin-bottom: 14px;
}
p { font-size: 15px; color: var(--dim); line-height: 2.1; margin-bottom: 20px; }
p strong { color: var(--mid); font-weight: 400; }
p em     { font-style: italic; color: var(--mid); }
a { color: var(--amber); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── NAV ──────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 64px); height: 60px;
  background: rgba(29,31,32,.94);
  backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav-logo { height: 22px; width: auto; display: block; mix-blend-mode: screen; }
.nav-r    { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--mid); text-decoration: none; transition: color .2s;
}
.nav-link:hover { color: var(--cream); text-decoration: none; }
.nav-btn {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  background: var(--amber); color: var(--bg);
  border: none; border-radius: 5px; padding: 10px 24px;
  cursor: pointer; text-decoration: none; font-weight: 500;
  transition: background .2s, transform .15s, box-shadow .2s; white-space: nowrap;
}
.nav-btn:hover {
  background: var(--amber2); text-decoration: none;
  transform: translateY(-1px); box-shadow: 0 8px 24px rgba(232,168,56,.22);
}
@media (max-width: 600px) { .nav-link { display: none; } }

/* ── BUTTONS ──────────────────────────────────────── */
.btn-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--amber); color: var(--bg);
  font-family: 'DM Mono', monospace;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 500; border: none; border-radius: 6px;
  padding: 16px 38px; cursor: pointer; text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .25s;
}
.btn-cta:hover {
  background: var(--amber2); text-decoration: none;
  transform: translateY(-2px); box-shadow: 0 16px 48px rgba(232,168,56,.28);
}
.btn-cta svg { transition: transform .2s; }
.btn-cta:hover svg { transform: translateX(4px); }

.btn-outline {
  display: inline-flex; align-items: center;
  background: transparent; border: 1px solid var(--border);
  color: var(--mid); font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 6px; padding: 16px 28px;
  cursor: pointer; text-decoration: none; transition: all .2s;
}
.btn-outline:hover { border-color: var(--mid); color: var(--cream); text-decoration: none; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber); color: var(--bg);
  border: none; padding: 16px 36px; border-radius: 8px;
  font-family: 'DM Mono', monospace; font-size: 13px;
  letter-spacing: .08em; cursor: pointer; text-decoration: none;
  transition: all .2s; font-weight: 500;
}
.btn-primary:hover {
  background: var(--amber2); text-decoration: none;
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,168,56,.25);
}

/* ── SHARED LABELS ────────────────────────────────── */
.eyebrow, .pull-eyebrow {
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.eyebrow::after, .pull-eyebrow::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--border), transparent);
}
.section-label {
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::after { content: ''; width: 32px; height: 1px; background: var(--amber); opacity: .4; }
.section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4.5vw, 58px);
  font-weight: 400; line-height: 1.07; letter-spacing: -.025em;
}
.section-h2 em { font-style: italic; color: var(--amber); }

/* ── SCROLL REVEAL ────────────────────────────────── */
.reveal {
  opacity: 1; transform: none;
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.js-loaded .reveal {
  opacity: 0; transform: translateY(24px);
}
.js-loaded .reveal.visible { opacity: 1; transform: none; }
.rd1 { transition-delay: .07s; } .rd2 { transition-delay: .14s; }
.rd3 { transition-delay: .21s; } .rd4 { transition-delay: .28s; }
.rd5 { transition-delay: .35s; } .rd6 { transition-delay: .42s; }

/* ── FOOTER ───────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 28px clamp(24px, 5vw, 64px);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; background: var(--bg);
}
.footer-logo img { height: 16px; width: auto; display: block; mix-blend-mode: screen; opacity: .45; }
.foot-links, .footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.foot-links a, .footer-links a {
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ghost); text-decoration: none; transition: color .2s;
}
.foot-links a:hover, .footer-links a:hover { color: var(--mid); text-decoration: none; }
.foot-copy, .footer-copy { font-size: 10px; color: var(--ghost); letter-spacing: .06em; }


/* ═══════════════════════════════════════════════════
   HOME PAGE
   ═══════════════════════════════════════════════════ */

.hero {
  min-height: 100vh; display: grid; grid-template-rows: 1fr auto;
  padding-top: 60px; position: relative; overflow: hidden;
}
#waveCanvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: .13; }
.ghost-word {
  position: absolute; right: -3vw; top: 50%; transform: translateY(-52%);
  font-family: 'Playfair Display', serif; font-weight: 700; font-style: italic;
  font-size: clamp(180px, 30vw, 440px); line-height: .88; color: transparent;
  -webkit-text-stroke: 1px rgba(232,168,56,.07);
  letter-spacing: -.04em; pointer-events: none; user-select: none;
  white-space: nowrap; z-index: 1;
}
.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(60px,10vh,120px) clamp(24px,7vw,96px);
  position: relative; z-index: 2; max-width: 820px;
}
.hero-content > * { opacity: 0; animation: heroUp .75s cubic-bezier(.16,1,.3,1) both; }
.hero-kicker  { animation-delay: .05s; }
.hero-h1      { animation-delay: .18s; }
.hero-tagline { animation-delay: .34s; }
.hero-sub     { animation-delay: .48s; }
.hero-actions { animation-delay: .62s; }
.hero-trust   { animation-delay: .75s; }
@keyframes heroUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
.hero-kicker {
  display: flex; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 24px;
}
.hero-kicker::before {
  content: ''; display: block; width: 32px; height: 1px;
  background: var(--amber); opacity: .5; flex-shrink: 0;
}
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(50px, 8.5vw, 112px);
  font-weight: 400; line-height: .98; letter-spacing: -.03em; margin-bottom: 16px;
}
.hero-h1 em { font-style: italic; color: var(--amber); display: block; }
.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px, 2.4vw, 26px); font-style: italic;
  color: rgba(245,240,232,.24); font-weight: 400;
  letter-spacing: -.01em; margin-bottom: 36px;
}
.hero-sub {
  font-size: clamp(13px, 1.5vw, 15px); color: var(--mid);
  line-height: 2; max-width: 460px; margin-bottom: 48px;
}
.hero-sub strong { color: rgba(245,240,232,.6); font-weight: 400; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 28px; }
.hero-trust   { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-chip   { display: flex; align-items: center; gap: 7px; font-size: 10px; letter-spacing: .08em; color: var(--ghost); }
.trust-chip::before { content: '✓'; color: var(--amber); font-size: 10px; opacity: .7; }
.hero-bottom  { position: relative; z-index: 2; border-top: 1px solid var(--border); }
.section-bar  { display: flex; width: 100%; height: 6px; }
.section-bar span { height: 100%; transition: opacity .3s; }

/* Pull quote */
.pull {
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: clamp(64px,9vw,120px) clamp(24px,7vw,96px);
  position: relative; overflow: hidden;
}
.pull::after {
  content: '"'; position: absolute; top: -.15em; left: clamp(16px,4vw,60px);
  font-family: 'Playfair Display', serif; font-size: clamp(200px,28vw,360px);
  line-height: 1; color: rgba(255,255,255,.018); pointer-events: none; user-select: none;
}
.pull-inner { max-width: 900px; margin: 0 auto; }
blockquote.pull-q {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3.5vw, 44px);
  font-weight: 400; line-height: 1.4; color: rgba(245,240,232,.38);
  font-style: normal; border: none; padding: 0;
}
blockquote.pull-q em { color: var(--cream); font-style: italic; }
.pull-attr { margin-top: 32px; font-size: 12px; letter-spacing: .1em; color: var(--ghost); }

/* How it works */
.how { padding: clamp(80px,10vw,140px) clamp(24px,7vw,96px); max-width: 1280px; margin: 0 auto; }
.how-header { margin-bottom: clamp(52px,7vw,96px); }
.steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; background: var(--border); gap: 1px;
}
@media (max-width: 860px) { .steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--surface);
  padding: clamp(28px,4vw,48px) clamp(24px,3vw,40px);
  position: relative; transition: background .25s;
}
.step:hover { background: var(--card); }
.step-num {
  font-family: 'Playfair Display', serif; font-size: 72px; font-weight: 700;
  line-height: .9; letter-spacing: -.04em; color: rgba(232,168,56,.07);
  margin-bottom: 24px; user-select: none;
}
.step-label { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--amber); margin-bottom: 12px; }
.step-body  { font-size: 13px; color: var(--mid); line-height: 1.95; }
.step-pip {
  position: absolute; top: clamp(24px,3vw,40px); right: clamp(24px,3vw,40px);
  width: 7px; height: 7px; border-radius: 50%; background: var(--amber); opacity: .2;
}

/* App mockup */
.mockup-section { padding: 0 clamp(24px,7vw,96px) clamp(80px,10vw,140px); }
.mockup-label {
  text-align: center; font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ghost); margin-bottom: 32px;
}
.browser {
  max-width: 960px; margin: 0 auto;
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,.03),
              0 40px 80px rgba(0,0,0,.5), 0 80px 160px rgba(0,0,0,.3);
}
.browser-bar {
  background: var(--bg); border-bottom: 1px solid var(--border);
  padding: 12px 18px; display: flex; align-items: center; gap: 14px;
}
.b-dots { display: flex; gap: 7px; }
.b-dots i { display: block; width: 11px; height: 11px; border-radius: 50%; }
.b-dots i:nth-child(1) { background: #3A1515; }
.b-dots i:nth-child(2) { background: #312813; }
.b-dots i:nth-child(3) { background: #152A1C; }
.b-addr {
  flex: 1; max-width: 240px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 5px; text-align: center; padding: 5px 14px;
  font-size: 11px; color: var(--ghost); letter-spacing: .04em;
}
.app-head {
  background: var(--bg); border-bottom: 1px solid var(--border);
  padding: 11px 20px; display: flex; align-items: center; gap: 12px;
}
.app-title {
  font-family: 'Playfair Display', serif; font-size: 14px;
  color: var(--border); flex: 1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.app-save-btn {
  background: var(--amber); color: var(--bg);
  border: none; border-radius: 5px; padding: 6px 16px;
  font-size: 10px; font-family: 'DM Mono', monospace;
  letter-spacing: .08em; cursor: default; flex-shrink: 0;
}
.app-tabs { display: flex; border-bottom: 1px solid var(--border); background: var(--bg); }
.app-tab  {
  flex: 1; text-align: center; padding: 11px;
  font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--mid); border-bottom: 2px solid transparent; font-family: 'DM Mono', monospace;
}
.app-tab.active { color: var(--amber); border-bottom-color: var(--amber); font-weight: 500; }
.app-tl {
  background: var(--bg); height: 64px;
  position: relative; overflow: hidden; border-bottom: 1px solid var(--border);
}
.tl-waveform {
  position: absolute; inset: 0;
  display: flex; align-items: center; gap: 1.5px; padding: 0 2px; opacity: .22;
}
.tl-waveform span { flex: 1; border-radius: 1px; background: var(--border); }
.tl-band { position: absolute; top: 0; bottom: 0; }
.tl-name {
  position: absolute; bottom: 6px;
  font-size: 8px; letter-spacing: .1em; text-transform: uppercase;
  font-family: 'DM Mono', monospace; opacity: .85;
}
.tl-head {
  position: absolute; top: 0; bottom: 0; width: 2px; left: 32%;
  background: rgba(255,255,255,.6); box-shadow: 0 0 8px rgba(255,255,255,.22);
}
.tl-bpm {
  position: absolute; top: 8px; right: 10px;
  font-size: 9px; color: var(--amber);
  background: rgba(232,168,56,.1); border: 1px solid rgba(232,168,56,.2);
  border-radius: 3px; padding: 2px 7px; font-family: 'DM Mono', monospace;
}
.app-cards { padding: 12px 14px 4px; display: flex; flex-direction: column; gap: 8px; }
.acard {
  border: 2px solid var(--border); border-radius: 9px;
  background: var(--surface); overflow: hidden;
}
.acard.glow { border-color: rgba(232,168,56,.3); }
.acard-h { padding: 12px 14px; display: flex; align-items: center; gap: 11px; }

/* Colour chip */
.chip {
  width: 32px; height: 32px; border-radius: 7px;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}

/*
 * EQ bars inside chip.
 * Add class "live" to animate — used on the active card in the mockup.
 * Bell-curve heights: short · mid · tall · peak · tall · mid · short
 */
.eq-mini { display: flex; align-items: flex-end; gap: 2px; height: 14px; }
.eq-mini span { width: 2px; background: rgba(0,0,0,.55); border-radius: 1px; }

.eq-mini.live span {
  transform-origin: bottom;
  animation: eqBar 1.1s ease-in-out infinite alternate;
}
.eq-mini.live span:nth-child(1) { height: 4px;  animation-duration: 1.05s; animation-delay: 0s;   }
.eq-mini.live span:nth-child(2) { height: 7px;  animation-duration: 0.90s; animation-delay: .12s; }
.eq-mini.live span:nth-child(3) { height: 10px; animation-duration: 1.20s; animation-delay: .06s; }
.eq-mini.live span:nth-child(4) { height: 14px; animation-duration: 0.80s; animation-delay: .18s; }
.eq-mini.live span:nth-child(5) { height: 10px; animation-duration: 1.10s; animation-delay: .09s; }
.eq-mini.live span:nth-child(6) { height: 7px;  animation-duration: 0.95s; animation-delay: .15s; }
.eq-mini.live span:nth-child(7) { height: 4px;  animation-duration: 1.00s; animation-delay: .03s; }
@keyframes eqBar {
  from { transform: scaleY(.22); }
  to   { transform: scaleY(1);   }
}

.card-name { font-family: 'Playfair Display', serif; font-size: 15px; color: var(--mid); flex: 1; }
.card-name.lit { color: var(--cream); }
.card-bars {
  font-size: 10px; color: var(--ghost);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 4px; padding: 4px 9px; font-family: 'DM Mono', monospace;
}
.acard-body { padding: 10px 14px 14px; background: var(--card); border-top: 1px solid rgba(232,168,56,.07); }
.lyric { font-family: 'Playfair Display', serif; font-size: 13px; color: var(--border); margin-bottom: 6px; line-height: 1.6; }
.lyric.lit { color: var(--mid); }
.card-foot { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.ftag { font-size: 9px; letter-spacing: .06em; border-radius: 3px; padding: 3px 9px; border: 1px solid; font-family: 'DM Mono', monospace; }

/* Features */
.features { border-top: 1px solid var(--border); background: var(--surface); padding: clamp(80px,10vw,140px) clamp(24px,7vw,96px); }
.feat-inner { max-width: 1280px; margin: 0 auto; }
.feat-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; background: var(--border); gap: 1px;
  margin-top: clamp(48px,6vw,80px);
}
@media (max-width: 860px) { .feat-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .feat-grid { grid-template-columns: 1fr; } }
.feat { background: var(--surface); padding: clamp(28px,4vw,44px) clamp(24px,3vw,40px); transition: background .2s; }
.feat:hover { background: var(--card); }
.feat-icon { font-size: 26px; margin-bottom: 18px; display: block; }
.feat-name { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--amber); margin-bottom: 10px; }
.feat-body { font-size: 13px; color: var(--mid); line-height: 1.95; }

/* Who it's for */
.who { padding: clamp(80px,10vw,140px) clamp(24px,7vw,96px); max-width: 1280px; margin: 0 auto; }
.who-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 40px; }
.who-pill {
  display: flex; align-items: center; gap: 9px;
  border: 1px solid var(--border); border-radius: 100px;
  padding: 10px 22px; font-size: 13px; color: var(--mid);
  transition: all .2s; cursor: default;
}
.who-pill:hover { border-color: var(--amber); color: var(--amber); background: rgba(232,168,56,.04); }
.who-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--amber); opacity: .4; flex-shrink: 0; }

/* Final CTA */
.cta-final {
  border-top: 1px solid var(--border); background: var(--surface); text-align: center;
  padding: clamp(100px,14vw,200px) clamp(24px,7vw,96px);
  position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(232,168,56,.05) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final-inner { position: relative; }
.cta-h { font-family: 'Playfair Display', serif; font-size: clamp(40px,8vw,100px); font-weight: 400; line-height: 1.0; letter-spacing: -.03em; margin-bottom: 20px; }
.cta-h em { font-style: italic; color: var(--amber); }
.cta-sub  { font-size: 14px; color: var(--mid); margin-bottom: 52px; letter-spacing: .04em; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 24px; font-size: 10px; color: var(--ghost); letter-spacing: .08em; }


/* ═══════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════ */

.page { max-width: 780px; margin: 0 auto; padding: 0 28px 100px; }
.about-hero { padding: 140px 0 72px; position: relative; }
.hero-lead  { font-size: clamp(14px,1.8vw,16px); color: var(--mid); line-height: 2; max-width: 560px; }

/* Photo blocks share base styles */
.photo-hero, .photo-wide, .photo-square {
  background: var(--card); border: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; overflow: hidden; cursor: pointer; transition: border-color .2s;
}
.photo-hero:hover, .photo-wide:hover, .photo-square:hover { border-color: var(--amber); }
.photo-hero   { width: 100%; aspect-ratio: 16/7; border-radius: 16px; margin: 48px 0; position: relative; }
.photo-wide   { width: 100%; aspect-ratio: 16/9; border-radius: 12px; margin: 32px 0; }
.photo-square { aspect-ratio: 1; border-radius: 12px; }
.daisey-hero  { width: 100%; }
.photo-label  { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--ghost); text-align: center; line-height: 1.8; }
.photo-icon   { opacity: .2; }
.photo-grid-2 { display: grid; grid-template-columns: 1fr 1fr;     gap: 12px; margin: 32px 0; }
.photo-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin: 32px 0; }

.section-rule { border: none; border-top: 1px solid var(--border); margin: 64px 0; }

.pull-quote {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: clamp(20px,3vw,26px); color: var(--cream); line-height: 1.55;
  padding: 32px 32px 32px 28px; border-left: 2px solid var(--amber);
  margin: 40px 0; background: rgba(232,168,56,.03); border-radius: 0 8px 8px 0;
}

/* Story timeline */
.story-timeline { margin: 48px 0; display: flex; flex-direction: column; }
.story-beat { display: grid; grid-template-columns: 80px 1fr; gap: 0 24px; position: relative; }
.story-beat:not(:last-child)::after {
  content: ''; position: absolute; left: 39px; top: 28px; bottom: -24px; width: 1px;
  background: linear-gradient(to bottom, var(--border), transparent);
}
.story-beat-year {
  padding-top: 4px; font-size: 11px; letter-spacing: .08em; color: var(--amber);
  text-align: right; padding-right: 16px; border-right: 1px solid var(--border); position: relative;
}
.story-beat-year::after {
  content: ''; position: absolute; right: -4px; top: 8px;
  width: 7px; height: 7px; background: var(--bg); border: 1px solid var(--amber); border-radius: 50%;
}
.story-beat-content { padding-bottom: 40px; padding-left: 8px; }
.story-beat-title   { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 400; margin-bottom: 8px; line-height: 1.3; }
.story-beat-body    { font-size: 13px; color: var(--dim); line-height: 1.9; margin-bottom: 0; }

/* Pills */
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border); border-radius: 20px;
  padding: 6px 14px; font-size: 11px; color: var(--mid);
  letter-spacing: .04em; transition: all .2s;
}
.pill:hover { border-color: var(--amber); color: var(--amber); }
.pill span  { color: var(--amber); }

/* FAQ */
.faq { margin-top: 48px; }
.faq-item { border-top: 1px solid var(--border); padding: 28px 0; cursor: pointer; }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  font-family: 'Playfair Display', serif; font-size: clamp(17px,2.2vw,20px);
  color: var(--cream); margin-bottom: 0; font-weight: 400;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; line-height: 1.4;
}
.faq-toggle {
  flex-shrink: 0; width: 20px; height: 20px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--ghost); transition: transform .25s ease, border-color .2s, color .2s; line-height: 1;
}
.faq-item.open .faq-toggle { border-color: var(--amber); color: var(--amber); transform: rotate(45deg); }
.faq-a-wrap { overflow: hidden; max-height: 0; transition: max-height 0.3s ease; }
.faq-item.open .faq-a-wrap { max-height: 800px; }
.faq-a { font-size: 14px; color: var(--dim); line-height: 2.1; margin-top: 16px; margin-bottom: 0; }
.faq-a a { color: var(--amber); }
.faq-a a:hover { text-decoration: underline; }

/* CTA box */
.cta-box {
  background: linear-gradient(135deg, rgba(232,168,56,.06) 0%, rgba(232,168,56,.02) 100%);
  border: 1px solid rgba(232,168,56,.15); border-radius: 16px; padding: 56px 40px;
  text-align: center; margin-top: 80px; position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
  width: 300px; height: 200px;
  background: radial-gradient(ellipse, rgba(232,168,56,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box h2 { font-size: clamp(28px,4vw,42px); margin-bottom: 14px; }
.cta-box p  { max-width: 380px; margin: 0 auto 32px; font-size: 14px; }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 640px) {
  .page         { padding: 0 20px 80px; }
  .about-hero   { padding: 110px 0 56px; }
  .photo-grid-2 { grid-template-columns: 1fr; }
  .photo-grid-3 { grid-template-columns: 1fr 1fr; }
  .cta-box      { padding: 40px 24px; }
  .story-beat   { grid-template-columns: 56px 1fr; gap: 0 16px; }
  footer        { flex-direction: column; }
  .footer-links, .foot-links { justify-content: flex-start; }
}

/* ── PRICING TABLE ──────────────────────────────────────────────────────── */
.pricing-table {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin: 20px 0 8px;
}
@media (max-width: 680px) {
  .pricing-table { grid-template-columns: 1fr; gap: 10px; }
}
.pricing-col {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 16px 18px;
  background: var(--surface);
  position: relative;
}
.pricing-featured {
  border-color: var(--amber);
  background: var(--card);
}
.pricing-soon {
  opacity: 0.6;
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--bg);
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .08em;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-tier {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .12em;
  color: var(--text-dim);
  margin-bottom: 10px;
  margin-top: 6px;
}
.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-featured .pricing-price { color: var(--amber); }
.pricing-price span {
  font-size: 14px;
  font-family: 'DM Mono', monospace;
  color: var(--text-dim);
}
.pricing-sub {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.pricing-features li {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--text-mid);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 7px;
}
.pricing-features li::before { font-size: 13px; flex-shrink: 0; }
.pricing-features li.yes::before { content: "✓"; color: var(--amber); }
.pricing-features li.no::before { content: "×"; color: var(--text-ghost); }
.pricing-features li.no { color: var(--text-ghost); }
.pricing-cta {
  display: block;
  text-align: center;
  background: var(--amber);
  color: #000;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .06em;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity .2s;
  margin-top: auto;
}
.pricing-cta:hover { opacity: 0.85; }
.faq-a a.pricing-cta { color: #000; }
.faq-a a.pricing-cta:hover { text-decoration: none; }
.pricing-soon-badge {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--text-ghost);
  letter-spacing: .06em;
  text-align: center;
  padding-top: 4px;
}
