/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, h4, p, ul, ol, figure { margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ============ A1 TOKENS ============ */
:root {
  --royal-blue:    #235499;
  --royal-blue-12: #1b4078;
  --royal-blue-08: #122a4f;
  --bright-red:    #F5010B;
  --bright-red-12: #c30109;
  --electric-cyan: #06EBF0;
  --cyan-soft:     #b9f7f8;
  --white:         #ffffff;
  --black:         #000000;
  --ink:           #0c1424;
  --ink-2:         #3a4256;
  --ink-3:         #6b7388;
  --line:          #e3e7ef;
  --line-strong:   #c6cdd9;
  --surface:       #ffffff;
  --surface-2:     #f4f6fa;
  --surface-3:     #eaeef5;
  --gold:          #ffc83d;

  --font-display: "Saira Condensed","Bebas Neue","Arial Narrow",system-ui,sans-serif;
  --font-body:    "Public Sans",-apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;

  --container: 1200px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  --shadow-1: 0 1px 2px rgba(12,20,36,.06), 0 1px 1px rgba(12,20,36,.04);
  --shadow-2: 0 4px 12px rgba(12,20,36,.08), 0 2px 4px rgba(12,20,36,.04);
  --shadow-3: 0 12px 28px rgba(12,20,36,.12), 0 6px 10px rgba(12,20,36,.05);
  --shadow-photo: 0 24px 80px rgba(12,20,36,.18);
  --shadow-cta: 0 6px 0 var(--bright-red-12);

  --frame-pad: 20px;
  --frame-radius: 36px;
  --nav-gap: 1px;
}
@media (max-width: 720px) {
  :root { --frame-pad: 12px; --frame-radius: 24px; --nav-gap: 1px; }
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ============ TYPE ============ */
.t-eyebrow { font-family: var(--font-body); font-weight: 700; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bright-red); line-height: 1; }
.t-h1 { font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: clamp(40px, 6.5vw, 76px); line-height: 1; letter-spacing: -0.01em; color: var(--royal-blue); text-transform: uppercase; }
.t-h2 { font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: clamp(30px, 3.6vw, 46px); line-height: 1.05; letter-spacing: -0.01em; color: var(--royal-blue); text-transform: uppercase; }
.t-lead { font-size: 19px; line-height: 1.5; color: var(--ink-2); }
.red-accent { color: var(--bright-red); }

/* ============ LAYOUT ============ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 22px;
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: 17px; letter-spacing: -0.005em; text-transform: uppercase;
  border-radius: var(--radius-md); border: 2px solid transparent;
  transition: transform 120ms ease, background-color 120ms ease, color 120ms ease, box-shadow 120ms ease;
  white-space: nowrap;
}
.btn--lg { padding: 16px 28px; font-size: 19px; }
.btn--primary { background: var(--bright-red); color: var(--white); box-shadow: 0 6px 14px rgba(245,1,11,.28), 0 2px 4px rgba(245,1,11,.18); }
.btn--primary:hover { background: var(--bright-red-12); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(245,1,11,.36), 0 3px 6px rgba(245,1,11,.20); }
.btn--ghost { background: rgba(255,255,255,.10); color: var(--white); border-color: rgba(255,255,255,.30); box-shadow: 0 6px 14px rgba(0,0,0,.18), 0 2px 4px rgba(0,0,0,.12); }
.btn--ghost:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.55); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(0,0,0,.24), 0 3px 6px rgba(0,0,0,.16); }
.btn--outline { background: var(--white); color: var(--royal-blue); border-color: var(--royal-blue); }
.btn--outline:hover { background: var(--royal-blue); color: var(--white); }

/* ============ NAV ============ */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.94); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.nav__inner { display: flex; align-items: center; gap: 0; height: 140px; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.nav__logo { display: inline-flex; align-items: center; flex-shrink: 0; margin-right: auto; transition: opacity .15s; }
.nav__logo:hover { opacity: 0.85; }
.nav__logo img { height: 88px; width: auto; display: block; }
@media (max-width: 720px) {
  .nav__inner { height: 100px; padding: 0 16px; }
  .nav__logo img { height: 64px; }
}
.nav__links { display: flex; gap: 4px; font-size: 16px; align-items: stretch; align-self: stretch; }
.nav__menu { position: relative; display: flex; align-items: stretch; }
.nav__trigger {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 20px; border-radius: var(--radius-md);
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 19px; letter-spacing: -0.005em; text-transform: uppercase;
  color: var(--royal-blue); background: transparent; position: relative;
  align-self: stretch; isolation: isolate;
  transition: color 120ms ease;
}
.nav__trigger::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0;
  bottom: calc(-1 * var(--nav-gap));
  border-radius: var(--radius-md); background: transparent;
  transition: background-color 120ms ease; z-index: -1;
}
.nav__trigger::after {
  content: ""; position: absolute; left: 20px; right: 20px;
  top: calc(50% + 16px); height: 2px; background: var(--bright-red);
  border-radius: 2px; transform: scaleX(0); transform-origin: left center;
  transition: transform 180ms var(--ease-out, ease); z-index: 1;
}
.nav__trigger:hover::before, .nav__menu[data-open="true"] .nav__trigger::before { background: var(--bright-red); }
.nav__trigger:hover, .nav__menu[data-open="true"] .nav__trigger { color: var(--white); }
.nav__trigger:hover::after, .nav__menu[data-open="true"] .nav__trigger::after { transform: scaleX(1); }
.nav__trigger .caret { width: 16px; height: 16px; stroke-width: 2.5px; color: var(--bright-red); transition: transform 160ms ease, color 120ms ease; }
.nav__trigger:hover .caret, .nav__menu[data-open="true"] .nav__trigger .caret { color: var(--white); }
.nav__menu[data-open="true"] .nav__trigger .caret { transform: rotate(180deg); }
.nav__panel {
  position: absolute; top: calc(100% + 14px); left: 0; min-width: 280px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(12,20,36,.12), 0 4px 12px rgba(12,20,36,.06);
  padding: 10px; opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  z-index: 60;
}
.nav__panel::before {
  content: ""; position: absolute; top: -7px; left: 28px;
  width: 12px; height: 12px; background: var(--white);
  border-left: 1px solid var(--line); border-top: 1px solid var(--line);
  transform: rotate(45deg);
}
.nav__menu[data-open="true"] .nav__panel, .nav__menu:hover .nav__panel { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__panel a { display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: center; padding: 10px 12px; border-radius: var(--radius-md); color: var(--ink); font-weight: 600; font-size: 14px; transition: background-color 120ms ease; }
.nav__panel a:hover { background: var(--surface-2); }
.nav__panel a small { display: block; font-weight: 500; font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.nav__panel a .ico { width: 38px; height: 38px; background: var(--surface-2); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.nav__panel a .ico img { width: 24px; height: 24px; }
.nav__panel--wide { min-width: 360px; }
.nav__panel--grid a { grid-template-columns: 1fr; padding: 8px 12px; gap: 2px; }
.nav__panel--cities { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.nav__right { display: flex; align-items: center; gap: 18px; margin-left: 16px; }
.nav__phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  color: var(--royal-blue); font-size: 19px; letter-spacing: -0.005em;
  text-transform: uppercase; padding: 0 20px;
  border-radius: var(--radius-md); transition: color 120ms ease;
}
.nav__right .btn { font-size: 19px; }
.nav__phone:hover { color: var(--bright-red); }
.nav__phone svg { width: 16px; height: 16px; color: var(--bright-red); flex-shrink: 0; }

/* ============ HERO ============ */
.hero { position: relative; background: var(--royal-blue); color: var(--white); padding: 88px 0 96px; overflow: hidden; margin: var(--nav-gap) var(--frame-pad) var(--frame-pad); border-radius: var(--frame-radius); }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 50% at 50% 10%, rgba(6,235,240,.10), transparent 60%), radial-gradient(40% 40% at 80% 80%, rgba(35,84,153,.5), transparent 70%); pointer-events: none; }
.hero__inner { position: relative; max-width: 920px; margin: 0 auto; padding: 0 24px; text-align: center; }
.hero__stars { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; padding: 9px 16px; border-radius: var(--radius-pill); background: var(--white); border: 1px solid rgba(255,255,255,.16); box-shadow: 0 6px 18px rgba(0,0,0,.18), 0 1px 3px rgba(0,0,0,.06); font-size: 13px; font-weight: 600; color: var(--ink); text-decoration: none; transition: transform 120ms ease, box-shadow 120ms ease; }
.hero__stars:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,0,0,.22), 0 2px 4px rgba(0,0,0,.08); }
.hero__stars-g { width: 22px; height: 22px; flex-shrink: 0; }
.hero__stars-rating { font-family: var(--font-body); font-weight: 800; font-size: 15px; color: var(--ink); letter-spacing: -0.01em; }
.hero__stars-icons { display: inline-flex; align-items: center; gap: 1px; color: #fbbc05; }
.hero__stars-icons svg { width: 14px; height: 14px; fill: currentColor; }
.hero__stars-meta { font-size: 12px; font-weight: 600; color: var(--ink-3); padding-left: 10px; margin-left: 2px; border-left: 1px solid var(--line); letter-spacing: 0.01em; }
.hero__stars-arrow { width: 0; height: 14px; opacity: 0; overflow: hidden; color: var(--ink-3); transition: width 220ms var(--ease-out, ease), opacity 160ms ease, margin-left 220ms var(--ease-out, ease); flex-shrink: 0; }
.hero__stars-arrow svg { width: 14px; height: 14px; display: block; }
.hero__stars:hover .hero__stars-arrow { width: 14px; opacity: 0.85; margin-left: 6px; }
.hero__stars:hover .hero__stars-arrow svg { color: var(--royal-blue); }
.hero h1 { font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: clamp(36px, 5.2vw, 64px); line-height: 0.95; letter-spacing: -0.01em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.hero h1 .red { color: var(--bright-red); }
.hero__sub { font-size: 17px; line-height: 1.5; color: rgba(255,255,255,.78); max-width: 580px; margin: 0 auto 32px; }
.hero__ctas { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin: 0 auto 24px; max-width: 560px; }
.hero__ctas .btn { flex: 1 1 220px; min-width: 0; }
.hero__checks { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; max-width: 760px; margin: 0 auto; }
.hero__check { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,.88); }
.hero__check .ck { width: 22px; height: 22px; border-radius: 50%; background: var(--white); border: none; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 22px; box-shadow: 0 1px 3px rgba(0,0,0,.18); }
.hero__check .ck svg { color: var(--bright-red); width: 13px; height: 13px; }
.hero__photo { display: none; }
@media (max-width: 720px) {
  .hero { padding: 56px 0 64px; }
  .hero__checks { gap: 12px; flex-direction: column; align-items: center; }
  .hero__sub { font-size: 17px; }
}

/* ============ CITY STRIP ============ */
.cities { padding: 40px 0 44px; border-bottom: 1px solid var(--line); background: var(--white); }
.cities__label { text-align: center; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: var(--ink-3); margin-bottom: 22px; }
.cities__marquee { max-width: 1080px; margin: 0 auto; overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent 0, black 60px, black calc(100% - 60px), transparent 100%); mask-image: linear-gradient(to right, transparent 0, black 60px, black calc(100% - 60px), transparent 100%); }
.cities__track { display: flex; width: max-content; gap: 56px; align-items: center; animation: city-marquee 7s linear infinite; font-family: var(--font-display); font-weight: 700; font-style: italic; font-size: clamp(18px, 2vw, 22px); color: var(--ink-3); text-transform: uppercase; letter-spacing: -0.005em; }
.cities__track > span { transition: color 120ms ease; flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px; }
.cities__track > span::before {
  content: ""; display: inline-block; width: 16px; height: 16px;
  background-color: var(--bright-red);
  -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E") center / contain no-repeat;
  flex-shrink: 0;
}
.cities__track > span:hover { color: var(--royal-blue); }
.cities__marquee:hover .cities__track { animation-play-state: paused; }
@keyframes city-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .cities__track { animation: none; } }

/* ============ FEATURE ROWS ============ */
.features { padding: 80px 0 40px; background: var(--white); }
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; padding: 56px 0; }
.feature + .feature { border-top: 1px solid var(--line); }
.feature--reverse .feature__text { order: 2; }
.feature__text { max-width: 480px; }
.feature__text .t-eyebrow { display: inline-block; margin-bottom: 18px; }
.feature__text h2 { margin-bottom: 22px; }
.feature__text .t-lead { margin-bottom: 28px; }
.feature__compare { border-left: 3px solid var(--line); padding: 4px 0 4px 20px; margin-bottom: 14px; }
.feature__compare h4 { font-family: var(--font-body); font-weight: 700; font-size: 13px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 6px; }
.feature__compare--good { border-left-color: var(--royal-blue); }
.feature__compare--good h4 { color: var(--royal-blue); }
.feature__compare p { color: var(--ink-2); font-size: 15px; }
.feature__photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-3); }
.feature__photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
@media (max-width: 900px) { .feature { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; } .feature--reverse .feature__text { order: 0; } }

/* ============ MID CTA BAND ============ */
.mid-cta { background: var(--royal-blue); color: var(--white); padding: 64px 0; overflow: hidden; position: relative; margin: var(--frame-pad); border-radius: var(--frame-radius); }
.mid-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 90% 50%, rgba(6,235,240,.10), transparent 60%); pointer-events: none; }
.mid-cta__inner { position: relative; max-width: var(--container); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 220px 1fr auto; gap: 40px; align-items: center; }
.mid-cta__mascot { display: flex; align-items: center; justify-content: center; }
.mid-cta__mascot img { width: 200px; filter: drop-shadow(0 12px 24px rgba(0,0,0,.25)); }
.mid-cta h2 { color: var(--white); font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 8px; }
.mid-cta p { color: rgba(255,255,255,.82); font-size: 17px; }
@media (max-width: 800px) { .mid-cta__inner { grid-template-columns: 1fr; text-align: center; } .mid-cta__mascot img { margin: 0 auto; width: 140px; } }

/* ============ PROOF BADGES ============ */
.proof { padding: 56px 0; background: var(--surface-2); text-align: center; }
.proof__title { font-family: var(--font-body); font-weight: 700; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 28px; }
.proof__row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.badge { display: inline-flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 12px 22px; box-shadow: var(--shadow-1); font-weight: 600; color: var(--ink); font-size: 14px; }
.badge .stars { color: var(--gold); letter-spacing: 1px; font-size: 13px; }
.badge .dot { width: 8px; height: 8px; background: var(--royal-blue); border-radius: 50%; flex: 0 0 8px; }

/* ============ AUDIENCES TABS ============ */
.audiences { padding: 96px 0; background: var(--white); }
.audiences__head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.audiences__head .t-eyebrow { display: inline-block; margin-bottom: 14px; }
.audiences__head h2 { margin-bottom: 14px; }
.audiences__head p { font-size: 17px; color: var(--ink-2); }
.audiences__inner { display: grid; grid-template-columns: 280px 1fr; gap: 40px; max-width: 1080px; margin: 0 auto; }
.audiences__tabs { display: flex; flex-direction: column; gap: 8px; }
.audience-tab { text-align: left; padding: 16px 20px; border-radius: var(--radius-md); border: 1px solid var(--line); background: var(--white); font-weight: 600; font-size: 16px; color: var(--ink-2); cursor: pointer; transition: all 120ms ease; }
.audience-tab:hover { border-color: var(--royal-blue); color: var(--royal-blue); }
.audience-tab[aria-selected="true"] { background: var(--royal-blue); color: var(--white); border-color: var(--royal-blue); }
.audience-panel { background: var(--surface-2); border-radius: var(--radius-lg); padding: 40px; display: none; }
.audience-panel[data-active="true"] { display: block; }
.audience-panel h3 { font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: 28px; color: var(--royal-blue); text-transform: uppercase; margin-bottom: 12px; }
.audience-panel p { color: var(--ink-2); font-size: 16px; margin-bottom: 28px; }
.audience-panel__row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; padding-top: 24px; border-top: 1px solid var(--line-strong); }
.audience-stat h4 { font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: 44px; color: var(--royal-blue); line-height: 1; margin-bottom: 6px; }
.audience-stat p { font-size: 14px; margin: 0; color: var(--ink-3); }
@media (max-width: 900px) {
  .audiences__inner { grid-template-columns: 1fr; }
  .audiences__tabs { flex-direction: row; overflow-x: auto; padding-bottom: 4px; }
  .audience-tab { white-space: nowrap; flex: 0 0 auto; }
  .audience-panel__row { grid-template-columns: 1fr; gap: 20px; }
  .audience-panel { padding: 28px; }
}

/* ============ TESTIMONIALS ============ */
.testimonials { padding: 96px 0; background: var(--surface-2); }
.testimonials__head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.testimonials__head .t-eyebrow { display: inline-block; margin-bottom: 14px; }
.testimonials__head h2 { margin-bottom: 14px; }
.testimonials__head p { font-size: 17px; color: var(--ink-2); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1080px; margin: 0 auto; }
.testimonial { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-1); }
.testimonial__stars { color: var(--gold); letter-spacing: 1px; margin-bottom: 14px; font-size: 14px; }
.testimonial__body { color: var(--ink-2); font-size: 15px; margin-bottom: 22px; line-height: 1.55; }
.testimonial__author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.testimonial__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--royal-blue); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: var(--font-display); font-style: italic; font-size: 15px; }
.testimonial__name { font-weight: 700; font-size: 14px; color: var(--ink); }
.testimonial__city { font-size: 13px; color: var(--ink-3); }
@media (max-width: 900px) { .testimonials__grid { grid-template-columns: 1fr; } }

/* ============ INTERSTITIAL ============ */
.interstitial { background: var(--royal-blue); color: var(--white); padding: 56px 0; margin: var(--frame-pad); border-radius: var(--frame-radius); overflow: hidden; }
.interstitial__inner { max-width: 980px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
.interstitial h3 { font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: clamp(26px, 3vw, 34px); color: var(--white); text-transform: uppercase; line-height: 1.05; margin-bottom: 8px; }
.interstitial p { color: rgba(255,255,255,.82); font-size: 16px; }
.interstitial__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 760px) { .interstitial__inner { grid-template-columns: 1fr; text-align: center; } .interstitial__ctas { justify-content: center; } }

/* ============ SERVICES ============ */
.services { padding: 96px 0; background: var(--white); }
.services__head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.services__head .t-eyebrow { display: inline-block; margin-bottom: 14px; }
.services__head h2 { margin-bottom: 14px; }
.services__head p { font-size: 17px; color: var(--ink-2); }
.services__layout { display: grid; grid-template-columns: 380px 1fr; gap: 48px; max-width: 1080px; margin: 0 auto; align-items: center; }
.services__photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-2); }
.services__photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.services__list { display: flex; flex-direction: column; gap: 14px; }
.service-card { display: grid; grid-template-columns: 56px 1fr auto; gap: 16px; align-items: center; padding: 18px 20px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-1); transition: border-color 120ms ease, transform 120ms ease; }
.service-card:hover { border-color: var(--royal-blue); transform: translateX(4px); }
.service-card__icon { width: 56px; height: 56px; background: var(--surface-2); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; }
.service-card__icon img { width: 34px; height: 34px; }
.service-card__title { font-family: var(--font-body); font-weight: 700; font-size: 16px; color: var(--ink); margin-bottom: 2px; }
.service-card__desc { font-size: 13px; color: var(--ink-3); }
.service-card__cta { font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--royal-blue); }
@media (max-width: 900px) { .services__layout { grid-template-columns: 1fr; } .services__photo img { aspect-ratio: 16/9; } }

/* ============ CLOSER FORM ============ */
.closer { background: var(--royal-blue-08); color: var(--white); padding: 96px 0; position: relative; overflow: hidden; margin: var(--frame-pad); border-radius: var(--frame-radius); }
.closer::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 60% at 50% 0%, rgba(6,235,240,.08), transparent 70%); pointer-events: none; }
.closer__inner { position: relative; max-width: 720px; margin: 0 auto; padding: 0 24px; text-align: center; }
.closer h2 { color: var(--white); margin-bottom: 14px; font-size: clamp(32px, 4vw, 50px); }
.closer p { color: rgba(255,255,255,.82); margin-bottom: 36px; font-size: 17px; }
.closer__form { display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px; }
.closer__form input { padding: 14px 16px; border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); color: var(--white); font: inherit; font-size: 15px; }
.closer__form input::placeholder { color: rgba(255,255,255,.5); }
.closer__form input:focus { outline: none; border-color: var(--electric-cyan); background: rgba(255,255,255,.10); }
.closer__form button { padding: 14px 28px; border-radius: var(--radius-md); background: var(--bright-red); color: var(--white); font-weight: 700; font-size: 15px; box-shadow: 0 4px 0 var(--bright-red-12); transition: transform 120ms ease, background 120ms ease; }
.closer__form button:hover { background: var(--bright-red-12); transform: translateY(2px); box-shadow: 0 2px 0 var(--bright-red-12); }
.closer__meta { margin-top: 18px; font-size: 13px; color: rgba(255,255,255,.55); }
@media (max-width: 700px) { .closer__form { grid-template-columns: 1fr; } }

/* ============ FOOTER ============ */
.footer { background: var(--royal-blue); color: rgba(255,255,255,.78); padding: 64px 0 24px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr; gap: 40px; max-width: var(--container); margin: 0 auto; padding: 0 24px 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__brand img { height: 56px; width: auto; margin-bottom: 16px; }
.footer__tagline { font-size: 14px; line-height: 1.55; max-width: 280px; color: rgba(255,255,255,.6); }
.footer__col h4 { font-family: var(--font-body); font-weight: 700; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a, .footer__col li { font-size: 14px; color: rgba(255,255,255,.65); }
.footer__col a:hover { color: var(--white); }
.footer__hours { font-size: 13px; line-height: 1.7; }
.footer__hours strong { color: var(--white); font-weight: 600; display: block; margin-bottom: 4px; }
.footer__bottom { max-width: var(--container); margin: 0 auto; padding: 24px 24px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,.45); gap: 16px; flex-wrap: wrap; }
.footer__monogram { display: flex; align-items: center; gap: 10px; }
.footer__monogram img { height: 28px; opacity: 0.85; }
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.92);
  transition: background-color 140ms ease, color 140ms ease, transform 140ms ease, border-color 140ms ease;
}
.footer__social a:hover {
  background: var(--bright-red);
  border-color: var(--bright-red);
  color: var(--white);
  transform: translateY(-2px);
}
.footer__social svg { width: 18px; height: 18px; display: block; }
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1/-1; } }
@media (max-width: 720px) {
  .footer__col ul { gap: 4px; }
  .footer__col a { display: inline-block; padding: 8px 0; }
  .footer__contact a { display: inline-block; padding: 6px 0; }
}
@media (max-width: 400px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__social { flex-wrap: wrap; }
}

/* ============ MOBILE STICKY BAR ============ */
.sticky-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--line); padding: 10px 12px; gap: 10px; z-index: 60; box-shadow: 0 -4px 12px rgba(0,0,0,.10); }
.sticky-bar a { flex: 1; text-align: center; padding: 13px 16px; border-radius: var(--radius-md); font-weight: 700; font-size: 15px; }
.sticky-bar .call { background: var(--white); color: var(--royal-blue); border: 2px solid var(--royal-blue); }
.sticky-bar .book { background: var(--bright-red); color: var(--white); box-shadow: 0 4px 0 var(--bright-red-12); }
@media (max-width: 900px) { .sticky-bar { display: flex; } body { padding-bottom: 76px; } .nav__links, .nav__phone { display: none; } }

/* ============ FOCUS ============ */
a:focus-visible, button:focus-visible, input:focus-visible { outline: 2px solid var(--electric-cyan); outline-offset: 3px; border-radius: 4px; }

/* ============ SCROLL REVEAL ============ */
/* JS auto-tags key elements with .reveal — they fade + slide into view on
   intersection. Respects prefers-reduced-motion. */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s cubic-bezier(.2,.7,.2,1), transform .65s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .05s; }
.reveal-delay-2 { transition-delay: .10s; }
.reveal-delay-3 { transition-delay: .15s; }
.reveal-delay-4 { transition-delay: .20s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-word, .hero-word.is-on { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__stars-icons svg, .rv-stats__starbar .star { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Hero choreography: deliberate sequenced load-in. JS splits the h1 into
   .hero-word spans and stages reveals on stars, h1, sub, ctas, checks. */
.hero h1 .hero-word { display: inline-block; opacity: 0; transform: translateY(14px); transition: opacity .55s cubic-bezier(.2,.7,.2,1), transform .55s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; padding-right: 0.08em; }
@media (max-width: 600px) { .hero h1 { line-height: 1.15; font-size: 34px; } }
.hero h1 .hero-word.is-on { opacity: 1; transform: none; }
.hero h1.hero-split { opacity: 1; transform: none; transition: none; }
.hero .reveal { transition-duration: .7s; }
.hero .hero__stars.reveal { transition-delay: 0s; }
.hero .hero__sub.reveal { transition-delay: 0s; }
.hero .hero__ctas.reveal { transition-delay: 0s; }
.hero .hero__checks.reveal { transition-delay: 0s; }
.hero .hero__photo.reveal { transition-delay: 0s; }
.hero[data-choreo="on"] .hero__sub.reveal { transition-delay: var(--hero-sub-delay, 0s); }
.hero[data-choreo="on"] .hero__ctas.reveal { transition-delay: var(--hero-ctas-delay, 0s); }
.hero[data-choreo="on"] .hero__checks.reveal { transition-delay: var(--hero-checks-delay, 0s); }
.hero[data-choreo="on"] .hero__photo.reveal { transition-delay: var(--hero-photo-delay, 0s); }

/* Star-fill choreography: 5 stars draw in 80ms steps on intersect.
   Applies to .hero__stars-icons (homepage badge) + .rv-stats__starbar (reviews). */
.hero__stars-icons svg, .rv-stats__starbar .star { opacity: 0; transform: scale(.6); transition: opacity .32s cubic-bezier(.2,.7,.2,1), transform .32s cubic-bezier(.34,1.56,.64,1); will-change: opacity, transform; display: inline-block; }
.hero__stars-icons.is-lit svg, .rv-stats__starbar.is-lit .star { opacity: 1; transform: none; }
.hero__stars-icons svg:nth-child(1), .rv-stats__starbar .star:nth-child(1) { transition-delay: 0ms; }
.hero__stars-icons svg:nth-child(2), .rv-stats__starbar .star:nth-child(2) { transition-delay: 80ms; }
.hero__stars-icons svg:nth-child(3), .rv-stats__starbar .star:nth-child(3) { transition-delay: 160ms; }
.hero__stars-icons svg:nth-child(4), .rv-stats__starbar .star:nth-child(4) { transition-delay: 240ms; }
.hero__stars-icons svg:nth-child(5), .rv-stats__starbar .star:nth-child(5) { transition-delay: 320ms; }
.rv-stats__starbar .star { display: inline-block; }

/* Service hero choreography: lighter cascade than homepage word-split.
   Eyebrow lands first, then h1, sub, ctas at deliberate intervals. */
.svc-hero .reveal { transition-duration: .65s; }
.svc-hero .svc-hero__eyebrow.reveal { transition-delay: 0s; }
.svc-hero h1.reveal { transition-delay: .15s; }
.svc-hero .svc-hero__sub.reveal { transition-delay: .35s; }
.svc-hero .svc-hero__ctas.reveal { transition-delay: .5s; }

/* ============ HAMBURGER + MOBILE DRAWER ============ */
.nav__hamburger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--royal-blue);
  color: var(--white);
  align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .15s;
}
.nav__hamburger:hover { background: var(--royal-blue-12); }
.nav__hamburger svg { width: 24px; height: 24px; }
@media (max-width: 900px) {
  .nav__hamburger { display: inline-flex; }
  .nav__right { display: none; }
}

.mobile-drawer {
  position: fixed; inset: 0; z-index: 90;
  pointer-events: none;
  visibility: hidden;
}
.mobile-drawer__backdrop {
  position: absolute; inset: 0;
  background: rgba(12,20,36,.50);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .25s;
}
.mobile-drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 88vw);
  background: linear-gradient(180deg, var(--royal-blue-08), var(--royal-blue));
  color: var(--white);
  padding: 24px 22px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  display: flex; flex-direction: column; gap: 4px;
  overflow-y: auto;
  box-shadow: -16px 0 40px rgba(12,20,36,.30);
}
.mobile-drawer[aria-hidden="false"] { pointer-events: auto; visibility: visible; }
.mobile-drawer[aria-hidden="false"] .mobile-drawer__backdrop { opacity: 1; }
.mobile-drawer[aria-hidden="false"] .mobile-drawer__panel { transform: none; }
.mobile-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.mobile-drawer__head img { height: 56px; width: auto; }
.mobile-drawer__close {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.10);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .15s;
}
.mobile-drawer__close:hover { background: rgba(255,255,255,.18); }
.mobile-drawer__section {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  font-size: 19px;
  color: var(--white);
  padding: 22px 14px 8px;
  margin-top: 6px;
  position: relative;
}
.mobile-drawer__section:first-of-type { margin-top: 0; }
.mobile-drawer__section::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 0;
  height: 2px;
  background: var(--bright-red);
  border-radius: 2px;
}
.mobile-drawer a:not(.mobile-drawer__cta) {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  transition: background .15s, color .15s;
}
.mobile-drawer a:not(.mobile-drawer__cta):hover { background: var(--bright-red); }
.mobile-drawer__cta {
  margin-top: auto;
  padding-top: 18px;
  display: flex; flex-direction: column; gap: 10px;
}
.mobile-drawer__cta a {
  padding: 14px 18px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  transition: transform .1s, background .15s;
}
.mobile-drawer__cta a.book { background: var(--bright-red); color: var(--white); box-shadow: 0 4px 0 var(--bright-red-12); }
.mobile-drawer__cta a.call { background: rgba(255,255,255,.10); color: var(--white); border: 1px solid rgba(255,255,255,.20); }
.mobile-drawer__cta a:active { transform: translateY(2px); }
html.drawer-open, body.drawer-open { overflow: hidden; }

/* ============ CARD HOVER LIFTS (subtle) ============ */
/* Apply small motion + shadow elevation on hover for tactile feel.
   Doesn't override page-level card styles. */
@media (hover: hover) {
  .testimonial, .interstitial .feature-card, .audience-panel .audience-card {
    transition: transform .2s cubic-bezier(.2,.7,.2,1), box-shadow .2s;
  }
  .testimonial:hover, .audience-panel .audience-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
}

/* ============ BOOKING MODAL ============ */
.bookmodal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; }
.bookmodal[data-open="true"] { display: flex; }
.bookmodal__backdrop { position: absolute; inset: 0; background: rgba(12,20,36,.72); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); animation: fadeIn 200ms ease; }
.bookmodal__panel { position: relative; width: 100%; max-width: 560px; max-height: calc(100vh - 48px); background: var(--white); border-radius: var(--radius-lg); box-shadow: 0 28px 64px rgba(0,0,0,.32); display: flex; flex-direction: column; overflow: hidden; animation: slideUp 240ms var(--ease-out, ease); }
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }
.bookmodal__close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%; background: var(--surface-2); color: var(--ink-2); display: flex; align-items: center; justify-content: center; font-size: 20px; line-height: 1; z-index: 2; transition: background-color 120ms ease; }
.bookmodal__close:hover { background: var(--line-strong); color: var(--ink); }
.bookmodal__head { padding: 28px 32px 16px; border-bottom: 1px solid var(--line); }
.bookmodal__steps { display: flex; gap: 8px; margin-bottom: 16px; }
.bookmodal__step-dot { flex: 1; height: 4px; border-radius: 2px; background: var(--line); transition: background-color 200ms ease; }
.bookmodal__step-dot.is-active { background: var(--bright-red); }
.bookmodal__step-dot.is-done { background: var(--royal-blue); }
.bookmodal__title { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 28px; line-height: 1.05; color: var(--royal-blue); text-transform: uppercase; letter-spacing: -0.01em; }
.bookmodal__body { padding: 24px 32px; overflow-y: auto; flex: 1; }
.bookmodal__step-panel { display: none; }
.bookmodal__step-panel.is-active { display: block; }
.bookmodal__services { display: flex; flex-direction: column; gap: 12px; }
.bookmodal__service { display: grid; grid-template-columns: 52px 1fr auto; gap: 14px; align-items: center; padding: 16px 18px; background: var(--white); border: 2px solid var(--line); border-radius: var(--radius-md); text-align: left; cursor: pointer; transition: border-color 120ms ease, transform 120ms ease, background-color 120ms ease; }
.bookmodal__service:hover { border-color: var(--royal-blue); transform: translateX(2px); }
.bookmodal__service.is-selected { border-color: var(--bright-red); background: rgba(245,1,11,.04); }
.bookmodal__service-icon { width: 52px; height: 52px; background: var(--surface-2); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; }
.bookmodal__service-icon img { width: 32px; height: 32px; }
.bookmodal__service-text strong { display: block; font-weight: 700; font-size: 16px; color: var(--ink); margin-bottom: 2px; }
.bookmodal__service-text small { font-size: 13px; color: var(--ink-3); }
.bookmodal__service-price { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 16px; color: var(--bright-red); text-transform: uppercase; letter-spacing: -0.005em; }
.bookmodal__price-card { background: var(--royal-blue); color: var(--white); padding: 24px; border-radius: var(--radius-md); margin-bottom: 22px; text-align: center; }
.bookmodal__price-card h3 { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 20px; text-transform: uppercase; letter-spacing: -0.005em; margin-bottom: 4px; }
.bookmodal__price-card .price { font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: 36px; color: var(--white); letter-spacing: -0.01em; margin-bottom: 6px; }
.bookmodal__price-card p { font-size: 14px; color: rgba(255,255,255,.78); line-height: 1.5; }
.bookmodal__field { display: block; margin-bottom: 16px; }
.bookmodal__field > span { display: block; font-weight: 700; font-size: 14px; color: var(--ink); margin-bottom: 6px; }
.bookmodal__field input, .bookmodal__field textarea, .bookmodal__field select { width: 100%; padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 16px; color: var(--ink); background: var(--white); transition: border-color 120ms ease; }
.bookmodal__field input:focus, .bookmodal__field textarea:focus { outline: none; border-color: var(--royal-blue); }
.bookmodal__field textarea { resize: vertical; min-height: 100px; }
.bookmodal__file { display: block; border: 2px dashed var(--line-strong); border-radius: var(--radius-md); padding: 24px; text-align: center; cursor: pointer; transition: border-color 120ms ease, background-color 120ms ease; margin-bottom: 16px; }
.bookmodal__file:hover { border-color: var(--royal-blue); background: var(--surface-2); }
.bookmodal__file input { display: none; }
.bookmodal__file-icon { width: 44px; height: 44px; margin: 0 auto 10px; color: var(--royal-blue); }
.bookmodal__file strong { display: block; font-weight: 700; font-size: 15px; color: var(--ink); margin-bottom: 4px; }
.bookmodal__file small { color: var(--ink-3); font-size: 13px; }
.bookmodal__file-list { display: block; margin-top: 12px; font-size: 13px; color: var(--royal-blue); font-weight: 600; }
.bookmodal__file-list:empty { display: none; }
.bookmodal__summary { background: var(--surface-2); border-radius: var(--radius-md); padding: 16px 18px; font-size: 14px; color: var(--ink-2); line-height: 1.6; }
.bookmodal__summary h4 { font-family: var(--font-body); font-weight: 700; font-size: 12px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px; }
.bookmodal__summary strong { color: var(--ink); }
.bookmodal__tier { background: var(--surface-2); border-left: 3px solid var(--bright-red); border-radius: var(--radius-sm); padding: 12px 14px; margin-top: -4px; font-size: 14px; color: var(--ink-2); }
.bookmodal__tier strong { display: block; font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 18px; color: var(--royal-blue); text-transform: uppercase; letter-spacing: -0.005em; margin-bottom: 2px; }
.bookmodal__tier .tier-quote { color: var(--bright-red); }
.bookmodal__ranges { margin: 6px 0 16px; }
.bookmodal__ranges-label { display: block; font-size: 13px; color: var(--ink-3); font-weight: 600; margin-bottom: 8px; }
.bookmodal__ranges-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.bookmodal__range { padding: 8px 14px; border: 1.5px solid var(--line-strong); border-radius: var(--radius-pill); background: var(--white); font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 14px; color: var(--ink-2); text-transform: uppercase; letter-spacing: -0.005em; cursor: pointer; transition: all 120ms ease; }
.bookmodal__range:hover { border-color: var(--royal-blue); color: var(--royal-blue); }
.bookmodal__range.is-active { background: var(--royal-blue); color: var(--white); border-color: var(--royal-blue); }
.bookmodal__success { text-align: center; padding: 32px 0; }
.bookmodal__success-icon { width: 64px; height: 64px; background: var(--bright-red); border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; color: var(--white); }
.bookmodal__success h3 { font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: 28px; color: var(--royal-blue); text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 12px; }
.bookmodal__success p { font-size: 15px; color: var(--ink-2); line-height: 1.55; max-width: 380px; margin: 0 auto 24px; }
.bookmodal__foot { padding: 18px 32px 22px; border-top: 1px solid var(--line); display: flex; gap: 10px; justify-content: space-between; background: var(--white); }
.bookmodal__foot .btn--back { background: transparent; color: var(--ink-2); border-color: var(--line-strong); box-shadow: none; }
.bookmodal__foot .btn--back:hover { background: var(--surface-2); color: var(--ink); transform: none; box-shadow: none; }
.bookmodal__foot .btn { font-size: 16px; padding: 12px 22px; }
.bookmodal__foot .btn--next, .bookmodal__foot .btn--submit { margin-left: auto; }
@media (max-width: 560px) {
  .bookmodal { padding: 0; align-items: flex-end; }
  .bookmodal__panel { max-height: 92vh; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .bookmodal__head { padding: 22px 22px 14px; }
  .bookmodal__body { padding: 20px 22px; }
  .bookmodal__foot { padding: 16px 22px 20px; }
  .bookmodal__title { font-size: 24px; }
}

/* ============ OUR WORK (home page) ============ */
.ourwork { padding: 56px 0; background: var(--white); }
.ourwork__head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.ourwork__heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--royal-blue);
  margin-bottom: 18px;
}
.ourwork__sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
}

.ourwork__collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  aspect-ratio: 4 / 3;
}
.ourwork__collage--full {
  grid-template-rows: repeat(5, 1fr);
  aspect-ratio: 4 / 5;
}
.ourwork__tile--wide { grid-column: span 2; }
.ourwork__more {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.ourwork__tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(12,20,36,.14), 0 4px 8px rgba(12,20,36,.06);
  cursor: pointer;
  transform: translateZ(0);
  transition: transform 280ms cubic-bezier(.2,.8,.2,1), box-shadow 280ms ease;
}
.ourwork__tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(12,20,36,.22), 0 6px 12px rgba(12,20,36,.10);
}
.ourwork__tile img,
.ourwork__tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 560ms cubic-bezier(.2,.8,.2,1);
}
.ourwork__tile:hover img {
  transform: scale(1.06);
}
.ourwork__tile--video {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  box-shadow: 0 28px 64px rgba(12,20,36,.22), 0 10px 16px rgba(12,20,36,.10);
}
.ourwork__tile--video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(35,84,153,.05), transparent 40%);
  pointer-events: none;
}
.ourwork__tile-pulse {
  position: absolute;
  top: 18px; left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 10px;
  background: rgba(0,0,0,.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius-pill);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}
.ourwork__tile-pulse::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bright-red);
  box-shadow: 0 0 0 0 rgba(245,1,11,.6);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(245,1,11,.6); }
  70%  { box-shadow: 0 0 0 12px rgba(245,1,11,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,1,11,0); }
}
.ourwork__tile-pulse::after { content: "Live"; }

@media (max-width: 900px) {
  .ourwork__collage {
    aspect-ratio: auto;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .ourwork__tile { aspect-ratio: 1 / 1; grid-column: auto; grid-row: auto; }
  .ourwork__tile--video {
    grid-column: 1 / 3;
    grid-row: auto;
    aspect-ratio: 16 / 9;
  }
  .ourwork__tile--wide {
    grid-column: 1 / 3;
    aspect-ratio: 2 / 1;
  }
}
@media (max-width: 520px) {
  .ourwork__collage { grid-template-columns: 1fr; gap: 12px; }
  .ourwork__tile--video,
  .ourwork__tile--wide { grid-column: 1 / 2; aspect-ratio: 16 / 9; }
}

/* ============ LIGHTBOX (Our Work expand) ============ */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox[data-open="true"] { display: flex; animation: lb-fade 200ms ease; }
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__backdrop {
  position: absolute; inset: 0;
  background: rgba(12,20,36,.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lightbox__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.lightbox__stage img,
.lightbox__stage video {
  max-width: 88vw;
  max-height: 80vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
  display: block;
}
.lightbox__stage video { background: black; }
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background-color 120ms ease, transform 120ms ease;
  cursor: pointer;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255,255,255,.22); }
.lightbox__close {
  top: 24px; right: 24px;
  width: 48px; height: 48px;
}
.lightbox__close svg { width: 20px; height: 20px; }
.lightbox__nav {
  top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
}
.lightbox__nav:hover { transform: translateY(-50%) scale(1.04); }
.lightbox__nav svg { width: 22px; height: 22px; }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
.lightbox__caption {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.92);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius-pill);
  z-index: 2;
  max-width: 80vw;
  text-align: center;
}
.lightbox__counter {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
}
@media (max-width: 720px) {
  .lightbox { padding: 16px; }
  .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .lightbox__close { top: 12px; right: 12px; width: 42px; height: 42px; }
  .lightbox__counter { top: 16px; }
  .lightbox__caption { bottom: 16px; font-size: 12px; }
}

/* ============ SERVICE DETAIL PAGE ============ */
.svc-hero { background: var(--royal-blue); color: var(--white); padding: 88px 0 96px; margin: var(--nav-gap) var(--frame-pad) var(--frame-pad); border-radius: var(--frame-radius); position: relative; overflow: hidden; }
.svc-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 50% at 50% 10%, rgba(6,235,240,.10), transparent 60%), radial-gradient(40% 40% at 80% 80%, rgba(35,84,153,.5), transparent 70%); pointer-events: none; }
.svc-hero__inner { position: relative; max-width: 920px; margin: 0 auto; padding: 0 24px; text-align: center; }

/* Service page hero photo band (sits between .svc-hero and .svc-detail) */
.svc-photo { background: var(--white); padding: 0; }
.svc-photo__frame { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.svc-photo__frame img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius-lg); display: block; box-shadow: 0 12px 32px rgba(12,20,36,.10), 0 2px 6px rgba(12,20,36,.06); }
.svc-photo + .svc-detail { padding-top: 48px; }
@media (max-width: 800px) {
  .svc-photo__frame { padding: 0 16px; }
  .svc-photo + .svc-detail { padding-top: 36px; }
}
.svc-hero__eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: var(--radius-pill); background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18); font-family: var(--font-body); font-weight: 700; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); margin-bottom: 22px; }
.svc-hero h1 { font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: clamp(40px, 6vw, 72px); line-height: 0.98; letter-spacing: -0.01em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.svc-hero h1 .red { color: var(--bright-red); }
.svc-hero__sub { font-size: 17px; line-height: 1.6; color: rgba(255,255,255,.82); max-width: 640px; margin: 0 auto 36px; }
.svc-hero__ctas { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin: 0 auto; max-width: 560px; }
.svc-hero__ctas .btn { flex: 1 1 220px; min-width: 0; }
@media (max-width: 720px) { .svc-hero { padding: 56px 0 64px; } }

.svc-detail { padding: 96px 0; background: var(--white); }
.svc-detail__inner { max-width: 980px; margin: 0 auto; padding: 0 24px; }
.svc-detail__copy { max-width: 720px; margin: 0 auto 56px; }
.svc-detail__copy h2 { font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: clamp(28px, 3.2vw, 40px); color: var(--royal-blue); text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 22px; line-height: 1.05; }
.svc-detail__copy p { font-size: 17px; line-height: 1.65; color: var(--ink-2); margin-bottom: 18px; }
.svc-detail__included { background: var(--surface-2); border-radius: var(--radius-lg); padding: 40px; max-width: 720px; margin: 0 auto; }
.svc-detail__included h3 { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 22px; color: var(--royal-blue); text-transform: uppercase; letter-spacing: -0.005em; margin-bottom: 22px; }
.svc-detail__included ul { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.svc-detail__included li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--ink); font-size: 15px; }
.svc-detail__included li::before { content: ""; width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%; background: var(--bright-red); -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10' fill='black'/%3E%3Cpolyline points='8 12 11 15 16 9' fill='none'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='black'/%3E%3C/svg%3E") center / contain no-repeat; box-shadow: inset 0 0 0 999px var(--bright-red); position: relative; }
.svc-detail__included li::before { background: var(--bright-red) url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='5 12 10 17 19 8'/%3E%3C/svg%3E") center / 14px 14px no-repeat; -webkit-mask: none; mask: none; }
@media (max-width: 720px) { .svc-detail__included ul { grid-template-columns: 1fr; } .svc-detail__included { padding: 28px; } }

/* ============ TALK WITH US — floating widget ============ */
/* Scroll-triggered intent capture. Bubble + expanded card states.
   Mirrors GSC pattern: 25% scroll trigger, Web Audio chime, 7min reappear,
   sessionStorage dismissal. Hidden on mobile <=768px to avoid blocking content. */
#tw-widget { position: fixed; right: 24px; bottom: 24px; z-index: 80; font-family: var(--font-body); }
#tw-widget[aria-hidden="true"] { pointer-events: none; }
#tw-widget[data-state="hidden"] .tw-card, #tw-widget[data-state="hidden"] .tw-bubble { opacity: 0; transform: translateY(20px) scale(.96); pointer-events: none; visibility: hidden; }
#tw-widget .tw-card, #tw-widget .tw-bubble { transition: opacity .35s cubic-bezier(.2,.7,.2,1), transform .35s cubic-bezier(.2,.7,.2,1); }

/* Card */
.tw-card { position: absolute; right: 0; bottom: 0; width: 360px; max-width: calc(100vw - 36px); background: var(--white); border-radius: 20px; box-shadow: 0 20px 50px rgba(12,20,36,.22), 0 6px 16px rgba(12,20,36,.10); overflow: hidden; display: flex; flex-direction: column; }
#tw-widget[data-state="bubble"] .tw-card, #tw-widget[data-state="bubble"] .tw-bubble + .tw-card { opacity: 0; transform: translateY(12px) scale(.97); pointer-events: none; visibility: hidden; }
#tw-widget[data-state="card"] .tw-card { opacity: 1; transform: translateY(0) scale(1); visibility: visible; }
#tw-widget[data-state="card"] .tw-bubble { opacity: 0; transform: translateY(12px) scale(.85); pointer-events: none; visibility: hidden; }

.tw-head { background: linear-gradient(135deg, var(--royal-blue-08), var(--royal-blue)); color: var(--white); padding: 18px 18px 16px; display: flex; align-items: center; gap: 12px; position: relative; }
.tw-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--white); flex-shrink: 0; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 3px rgba(255,255,255,.15); overflow: hidden; }
.tw-avatar img { width: 44px; height: 44px; object-fit: cover; object-position: center; }
.tw-head__text { flex: 1; min-width: 0; }
.tw-head__title { font-family: var(--font-display); font-weight: 700; font-size: 18px; line-height: 1.1; letter-spacing: 0.01em; }
.tw-head__status { font-size: 12px; opacity: 0.78; display: flex; align-items: center; gap: 6px; margin-top: 2px; }
.tw-head__status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 2px rgba(74,222,128,.25); }
.tw-close { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.12); color: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s; flex-shrink: 0; }
.tw-close:hover { background: rgba(255,255,255,.22); }
.tw-close svg { width: 16px; height: 16px; }

.tw-body { padding: 20px 18px 18px; }
.tw-greet { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--ink); line-height: 1.3; margin-bottom: 4px; }
.tw-greet span { display: inline-block; transform-origin: 70% 70%; animation: tw-wave 2.2s ease-in-out 0.4s 2; }
@keyframes tw-wave { 0%, 60%, 100% { transform: rotate(0); } 10%, 30% { transform: rotate(14deg); } 20%, 40% { transform: rotate(-8deg); } 50% { transform: rotate(10deg); } }
.tw-sub { font-size: 13px; color: var(--ink-3); margin-bottom: 14px; line-height: 1.5; }

.tw-form { display: flex; flex-direction: column; gap: 8px; }
.tw-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.tw-input, .tw-textarea { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; font: inherit; font-size: 14px; color: var(--ink); background: var(--white); transition: border-color .15s, box-shadow .15s; }
.tw-input:focus, .tw-textarea:focus { outline: none; border-color: var(--royal-blue); box-shadow: 0 0 0 3px rgba(35,84,153,.12); }
.tw-textarea { resize: vertical; min-height: 70px; max-height: 140px; font-family: var(--font-body); }
.tw-submit { margin-top: 4px; padding: 12px 18px; border-radius: 10px; background: var(--bright-red); color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: 0.04em; cursor: pointer; transition: transform .1s, background .15s, box-shadow .15s; box-shadow: 0 4px 0 var(--bright-red-12); }
.tw-submit:hover { background: var(--bright-red-12); transform: translateY(-1px); }
.tw-submit:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--bright-red-12); }

.tw-fineprint { font-size: 11px; color: var(--ink-3); line-height: 1.45; margin-top: 8px; }

.tw-success { padding: 36px 24px; text-align: center; display: none; }
#tw-widget[data-form="sent"] .tw-form, #tw-widget[data-form="sent"] .tw-greet, #tw-widget[data-form="sent"] .tw-sub, #tw-widget[data-form="sent"] .tw-fineprint { display: none; }
#tw-widget[data-form="sent"] .tw-success { display: block; }
.tw-success__icon { width: 56px; height: 56px; border-radius: 50%; background: #4ade80; color: var(--white); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.tw-success__icon svg { width: 28px; height: 28px; }
.tw-success__title { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--ink); margin-bottom: 6px; }
.tw-success__sub { font-size: 13px; color: var(--ink-3); line-height: 1.55; }

/* Bubble (collapsed) */
.tw-bubble { width: 60px; height: 60px; border-radius: 50%; background: var(--royal-blue); color: var(--white); display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 28px rgba(12,20,36,.20), 0 4px 10px rgba(12,20,36,.10); cursor: pointer; position: relative; transition: background .2s, transform .2s, box-shadow .2s; }
.tw-bubble:hover { background: var(--royal-blue-12); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(12,20,36,.24), 0 6px 12px rgba(12,20,36,.12); }
.tw-bubble svg { width: 26px; height: 26px; }
.tw-bubble-dot { position: absolute; top: 6px; right: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--bright-red); border: 2px solid var(--white); }
.tw-bubble-pulse { position: absolute; inset: -4px; border-radius: 50%; box-shadow: 0 0 0 0 rgba(245,1,11,.55); animation: tw-pulse 2s ease-out infinite; pointer-events: none; }
@keyframes tw-pulse { 0% { box-shadow: 0 0 0 0 rgba(245,1,11,.55); } 70% { box-shadow: 0 0 0 18px rgba(245,1,11,0); } 100% { box-shadow: 0 0 0 0 rgba(245,1,11,0); } }

/* On-dark variant: flip bubble to white-on-navy when widget overlaps a dark section
   so the navy bubble doesn't disappear into navy backgrounds like .hero, .svc-hero,
   .mid-cta, .interstitial, .closer, .footer. */
#tw-widget.on-dark .tw-bubble { background: var(--white); color: var(--royal-blue); box-shadow: 0 12px 28px rgba(0,0,0,.35), 0 4px 10px rgba(0,0,0,.20), 0 0 0 1px rgba(255,255,255,.20); }
#tw-widget.on-dark .tw-bubble:hover { background: var(--surface-2); }
#tw-widget.on-dark .tw-bubble-dot { border-color: var(--white); }

/* Mobile: hide card, keep bubble (clicking bubble opens form anyway) */
@media (max-width: 768px) {
  #tw-widget { right: 16px; bottom: calc(env(safe-area-inset-bottom, 0px) + 76px); }
  #tw-widget[data-state="card"] .tw-card { opacity: 0; transform: translateY(20px) scale(.96); pointer-events: none; visibility: hidden; }
  #tw-widget[data-state="card"] .tw-bubble { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; visibility: visible; }
}
