/* ============================================================
   PHARAOH STUDIO v3 — seamless dark-luxury system
   · no hard borders: gradient-masked edges + mouse-tracked spotlight
   · global aurora atmosphere · shimmer gradient type
   · motion: transform/opacity/filter-on-entry only · reduced-motion safe
   ============================================================ */
:root {
  --bg: #08090e;
  --text: #f2f4f9;
  --muted: #a3abc0;
  --faint: #69718a;
  --gold: #f7d774;
  --gold-2: #c8932f;
  --grad-gold: linear-gradient(120deg, #f7d774 0%, #c8932f 50%, #f7d774 100%);
  --card: rgba(255, 255, 255, 0.022);
  --card-edge: rgba(255, 255, 255, 0.055);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --r: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
body > * { position: relative; z-index: 1; }
h1, h2, h3, .logo, .step-n, .num b { font-family: 'Sora', sans-serif; }
.serif { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 600; }
em { font-style: normal; }
a { color: inherit; }
::selection { background: rgba(247, 215, 116, 0.25); }

/* gradient text + slow shimmer */
.grad {
  background: var(--grad-gold);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.shimmer { animation: shimmer 7s ease-in-out infinite; }
@keyframes shimmer { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* ---------- aurora atmosphere ---------- */
.aurora { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.aurora span { position: absolute; border-radius: 50%; filter: blur(110px); opacity: 0.13; will-change: transform; }
.aurora span:nth-child(1) { width: 56vw; height: 56vw; background: #c8932f; top: -22vw; right: -16vw; animation: drift1 30s ease-in-out infinite alternate; }
.aurora span:nth-child(2) { width: 46vw; height: 46vw; background: #20335f; bottom: -18vw; left: -14vw; animation: drift2 36s ease-in-out infinite alternate; }
.aurora span:nth-child(3) { width: 34vw; height: 34vw; background: #4d2a73; top: 40%; left: 58%; animation: drift3 42s ease-in-out infinite alternate; opacity: 0.09; }
@keyframes drift1 { to { transform: translate(-9vw, 7vw) scale(1.12); } }
@keyframes drift2 { to { transform: translate(7vw, -6vw) scale(1.08); } }
@keyframes drift3 { to { transform: translate(-6vw, -8vw) scale(1.15); } }

/* film-grain texture — the quiet luxury layer */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 90; pointer-events: none; opacity: 0.032;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/><feColorMatrix type='saturate' values='0'/></filter><rect width='160' height='160' filter='url(%23n)' opacity='0.6'/></svg>");
}

/* ---------- lite mode (weak hardware) ---------- */
body.lite .aurora { display: none; }
body.lite::after { display: none; } /* grain */
body.lite .glow-card, body.lite .btn.ghost, body.lite .nav.scrolled { backdrop-filter: none; }
body.lite .glow-card::after { display: none; } /* spotlight wash */

/* ---------- a11y ---------- */
.skip { position: fixed; top: -60px; left: 16px; z-index: 200; background: var(--gold); color: #1a1206; padding: 10px 16px; border-radius: 10px; font-weight: 600; text-decoration: none; transition: top 0.2s; }
.skip:focus { top: 12px; }
:where(a, button, input, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- scroll progress ---------- */
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 100%; background: var(--grad-gold); background-size: 200% auto; transform-origin: 0 50%; transform: scaleX(0); z-index: 120; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 5vw;
  transition: padding 0.35s var(--ease), background 0.35s, backdrop-filter 0.35s;
}
.nav::after {
  content: ""; position: absolute; left: 5vw; right: 5vw; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0; transition: opacity 0.35s;
}
.nav.scrolled { padding: 12px 5vw; background: rgba(8, 9, 14, 0.72); backdrop-filter: blur(18px); }
.nav.scrolled::after { opacity: 1; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 700; letter-spacing: 2.5px; font-size: 14px; }
.logo i { font-style: normal; color: var(--gold-2); margin-left: 2px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links > a:not(.nav-cta) { position: relative; text-decoration: none; color: var(--muted); font-size: 14px; transition: color 0.2s; padding: 6px 0; }
.nav-links > a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--grad-gold); transform: scaleX(0); transform-origin: 100% 50%;
  transition: transform 0.35s var(--ease);
}
.nav-links > a:not(.nav-cta):hover { color: var(--text); }
.nav-links > a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: 0 50%; }
.nav-cta {
  background: var(--grad-gold); background-size: 200% auto; color: #1a1206 !important;
  padding: 10px 20px; border-radius: 999px; font-weight: 600; font-size: 13.5px; text-decoration: none;
  transition: box-shadow 0.25s, background-position 0.5s;
}
.nav-cta:hover { box-shadow: 0 8px 28px -8px rgba(247, 215, 116, 0.7); background-position: 100% 50%; }

/* hamburger (mobile only) */
.menu-btn { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 10px; background: none; border: none; cursor: pointer; z-index: 130; }
.menu-btn span { display: block; height: 2px; width: 100%; background: var(--gold); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; }
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* full-screen mobile menu */
.mmenu {
  position: fixed; inset: 0; z-index: 110; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  background: rgba(8, 9, 14, 0.96); backdrop-filter: blur(16px);
  opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease);
}
.mmenu.open { opacity: 1; pointer-events: auto; }
.mmenu-links { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.mmenu-links a {
  font-family: 'Sora'; font-size: clamp(26px, 7vw, 34px); font-weight: 700; color: var(--text);
  text-decoration: none; padding: 12px 24px; letter-spacing: -0.01em;
  opacity: 0; transform: translateY(18px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color 0.2s;
}
.mmenu.open .mmenu-links a { opacity: 1; transform: none; }
.mmenu.open .mmenu-links a:nth-child(2) { transition-delay: 0.06s; }
.mmenu.open .mmenu-links a:nth-child(3) { transition-delay: 0.12s; }
.mmenu.open .mmenu-links a:nth-child(4) { transition-delay: 0.18s; }
.mmenu.open .mmenu-links a:nth-child(5) { transition-delay: 0.24s; }
.mmenu-links a:active { color: var(--gold); }
.mmenu-links .mmenu-cta { margin-top: 14px; background: var(--grad-gold); color: #1a1206; border-radius: 999px; font-size: 18px; padding: 16px 34px; }
.mmenu-foot { position: absolute; bottom: 34px; font-family: 'Sora'; font-size: 12px; letter-spacing: 3px; color: var(--faint); }
.mmenu-foot i { font-style: normal; color: var(--gold-2); }

/* sticky mobile CTA */
.sticky-cta {
  position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 95;
  display: none; text-align: center; text-decoration: none;
  background: var(--grad-gold); color: #1a1206; font-family: 'Sora'; font-weight: 700; font-size: 15px;
  padding: 16px; border-radius: 999px; box-shadow: 0 16px 40px -10px rgba(247, 215, 116, 0.55);
  transform: translateY(110px); transition: transform 0.4s var(--ease);
}
.sticky-cta.show { transform: none; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 110px 5vw 80px; overflow: hidden;
}
#heroCanvas { position: absolute; inset: 0; width: 100%; height: 100%; will-change: opacity; }

/* CSS pyramid fallback — weak machines / no WebGL still get the gold */
.no-webgl .hero { background: radial-gradient(900px 500px at 50% 32%, rgba(200, 147, 47, 0.13), transparent 70%); }
.no-webgl .hero::before {
  content: ""; position: absolute; left: 50%; top: 44%; width: min(46vw, 420px); aspect-ratio: 1.3;
  transform: translate(-50%, -50%);
  background: linear-gradient(180deg, rgba(247, 215, 116, 0.32), rgba(200, 147, 47, 0.05));
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  filter: drop-shadow(0 0 50px rgba(247, 215, 116, 0.3));
  opacity: 0.5; pointer-events: none;
  animation: pyrGlow 6s ease-in-out infinite;
}
@keyframes pyrGlow { 0%, 100% { opacity: 0.42; } 50% { opacity: 0.62; } }
@media (prefers-reduced-motion: reduce) { .no-webgl .hero::before { animation: none; } }
.hero-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, transparent 30%, rgba(8, 9, 14, 0.6) 100%),
    linear-gradient(180deg, rgba(8, 9, 14, 0.4), transparent 24%, transparent 66%, var(--bg) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 1000px; will-change: transform; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: 4px; color: var(--gold-2); font-weight: 600; margin: 0 0 24px; }
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px 2px rgba(247, 215, 116, 0.6); animation: pulse 2.6s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.hero h1 { margin: 0 0 28px; font-weight: 800; letter-spacing: -0.025em; font-size: clamp(42px, 7.8vw, 96px); line-height: 1.01; }
.hero h1 .serif { font-size: 1.08em; }
.h-line { display: block; overflow: hidden; padding: 0.06em 0.1em; margin: -0.06em -0.1em; }
.h-word { display: inline-block; }
.lead { font-size: clamp(16px, 2vw, 19px); color: var(--muted); max-width: 600px; margin: 0 auto 38px; line-height: 1.65; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 42px; }
.trust-strip { display: flex; gap: 16px; align-items: center; justify-content: center; flex-wrap: wrap; color: var(--faint); font-size: 13px; }
.trust-strip i { color: var(--gold-2); font-style: normal; font-size: 9px; }

/* intro (one-shot) — rise + de-blur */
.intro-line, .intro-rise { opacity: 0; }
.intro-line { transform: translateY(16px); filter: blur(6px); animation: introUp 0.9s var(--ease) forwards; animation-delay: var(--d, 0s); }
.intro-rise { transform: translateY(112%); filter: blur(10px); animation: introRise 1s var(--ease) forwards; animation-delay: var(--d, 0s); }
@keyframes introUp { to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes introRise { to { opacity: 1; transform: none; filter: blur(0); } }

/* ---------- buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 15px;
  text-decoration: none; cursor: pointer; border: none;
  border-radius: 999px; padding: 16px 32px; overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.3s;
  will-change: transform;
}
.btn span { position: relative; z-index: 1; }
.btn.primary { background: var(--grad-gold); background-size: 200% auto; color: #1a1206; box-shadow: 0 14px 38px -14px rgba(247, 215, 116, 0.55); }
.btn.primary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
  transform: translateX(-110%);
}
.btn.primary:hover::before { transition: transform 0.7s var(--ease); transform: translateX(110%); }
.btn.primary:hover { box-shadow: 0 22px 50px -14px rgba(247, 215, 116, 0.85); }
.btn.ghost {
  background: rgba(255, 255, 255, 0.035); color: var(--text); backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.25s var(--ease), box-shadow 0.3s;
}
.btn.ghost:hover { box-shadow: inset 0 0 0 1px rgba(200, 147, 47, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 12px 30px -16px rgba(200, 147, 47, 0.5); }
.btn:active { transform: scale(0.97); }
.btn.full { width: 100%; }
.btn.loading { pointer-events: none; opacity: 0.85; }
.btn.loading .lbl { visibility: hidden; }
.btn.loading::after { content: ""; position: absolute; inset: 0; margin: auto; width: 17px; height: 17px; border-radius: 50%; border: 2px solid rgba(26, 18, 6, 0.35); border-top-color: #1a1206; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- marquee ---------- */
.marquee {
  position: relative; overflow: hidden; white-space: nowrap; padding: 22px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(247, 215, 116, 0.18), transparent);
}
.marquee::before { top: 0; }
.marquee::after { bottom: 0; }
.marquee-track { display: inline-flex; align-items: center; gap: 40px; padding-right: 40px; animation: marquee 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: 'Sora'; font-size: 13.5px; letter-spacing: 3.5px; text-transform: uppercase; color: var(--faint); transition: color 0.3s; }
.marquee-track span:hover { color: var(--gold); }
.marquee-track b { color: var(--gold-2); font-size: 10px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { position: relative; max-width: 1180px; margin: 0 auto; padding: clamp(84px, 11vw, 148px) 5vw; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto clamp(48px, 6vw, 76px); }
.section-head h2 { font-size: clamp(34px, 4.8vw, 58px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.06; margin: 0 0 16px; }
.section-head h2 .serif { font-size: 1.1em; }
.section-head .sub { color: var(--muted); font-size: 16.5px; margin: 0; }

/* scroll reveals — rise + de-blur */
.reveal { opacity: 0; transform: translateY(30px); filter: blur(7px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease), filter 0.85s var(--ease); transition-delay: var(--rd, 0s); }
.reveal.in { opacity: 1; transform: none; filter: blur(0); }

/* ============================================================
   GLOW CARD — the seamless surface used everywhere.
   No hard border: faint edge + inner top highlight; on hover a
   mouse-tracked gold border-glow and spotlight wash appear.
   JS sets --mx / --my (px, card-relative).
   ============================================================ */
.glow-card {
  position: relative;
  background: var(--card);
  border-radius: var(--r);
  box-shadow:
    inset 0 0 0 1px var(--card-edge),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  will-change: transform;
}
.glow-card::before,
.glow-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  opacity: 0; transition: opacity 0.45s var(--ease); pointer-events: none;
}
/* mouse-tracked gradient border */
.glow-card::before {
  padding: 1px;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(247, 215, 116, 0.65), rgba(247, 215, 116, 0.06) 55%, transparent 75%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
/* spotlight wash */
.glow-card::after {
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(247, 215, 116, 0.07), transparent 65%);
}
.glow-card:hover { transform: translateY(-5px); box-shadow: inset 0 0 0 1px var(--card-edge), inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 30px 60px -30px rgba(0, 0, 0, 0.8); }
.glow-card:hover::before, .glow-card:hover::after { opacity: 1; }

/* ---------- plans ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan { display: flex; flex-direction: column; padding: 38px 30px; }
.plan.featured { background: linear-gradient(180deg, rgba(247, 215, 116, 0.06), var(--card) 55%); }
.plan.featured::before { opacity: 0.55; } /* featured keeps a faint resting glow */
.badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad-gold); color: #1a1206; font-size: 11px; font-weight: 700;
  letter-spacing: 0.6px; padding: 6px 16px; border-radius: 999px; white-space: nowrap; z-index: 2;
  box-shadow: 0 8px 22px -8px rgba(247, 215, 116, 0.6);
}
.plan h3 { font-size: 24px; margin: 0 0 4px; letter-spacing: -0.01em; }
.plan-for { color: var(--gold-2); font-size: 13.5px; margin: 0 0 22px; }
.plan ul { list-style: none; margin: 0 0 30px; padding: 0; flex: 1; }
.plan li { position: relative; font-size: 14.5px; color: #d8deeb; padding: 9px 0 9px 28px; }
.plan li + li { box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.045); }
.plan li::before { content: "✦"; position: absolute; left: 2px; top: 9px; color: var(--gold-2); font-size: 11px; }
.plan li:first-child { color: var(--muted); }
.addons-line { text-align: center; color: var(--faint); font-size: 13.5px; margin-top: 44px; }
.addons-line span { color: var(--muted); }

/* ---------- work — demo-site cover cards (the unlabeled tier ladder) ---------- */
.work-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.work-card { grid-column: span 2; display: flex; flex-direction: column; overflow: hidden; border-radius: var(--r); text-decoration: none; }
.work-card.lg { grid-column: 1 / -1; }
.wc-cover {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  height: 240px; overflow: hidden; border-radius: var(--r) var(--r) 0 0;
  transition: transform 0.6s var(--ease);
}
.work-card.lg .wc-cover { height: clamp(280px, 34vw, 380px); }
.work-card:hover .wc-cover { transform: scale(1.025); }
.wc-brand { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 600; font-size: clamp(28px, 3.6vw, 46px); letter-spacing: 0.5px; }
.wc-tag { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; opacity: 0.75; }
.wc-cover::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.22)); }
/* per-demo brand covers */
.wc-resto { background: radial-gradient(120% 130% at 30% 12%, #f7f1e6 38%, #ecdfc6 60%, #d9c0a0); color: #2e241c; }
.wc-resto .wc-brand { color: #b4552d; }
.wc-hvac { background: radial-gradient(130% 140% at 70% 10%, #16304f 40%, #0e2138 70%, #0a1626); color: #eef3fa; }
.wc-hvac .wc-brand { font-family: 'Sora', sans-serif; font-style: normal; font-weight: 800; letter-spacing: 3px; color: #ff8a3d; }
.wc-salon { background: radial-gradient(120% 130% at 50% 0%, #faf3ef 40%, #f0ded5 65%, #ddbcae); color: #4a3c3a; }
.wc-salon .wc-brand { color: #c2806f; }
.wc-dental { background: radial-gradient(130% 140% at 50% 0%, #f7fbfa 35%, #dff0ec 60%, #b9ded6); color: #12302c; }
.wc-dental .wc-brand { font-family: 'Sora', sans-serif; font-style: normal; font-weight: 800; color: #136f66; letter-spacing: -0.01em; }
.wc-cap { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 22px; }
.wc-cap b { display: block; font-family: 'Sora'; font-size: 15.5px; color: var(--text); }
.wc-cap span { font-size: 13px; color: var(--muted); }
.wc-go { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; font-size: 13px; font-weight: 600; color: var(--gold) !important; }
.wc-go i { font-style: normal; transition: transform 0.3s var(--ease); }
.work-card:hover .wc-go i { transform: translate(3px, -3px); }

/* ---------- numbers strip ---------- */
.numbers { max-width: 1180px; margin: 0 auto; padding: 0 5vw clamp(70px, 9vw, 110px); }
.numbers-strip { display: flex; justify-content: space-around; align-items: stretch; padding: 30px clamp(14px, 3vw, 40px); }
.num { position: relative; flex: 1; text-align: center; padding: 6px 12px; }
.num + .num::before { content: ""; position: absolute; left: 0; top: 15%; bottom: 15%; width: 1px; background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12), transparent); }
.num b { display: block; font-size: clamp(24px, 3.2vw, 38px); font-weight: 800; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; font-variant-numeric: tabular-nums; white-space: nowrap; }
.num span { font-size: 12.5px; color: var(--muted); }

/* ---------- steps ---------- */
.steps-wrap { position: relative; }
.steps { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; list-style: none; margin: 0; padding: 0; }
.step { padding: 38px 30px 32px; }
.step-n {
  display: block; font-size: 58px; font-weight: 800; line-height: 1; margin-bottom: 18px;
  background: linear-gradient(180deg, rgba(247, 215, 116, 0.6), rgba(247, 215, 116, 0.05));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.step h3 { font-size: 19px; margin: 0 0 8px; }
.step p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ---------- guarantee ---------- */
.guarantee { padding: clamp(40px, 6vw, 90px) 5vw; }
.g-inner {
  position: relative; max-width: 820px; margin: 0 auto; text-align: center;
  background:
    radial-gradient(120% 160% at 50% -30%, rgba(247, 215, 116, 0.13), transparent 55%),
    var(--card);
  border-radius: 32px;
  box-shadow: inset 0 0 0 1px rgba(200, 147, 47, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: clamp(44px, 6vw, 70px) clamp(24px, 5vw, 60px); overflow: hidden;
}
.g-inner::before {
  content: ""; position: absolute; top: -60%; left: -30%; width: 55%; height: 220%;
  background: linear-gradient(100deg, transparent, rgba(247, 215, 116, 0.06), transparent);
  transform: rotate(16deg); animation: sweep 9s ease-in-out infinite; pointer-events: none;
}
@keyframes sweep { 0%, 100% { transform: rotate(16deg) translateX(0); } 50% { transform: rotate(16deg) translateX(260%); } }
.g-mark { margin-bottom: 14px; filter: drop-shadow(0 0 14px rgba(247, 215, 116, 0.35)); }
.g-inner h2 { font-size: clamp(30px, 4.6vw, 50px); font-weight: 800; letter-spacing: -0.02em; margin: 0 0 16px; }
.g-inner h2 .serif { font-size: 1.1em; }
.g-inner p { color: var(--muted); max-width: 580px; margin: 0 auto 32px; font-size: 16px; }

/* ---------- bento ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.feat { grid-column: span 2; padding: 30px 28px; }
.feat.wide { grid-column: span 3; }
.feat svg { color: var(--gold); margin-bottom: 14px; filter: drop-shadow(0 0 8px rgba(247, 215, 116, 0.25)); }
.feat h3 { font-size: 17px; margin: 0 0 7px; }
.feat p { color: var(--muted); font-size: 14px; margin: 0; }

/* ---------- quotes ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote { margin: 0; padding: 32px 28px; }
.stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; font-size: 14px; text-shadow: 0 0 14px rgba(247, 215, 116, 0.35); }
.quote blockquote { margin: 0 0 16px; font-size: 15.5px; line-height: 1.65; }
.quote figcaption { color: var(--faint); font-size: 13px; }

/* ---------- faq ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item { border-radius: 18px; margin-bottom: 10px; background: var(--card); box-shadow: inset 0 0 0 1px var(--card-edge); overflow: hidden; transition: box-shadow 0.3s, background 0.3s; }
.faq-item:hover { background: rgba(255, 255, 255, 0.035); }
.faq-item.open { box-shadow: inset 0 0 0 1px rgba(200, 147, 47, 0.35); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 14px;
  background: none; border: none; color: var(--text); font-family: 'Sora', sans-serif;
  font-size: 15.5px; font-weight: 600; text-align: left; padding: 20px 24px; cursor: pointer;
}
.faq-q .pm { color: var(--gold); font-size: 20px; line-height: 1; transition: transform 0.35s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { margin: 0; padding: 0 24px 22px; color: var(--muted); font-size: 14.5px; line-height: 1.7; }

/* ---------- contact ---------- */
.contact { padding: clamp(60px, 9vw, 130px) 5vw; }
.contact-inner { max-width: 1040px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; border-radius: 32px; padding: clamp(32px, 5vw, 58px); align-items: center; }
.contact-inner:hover { transform: none; } /* container shouldn't lift */
.contact-copy h2 { font-size: clamp(30px, 4.2vw, 46px); font-weight: 800; letter-spacing: -0.02em; margin: 0 0 14px; }
.contact-copy p { color: var(--muted); font-size: 15.5px; margin: 0; }
.contact-mail { display: inline-block; margin-top: 18px; color: var(--gold); font-weight: 600; text-decoration: none; box-shadow: 0 1px 0 rgba(200, 147, 47, 0.4); padding-bottom: 3px; transition: box-shadow 0.25s; }
.contact-mail:hover { box-shadow: 0 1px 0 var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 12.5px; font-weight: 600; color: var(--muted); }
.field label em { color: var(--gold-2); }
.field input, .field textarea {
  background: rgba(0, 0, 0, 0.32); border: none; color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  border-radius: 13px; padding: 15px 16px; font-family: inherit; font-size: 15px;
  outline: none; transition: box-shadow 0.25s; width: 100%;
}
.field input:focus, .field textarea:focus { box-shadow: inset 0 0 0 1px var(--gold-2), 0 0 0 3px rgba(200, 147, 47, 0.16); }
.field textarea { min-height: 110px; resize: vertical; }
.form-msg { font-size: 13.5px; margin: 2px 0 0; min-height: 18px; }
.form-msg.ok { color: #7ff0a3; }
.form-msg.err { color: #ff9b8a; }

/* ---------- footer ---------- */
.foot { position: relative; padding: 20px 5vw 42px; overflow: hidden; }
.foot::before { content: ""; position: absolute; top: 0; left: 12%; right: 12%; height: 1px; background: linear-gradient(90deg, transparent, rgba(247, 215, 116, 0.2), transparent); }
.foot-word {
  font-family: 'Sora'; font-weight: 800; text-align: center; user-select: none;
  font-size: clamp(64px, 17vw, 230px); line-height: 0.95; letter-spacing: 0.02em;
  background: linear-gradient(180deg, rgba(247, 215, 116, 0.16), rgba(247, 215, 116, 0));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  pointer-events: none; will-change: transform;
}
.foot-row { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 10px; color: var(--faint); font-size: 13px; }
.foot-row a { color: var(--gold); text-decoration: none; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .bento { grid-template-columns: 1fr; }
  .feat, .feat.wide { grid-column: span 1; }
  .plans, .steps, .quotes, .work-grid { grid-template-columns: 1fr; }
  .numbers-strip { flex-wrap: wrap; row-gap: 18px; }
  .num { flex: 1 1 40%; }
  .num:nth-child(3)::before { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 960px) and (min-width: 761px) {
  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-card { grid-column: span 1; }
  .work-card.lg { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .menu-btn { display: flex; }
  .sticky-cta { display: block; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card, .work-card.lg { grid-column: span 1; }
  .row2 { grid-template-columns: 1fr; }
  .trust-strip { flex-direction: column; gap: 6px; }
  .trust-strip i { display: none; }
  .wc-cover, .work-card.lg .wc-cover { height: 220px; }
  .foot-row { justify-content: center; text-align: center; padding-bottom: 60px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .intro-line, .intro-rise { opacity: 1; transform: none; filter: none; animation: none; }
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .aurora span, .marquee-track, .eyebrow-dot, .shimmer { animation: none !important; }
  .g-inner::before { animation: none !important; }
  .btn.primary::before { display: none; }
  * { transition-duration: 0.01ms !important; }
}
