:root {
  --bg: #0a0a0f;
  --bg-soft: #111119;
  --card: #15151f;
  --card-hover: #1b1b27;
  --line: #26263a;
  --text: #f4f4f8;
  --muted: #9a9ab0;
  --accent: #ff5c39;
  --accent-2: #ffb443;
  --violet: #8b5cf6;
  --radius: 18px;
  --max: 1140px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* "clip" instead of "hidden" — hidden turns body into a scroll container,
     which silently breaks position: sticky on the quote summary */
  overflow-x: clip;
}
h1, h2, h3 { font-family: 'Sora', sans-serif; line-height: 1.1; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.accent { color: var(--accent); }
.grad-text {
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* NAV */
header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10,10,15,0.72);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { font-family: 'Sora'; font-weight: 800; font-size: 19px; letter-spacing: -0.03em; display: flex; align-items: center; gap: 9px; }
.logo .dot { width: 11px; height: 11px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 0 16px var(--accent); }
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 500; transition: color .2s; white-space: nowrap; }
.nav-links a:hover { color: var(--text); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px; padding: 12px 22px; border-radius: 100px;
  cursor: pointer; border: none; transition: transform .15s, box-shadow .2s, background .2s;
}
.btn-primary { background: linear-gradient(100deg, var(--accent), var(--accent-2)); color: #1a0d05; box-shadow: 0 8px 30px rgba(255,92,57,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,92,57,0.5); }
.btn-primary:disabled { opacity: .6; cursor: wait; transform: none; }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--card); border-color: #3a3a55; }
.nav .btn { padding: 10px 20px; }
.menu-toggle { display: none; background: none; border: none; color: var(--text); font-size: 26px; cursor: pointer; }

/* HERO */
.hero { position: relative; padding: 90px 0 70px; text-align: center; }
.hero::before {
  content: ""; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 720px; height: 720px; max-width: 100%;
  background: radial-gradient(circle, rgba(255,92,57,0.18), transparent 60%);
  filter: blur(20px); z-index: -1;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
  color: var(--muted); background: var(--card); border: 1px solid var(--line);
  padding: 7px 15px; border-radius: 100px; margin-bottom: 26px;
}
.pulse { width: 8px; height: 8px; border-radius: 50%; background: #36d399; box-shadow: 0 0 0 0 rgba(54,211,153,0.6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(54,211,153,0); } 100% { box-shadow: 0 0 0 0 rgba(54,211,153,0); } }
.hero h1 { font-size: clamp(38px, 6vw, 68px); font-weight: 800; max-width: 880px; margin: 0 auto 22px; }
.hero p.sub { font-size: clamp(16px, 2.2vw, 20px); color: var(--muted); max-width: 600px; margin: 0 auto 36px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; margin-top: 58px; }
.stat .num { font-family: 'Sora'; font-weight: 800; font-size: 30px; }
.stat .lbl { color: var(--muted); font-size: 13.5px; }

/* SECTION SHELL */
section { padding: 86px 0; }
.eyebrow { color: var(--accent); font-weight: 600; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; }
.sec-head { max-width: 640px; margin-bottom: 50px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { font-size: clamp(30px, 4.5vw, 46px); font-weight: 800; margin: 12px 0 16px; }
.sec-head p { color: var(--muted); font-size: 17px; }

/* SERVICES */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform .2s, border-color .2s, background .2s;
}
.card:hover { transform: translateY(-5px); border-color: #3a3a55; background: var(--card-hover); }
.card .ico { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; font-size: 24px;
  background: linear-gradient(135deg, rgba(255,92,57,0.18), rgba(255,180,67,0.12)); margin-bottom: 18px; }
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15px; }

/* AUDIENCE */
.aud-line { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; margin: 4px 0 34px; }
.aud-line span { font-size: 13.5px; font-weight: 600; color: var(--text); background: var(--card);
  border: 1px solid var(--line); padding: 8px 15px; border-radius: 100px; }
.aud-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.aud-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; transition: transform .2s, border-color .2s, background .2s; }
.aud-card:hover { transform: translateY(-4px); border-color: #3a3a55; background: var(--card-hover); }
.aud-card .ai { font-size: 30px; margin-bottom: 12px; }
.aud-card h3 { font-size: 18px; margin-bottom: 7px; }
.aud-card p { color: var(--muted); font-size: 14px; }
@media (max-width: 760px) { .aud-grid { grid-template-columns: 1fr; } }

/* WORK */
.video-card {
  display: block; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; transition: transform .2s, border-color .2s;
}
.video-card:hover { transform: translateY(-5px); border-color: #3a3a55; }
.video-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.video-card:hover .video-thumb img { transform: scale(1.04); }
.video-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,15,0.55));
}
.play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2;
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  box-shadow: 0 8px 30px rgba(255,92,57,0.5); transition: transform .2s;
}
.video-card:hover .play { transform: translate(-50%,-50%) scale(1.08); }
.play svg { width: 24px; height: 24px; margin-left: 3px; fill: #1a0d05; }
.video-meta { padding: 18px 20px; }
.video-meta h3 { font-size: 17px; margin-bottom: 5px; }
.video-meta span { color: var(--muted); font-size: 13.5px; display: inline-flex; align-items: center; gap: 6px; }

/* REELS */
#reels { background: var(--bg-soft); }
.reels-wrap { max-width: 1480px; margin: 0 auto; padding: 0 24px; }
.reels-grid { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.reels-grid .instagram-media { margin: 0 !important; min-width: 300px !important; max-width: 326px !important; flex: 0 1 326px;
  min-height: 610px; /* reserve space so embeds don't shove the page as they load */ }
.reel-placeholder {
  aspect-ratio: 9/16; border: 2px dashed var(--muted); border-radius: 16px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; color: var(--muted); text-align: center; padding: 16px;
  min-width: 220px; flex: 0 1 260px;
}
.reel-placeholder .big { font-size: 32px; }
.reel-placeholder b { color: var(--text); }
.reel-placeholder .small { font-size: 13px; }

/* PROCESS */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { position: relative; padding-top: 18px; }
.step .n { font-family: 'Sora'; font-weight: 800; font-size: 15px; color: var(--accent);
  border: 1px solid var(--accent); width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 16px; }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* PRICING / QUOTE BUILDER */
#pricing { background: var(--bg-soft); }
.builder { display: grid; grid-template-columns: 1fr 360px; gap: 26px; align-items: start; }
.pb-steps { display: grid; gap: 20px; }
.pb-step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
/* progressive reveal — steps stay hidden until the previous one is answered */
.pb-step.locked { display: none; }
.pb-step.reveal { animation: stepIn .4s ease both; }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.pb-lbl { display: flex; align-items: center; gap: 12px; margin-bottom: 2px; }
.pb-n { font-family: 'Sora'; font-weight: 800; font-size: 14px; color: var(--accent);
  border: 1px solid var(--accent); width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; flex: none; }
.pb-step h3 { font-size: 18px; }
.pb-hint { color: var(--muted); font-size: 14px; margin: 4px 0 18px 44px; }
.pb-opts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.pb-opt { position: relative; text-align: left; cursor: pointer; background: var(--bg-soft);
  border: 1.5px solid var(--line); border-radius: 13px; padding: 15px 16px; font-family: inherit; color: var(--text);
  transition: transform .15s, border-color .15s, background .15s; display: block; }
.pb-opt:hover { transform: translateY(-3px); border-color: #3a3a55; }
.pb-opt .t { font-family: 'Sora'; font-weight: 700; font-size: 15px; display: block; }
.pb-opt .d { color: var(--muted); font-size: 13px; margin-top: 3px; display: block; }
.pb-opt .p { font-size: 13.5px; font-weight: 700; color: var(--accent-2); margin-top: 10px; display: block; }
.pb-opt .tick { position: absolute; top: 12px; right: 12px; width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid var(--line); display: grid; place-items: center; font-size: 12px; color: #1a0d05; background: transparent; transition: .15s; }
.pb-opt[aria-pressed="true"] { border-color: var(--accent); background: linear-gradient(180deg, rgba(255,92,57,0.08), var(--bg-soft)); }
.pb-opt[aria-pressed="true"] .tick { background: linear-gradient(100deg, var(--accent), var(--accent-2)); border-color: transparent; }
.pb-opt.email { opacity: .55; border-style: dashed; }
.pb-opt.email:hover { opacity: 1; border-color: var(--accent-2); }
.pb-opt.email .p { color: var(--muted); }
.pb-summary { position: sticky; top: 90px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.pb-summary h3 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 16px; }
.pb-sumrow { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; padding: 10px 0; border-bottom: 1px dashed var(--line); }
.pb-sumrow .k { color: var(--muted); }
.pb-sumrow .v { font-weight: 600; text-align: right; }
.pb-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 18px; padding-top: 16px; border-top: 2px solid var(--line); }
.pb-total .k { font-family: 'Sora'; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .04em; }
.pb-total .v { font-family: 'Sora'; font-weight: 800; font-size: 34px; }
.pb-total .v small { font-size: 14px; font-weight: 600; color: var(--muted); font-family: 'Inter'; }
.pb-summary .btn { width: 100%; margin-top: 18px; }
.pb-fine { color: var(--muted); font-size: 12px; text-align: center; margin-top: 12px; line-height: 1.5; }
.addons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px; }
.addon { background: var(--card); border: 1px solid var(--line); border-radius: 100px; padding: 9px 17px; font-size: 13.5px; color: var(--muted); }
.addon b { color: var(--text); }
.price-note { text-align: center; color: var(--muted); font-size: 14px; margin-top: 26px; }

/* TORONTO */
.toronto { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center; }
.toronto-card { background: linear-gradient(160deg, var(--card), #18101a); border: 1px solid var(--line); border-radius: 24px; padding: 38px; }
.toronto-card h3 { font-size: 24px; margin-bottom: 14px; }
.toronto-list { list-style: none; display: grid; gap: 14px; margin-top: 22px; }
.toronto-list li { display: flex; gap: 12px; font-size: 15.5px; align-items: flex-start; }
.toronto-list li span.k { color: var(--accent-2); font-size: 19px; line-height: 1.3; }
.map-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--card); border: 1px solid var(--line);
  padding: 8px 16px; border-radius: 100px; font-size: 13.5px; color: var(--muted); margin-bottom: 18px; }

/* WHY */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.why-item { display: flex; gap: 16px; padding: 22px; background: var(--card); border: 1px solid var(--line); border-radius: 14px; }
.why-item .ico { font-size: 22px; }
.why-item h3 { font-size: 17px; margin-bottom: 5px; }
.why-item p { color: var(--muted); font-size: 14.5px; }

/* TESTIMONIALS */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.quote .stars { color: var(--accent-2); margin-bottom: 14px; letter-spacing: 2px; }
.quote p { font-size: 15px; margin-bottom: 18px; }
.quote .who { display: flex; align-items: center; gap: 12px; }
.quote .av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--violet), var(--accent)); display: grid; place-items: center; font-weight: 700; font-size: 15px; }
.quote .who b { display: block; font-size: 14.5px; }
.quote .who span { color: var(--muted); font-size: 13px; }

/* CONTACT */
#contact { background: var(--bg-soft); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: start; }
.contact-left h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 16px; }
.contact-left p { color: var(--muted); font-size: 16.5px; margin-bottom: 26px; }
.contact-left ul { list-style: none; display: grid; gap: 14px; }
.contact-left ul li { display: flex; gap: 12px; color: #d8d8e4; font-size: 15px; }
form { background: var(--card); border: 1px solid var(--line); border-radius: 22px; padding: 32px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 500; margin-bottom: 7px; color: #cfcfe0; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: 11px;
  padding: 12px 14px; color: var(--text); font-family: inherit; font-size: 15px; transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 90px; }
.pb-input { width:100%; background:var(--bg-soft); border:1px solid var(--line); border-radius:11px;
  padding:11px 14px; color:var(--text); font-family:inherit; font-size:14.5px; margin-top:10px; transition:border-color .2s; }
.pb-input:first-of-type { margin-top:14px; }
.pb-input::placeholder { color:var(--muted); }
.pb-input:focus { outline:none; border-color:var(--accent); }
.pb-input.invalid, .field input.invalid { border-color: #f87272; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
form .btn { width: 100%; margin-top: 6px; }
.form-msg { text-align: center; font-size: 14.5px; margin-top: 14px; display: none; }
.form-msg.ok { color: #36d399; }
.form-msg.err { color: #f87272; }
.form-msg.show { display: block; }

/* honeypot — hidden from humans, bots fill it in */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* FOOTER */
footer { padding: 56px 0 34px; border-top: 1px solid var(--line); }
.foot { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.foot .logo { margin-bottom: 12px; }
.foot p { color: var(--muted); font-size: 14px; max-width: 280px; }
.foot-links { display: flex; gap: 60px; flex-wrap: wrap; }
.foot-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 14px; }
.foot-col a { display: block; color: #d0d0de; font-size: 14.5px; margin-bottom: 9px; transition: color .2s; }
.foot-col a:hover { color: var(--accent); }
.copy { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--muted); font-size: 13px; }

/* RESPONSIVE */
@media (max-width: 760px) {
  .nav-links { position: fixed; inset: 70px 0 auto 0; flex-direction: column; background: var(--bg-soft);
    border-bottom: 1px solid var(--line); padding: 24px; gap: 18px; display: none; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 16px; }
  .menu-toggle { display: block; }
  .grid-3, .steps, .quotes { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .toronto, .contact-grid, .builder { grid-template-columns: 1fr; }
  .pb-summary { position: static; }
}
@media (max-width: 520px) {
  .two-col { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .pb-opts { grid-template-columns: 1fr; }
}
