/* ============================================================
   COLORVERSE - paint-your-own 3D art studio (Singapore)
   Recreation build. Warm espresso + paint-splash palette.
   ============================================================ */

:root {
  /* paper + ink (no pure white or black) */
  --paper:    #f6efe2;
  --paper-2:  #efe5d3;
  --paper-3:  #e8dcc4;
  --card:     #fbf6ec;
  --ink:      #2a1c12;
  --ink-2:    #41301f;
  --muted:    #6a5642;
  --line:     #e0d4bd;
  --line-2:   #d2c3a6;

  /* paint splashes (pulled from the artwork photos) */
  --coral:  #ec5734;   /* pagoda red-orange */
  --cobalt: #2f5ed0;   /* ocean blue */
  --sun:    #f2b333;   /* starry-night yellow */
  --teal:   #1d9b86;   /* green field */
  --grape:  #7a4cc0;   /* succulent purple */

  --shadow-sm: 0 2px 10px rgba(42, 28, 18, .07);
  --shadow:    0 18px 50px -22px rgba(42, 28, 18, .42);
  --shadow-lg: 0 40px 80px -30px rgba(42, 28, 18, .5);

  --r-sm: 10px;
  --r:    18px;
  --r-lg: 28px;

  --maxw: 1240px;
  --display: 'Bricolage Grotesque', 'DM Sans', system-ui, sans-serif;
  --body: 'DM Sans', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--ink);
}

.wrap { width: min(100% - 44px, var(--maxw)); margin-inline: auto; }

.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }

/* paint-color helpers */
.c-coral  { color: var(--coral); }
.c-cobalt { color: var(--cobalt); }
.c-sun    { color: var(--sun); }
.c-teal   { color: var(--teal); }
.c-grape  { color: var(--grape); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--display);
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: .005em;
  padding: .92em 1.5em;
  border-radius: 100px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--coral); color: #fff5ef;
  box-shadow: 0 10px 24px -10px rgba(236, 87, 52, .8);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(236, 87, 52, .9); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(42,28,18,.04); }
.btn-lg { font-size: 1.06rem; padding: 1.05em 1.9em; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.nav.scrolled { border-color: var(--line); background: color-mix(in srgb, var(--paper) 94%, transparent); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; height: 78px;
}
.nav-logo img { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-weight: 600; font-size: .96rem; color: var(--ink-2);
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--coral); border-radius: 2px; transition: width .22s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2.4px; background: var(--ink); border-radius: 2px; margin: 5px 0; transition: .25s; }

/* ============================================================
   TOP MARQUEE - "Perfection is Overrated"
   ============================================================ */
.ticker {
  background: var(--ink); color: var(--paper);
  overflow: hidden; padding: 11px 0; border-bottom: 1px solid var(--ink);
}
.ticker-track { display: flex; gap: 0; width: max-content; animation: ticker 32s linear infinite; }
.ticker-track span {
  font-family: var(--display); font-weight: 700; font-size: .92rem;
  letter-spacing: .14em; text-transform: uppercase; padding: 0 26px;
  display: inline-flex; align-items: center; gap: 26px;
}
.ticker-track span::after { content: '✺'; color: var(--coral); font-size: .8em; }
@keyframes ticker { to { transform: translateX(-50%); } }
.ticker:hover .ticker-track { animation-play-state: paused; }

/* ============================================================
   HERO - type dominant + photo strip
   ============================================================ */
.hero { padding: clamp(46px, 7vw, 86px) 0 0; position: relative; }
.hero-head { text-align: center; max-width: 960px; margin-inline: auto; position: relative; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display); font-weight: 700; font-size: .82rem;
  letter-spacing: .04em; color: var(--muted);
  background: var(--card); border: 1px solid var(--line);
  padding: 7px 15px; border-radius: 100px; margin-bottom: 26px;
  box-shadow: var(--shadow-sm);
}
.hero-kicker b { color: var(--ink); font-weight: 800; }
.hero-kicker .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }

.hero h1 {
  font-size: clamp(2.9rem, 9.5vw, 7.6rem);
  line-height: .92;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.hero h1 .w { display: inline-block; }
.hero h1 .t-lead { color: var(--ink); }
.hero h1 .t-accent {
  color: var(--coral);
  position: relative;
}
/* hand-scribble underline under the accent line */
.hero h1 .t-accent::after {
  content: ''; position: absolute; left: -2%; right: -2%; bottom: .02em; height: .16em;
  background: var(--sun); border-radius: 100px; z-index: -1; transform: rotate(-1.2deg);
  opacity: .85;
}
.hero-sub {
  font-size: clamp(1.05rem, 2.1vw, 1.32rem);
  color: var(--ink-2); max-width: 620px; margin: 28px auto 0; line-height: 1.5;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.hero-meta {
  display: flex; gap: 26px; justify-content: center; flex-wrap: wrap;
  margin-top: 28px; color: var(--muted); font-size: .92rem; font-weight: 600;
}
.hero-meta b { color: var(--ink); }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta i { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }

/* floating palette doodles */
.doodle { position: absolute; pointer-events: none; opacity: .9; filter: drop-shadow(0 12px 18px rgba(42,28,18,.16)); will-change: transform; }
.doodle.d1 { width: 116px; left: 2%; top: 10%; --rot: -12deg; }
.doodle.d2 { width: 104px; right: 1%; top: 26%; --rot: 10deg; }
.doodle { animation: doodle-in .8s cubic-bezier(.2,.8,.2,1) .5s both, doodle-float 6.5s ease-in-out 1.3s infinite; }
.doodle.d2 { animation-delay: .65s, 1.6s; animation-duration: .8s, 7.5s; }
@media (max-width: 900px){ .doodle { display: none; } }

/* ---------- hero entrance animation ---------- */
@keyframes hero-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes hero-pop {
  0%   { opacity: 0; transform: translateY(34px) scale(.9); }
  60%  { opacity: 1; transform: translateY(0) scale(1.035); }
  100% { opacity: 1; transform: none; }
}
@keyframes underline-grow {
  from { transform: rotate(-1.2deg) scaleX(0); }
  to   { transform: rotate(-1.2deg) scaleX(1); }
}
@keyframes doodle-in {
  from { opacity: 0; transform: translateY(-18px) rotate(var(--rot)) scale(.6); }
  to   { opacity: .9; transform: translateY(0) rotate(var(--rot)) scale(1); }
}
@keyframes doodle-float {
  0%, 100% { transform: translateY(0) rotate(var(--rot)); }
  50%      { transform: translateY(-14px) rotate(calc(var(--rot) + 4deg)); }
}

.hero-kicker { animation: hero-up .7s cubic-bezier(.2,.8,.2,1) .08s both; }
.hero h1 .t-lead { animation: hero-up .75s cubic-bezier(.2,.8,.2,1) .22s both; }
.hero h1 .t-accent { animation: hero-pop .85s cubic-bezier(.2,.8,.2,1) .42s both; }
.hero h1 .t-accent::after { transform: rotate(-1.2deg) scaleX(0); transform-origin: left center; animation: underline-grow .75s cubic-bezier(.5,0,.2,1) 1.05s both; }
.hero-sub { animation: hero-up .8s cubic-bezier(.2,.8,.2,1) .62s both; }
.hero-actions { animation: hero-up .8s cubic-bezier(.2,.8,.2,1) .76s both; }
.hero-meta { animation: hero-up .8s cubic-bezier(.2,.8,.2,1) .9s both; }
.hero-strip { animation: hero-up 1s ease 1.05s both; }
.hero-actions .btn-primary { transition: transform .18s ease, box-shadow .25s ease; }

/* hero photo strip (marquee, two rows) */
.hero-strip { margin-top: clamp(48px, 6vw, 78px); overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #2a1c12 5%, #2a1c12 95%, transparent); mask-image: linear-gradient(90deg, transparent, #2a1c12 5%, #2a1c12 95%, transparent); }
/* No flex `gap` here: gap adds N-1 gaps across the duplicated track, which throws
   the translateX(-50%) loop off by half a gap and makes it stutter. Spacing lives
   on each figure's margin-right instead, so the two halves tile seamlessly. */
.strip-row { display: flex; width: max-content; padding: 8px 0; }
.strip-row.r1 { animation: slide-l 46s linear infinite; }
.strip-row.r2 { animation: slide-r 52s linear infinite; margin-top: 16px; }
.hero-strip:hover .strip-row { animation-play-state: paused; }
.strip-row figure { margin: 0 16px 0 0; flex: 0 0 auto; width: clamp(220px, 24vw, 330px); aspect-ratio: 4 / 3; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); background: var(--paper-2); border: 4px solid var(--card); }
.strip-row figure img { width: 100%; height: 100%; object-fit: cover; }
@keyframes slide-l { to { transform: translateX(-50%); } }
@keyframes slide-r { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ============================================================
   CINEMATIC VIDEO — full-bleed B-roll band
   ============================================================ */
.vbroll { position: relative; height: clamp(440px, 72vh, 720px); overflow: hidden; background: var(--ink); }
.vbroll video { width: 100%; height: 100%; object-fit: cover; display: block; }
.vbroll .vb-overlay {
  position: absolute; inset: 0; z-index: 2; display: grid; align-content: center;
  justify-items: center; text-align: center; padding: 28px;
  background: linear-gradient(rgba(42,28,18,.18), rgba(42,28,18,.5));
}
.vbroll .vb-overlay h2 {
  color: var(--paper); font-size: clamp(1.9rem, 4.5vw, 3.4rem); line-height: 1.02;
  max-width: 20ch; margin: 0 auto; text-shadow: 0 3px 22px rgba(0,0,0,.55);
}
.vbroll .vb-overlay p {
  color: #f1ead9; font-size: clamp(1rem, 2vw, 1.18rem); margin: 16px auto 0; max-width: 46ch;
  text-shadow: 0 2px 14px rgba(0,0,0,.5);
}
.vbroll .vb-overlay .btn { margin-top: 24px; }

/* ============================================================
   CLIENT STORY — portrait video + copy, left/right split
   ============================================================ */
.vstory { background: var(--ink); color: var(--paper); }
.vstory-grid {
  display: grid; grid-template-columns: clamp(300px, 31vw, 410px) 1fr;
  gap: clamp(34px, 5vw, 80px); align-items: center;
  padding: clamp(64px, 9vw, 124px) 0;
}
.vstory-media {
  position: relative;
  aspect-ratio: 9 / 16; border-radius: var(--r-lg); overflow: hidden;
  background: #000; box-shadow: var(--shadow);
}
.vstory-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
/* native fullscreen: letterbox the vertical video (black bars) instead of cropping it.
   Separate rules so an unsupported pseudo-class can't invalidate the others. */
.vstory-media video:fullscreen { object-fit: contain; width: 100%; height: 100%; }
.vstory-media video:-webkit-full-screen { object-fit: contain; width: 100%; height: 100%; }
.vstory-media video:-moz-full-screen { object-fit: contain; width: 100%; height: 100%; }
.vstory-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(246,239,226,.95); color: var(--ink);
  font-family: var(--display); font-weight: 800; font-size: .8rem;
  padding: 7px 13px 7px 9px; border-radius: 100px;
  box-shadow: 0 4px 14px rgba(0,0,0,.28);
}
.vstory-tag img { width: 18px; height: 18px; }
.vstory-copy h2 {
  color: var(--paper); font-size: clamp(1.9rem, 3.6vw, 3.2rem);
  line-height: 1.04; max-width: 18ch;
}
.vstory-copy p {
  color: #ece2cf; font-size: clamp(1rem, 1.7vw, 1.18rem);
  margin: 18px 0 30px; max-width: 46ch;
}
@media (max-width: 820px){
  .vstory-grid {
    grid-template-columns: 1fr; justify-items: center; text-align: center;
    gap: 30px; padding: clamp(44px, 9vw, 64px) 0;
  }
  .vstory-media { width: min(330px, 82vw); }
  .vstory-copy h2, .vstory-copy p { margin-left: auto; margin-right: auto; }
}

/* ============================================================
   3D PREVIEW / showcase band
   ============================================================ */
.showcase { background: var(--ink); color: var(--paper); border-radius: 0; }
.showcase h2, .showcase h3 { color: var(--paper); }
.showcase-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(34px, 5vw, 72px);
  align-items: center;
}
.showcase-copy .eyebrow-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 700; font-size: .8rem;
  background: rgba(246,239,226,.1); color: var(--sun);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 22px;
  border: 1px solid rgba(246,239,226,.16);
}
.showcase-copy h2 { font-size: clamp(2.2rem, 4.6vw, 3.7rem); line-height: 1.0; }
.showcase-copy h2 em { font-style: normal; color: var(--coral); }
.showcase-copy p { color: #e7dcc8; font-size: 1.1rem; max-width: 50ch; margin: 24px 0 0; }
.showcase-points { list-style: none; padding: 0; margin: 30px 0 34px; display: grid; gap: 14px; }
.showcase-points li { display: flex; gap: 13px; align-items: flex-start; color: #ece2cf; font-weight: 500; }
.showcase-points .tick { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: .85rem; color: var(--ink); font-weight: 800; margin-top: 1px; }

.showcase-art { position: relative; height: clamp(380px, 50vw, 560px); }
.showcase-art figure { position: absolute; margin: 0; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-lg); border: 5px solid var(--card); }
.showcase-art figure img { width: 100%; height: 100%; object-fit: cover; }
.showcase-art .a1 { width: 58%; aspect-ratio: 3/4; left: 0; top: 4%; z-index: 2; transform: rotate(-3deg); }
.showcase-art .a2 { width: 52%; aspect-ratio: 3/4; right: 2%; top: 0; z-index: 3; transform: rotate(3.5deg); }
.showcase-art .a3 { width: 56%; aspect-ratio: 4/3; right: 6%; bottom: 0; z-index: 4; transform: rotate(-2deg); }
.showcase-tag {
  position: absolute; z-index: 5; bottom: 8%; left: -2%;
  background: var(--sun); color: var(--ink); font-family: var(--display);
  font-weight: 800; font-size: .92rem; padding: 9px 16px; border-radius: 100px;
  box-shadow: var(--shadow); transform: rotate(-4deg);
}

/* ============================================================
   SECTION HEADERS (no AI-slop eyebrow)
   ============================================================ */
.s-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.s-head.center { margin-inline: auto; text-align: center; }
.s-head h2 { font-size: clamp(2.1rem, 5vw, 3.5rem); line-height: 1.0; }
.s-head p { color: var(--muted); font-size: 1.12rem; margin: 18px 0 0; }
.s-num {
  font-family: var(--display); font-weight: 800; font-size: .9rem;
  color: var(--coral); letter-spacing: .02em; margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 10px;
}
.s-num::before { content: ''; width: 26px; height: 3px; background: var(--coral); border-radius: 3px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 36px); }
.step {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 34px 30px 32px;
  box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step .num {
  font-family: var(--display); font-weight: 800; font-size: 3.4rem;
  line-height: 1; -webkit-text-stroke: 2px var(--ink); color: transparent;
  opacity: .14; position: absolute; top: 18px; right: 24px;
}
.step .icon { width: 78px; height: 78px; display: grid; place-items: center; margin-bottom: 22px; }
.step .icon img { width: 100%; height: 100%; object-fit: contain; }
.step h3 { font-size: 1.4rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 1rem; margin: 0; }
.step:nth-child(2) { transform: translateY(18px); }
.step:nth-child(2):hover { transform: translateY(12px); }
@media (max-width: 820px){ .step:nth-child(2){ transform:none; } .step:nth-child(2):hover{ transform:translateY(-6px);} }
.step .accent { position: absolute; left: 0; top: 28px; bottom: 28px; width: 4px; border-radius: 4px; }

/* ============================================================
   TIERS
   ============================================================ */
.tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.tier {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 26px 28px; display: flex; flex-direction: column;
  position: relative; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .2s ease;
}
.tier:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.tier-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.tier .mark { width: 56px; height: 56px; }
.tier .mark img { width: 100%; height: 100%; object-fit: contain; }
.tier h3 { font-size: 1.5rem; letter-spacing: 0; }
.tier .blurb { color: var(--muted); font-size: .96rem; margin: 6px 0 20px; min-height: 44px; }
.tier .price { font-family: var(--display); font-weight: 800; font-size: 2.5rem; line-height: 1; color: var(--ink); }
.tier .price small { font-size: .95rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.tier .dur { font-weight: 600; font-size: .9rem; color: var(--ink-2); margin-top: 8px; display: inline-flex; gap: 8px; align-items: center; }
.tier ul { list-style: none; padding: 18px 0 0; margin: 18px 0 24px; border-top: 1px solid var(--line); display: grid; gap: 11px; flex: 1; }
.tier ul li { display: flex; gap: 10px; font-size: .95rem; color: var(--ink-2); align-items: flex-start; }
.tier ul li::before { content: '✓'; color: var(--teal); font-weight: 800; flex: 0 0 auto; }
.tier .btn { width: 100%; justify-content: center; }
.tier.featured { border-color: var(--coral); box-shadow: 0 26px 60px -28px rgba(236,87,52,.55); }
.tier-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--coral); color: #fff3ee; font-family: var(--display); font-weight: 800;
  font-size: .76rem; letter-spacing: .03em; padding: 6px 16px; border-radius: 100px;
  white-space: nowrap; box-shadow: var(--shadow-sm);
}
.tier-rule { color: var(--muted); font-size: .92rem; text-align: center; margin-top: 26px; }

/* ============================================================
   GALLERY (editorial mosaic)
   ============================================================ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px; gap: 16px;
}
.gallery-grid figure {
  margin: 0; border-radius: var(--r); overflow: hidden; position: relative;
  box-shadow: var(--shadow-sm); cursor: pointer; background: var(--paper-2);
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figcaption {
  position: absolute; inset: auto 0 0 0; padding: 14px 16px;
  background: linear-gradient(transparent, rgba(42,28,18,.78));
  color: var(--paper); font-family: var(--display); font-weight: 700; font-size: .92rem;
  opacity: 0; transform: translateY(8px); transition: .3s;
}
.gallery-grid figure:hover figcaption { opacity: 1; transform: none; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
.g-big  { grid-column: span 2; grid-row: span 2; }

/* ============================================================
   PROOF / testimonials
   ============================================================ */
.proof { background: var(--paper-2); }
.proof-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: clamp(40px, 5vw, 60px); }
.proof-band figure { margin: 0; border-radius: var(--r); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-sm); background: var(--paper-3); }
.proof-band figure:nth-child(2) { transform: translateY(-22px); }
.proof-band img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 760px){ .proof-band figure:nth-child(2){ transform:none; } }

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px 30px; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.quote .stars { color: var(--sun); font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 16px; }
.quote .mark { font-family: var(--display); font-size: 3.4rem; line-height: .4; color: var(--coral); height: 24px; }
.quote p { font-size: 1.06rem; color: var(--ink-2); line-height: 1.55; margin: 14px 0 22px; flex: 1; }
.quote .by { display: flex; align-items: center; gap: 11px; font-weight: 700; color: var(--ink); }
.quote .by i { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; color: var(--paper); font-family: var(--display); font-weight: 800; font-size: .85rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 820px; margin-inline: auto; }
.faq {
  border: 1px solid var(--line); border-radius: var(--r); background: var(--card);
  margin-bottom: 12px; overflow: hidden; box-shadow: var(--shadow-sm);
}
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 26px;
  font-family: var(--display); font-weight: 700; font-size: 1.12rem; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pl { flex: 0 0 auto; width: 26px; height: 26px; position: relative; transition: transform .3s; }
.faq summary .pl::before, .faq summary .pl::after { content: ''; position: absolute; background: var(--coral); border-radius: 2px; }
.faq summary .pl::before { left: 50%; top: 4px; width: 2.6px; height: 18px; transform: translateX(-50%); }
.faq summary .pl::after  { top: 50%; left: 4px; height: 2.6px; width: 18px; transform: translateY(-50%); }
.faq[open] summary .pl { transform: rotate(135deg); }
.faq .faq-body { padding: 0 26px 24px; color: var(--muted); font-size: 1.02rem; line-height: 1.6; }

/* ============================================================
   CLOSING CTA
   ============================================================ */
.cta {
  text-align: center; background:
    radial-gradient(80% 130% at 50% -10%, color-mix(in srgb, var(--sun) 26%, var(--paper)) 0%, var(--paper) 60%);
}
.cta h2 {
  font-size: clamp(2.6rem, 8vw, 6rem); text-transform: uppercase; line-height: .92;
}
.cta h2 .over { color: var(--coral); }
.cta p { color: var(--ink-2); font-size: 1.2rem; max-width: 520px; margin: 24px auto 0; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.cta-contacts { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; margin-top: 36px; font-weight: 600; }
.cta-contacts a { display: inline-flex; align-items: center; gap: 9px; color: var(--ink-2); }
.cta-contacts a:hover { color: var(--coral); }
.cta-contacts img { width: 22px; height: 22px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: #d9ccb6; padding: 64px 0 30px; }
.footer a { color: #d9ccb6; }
.footer a:hover { color: var(--paper); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(246,239,226,.12); }
.footer-brand img { height: 42px; filter: brightness(0) invert(1) sepia(.2); margin-bottom: 18px; }
.footer-brand p { max-width: 34ch; color: #c2b39a; }
.footer-col h4 { color: var(--paper); font-size: 1rem; margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; margin-bottom: 11px; font-size: .96rem; color: #c2b39a; }
.footer-social { display: flex; gap: 12px; margin-top: 4px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(246,239,226,.08); display: grid; place-items: center; transition: background .2s; }
.footer-social a:hover { background: rgba(246,239,226,.18); }
.footer-social img { width: 20px; height: 20px; filter: brightness(0) invert(1); opacity: .85; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 24px; font-size: .86rem; color: #a4937a; }
.aphyx-credit { flex-basis: 100%; text-align: center; margin-top: 14px; font-size: .84rem; color: #9c8b72; }
.aphyx-credit a { color: var(--sun); font-weight: 700; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lb { position: fixed; inset: 0; z-index: 200; background: rgba(28,18,11,.92); display: none; place-items: center; padding: 30px; cursor: zoom-out; }
.lb.open { display: grid; }
.lb img { max-width: 92vw; max-height: 88vh; border-radius: var(--r); box-shadow: var(--shadow-lg); }
.lb-close { position: absolute; top: 22px; right: 26px; color: var(--paper); font-size: 2rem; background: none; border: 0; cursor: pointer; line-height: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px){
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-art { height: 440px; max-width: 520px; margin-inline: auto; width: 100%; }
  .tiers { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px){
  .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  /* Panel is always rendered on mobile so it can animate; the closed state
     hides it via opacity/visibility (display can't be transitioned). */
  .nav .nav-links {
    display: flex; flex-direction: column; gap: 4px; position: absolute; top: 78px; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 18px 22px 24px;
    opacity: 0; visibility: hidden; transform: translateY(-12px); pointer-events: none;
    transition: opacity .28s ease, transform .28s ease, visibility .28s;
  }
  .nav.open .nav-links {
    opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
  }
  .nav .nav-links a { padding: 12px 0; font-size: 1.1rem; border-bottom: 1px solid var(--line); }
  /* burger morphs into an X when open (bar centers are 7.4px apart) */
  .nav.open .nav-toggle span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
  .nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }
  .steps { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .proof-band { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  body { font-size: 16px; }
  .tiers { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .g-big { grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-meta { gap: 14px 20px; }
}

/* iOS: prevent input zoom (kept for any future form) */
@media (max-width: 768px){
  input, select, textarea { font-size: 16px !important; }
}

@media (prefers-reduced-motion: reduce){
  .ticker-track, .strip-row { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-kicker, .hero h1 .t-lead, .hero h1 .t-accent,
  .hero-sub, .hero-actions, .hero-meta, .hero-strip, .doodle {
    animation: none !important; opacity: 1 !important; transform: none !important;
  }
  .hero h1 .t-accent::after { animation: none !important; transform: rotate(-1.2deg) scaleX(1) !important; }
  html { scroll-behavior: auto; }
}
