/* ============================================================
   Mobarok Hossain — Soft Blue Glass
   Swipy-inspired rhythm + Apple-style translucent surfaces.
   Visual layer only: no content, routes or functionality are hidden.
   ============================================================ */

:root {
  --green: #1473e6;
  --green-glow: #3b8cff;
  --green-deep: #0759bd;
  --green-soft: rgba(20, 115, 230, .095);
  --green-line: rgba(20, 115, 230, .24);
  --teal: #52c7ea;
  --cyan: #0a84ff;

  --base: #f3f8ff;
  --base-2: #eaf3ff;
  --surface: rgba(255, 255, 255, .72);
  --surface-2: rgba(244, 249, 255, .88);
  --glass: rgba(255, 255, 255, .58);
  --glass-blur: 24px;

  --text: #10213a;
  --text-muted: #5f6f85;
  --text-dim: #8c9aab;
  --on-green: #ffffff;
  --border: rgba(38, 84, 139, .18);
  --border-soft: rgba(38, 84, 139, .09);
  --border-strong: rgba(38, 84, 139, .28);

  --font-sans: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
  --font-display: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
  --fs-hero: clamp(3.1rem, 7vw, 6.7rem);
  --fs-h1: clamp(2.45rem, 5vw, 4.75rem);
  --fs-h2: clamp(2rem, 3.8vw, 3.4rem);
  --maxw: 1240px;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;

  --shadow-sm: 0 10px 30px rgba(33, 76, 126, .08);
  --shadow: 0 28px 80px rgba(33, 76, 126, .14);
  --shadow-green: 0 16px 38px rgba(20, 115, 230, .22);
  --grad-green: linear-gradient(135deg, #1473e6, #46a6ff);
  --grad-brand: linear-gradient(120deg, #0759bd 0%, #1473e6 50%, #52c7ea 100%);
  --grad-text: linear-gradient(135deg, #10213a 0%, #1473e6 68%, #52c7ea 100%);
  --grad-orb-a: radial-gradient(circle at 30% 30%, rgba(82,199,234,.42), rgba(20,115,230,.09) 60%, transparent 72%);
  --grad-orb-b: radial-gradient(circle at 30% 30%, rgba(20,115,230,.30), rgba(82,199,234,.08) 60%, transparent 72%);
}

/* Premium two-step chat onboarding */
.chat-welcome {
  flex: 1; min-height: 0; padding: 1.35rem 1.15rem 1.15rem; overflow-y: auto; text-align: center;
  background: radial-gradient(circle at 50% 0,rgba(82,199,234,.18),transparent 34%),linear-gradient(180deg,rgba(255,255,255,.9),rgba(244,249,255,.92));
}
.chat-welcome[hidden], .chat-conversation[hidden] { display: none !important; }
.chat-conversation { display: flex; flex: 1; min-height: 0; flex-direction: column; }
.chat-welcome-icon {
  width: 50px; height: 50px; display: grid; place-items: center; margin: 0 auto .75rem; color: #fff;
  background: linear-gradient(135deg,#0759bd,#29a9ed); border: 5px solid rgba(255,255,255,.76);
  border-radius: 17px; box-shadow: 0 12px 28px rgba(20,115,230,.22); font-size: 1.25rem;
}
.chat-welcome-kicker { color: #1473e6; font-size: .64rem; font-weight: 750; letter-spacing: .16em; }
.chat-welcome h3 { margin: .35rem 0; color: #10233e; font-size: 1.23rem; letter-spacing: -.025em; }
.chat-welcome > p { max-width: 30ch; margin: 0 auto 1rem; color: #647991; font-size: .78rem; line-height: 1.55; }
.chat-welcome .chat-id { display: grid; grid-template-columns: 1fr; gap: .35rem; padding: 0; text-align: left; border: 0; }
.chat-welcome .chat-id label { margin-top: .25rem; color: #334b66; font-size: .72rem; font-weight: 650; }
.chat-welcome .chat-id label span { color: #91a0b1; font-weight: 500; }
.chat-welcome .chat-id input {
  width: 100%; min-height: 44px; padding: .7rem .85rem; color: #10233e; background: rgba(255,255,255,.86);
  border: 1px solid rgba(20,115,230,.14); border-radius: 13px; box-shadow: 0 1px 0 #fff inset; font-size: .84rem;
}
.chat-welcome .chat-id input:focus { border-color: rgba(20,115,230,.52); box-shadow: 0 0 0 3px rgba(20,115,230,.09); }
.chat-start {
  width: 100%; min-height: 44px; display: flex; align-items: center; justify-content: center; gap: .5rem; margin-top: .9rem;
  color: #fff; background: linear-gradient(135deg,#0963ce,#269fe8); border: 0; border-radius: 13px;
  box-shadow: 0 12px 28px rgba(20,115,230,.18); font: 700 .83rem/1 var(--font-sans); cursor: pointer;
  transition: transform .18s ease,box-shadow .18s ease;
}
.chat-start:hover { transform: translateY(-1px); box-shadow: 0 15px 32px rgba(20,115,230,.24); }
.chat-guest { margin: .7rem auto .45rem; padding: .25rem .4rem; color: #496680; background: transparent; border: 0; font: 650 .77rem/1.2 var(--font-sans); cursor: pointer; }
.chat-guest:hover { color: #0759bd; }
.chat-welcome > small { display: flex; align-items: center; justify-content: center; gap: .3rem; color: #91a0b1; font-size: .64rem; }
@media (max-width: 480px) {
  .chat-panel { height: min(540px,calc(100dvh - 108px)); }
  .chat-welcome { padding: 1.1rem 1rem 1rem; }
  .chat-welcome > p { margin-bottom: .75rem; }
}

/* Premium interaction, service outcomes, responsive and accessibility pass */
html { opacity: 1; transition: opacity .17s ease, filter .17s ease; }
html.page-leaving { opacity: .68; filter: blur(2px); }
.btn, .work-card, .service-editorial, .process-step, .tm-card, .pe-card, .rel-gig, .pkg-card {
  transition: transform .24s cubic-bezier(.2,.8,.2,1), box-shadow .24s ease, border-color .24s ease, background-color .24s ease, color .2s ease;
}
@media (hover:hover) {
  .btn:hover { transform: translateY(-2px); }
  .work-card:hover, .process-step:hover, .tm-card:hover, .rel-gig:hover { transform: translateY(-5px); }
  .service-editorial:hover { transform: translateY(-3px); box-shadow: 0 28px 70px rgba(38,82,132,.13); }
}
.service-outcomes {
  display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: .55rem; margin: 1.25rem 0;
}
.service-outcomes .service-mini-title { grid-column: 1/-1; padding: 0; color: #71849a; background: transparent; border: 0; font-size: .66rem; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.service-outcomes > span:not(.service-mini-title) { display: flex; align-items: flex-start; gap: .45rem; padding: .7rem; color: #405873; background: rgba(255,255,255,.66); border: 1px solid rgba(20,115,230,.10); border-radius: 13px; font-size: .75rem; line-height: 1.4; }
.service-outcomes i { flex: none; margin-top: .1rem; color: #1473e6; }
.service-sample-link { display: inline-flex; align-items: center; gap: .45rem; margin-top: 1rem; color: #0759bd; font-size: .78rem; font-weight: 700; }
.service-sample-link i:last-child { transition: transform .2s ease; }
.service-sample-link:hover i:last-child { transform: translate(2px,-2px); }

:where(a,button,input,select,textarea,summary):focus-visible { outline: 3px solid rgba(20,115,230,.35); outline-offset: 3px; }
.skip-link:focus { position: fixed !important; z-index: 12000; top: 12px; left: 12px !important; padding: .75rem 1rem; color: #fff; background: #0759bd; border-radius: 10px; }
img { height: auto; }
.chat-head span#chatStatus { transition: color .2s ease; }

@media (max-width: 800px) {
  body.menu-open { overflow: hidden; }
  .nav-links { overscroll-behavior: contain; }
  .service-outcomes { grid-template-columns: 1fr; }
  .service-outcomes > span:not(.service-mini-title) { padding: .62rem .7rem; }
  .service-editorial .service-content { padding: clamp(1.1rem,5vw,1.5rem); }
  .section { padding-block: clamp(3.6rem,12vw,5rem); }
  .section-sm { padding-block: clamp(2.7rem,9vw,4rem); }
}
@media (max-width: 480px) {
  .page-hero { padding-top: 112px; padding-bottom: 2rem; }
  .page-hero h1 { font-size: clamp(2.35rem,12vw,3.35rem); line-height: .98; }
  .page-hero p { font-size: .95rem; line-height: 1.65; }
  .service-actions { align-items: stretch; }
  .service-actions .btn { width: 100%; }
  .service-commercial { justify-content: space-between; }
  .tm-grid, .rel-gigs, .process-grid { gap: .8rem; }
  .cta-band { padding: 2.5rem 1.15rem; border-radius: 24px; }
  .chat-widget { right: max(10px,env(safe-area-inset-right)); bottom: max(10px,env(safe-area-inset-bottom)); }
  .chat-panel { width: calc(100vw - 20px); max-height: calc(100dvh - 94px); }
}
@media (prefers-reduced-motion: reduce) {
  html, .btn, .work-card, .service-editorial, .process-step, .tm-card, .pe-card, .rel-gig, .pkg-card { transition: none !important; }
  html.page-leaving { opacity: 1; filter: none; }
}

/* Final compact CTA rhythm and mobile service-package placement. */
.cta-band {
  padding: clamp(2.1rem,3vw,2.85rem) clamp(1.35rem,4vw,3.25rem);
}
.cta-band h2 {
  font-size: clamp(2rem,3.25vw,3rem);
  max-width: 14ch;
  margin-bottom: .7rem;
}
.cta-band .eyebrow { margin-bottom: .85rem; }
.cta-band p { margin-bottom: 1.15rem; }
.mobile-package-anchor:empty { display: none; }
@media (max-width: 900px) {
  .mobile-package-anchor:not(:empty) { display: block; margin: 1.25rem 0 2rem; }
  .mobile-package-anchor .gig-side { width: 100%; margin: 0; }
  .mobile-package-anchor .pkg-card { max-width: 620px; margin-inline: auto; }
}
@media (max-width: 640px) {
  .cta-band { padding: 1.9rem 1.1rem; }
  .cta-band h2 { font-size: clamp(1.85rem,9vw,2.35rem); }
  .mobile-package-anchor:not(:empty) { margin: 1rem 0 1.5rem; }
}

/* Keep the CTA message on one line when the card has enough width. */
@media (min-width: 701px) {
  .cta-band { padding-block: clamp(1.8rem,2.5vw,2.4rem); }
  .cta-band h2 {
    width: 100%;
    max-width: none;
    white-space: nowrap;
    font-size: clamp(2rem,3vw,3rem);
  }
}
@media (max-width: 700px) {
  .cta-band h2 { width: auto; max-width: 14ch; white-space: normal; }
}

/* Accessibility audit: AA contrast and reliable touch targets. */
:root {
  --text-muted: #465b74;
  --text-dim: #61758c;
}
.footer-brand p, .footer ul a, .footer .foot-muted, .footer-bottom { color: #b9c8d9; }
.footer h3, .footer h4 { color: #d5e0ec; }
.cta-band p { color: rgba(255,255,255,.9); opacity: 1; }
.chat-close, .chat-teaser-x, .chat-guest, .filter-pill, .pkg-tab, .socials a, .tz-fmt-toggle button, summary {
  min-width: 44px;
  min-height: 44px;
}
.chat-close, .chat-teaser-x { display: inline-grid; place-items: center; }
.chat-guest { padding-inline: .75rem; }
@media (pointer: coarse) {
  .nav-links a, .footer a, .contact-line, .service-sample-link { min-height: 44px; display: inline-flex; align-items: center; }
}

/* CTA headline uses the full card width on larger screens. */
@media (min-width: 701px) {
  .cta-band h2 {
    width: 100%;
    max-width: none;
    white-space: nowrap;
    font-size: clamp(2rem,3vw,3rem);
  }
  .cta-band { padding-block: clamp(1.8rem,2.5vw,2.4rem); }
}
@media (max-width: 700px) {
  .cta-band h2 { width: auto; max-width: 14ch; white-space: normal; }
}

html { background: var(--base); }

body {
  background:
    radial-gradient(900px 600px at 92% 2%, rgba(82, 199, 234, .19), transparent 66%),
    radial-gradient(850px 580px at 3% 40%, rgba(20, 115, 230, .11), transparent 65%),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 52%, #f8fbff 100%);
}

body::before {
  background:
    radial-gradient(850px 500px at 75% -8%, rgba(20,115,230,.10), transparent 64%),
    radial-gradient(800px 500px at 8% 110%, rgba(82,199,234,.10), transparent 65%);
}
body::after { opacity: .012; }

h1, h2, h3, h4 {
  letter-spacing: -.035em;
  color: var(--text);
}

::selection { background: #1473e6; color: #fff; }

.section { padding-block: clamp(5rem, 8vw, 8rem); }
.section-sm { padding-block: clamp(3.5rem, 6vw, 5.5rem); }
.section-title { max-width: 16ch; }
.section-lead { font-size: clamp(1rem, 1.4vw, 1.16rem); }

.eyebrow {
  padding: .48rem .82rem;
  background: rgba(255,255,255,.56);
  border: 1px solid rgba(20,115,230,.16);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  letter-spacing: .13em;
}
.eyebrow::before {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
}

/* Navigation */
.nav { padding-top: 10px; }
.nav-inner { height: 78px; }
.nav.scrolled {
  background: rgba(248, 251, 255, .72);
  border-bottom-color: rgba(255,255,255,.8);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  box-shadow: 0 10px 35px rgba(34,73,119,.08);
}
.nav .brand {
  padding: .54rem .75rem;
  background: #10213a;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(16,33,58,.14);
}
.nav .brand-logo { width: 132px; height: auto; }
.nav-links a {
  color: #526278;
  font-family: var(--font-display);
  font-weight: 500;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }

/* Buttons */
.btn {
  min-height: 52px;
  padding-inline: 1.7rem;
  border-radius: 13px;
  font-family: var(--font-display);
  box-shadow: none;
}
.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  background: linear-gradient(120deg, #0759bd, #3b9cff);
  box-shadow: 0 20px 45px rgba(20,115,230,.27);
  transform: translateY(-3px);
}
.btn-ghost {
  color: var(--text);
  background: rgba(255,255,255,.58);
  border-color: rgba(20,115,230,.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.btn-ghost:hover { background: rgba(255,255,255,.92); }

/* Hero — all original intro/portrait/chips remain visible */
.hero {
  min-height: min(930px, 100svh);
  padding-top: 98px;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  width: clamp(360px, 48vw, 760px);
  aspect-ratio: 1;
  right: -13%;
  top: 4%;
  border-radius: 42% 58% 60% 40% / 46% 42% 58% 54%;
  background: linear-gradient(145deg, rgba(82,199,234,.20), rgba(20,115,230,.12));
  filter: blur(2px);
  transform: rotate(-12deg);
  z-index: 0;
}
.hero-fallback {
  background:
    radial-gradient(52% 54% at 78% 40%, rgba(20,115,230,.15), transparent 72%),
    radial-gradient(32% 38% at 65% 66%, rgba(82,199,234,.13), transparent 76%);
}
.hero-content { max-width: 820px; }
.hero h1 { line-height: .96; }
.hero h1 .accent, .hero h1 .grad {
  color: transparent;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-sub { color: var(--text-muted); }
.hero-badge {
  color: #0759bd;
  background: rgba(255,255,255,.62);
  border-color: rgba(20,115,230,.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-sm);
}
.hero-badge .pulse { background: var(--cyan); }
.hero-portrait::before {
  background: radial-gradient(circle, rgba(20,115,230,.14), transparent 65%);
}
.hero-play {
  color: var(--text);
  background: rgba(255,255,255,.72);
  border-color: rgba(255,255,255,.86);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 18px 48px rgba(22,65,112,.20);
}
.hero-play i { background: var(--grad-brand); color: #fff; }
.hero-chips .chip {
  color: var(--text);
  background: rgba(255,255,255,.65);
  border-color: rgba(255,255,255,.85);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: var(--shadow-sm);
}
.hero-aurora span:nth-child(1) { background: rgba(20,115,230,.17); }
.hero-aurora span:nth-child(2) { background: rgba(82,199,234,.15); }

/* Apple glass surface system */
.stats, .work-card, .service-card, .why-card, .process-step,
.testimonial-card, .tool-card, .timeline-item, .stat-tile,
.contact-card, .glass-card, .book-info, .book-main,
.gig-side, .gig-card, .blog-card, .rel-gig,
.chat-panel, .chat-teaser, .site-popup__card {
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(24px) saturate(155%);
  -webkit-backdrop-filter: blur(24px) saturate(155%);
}

.stats { background: rgba(255,255,255,.55); border-radius: var(--radius-lg); overflow: hidden; }
.stat { background: rgba(255,255,255,.42); }
.stat:hover { background: rgba(255,255,255,.82); }

.work-card { border-radius: var(--radius-lg); }
.work-card:hover {
  transform: translateY(-8px);
  border-color: rgba(20,115,230,.22);
  box-shadow: var(--shadow);
}

.service-card, .why-card, .process-step, .testimonial-card, .tool-card {
  border-radius: var(--radius-lg);
}
.service-card:hover, .why-card:hover, .process-step:hover, .tool-card:hover {
  background: rgba(255,255,255,.90);
  border-color: rgba(20,115,230,.25);
  box-shadow: var(--shadow);
}
.service-card .icon, .why-card .icon, .process-step .num {
  background: var(--green-soft);
  color: var(--green);
}

/* Services and gig detail */
.service-row {
  border-radius: var(--radius-lg);
  transition: background .3s, transform .3s, box-shadow .3s;
}
.service-row:hover {
  background: rgba(255,255,255,.70);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.gig-main-img { background-color: #dcecff; border-color: rgba(20,115,230,.14); }
.gig-side {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gig-tabs, .gig-package, .gig-compare { color: var(--text); }
.gig-tabs button { color: var(--text-muted); }
.gig-tabs button.active { color: var(--green); }

/* Booking and contact — prevent dark/grey legacy panels */
.book-info, .book-main {
  color: var(--text);
  border-radius: var(--radius-lg);
}
.book-grid { gap: clamp(1rem, 2.5vw, 2rem); }
.calendar, .cal-wrap, .time-panel, .booking-card {
  color: var(--text);
  background: rgba(255,255,255,.60);
  border-color: rgba(255,255,255,.86);
  box-shadow: var(--shadow-sm);
}
.cal-day, .time-slot { color: var(--text); }
.cal-day.muted, .cal-day.disabled { color: var(--text-dim); }
.contact-split > form, .contact-split > div:first-child {
  padding: clamp(1.4rem,3vw,2.5rem);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(24px) saturate(155%);
  -webkit-backdrop-filter: blur(24px) saturate(155%);
}
.field input, .field textarea, .field select,
.chat-form input, .chat-id input {
  color: var(--text);
  background: rgba(255,255,255,.82);
  border-color: rgba(38,84,139,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.field input:focus, .field textarea:focus, .field select:focus {
  background: #fff;
  border-color: var(--green);
  box-shadow: 0 0 0 4px var(--green-soft);
}
.field select option { background: #fff; color: var(--text); }

/* Page heroes */
.page-hero {
  background:
    radial-gradient(circle at 88% 18%, rgba(82,199,234,.15), transparent 24rem),
    radial-gradient(circle at 10% 80%, rgba(20,115,230,.09), transparent 25rem);
}
.page-hero .kicker { color: var(--green); }

/* CTA and footer use blue depth for contrast */
.cta-band {
  color: #fff;
  background:
    radial-gradient(circle at 15% 15%, rgba(82,199,234,.28), transparent 26rem),
    radial-gradient(circle at 88% 85%, rgba(10,132,255,.30), transparent 28rem),
    linear-gradient(135deg, #082a57 0%, #0759bd 56%, #178fc5 100%);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 30px 90px rgba(7,89,189,.24);
}
.cta-band h2, .cta-band p { color: #fff; }
.cta-band p { opacity: .78; }

.footer {
  color: #fff;
  background:
    radial-gradient(circle at 82% 8%, rgba(82,199,234,.18), transparent 30rem),
    linear-gradient(145deg, #071a31, #0b2747);
  border-top-color: rgba(255,255,255,.10);
}
.footer h2, .footer h3, .footer .brand { color: #fff; }
.footer-brand p, .footer ul a, .footer .foot-muted, .footer-bottom { color: #b8c8da; }
.footer ul a:hover { color: #fff; }

/* Chat and popup */
.chat-panel, .chat-teaser, .site-popup__card { color: var(--text); }
.chat-head { background: linear-gradient(120deg, rgba(20,115,230,.10), rgba(255,255,255,.68)); }
.chat-msg.admin .bubble { background: rgba(20,115,230,.07); }
.chat-msg.me .bubble { background: var(--grad-brand); color: #fff; }
.site-popup__backdrop { background: rgba(20,35,56,.42); }

/* Background canvas stays decorative and cannot dim content */
#bg-canvas { opacity: .38; }
.bg-veil {
  background: linear-gradient(180deg, rgba(243,248,255,.08), rgba(243,248,255,.52));
  pointer-events: none;
}
#loader { background: #f3f8ff; }
.loader-word { color: var(--text-muted); }

@media (max-width: 900px) {
  .nav { padding-top: 0; }
  .nav-inner { height: 72px; }
  .nav-links {
    color: var(--text);
    background: rgba(248,251,255,.94);
    border-color: rgba(38,84,139,.12);
    box-shadow: var(--shadow);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
  }
  .hero { min-height: auto; padding-block: 9rem 6rem; }
  .stats { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 600px) {
  .hero { padding-top: 8rem; }
  .hero h1 { font-size: clamp(2.8rem,14vw,4.2rem); }
  .hero-actions .btn { width: 100%; }
  .stats { grid-template-columns: 1fr; }
  .contact-split > form, .contact-split > div:first-child { padding: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .work-card:hover, .service-card:hover, .why-card:hover,
  .process-step:hover, .tool-card:hover, .service-row:hover,
  .btn:hover { transform: none; }
}

/* ============================================================
   Contrast and motion corrections
   ============================================================ */

/* Keep the WebGL dot-wave, remove only the custom mouse tracker. */
.cursor-glow, .cursor-ring, .cursor-dot { display: none !important; }

/* The legacy reusable class is named .glass (not .glass-card). */
.glass,
.pkg-card.glass,
.book-info.glass,
.book-main.glass,
.rev-form.glass,
.tmb-founder.glass {
  color: var(--text);
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(255,255,255,.92);
  box-shadow: 0 18px 50px rgba(33,76,126,.11);
  backdrop-filter: blur(26px) saturate(155%);
  -webkit-backdrop-filter: blur(26px) saturate(155%);
}

.glass:hover {
  transform: translateY(-2px);
  border-color: rgba(20,115,230,.20);
  box-shadow: 0 22px 55px rgba(33,76,126,.13);
}

/* Gig package card: explicit colors prevent inherited grey-on-grey text. */
.pkg-card, .pkg-panel, .pkg-top, .pkg-meta, .pkg-feat,
.pkg-top strong, .pkg-price, .pkg-price .price {
  color: var(--text);
}
.pkg-tabs {
  background: rgba(235,245,255,.72);
  border-bottom-color: rgba(38,84,139,.12);
}
.pkg-tab { color: #66778d; }
.pkg-tab.on {
  color: #0759bd;
  background: rgba(20,115,230,.10);
  border-bottom-color: var(--green);
}
.pkg-desc, .pkg-price .was, .pkg-feat li.off { color: var(--text-muted); }
.pkg-meta { border-color: rgba(38,84,139,.12); }
.pkg-feat li.off i { color: var(--text-dim); }
.pkg-card .btn-primary { color: #fff; }

/* Booking/calendar/timezone contrast. */
.cal-head, .cal-head strong, .cal-cell, .book-facts div,
.order-sum, .order-sum h3, .slot, .tz-picker, .tz-item {
  color: var(--text);
}
.cal-dow span, .cal-cell.off, .slots-tz, .slots-tz-lbl { color: var(--text-muted); }
.cal-cell.free, .slot, .tz-picker, .svc-locked {
  background: rgba(255,255,255,.78);
  border-color: rgba(38,84,139,.15);
}
.tz-dropdown {
  color: var(--text);
  background: rgba(250,253,255,.96);
  border-color: rgba(38,84,139,.16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.tz-search { color: var(--text); background: #fff; }
.tz-item:hover { background: rgba(20,115,230,.08); }

/* Phone-country dropdown was originally hard-coded for the dark theme. */
.iti__country-list {
  color: var(--text) !important;
  background: rgba(250,253,255,.98) !important;
  border-color: rgba(38,84,139,.16) !important;
  box-shadow: var(--shadow) !important;
}
.iti__country.iti__highlight { background: rgba(20,115,230,.08) !important; }
.iti__dial-code, .iti--separate-dial-code .iti__selected-dial-code { color: var(--text-muted) !important; }

/* Broader reusable panels that were still using dark-theme shadows. */
.tm-card, .pe-card, .mkt-chip, .ind-pill, .tmb-card,
.fact, .work-summary, .trust-strip, .greview {
  color: var(--text);
  background: rgba(255,255,255,.68);
  border-color: rgba(255,255,255,.88);
  box-shadow: var(--shadow-sm);
}
.client-logo { filter: grayscale(1); opacity: .62; }
.client-logo:hover { filter: none; opacity: 1; }

/* Gentle hover language: no jumpy magnetic or large lift effects. */
.btn,
.work-card, .service-card, .why-card, .process-step, .tool-card,
.rel-gig, .tm-card, .pe-card, .mkt-chip, .tmb-card, .filter-pill,
.cal-cell.free, .slot {
  transition-duration: .22s;
}
.btn:hover { transform: translateY(-1px) !important; }
.work-card:hover, .service-card:hover, .why-card:hover,
.process-step:hover, .tool-card:hover, .rel-gig:hover,
.tm-card:hover, .pe-card:hover, .tmb-card:hover {
  transform: translateY(-2px);
}
.mkt-chip:hover, .cal-cell.free:hover, .slot:hover { transform: none; }

/* Global background is now CSS-only; the legacy WebGL dot-wave is removed. */
#bg-canvas, .bg-veil { display: none !important; }

/* Full-theme cleanup: replace remaining hard-coded cinematic colors. */
.marquee {
  color: var(--text-muted);
  background: rgba(255,255,255,.62);
  border-block: 1px solid rgba(38,84,139,.09);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}
.marquee-item { color: #65768b; }
.marquee-item::after { color: var(--green); }

.work-card {
  background: rgba(255,255,255,.88);
  border-color: rgba(38,84,139,.10);
}
.work-card .thumb {
  background:
    radial-gradient(circle at 75% 18%, rgba(82,199,234,.24), transparent 38%),
    linear-gradient(145deg, #e7f3ff, #cfe7ff);
}
.work-card .thumb::before {
  background: linear-gradient(160deg, rgba(20,115,230,.025), rgba(7,89,189,.10));
}
.work-card .overlay,
.work-card:hover .overlay {
  color: #fff;
  background: linear-gradient(transparent 28%, rgba(7,42,87,.86));
}
.work-card .overlay h3, .work-card .overlay .desc { color: #fff; }
.work-card .overlay .desc { opacity: .78; }

.glass,
.pkg-card.glass,
.book-info.glass,
.book-main.glass,
.rev-form.glass,
.tmb-founder.glass {
  background: rgba(255,255,255,.88);
  border-color: rgba(38,84,139,.11);
}

.hero-play:hover {
  color: var(--text);
  background: rgba(255,255,255,.94);
}
.hero-hint {
  color: var(--text-muted);
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.blog-thumb {
  background:
    radial-gradient(circle at 78% 18%, rgba(82,199,234,.24), transparent 40%),
    linear-gradient(145deg, #e8f4ff, #d3e9ff) center/cover no-repeat;
}

.cs-player::before {
  background: linear-gradient(160deg, rgba(20,115,230,.06), rgba(7,89,189,.16));
}
.cs-result {
  color: var(--text);
  background: linear-gradient(160deg, rgba(20,115,230,.08), rgba(255,255,255,.82));
  border-color: rgba(20,115,230,.18);
}
.about-hero-portrait::after {
  box-shadow: inset 0 -50px 70px rgba(7,89,189,.16), inset 0 0 50px rgba(82,199,234,.09);
}
.about-portrait::after { box-shadow: inset 0 0 70px rgba(20,115,230,.08); }

.socials a {
  color: var(--text-muted);
  background: rgba(255,255,255,.52);
}
.socials a:hover {
  color: var(--green);
  border-color: rgba(20,115,230,.25);
  box-shadow: 0 8px 24px rgba(20,115,230,.12);
  transform: translateY(-1px);
}

.gthumb.vid { background-color: #dcecff; color: var(--green); }
.gthumb.vid i { background: rgba(255,255,255,.82); }

.site-popup__close {
  color: var(--text);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(38,84,139,.10);
}

.chat-teaser {
  color: var(--text);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}
.chat-online {
  background: #22a86a;
  border-color: #fff;
  box-shadow: 0 0 8px rgba(34,168,106,.34);
}
.chat-fab::before { animation: none; }

/* Footer now belongs to the same white/blue glass system. */
.footer {
  color: var(--text);
  background:
    radial-gradient(circle at 85% 8%, rgba(82,199,234,.20), transparent 30rem),
    linear-gradient(145deg, #edf6ff, #dcecff);
  border-top: 1px solid rgba(38,84,139,.10);
}
.footer h2, .footer h3, .footer h4, .footer .brand { color: var(--text); }
.footer-brand p, .footer ul a, .footer .foot-muted, .footer-bottom { color: var(--text-muted); }
.footer ul a:hover { color: var(--green); }
.footer-bottom { border-top-color: rgba(38,84,139,.10); }
.footer-dots { opacity: .22; }

/* Solid-enough surfaces prevent background colors from muddying readability. */
.service-card, .why-card, .process-step, .testimonial-card, .tool-card,
.timeline-item, .stat-tile, .contact-card, .book-info, .book-main,
.gig-card, .blog-card, .rel-gig, .tm-card, .pe-card, .mkt-chip,
.ind-pill, .tmb-card, .fact, .work-summary, .trust-strip, .greview {
  background: rgba(255,255,255,.86);
}

/* ============================================================
   Apple UI refinement
   ============================================================ */

body {
  font-family: var(--font-sans);
  letter-spacing: -.008em;
}

h1, h2, h3, h4,
.section-title, .gig-title, .page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.045em;
  text-wrap: balance;
}

p, .section-lead, .hero-sub, .gig-about {
  letter-spacing: -.012em;
}

/* Floating, edge-lit Apple-style navigation surface. */
.nav {
  top: 12px;
  padding: 0 clamp(.75rem, 2vw, 1.25rem);
  border: 0;
}
.nav .nav-inner {
  max-width: 1180px;
  height: 70px;
  padding-inline: 14px 12px;
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(255,255,255,.90);
  border-radius: 22px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.95) inset,
    0 14px 42px rgba(43,82,127,.10);
  backdrop-filter: blur(28px) saturate(175%);
  -webkit-backdrop-filter: blur(28px) saturate(175%);
}
.nav.scrolled {
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.nav .brand {
  padding: .42rem .62rem;
  border-radius: 14px;
  box-shadow: none;
}
.nav-links { gap: clamp(1rem,2.2vw,2rem); }
.nav-links a {
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: -.012em;
}
.nav-links a::after {
  height: 2px;
  bottom: -8px;
  border-radius: 2px;
}

/* Apple controls: pill geometry, quiet depth, no loud glow. */
.btn {
  min-height: 48px;
  padding: .78rem 1.45rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: .94rem;
  font-weight: 600;
  letter-spacing: -.012em;
}
.btn-primary {
  background: #1473e6;
  box-shadow: 0 10px 24px rgba(20,115,230,.18);
}
.btn-primary:hover {
  background: #0968d7;
  box-shadow: 0 12px 28px rgba(20,115,230,.22);
}
.btn-ghost {
  background: rgba(255,255,255,.68);
  border-color: rgba(38,84,139,.14);
  box-shadow: 0 1px 0 rgba(255,255,255,.9) inset;
}
.nav .btn { min-height: 44px; padding-inline: 1.25rem; }

/* Large Apple product-style hero type and calmer color treatment. */
.hero { padding-top: 112px; }
.hero h1 {
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: .94;
}
.hero h1 .accent,
.hero h1 .grad,
.page-hero h1 .grad {
  background: linear-gradient(120deg, #0b2545 0%, #1473e6 64%, #35a9dc 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-sub {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.55;
}

/* One consistent glass material across the product. */
.glass,
.stats, .work-card, .service-card, .why-card, .process-step,
.testimonial-card, .tool-card, .timeline-item, .stat-tile,
.contact-card, .book-info, .book-main, .pkg-card,
.blog-card, .rel-gig, .tm-card, .pe-card, .mkt-chip,
.ind-pill, .tmb-card, .fact, .work-summary, .trust-strip, .greview {
  border: 1px solid rgba(255,255,255,.92);
  background: rgba(255,255,255,.72);
  box-shadow:
    0 1px 0 rgba(255,255,255,.94) inset,
    0 14px 42px rgba(43,82,127,.08);
  backdrop-filter: blur(26px) saturate(165%);
  -webkit-backdrop-filter: blur(26px) saturate(165%);
}

.service-card, .why-card, .process-step, .testimonial-card,
.tool-card, .timeline-item, .stat-tile, .contact-card,
.book-info, .book-main, .pkg-card, .blog-card {
  border-radius: 24px;
}

.eyebrow, .hero-badge, .filter-pill, .order-tag {
  font-family: var(--font-sans);
  letter-spacing: .06em;
  border-radius: 999px;
}

.field input, .field textarea, .field select,
.chat-form input, .chat-id input, .tz-search {
  min-height: 50px;
  border-radius: 14px;
  font-family: var(--font-sans);
  font-size: .96rem;
}
.field textarea { min-height: 132px; }

.pkg-tabs { padding: 5px; gap: 4px; border-bottom: 0; }
.pkg-tab {
  border: 0;
  border-radius: 12px;
  padding: .72rem .65rem;
}
.pkg-tab.on {
  color: #0759bd;
  background: rgba(255,255,255,.90);
  border: 0;
  box-shadow: 0 5px 16px rgba(43,82,127,.09);
}

.cal-nav, .cal-cell, .slot, .tz-picker {
  border-radius: 13px;
}
.cal-cell.sel, .slot.on {
  background: #1473e6;
  color: #fff;
  box-shadow: 0 8px 20px rgba(20,115,230,.18);
}

.chat-panel {
  border-radius: 24px;
  box-shadow: 0 26px 70px rgba(28,61,100,.18);
}
.chat-fab {
  background: #1473e6;
  box-shadow: 0 12px 30px rgba(20,115,230,.24);
}

.footer { border-radius: 38px 38px 0 0; }

@media (max-width: 900px) {
  .nav { top: 8px; padding-inline: 8px; }
  .nav .nav-inner { height: 64px; border-radius: 19px; }
  .nav-links {
    top: 74px;
    border-radius: 22px;
    padding: 1rem;
  }
  .hero { padding-top: 104px; }
}

/* ============================================================
   Premium consistency pass
   ============================================================ */

:root {
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
}

/* Restore the preferred full-width header while keeping Apple glass. */
.nav {
  top: 0;
  padding: 0;
  background: rgba(248,251,255,.72);
  border-bottom: 1px solid rgba(255,255,255,.82);
  box-shadow: 0 8px 32px rgba(43,82,127,.07);
  backdrop-filter: blur(26px) saturate(175%);
  -webkit-backdrop-filter: blur(26px) saturate(175%);
}
.nav .nav-inner {
  max-width: var(--maxw);
  height: 76px;
  padding-inline: clamp(1.2rem,4vw,2.5rem);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.nav.scrolled {
  background: rgba(248,251,255,.84);
  border-bottom: 1px solid rgba(38,84,139,.08);
  box-shadow: 0 10px 34px rgba(43,82,127,.09);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
}
.nav-links a {
  padding: .52rem .72rem;
  border-radius: 999px;
}
.nav-links a:hover {
  color: #0759bd;
  background: rgba(20,115,230,.075);
}
.nav-links a::after { display: none; }
.nav-links a.active {
  color: #0759bd;
  background: rgba(20,115,230,.10);
  box-shadow: 0 0 0 1px rgba(20,115,230,.08) inset;
}

/* Unified geometry: cards 26px, inner controls 12px, actions pill. */
.work-card, .service-card, .why-card, .process-step,
.testimonial-card, .tool-card, .timeline-item, .stat-tile,
.contact-card, .book-info, .book-main, .pkg-card, .blog-card,
.rel-gig, .tm-card, .pe-card, .tmb-card, .greview,
.chat-panel, .site-popup__card, .cta-band {
  border-radius: 26px;
}
.field input, .field textarea, .field select, .tz-search,
.pkg-tab, .cal-cell, .slot, .tz-picker, .filter-pill {
  border-radius: 12px;
}
.stats, .trust-strip, .work-summary { border-radius: 22px; }
.btn, .cbx, .order-tag, .hero-badge, .eyebrow { border-radius: 999px; }

/* Clear but restrained hover language. */
.work-card:hover, .service-card:hover, .why-card:hover,
.process-step:hover, .tool-card:hover, .rel-gig:hover,
.tm-card:hover, .pe-card:hover, .tmb-card:hover, .blog-card:hover {
  transform: translateY(-2px);
  background: rgba(246,251,255,.96);
  border-color: rgba(20,115,230,.28);
  box-shadow:
    0 1px 0 rgba(255,255,255,.98) inset,
    0 18px 46px rgba(20,91,164,.13);
}
.filter-pill:hover, .cal-cell.free:hover, .slot:hover,
.tz-picker:hover, .cbx:hover {
  color: #0759bd;
  background: rgba(20,115,230,.075);
  border-color: rgba(20,115,230,.30);
}
.pkg-tab:hover:not(.on) {
  color: #0759bd;
  background: rgba(20,115,230,.065);
}
.socials a:hover, .mkt-chip:hover {
  color: #0759bd;
  background: rgba(255,255,255,.92);
  border-color: rgba(20,115,230,.28);
}
.btn-ghost:hover {
  color: #0759bd;
  background: rgba(255,255,255,.96);
  border-color: rgba(20,115,230,.28);
}

/* Softer premium package panel. */
.pkg-card.glass {
  background:
    linear-gradient(155deg, rgba(255,255,255,.94), rgba(242,248,255,.84));
  box-shadow:
    0 1px 0 #fff inset,
    0 22px 58px rgba(43,82,127,.12);
}
.pkg-tabs { background: rgba(226,239,252,.58); }
.pkg-panel { padding: clamp(1.35rem,2.5vw,1.75rem); }

/* Background-following pointer light: no cursor replacement or ring. */
.pointer-ambient {
  position: fixed;
  top: 0; left: 0;
  width: 560px; height: 560px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  background: radial-gradient(circle,
    rgba(71,167,255,.16) 0%,
    rgba(82,199,234,.095) 32%,
    rgba(20,115,230,.035) 56%,
    transparent 72%);
  filter: blur(12px);
  transition: opacity .45s ease;
  will-change: transform;
}
.pointer-ambient.show { opacity: 1; }

@media (max-width: 900px) {
  .nav { top: 0; padding: 0; }
  .nav .nav-inner { height: 70px; border-radius: 0; }
  .nav-links {
    top: 70px;
    border-radius: 0 0 22px 22px;
  }
  .hero { padding-top: 100px; }
}
@media (hover: none), (prefers-reduced-motion: reduce) {
  .pointer-ambient { display: none; }
}

/* ============================================================
   Final premium layer
   ============================================================ */

/* Stronger editorial rhythm without changing page content. */
.section + .section,
.section-sm + .section,
.section + .section-sm {
  border-top: 1px solid rgba(38,84,139,.055);
}
.section-title {
  max-width: 14ch;
  margin-bottom: 1rem;
}
.section-lead {
  max-width: 56ch;
  line-height: 1.65;
}
.section-head {
  margin-bottom: clamp(2rem,4vw,3.25rem);
}

/* Hero becomes a framed product composition rather than loose elements. */
.hero-grid {
  position: relative;
  gap: clamp(2rem,5vw,5rem);
}
.hero-grid::before {
  content: "";
  position: absolute;
  right: -3%;
  top: 6%;
  width: 48%;
  height: 82%;
  border-radius: 40px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.70), rgba(226,241,255,.48));
  border: 1px solid rgba(255,255,255,.90);
  box-shadow:
    0 1px 0 rgba(255,255,255,.96) inset,
    0 30px 80px rgba(38,84,139,.10);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: -1;
}
.hero-portrait img {
  filter:
    drop-shadow(0 28px 48px rgba(34,65,103,.22))
    drop-shadow(0 0 28px rgba(82,199,234,.10));
  animation-duration: 9s;
}
.hero-portrait::before {
  background: radial-gradient(circle, rgba(82,199,234,.22), rgba(20,115,230,.05) 48%, transparent 68%);
  filter: blur(18px);
}
.hero-play {
  opacity: 1;
  transform: translate(-50%,-50%) scale(.96);
  background: rgba(255,255,255,.78);
  border-color: rgba(255,255,255,.94);
  box-shadow: 0 14px 38px rgba(31,72,120,.14);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
}
.hero-play:hover {
  transform: translate(-50%,-50%) scale(1);
  box-shadow: 0 18px 44px rgba(20,115,230,.20);
}
.hero-play i { animation: none; box-shadow: none; }
.hero-chips .chip {
  border-color: rgba(255,255,255,.90);
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 28px rgba(43,82,127,.09);
}

/* Surface hierarchy: important actions feel closer, supporting cards quieter. */
.work-card.featured,
.pkg-card.glass,
.book-main.glass,
.cta-band {
  box-shadow:
    0 1px 0 rgba(255,255,255,.98) inset,
    0 28px 72px rgba(33,76,126,.14);
}
.tool-card, .mkt-chip, .ind-pill, .fact {
  background: rgba(255,255,255,.62);
  box-shadow:
    0 1px 0 rgba(255,255,255,.90) inset,
    0 10px 28px rgba(43,82,127,.06);
}

/* Portfolio media gets a polished cinematic treatment. */
.work-card .thumb {
  transform: scale(1.001);
  transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}
.work-card:hover .thumb { transform: scale(1.025); }
.work-card .thumb.has-img { filter: saturate(.92) contrast(1.02); }
.work-card:hover .thumb.has-img { filter: saturate(1.02) contrast(1.03); }
.work-card:not(.featured) { min-height: 320px; }
.work-card .overlay {
  padding: clamp(1.25rem,3vw,2rem);
}
.work-card .play {
  background: rgba(255,255,255,.82);
  color: #0759bd;
  border: 1px solid rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(7,42,87,.16);
}

/* More deliberate cards and icon wells. */
.service-card .icon, .why-card .icon, .process-step .num {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(255,255,255,.88), rgba(220,237,255,.78));
  border: 1px solid rgba(20,115,230,.12);
  box-shadow: 0 8px 22px rgba(43,82,127,.08);
}
.service-card h3, .why-card h3, .process-step h3 {
  font-size: 1.18rem;
  letter-spacing: -.025em;
}

/* Premium focus and pressed states complete the interaction language. */
.btn:active { transform: translateY(0) scale(.985) !important; }
.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.filter-pill:focus-visible,
.pkg-tab:focus-visible {
  outline: 3px solid rgba(20,115,230,.22);
  outline-offset: 3px;
}
.field input:focus, .field textarea:focus, .field select:focus {
  background: rgba(255,255,255,.98);
  border-color: rgba(20,115,230,.48);
  box-shadow:
    0 0 0 4px rgba(20,115,230,.10),
    0 10px 26px rgba(43,82,127,.07);
}

/* Faster, quieter Apple-style loading transition. */
#loader {
  background: rgba(244,249,255,.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: opacity .38s ease, visibility .38s;
}
#loader .loader-mark { width: 72px; height: 72px; }
#loader .loader-bar {
  width: 132px;
  height: 3px;
  background: rgba(20,115,230,.10);
}
#loader .loader-word {
  font-family: var(--font-sans);
  letter-spacing: .16em;
  color: #718197;
}

/* Compact chat preserves the page composition on small screens. */
.chat-teaser { width: min(270px,calc(100vw - 36px)); }
.chat-panel { width: min(350px,calc(100vw - 28px)); }
@media (max-width: 600px) {
  .chat-widget { right: 14px; bottom: 14px; }
  .chat-teaser { display: none; }
  .chat-fab { width: 54px; height: 54px; }
  .hero-grid::before { display: none; }
}

/* ============================================================
   Editorial Work page
   ============================================================ */

.work-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin: clamp(2.5rem,5vw,4.5rem) 0 1.5rem;
}
.work-toolbar h2 { font-size: clamp(1.8rem,3vw,2.6rem); }
.work-toolbar .eyebrow { margin-bottom: .7rem; }
.work-toolbar .filter-bar {
  justify-content: flex-end;
  margin: 0;
  max-width: 700px;
}

.work-feature {
  display: grid;
  grid-template-columns: minmax(0,1.45fr) minmax(300px,.75fr);
  min-height: 500px;
  overflow: hidden;
  color: var(--text);
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(255,255,255,.94);
  border-radius: 34px;
  box-shadow:
    0 1px 0 #fff inset,
    0 32px 86px rgba(33,76,126,.14);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  transition: transform .3s ease, box-shadow .3s ease;
}
.work-feature:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 #fff inset,
    0 38px 96px rgba(20,91,164,.18);
}
.work-feature-media {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--green);
  font-size: 3rem;
  background:
    radial-gradient(circle at 74% 22%, rgba(82,199,234,.35), transparent 38%),
    linear-gradient(145deg,#ddecff,#bfdcff);
  background-size: cover;
  background-position: center;
}
.work-feature-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 58%, rgba(7,42,87,.08));
}
.work-feature-media.has-img {
  transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .4s;
  filter: saturate(.92) contrast(1.02);
}
.work-feature:hover .work-feature-media.has-img {
  transform: scale(1.018);
  filter: saturate(1.02) contrast(1.03);
}
.work-feature-play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
  width: 66px; height: 66px;
  display: grid; place-items: center;
  color: #0759bd;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.94);
  border-radius: 50%;
  box-shadow: 0 18px 46px rgba(7,42,87,.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.work-feature-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem,4.5vw,4rem);
}
.work-feature-label, .service-kicker {
  align-self: flex-start;
  padding: .4rem .7rem;
  color: #0759bd;
  background: rgba(20,115,230,.08);
  border: 1px solid rgba(20,115,230,.12);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.work-feature-cat {
  margin-top: 1.6rem;
  color: var(--green);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.work-feature-copy h2 {
  margin: .55rem 0 1rem;
  font-size: clamp(2.1rem,3.8vw,3.6rem);
}
.work-feature-copy p { color: var(--text-muted); line-height: 1.65; }
.work-feature-facts { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.35rem; }
.work-feature-facts span {
  padding: .42rem .68rem;
  color: #53677f;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(38,84,139,.10);
  border-radius: 999px;
  font-size: .76rem;
}
.work-feature-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 2rem;
  color: #0759bd;
  font-weight: 650;
}

.work-editorial-grid {
  display: grid;
  grid-template-columns: repeat(12,1fr);
  gap: clamp(1rem,2.2vw,1.8rem);
  margin-top: clamp(1.5rem,3vw,2.5rem);
}
.work-editorial-grid .editorial-card { grid-column: span 6; }
.work-editorial-grid .editorial-card:nth-child(3n+1) { grid-column: span 7; }
.work-editorial-grid .editorial-card:nth-child(3n+2) { grid-column: span 5; }

.production-strip {
  display: grid;
  grid-template-columns: minmax(240px,.8fr) 1.2fr;
  gap: 2rem;
  align-items: center;
  margin-top: clamp(2rem,5vw,4rem);
  padding: clamp(1.5rem,3vw,2.5rem);
  background: rgba(255,255,255,.54);
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 26px;
  box-shadow: 0 14px 42px rgba(43,82,127,.07);
}
.production-intro h3 { margin-bottom: .45rem; }
.production-intro p { color: var(--text-muted); font-size: .9rem; }
.production-list { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .7rem; }
.production-chip {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .7rem .9rem;
  color: #53677f;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(38,84,139,.10);
  border-radius: 999px;
  font-size: .82rem;
}
.production-chip i { color: var(--green); }

/* ============================================================
   Editorial Services page
   ============================================================ */

.services-editorial { display: grid; gap: clamp(1.5rem,3vw,2.5rem); }
.service-editorial {
  display: grid;
  grid-template-columns: minmax(260px,.72fr) minmax(0,1.28fr);
  min-height: 420px;
  overflow: hidden;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.94);
  border-radius: 32px;
  box-shadow:
    0 1px 0 #fff inset,
    0 22px 65px rgba(33,76,126,.10);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
}
.service-editorial.reverse { grid-template-columns: minmax(0,1.28fr) minmax(260px,.72fr); }
.service-editorial.reverse .service-visual { order: 2; }
.service-editorial.featured {
  min-height: 490px;
  border-color: rgba(20,115,230,.14);
  box-shadow:
    0 1px 0 #fff inset,
    0 30px 82px rgba(20,91,164,.14);
}
.service-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 20%, rgba(82,199,234,.34), transparent 38%),
    linear-gradient(145deg,#e9f5ff,#cce5ff);
}
.service-number {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  color: rgba(7,89,189,.36);
  font-family: var(--font-display);
  font-size: clamp(3rem,6vw,6rem);
  font-weight: 700;
  letter-spacing: -.06em;
}
.service-icon {
  position: relative;
  z-index: 2;
  width: 112px; height: 112px;
  display: grid; place-items: center;
  color: #0759bd;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(255,255,255,.92);
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(20,91,164,.16);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.service-icon i { font-size: 3.25rem; }
.service-orbit {
  position: absolute;
  width: 240px; height: 240px;
  border: 1px solid rgba(20,115,230,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(20,115,230,.035), 0 0 0 84px rgba(82,199,234,.025);
}
.service-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem,5vw,4.5rem);
}
.service-content h2 {
  margin: 1rem 0 .8rem;
  font-size: clamp(2rem,4vw,3.5rem);
}
.service-content > p {
  max-width: 62ch;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}
.service-deliverables {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: .7rem 1.2rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}
.service-deliverables li {
  display: flex; align-items: center; gap: .55rem;
  color: #40546d;
  font-size: .9rem;
}
.service-deliverables i { color: var(--green); }
.service-best {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1.6rem;
}
.service-best span {
  color: var(--text-dim);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.service-best strong {
  color: #40546d;
  font-size: .88rem;
  font-weight: 600;
}
.service-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.service-commercial {
  display: flex;
  align-items: center;
  gap: .9rem;
  color: var(--text-muted);
  font-size: .82rem;
}
.service-commercial span { display: inline-flex; align-items: center; gap: .3rem; }
.service-commercial strong { color: #0759bd; font-size: 1rem; }
.service-commercial i { color: var(--green); }

@media (max-width: 900px) {
  .work-toolbar { align-items: flex-start; flex-direction: column; }
  .work-toolbar .filter-bar { justify-content: flex-start; }
  .work-feature, .service-editorial, .service-editorial.reverse {
    grid-template-columns: 1fr;
  }
  .work-feature-media { min-height: 380px; }
  .service-editorial.reverse .service-visual { order: 0; }
  .service-visual { min-height: 280px; }
  .production-strip { grid-template-columns: 1fr; }
  .production-list { justify-content: flex-start; }
}
@media (max-width: 640px) {
  .work-feature { border-radius: 26px; }
  .work-feature-media { min-height: 270px; }
  .work-feature-copy { padding: 1.5rem; }
  .work-editorial-grid { display: grid; grid-template-columns: 1fr; }
  .work-editorial-grid .editorial-card,
  .work-editorial-grid .editorial-card:nth-child(3n+1),
  .work-editorial-grid .editorial-card:nth-child(3n+2) { grid-column: auto; }
  .service-editorial { border-radius: 26px; }
  .service-content { padding: 1.5rem; }
  .service-deliverables { grid-template-columns: 1fr; }
  .service-actions { align-items: stretch; }
  .service-actions .btn { width: 100%; }
  .service-commercial { justify-content: space-between; width: 100%; }
}

/* ============================================================
   Site-wide premium layout system
   ============================================================ */

/* Work categories: dedicated segmented rail, never squeezed beside heading. */
.work-toolbar {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 1.25rem;
}
.work-toolbar .filter-bar {
  width: 100%;
  max-width: none;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: .5rem;
  padding: .5rem;
  overflow-x: auto;
  scrollbar-width: none;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(255,255,255,.90);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(43,82,127,.07);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}
.work-toolbar .filter-bar::-webkit-scrollbar { display: none; }
.work-toolbar .filter-pill {
  flex: 0 0 auto;
  min-height: 42px;
  padding: .62rem 1rem;
  border: 0;
  border-radius: 13px;
  white-space: nowrap;
}
.work-toolbar .filter-pill.active {
  color: #fff;
  background: #1473e6;
  box-shadow: 0 8px 20px rgba(20,115,230,.18);
}

/* Every inner page begins with the same premium editorial hero. */
.page-hero {
  min-height: clamp(350px,42vw,520px);
  display: flex;
  align-items: center;
  padding-top: 110px;
  padding-bottom: clamp(3rem,6vw,5rem);
  background:
    radial-gradient(circle at 85% 18%, rgba(82,199,234,.22), transparent 28rem),
    radial-gradient(circle at 8% 82%, rgba(20,115,230,.09), transparent 25rem),
    linear-gradient(180deg,rgba(255,255,255,.40),transparent);
  border-bottom: 1px solid rgba(38,84,139,.06);
}
.page-hero .container { width: 100%; }
.page-hero .eyebrow { margin-bottom: 1.25rem; }
.page-hero h1 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(3rem,6vw,5.8rem);
  line-height: .96;
}
.page-hero p {
  max-width: 55ch;
  margin-top: 1.5rem;
  font-size: clamp(1.05rem,1.5vw,1.22rem);
  line-height: 1.7;
}
.page-hero .kicker {
  right: 5%;
  top: auto;
  bottom: 8%;
  font-size: clamp(5rem,13vw,12rem);
  opacity: .035;
}

/* Consistent content width and vertical cadence on every route. */
main > .section,
main > .section-sm {
  overflow: clip;
}
main > .section > .container,
main > .section-sm > .container {
  position: relative;
}
.section-head,
.section > .container > [data-reveal]:first-child:not(.glass):not(.cta-band),
.section-sm > .container > [data-reveal]:first-child:not(.glass):not(.work-summary) {
  max-width: 760px;
}

/* About: turn long content into deliberate editorial blocks. */
.about-hero-grid {
  gap: clamp(2rem,6vw,6rem);
}
.about-hero-portrait {
  border-radius: 32px;
  border-color: rgba(255,255,255,.90);
  box-shadow: 0 28px 76px rgba(33,76,126,.14);
}
.exp-edu-grid {
  gap: clamp(1.5rem,4vw,4rem);
}
.timeline {
  display: grid;
  gap: 1rem;
}
.timeline-item {
  padding: clamp(1.35rem,2.5vw,2rem);
  border-radius: 22px;
}
.tools-grid, .why-grid, .process-grid {
  gap: clamp(1rem,2.2vw,1.6rem);
}

/* Contact and booking: clearer two-surface composition. */
.contact-split {
  grid-template-columns: minmax(0,1.15fr) minmax(320px,.85fr);
  gap: clamp(1.5rem,4vw,4rem);
  align-items: start;
}
.contact-split > form,
.contact-split > div:first-child {
  padding: clamp(1.5rem,4vw,3rem);
  border-radius: 28px;
}
.contact-card {
  padding: clamp(1.4rem,3vw,2.25rem);
}
.contact-line {
  min-height: 52px;
  border-bottom: 1px solid rgba(38,84,139,.07);
}
.contact-line:last-child { border-bottom: 0; }
.book-grid {
  grid-template-columns: minmax(270px,330px) minmax(0,1fr);
  gap: clamp(1.25rem,3vw,2.5rem);
}
.book-info { position: sticky; top: 98px; }
.book-main { min-height: 560px; }
.cal-grid, .cal-dow { gap: clamp(4px,1vw,9px); }
.cal-cell { min-height: 44px; aspect-ratio: auto; }

/* Blog: magazine-style grid and clearer reading hierarchy. */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(12,1fr);
  gap: clamp(1rem,2.2vw,1.8rem);
}
.blog-card { grid-column: span 4; overflow: hidden; }
.blog-card:first-child {
  grid-column: span 8;
  grid-row: span 2;
}
.blog-card:first-child .blog-thumb { aspect-ratio: 16/8.5; }
.blog-body { padding: clamp(1.25rem,2.5vw,2rem); }
.blog-card h2, .blog-card h3 { line-height: 1.12; }

/* Service/gig detail: stronger editorial column and sticky commercial panel. */
.gig-wrap {
  grid-template-columns: minmax(0,1fr) minmax(330px,390px);
  gap: clamp(2rem,5vw,5rem);
}
.gig-main-img { border-radius: 30px; }
.gig-block {
  padding-block: clamp(1.4rem,3vw,2.4rem);
  margin: 0;
  border-bottom: 1px solid rgba(38,84,139,.07);
}
.gig-block:last-child { border-bottom: 0; }
.gig-block h2 { margin-bottom: 1.15rem; font-size: clamp(1.4rem,2.5vw,2rem); }
.gig-side { top: 96px; }
.pkg-card { border-radius: 28px; }
.gig-compare-wrap {
  padding: .5rem;
  background: rgba(255,255,255,.54);
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 20px;
}

/* Case studies: facts, video and narrative feel like one publication. */
.cs-hero { padding-top: 110px; }
.cs-meta {
  padding: 1rem 0;
  border-block: 1px solid rgba(38,84,139,.08);
}
.cs-player { border-radius: 32px; box-shadow: 0 28px 76px rgba(33,76,126,.14); }
.facts-grid { gap: 1rem; }
.fact { padding: 1.15rem 1.25rem; border-radius: 18px; }
.cs-body, .post-body {
  max-width: 780px;
  margin-inline: auto;
}
.cs-body p, .post-body p { line-height: 1.82; }

/* CTA is always a focused closing moment. */
.cta-band {
  padding: clamp(3rem,7vw,6rem) clamp(1.5rem,5vw,4rem);
  border-radius: 34px;
}
.cta-band h2 {
  max-width: 15ch;
  margin-inline: auto;
  font-size: clamp(2.2rem,4.5vw,4rem);
}

@media (max-width: 900px) {
  .page-hero { min-height: 360px; padding-top: 96px; }
  .contact-split, .book-grid, .gig-wrap { grid-template-columns: 1fr; }
  .book-info, .gig-side { position: static; }
  .blog-card, .blog-card:first-child { grid-column: span 6; grid-row: auto; }
}
@media (max-width: 640px) {
  .page-hero { min-height: 330px; }
  .page-hero h1 { font-size: clamp(2.7rem,14vw,4.2rem); }
  .work-toolbar .filter-bar { margin-inline: -4px; width: calc(100% + 8px); }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card, .blog-card:first-child { grid-column: auto; }
  .cta-band { border-radius: 26px; }
}

/* Compact premium rhythm: generous, but never empty. */
.section {
  padding-block: clamp(3.75rem, 5.5vw, 5.5rem);
}
.section-sm {
  padding-block: clamp(2.75rem, 4vw, 4rem);
}
.section + .section {
  padding-top: clamp(1.25rem, 2.5vw, 2.5rem);
}
.cta-band {
  padding: clamp(2.5rem, 4vw, 3.75rem) clamp(1.5rem, 5vw, 4rem);
  min-height: 0;
}
.cta-band h2 {
  font-size: clamp(2.15rem, 3.8vw, 3.4rem);
  line-height: 1.02;
  margin-bottom: .9rem;
}
.cta-band p {
  margin-bottom: 1.5rem;
}
.cta-band .eyebrow {
  margin-bottom: 1.15rem;
}
.cta-band .btn {
  min-height: 48px;
}

@media (max-width: 640px) {
  .section { padding-block: 3.25rem; }
  .section-sm { padding-block: 2.5rem; }
  .section + .section { padding-top: 1rem; }
  .cta-band {
    padding: 2.35rem 1.25rem;
    border-radius: 24px;
  }
  .cta-band h2 { font-size: clamp(2rem, 10vw, 2.65rem); }
}

/* New brand artwork: keep the header mark optically flush. */
.nav .brand {
  align-self: center;
  display: inline-flex;
  align-items: center;
  line-height: 0;
  overflow: visible;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.nav .brand-logo {
  display: block;
  width: 178px;
  height: auto;
  max-height: none;
  margin: 0;
}
@media (max-width: 640px) {
  .nav .brand-logo { width: 148px; }
}
.footer .brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.footer .brand-logo {
  width: 154px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
  margin: 0;
}
.loader-mark,
.book-avatar img,
.chat-avatar img,
.chat-teaser-av img {
  object-fit: cover;
  object-position: center;
}

/* Related work follows the compact Related services recommendation pattern. */
.related-work-section {
  border-top: 1px solid rgba(20,115,230,.10);
}
.related-work-card {
  min-height: 220px;
}
.related-work-desc {
  display: block;
  max-width: 34ch;
  color: var(--text-muted);
  font-size: .94rem;
  line-height: 1.55;
}
.related-work-card .rel-gig-foot {
  margin-top: auto;
}

/* Homepage work cards: static thumbnails and high-contrast metadata. */
.work-card .cat {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: fit-content;
  padding: .34rem .62rem;
  color: #fff;
  background: rgba(8, 70, 146, .88);
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .11em;
  text-shadow: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.work-card .overlay .title {
  color: #fff;
  text-shadow: 0 2px 18px rgba(4,25,55,.30);
}
.work-card .overlay .desc {
  color: rgba(255,255,255,.90);
  opacity: 1;
  text-shadow: 0 1px 12px rgba(4,25,55,.30);
}
.work-card-coming {
  opacity: 1;
  border-color: rgba(20,115,230,.18);
}
.work-card-coming .thumb {
  background:
    radial-gradient(circle at 75% 20%, rgba(82,199,234,.30), transparent 42%),
    linear-gradient(145deg, #dcecff, #b8d8f7);
}
.work-card-coming .thumb::before {
  background: linear-gradient(180deg, rgba(14,57,105,.03) 15%, rgba(7,41,82,.78) 100%);
}

/* Identity-led imagery across supporting sections; hero portrait remains untouched. */
.about-portrait img,
.about-hero-portrait img {
  object-fit: cover;
  object-position: center top;
}
.contact-profile {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(20,115,230,.12);
}
.contact-profile img {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 3px solid rgba(255,255,255,.90);
  box-shadow: 0 10px 26px rgba(20,115,230,.18);
}
.contact-profile strong,
.contact-profile span {
  display: block;
}
.contact-profile strong {
  color: var(--text);
  font-size: 1rem;
}
.contact-profile span {
  margin-top: .2rem;
  color: var(--text-muted);
  font-size: .82rem;
}

/* ============================================================
   Mobile responsive + final color normalization
   ============================================================ */
@media (max-width: 720px) {
  html, body { overflow-x: clip; }
  .container {
    width: 100%;
    padding-inline: 20px;
  }

  .nav {
    background: rgba(247,251,255,.94);
    border-bottom-color: rgba(20,115,230,.10);
  }
  .nav .nav-inner {
    height: 72px;
    padding-inline: 20px;
  }
  .nav-toggle {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    color: #10243e;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(20,115,230,.14);
    border-radius: 12px;
  }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: .3rem;
    top: 72px;
    left: 0;
    right: 0;
    padding: .75rem 20px 1rem;
    background: rgba(247,251,255,.98);
    border: 0;
    border-bottom: 1px solid rgba(20,115,230,.12);
    border-radius: 0 0 22px 22px;
    box-shadow: 0 20px 44px rgba(31,76,128,.14);
    backdrop-filter: blur(24px) saturate(170%);
    -webkit-backdrop-filter: blur(24px) saturate(170%);
  }
  .nav.open .nav-links a:not(.btn) {
    display: block;
    padding: .72rem .85rem;
    color: #354a63;
    background: transparent;
  }
  .nav.open .nav-links a.active {
    color: #0759bd;
    background: rgba(20,115,230,.09);
  }
  .nav.open .nav-links .nav-cta-mobile {
    display: block;
    margin-top: .45rem;
  }
  .nav.open .nav-links .nav-cta-mobile .btn {
    display: flex;
    min-height: 48px;
    color: #fff;
  }

  .hero {
    min-height: auto;
    padding: 94px 0 3.5rem;
  }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { width: 100%; max-width: none; }
  .hero-title {
    max-width: 100%;
    font-size: clamp(3rem, 15vw, 4.7rem);
    line-height: .96;
    overflow-wrap: anywhere;
  }
  .hero-eyebrow { font-size: .82rem; line-height: 1.55; }
  .hero-sub { font-size: 1.05rem; line-height: 1.6; }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: .75rem;
  }
  .hero-actions .btn { width: 100%; min-height: 52px; }

  .page-hero {
    min-height: 0;
    padding: 108px 0 3.25rem;
  }
  .page-hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
    line-height: .98;
    overflow-wrap: anywhere;
  }
  .page-hero p { font-size: 1rem; line-height: 1.62; }

  .section { padding-block: 3rem; }
  .section-sm { padding-block: 2.35rem; }
  .section + .section { padding-top: .75rem; }
  .section-title {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.03;
  }
  .section-lead { font-size: 1rem; }

  .stats,
  .facts-grid,
  .work-editorial-grid,
  .rel-gigs,
  .service-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .work-card.featured { aspect-ratio: auto; min-height: 390px; }
  .work-card:not(.featured) { min-height: 300px; }
  .work-feature,
  .service-editorial,
  .service-editorial.reverse {
    grid-template-columns: 1fr;
  }
  .work-feature-media { min-height: 250px; }
  .work-feature-copy,
  .service-copy { padding: 1.35rem; }
  .filter-bar {
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .contact-card,
  .book-info,
  .book-main,
  .pkg-card,
  .glass,
  .cta-band {
    border-color: rgba(20,115,230,.13);
  }
  .contact-card,
  .book-info,
  .book-main,
  .pkg-card {
    background: rgba(255,255,255,.88);
    color: var(--text);
  }
  .field input,
  .field textarea,
  .field select {
    width: 100%;
    min-width: 0;
    color: var(--text);
    background: rgba(255,255,255,.94);
  }
  .arow2, .arow2b { grid-template-columns: 1fr; }

  .footer { border-radius: 28px 28px 0 0; }
  .footer-grid { gap: 2rem; }
  .footer .brand-logo { width: 145px; height: auto; }
}

@media (max-width: 380px) {
  .container, .nav .nav-inner { padding-inline: 16px; }
  .nav .brand-logo { width: 136px; }
  .hero-title { font-size: clamp(2.75rem, 14.5vw, 3.5rem); }
  .btn { padding-inline: 1rem; }
}

/* Work-page metrics: a real information card, not a wrapped sentence. */
.work-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: .85rem;
  overflow: hidden;
  text-align: left;
}
.work-summary-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  min-width: 0;
  padding: .65rem .85rem;
  border-right: 1px solid rgba(20,115,230,.11);
}
.work-summary-item:last-child { border-right: 0; }
.work-summary-item > i {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  color: #1473e6;
  background: rgba(20,115,230,.09);
  border-radius: 11px;
  font-size: 1.05rem;
}
.work-summary-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.25;
}
.work-summary-copy strong {
  color: #0759bd;
  font-size: 1.05rem;
  font-weight: 750;
}
.work-summary-copy > span {
  margin-top: .18rem;
  color: var(--text-muted);
  font-size: .75rem;
}
.work-summary .dot { display: none; }

@media (max-width: 720px) {
  .work-summary {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 1px;
    padding: 0;
    background: rgba(20,115,230,.10);
    border-radius: 20px;
  }
  .work-summary-item {
    min-height: 92px;
    padding: .85rem .75rem;
    background: rgba(255,255,255,.92);
    border: 0;
  }
  .work-summary-item:nth-child(1) { border-radius: 19px 0 0 0; }
  .work-summary-item:nth-child(2) { border-radius: 0 19px 0 0; }
  .work-summary-item:nth-last-child(2) { border-radius: 0 0 0 19px; }
  .work-summary-item:last-child { border-radius: 0 0 19px 0; }
  .work-summary-item > i {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }
  .work-summary-copy strong { font-size: 1rem; }
  .work-summary-copy > span { font-size: .7rem; line-height: 1.3; }
}

@media (max-width: 360px) {
  .work-summary-item { gap: .5rem; padding-inline: .6rem; }
  .work-summary-item > i { display: none; }
}

/* Commercial authority: individual proof cards + marketplace trust chips. */
.authority-section {
  position: relative;
}
.authority-section::before {
  content: "";
  position: absolute;
  inset: 8% 0 auto;
  height: 420px;
  pointer-events: none;
  background:
    radial-gradient(circle at 75% 35%, rgba(82,199,234,.13), transparent 34%),
    radial-gradient(circle at 15% 70%, rgba(20,115,230,.08), transparent 35%);
}
.authority-heading {
  position: relative;
  max-width: 650px;
  margin-bottom: 1.75rem;
}
.authority-heading .section-lead {
  max-width: 48ch;
  margin-top: .75rem;
}
.authority-section .stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  grid-auto-rows: 1fr;
  gap: .9rem;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.authority-section .stat {
  min-height: 205px;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 12%, rgba(82,199,234,.14), transparent 42%),
    rgba(255,255,255,.80);
  border: 1px solid rgba(20,115,230,.12);
  border-radius: 22px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.98) inset,
    0 16px 42px rgba(38,82,132,.09);
  backdrop-filter: blur(24px) saturate(155%);
  -webkit-backdrop-filter: blur(24px) saturate(155%);
}
.authority-section .stat::after { display: none; }
.authority-stat-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  color: #1473e6;
  background: rgba(20,115,230,.09);
  border: 1px solid rgba(20,115,230,.10);
  border-radius: 13px;
  font-size: 1.2rem;
}
.authority-section .stat .num {
  color: #0759bd;
  background: none;
  -webkit-text-fill-color: currentColor;
  font-size: clamp(2rem,3.5vw,3rem);
  line-height: 1;
  letter-spacing: -.055em;
}
.authority-section .stat .num .sym {
  color: #1473e6;
  -webkit-text-fill-color: currentColor;
}
.authority-section .stat .label {
  margin-top: .7rem;
  color: var(--text-muted);
  font-size: .84rem;
  line-height: 1.4;
}
.authority-section .authority {
  position: relative;
  justify-content: flex-start;
  gap: .65rem;
  margin-top: 1.25rem;
  padding: .85rem;
  background: rgba(255,255,255,.56);
  border: 1px solid rgba(20,115,230,.10);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(38,82,132,.06);
}
.authority-section .authority .lbl {
  padding: .55rem .75rem;
  color: #75889d;
  font-size: .68rem;
}
.authority-section .authority .mkt {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .58rem .78rem;
  color: #435a74;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(20,115,230,.10);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 650;
}
.authority-section .authority .mkt i {
  color: #1473e6;
  font-size: .9rem;
}
.authority-section .authority .mkt:hover {
  color: #0759bd;
  background: #fff;
  border-color: rgba(20,115,230,.24);
}

@media (max-width: 800px) {
  .authority-section .stats { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .authority-section .stat { min-height: 170px; }
}
@media (max-width: 480px) {
  .authority-section .stats { gap: .65rem; }
  .authority-section .stat {
    min-height: 150px;
    padding: 1rem;
    border-radius: 18px;
  }
  .authority-stat-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 1.3rem;
    border-radius: 11px;
  }
  .authority-section .stat .num { font-size: clamp(1.8rem,9vw,2.25rem); }
  .authority-section .stat .label { font-size: .72rem; }
  .authority-section .authority {
    gap: .5rem;
    padding: .7rem;
  }
  .authority-section .authority .lbl {
    width: 100%;
    padding: .3rem .4rem;
  }
  .authority-section .authority .mkt {
    flex: 1 1 calc(50% - .5rem);
    justify-content: center;
    padding-inline: .5rem;
  }
}

/* Layout corrections: intentionally last so earlier theme layers cannot enlarge them. */
.cta-band {
  min-height: 0;
  padding: clamp(2.1rem,3vw,2.85rem) clamp(1.35rem,4vw,3.25rem);
}
.cta-band h2 {
  max-width: 14ch;
  margin-bottom: .7rem;
  font-size: clamp(2rem,3.25vw,3rem);
}
.cta-band .eyebrow { margin-bottom: .85rem; }
.cta-band p { margin-bottom: 1.15rem; }
.mobile-package-anchor:empty { display: none; }
@media (max-width: 900px) {
  .mobile-package-anchor:not(:empty) { display: block; margin: 1.25rem 0 2rem; }
  .mobile-package-anchor .gig-side { width: 100%; margin: 0; position: static; }
  .mobile-package-anchor .pkg-card { max-width: 620px; margin-inline: auto; }
}
@media (max-width: 640px) {
  .cta-band { padding: 1.9rem 1.1rem; }
  .cta-band h2 { font-size: clamp(1.85rem,9vw,2.35rem); }
  .mobile-package-anchor:not(:empty) { margin: 1rem 0 1.5rem; }
}

/* Full-width CTA heading: one line on desktop/tablet, safe wrap on mobile. */
@media (min-width: 701px) {
  .cta-band { padding-block: clamp(1.8rem,2.5vw,2.4rem); }
  .cta-band h2 {
    width: 100%;
    max-width: none;
    white-space: nowrap;
    font-size: clamp(2rem,3vw,3rem);
  }
}
@media (max-width: 700px) {
  .cta-band h2 { width: auto; max-width: 14ch; white-space: normal; }
}
