:root {
  --ink: #0a0a0a;
  --ink-soft: #141414;
  --ink-mid: #1c1c1c;
  --ink-line: rgba(201, 162, 39, 0.28);
  --gold: #c9a227;
  --gold-light: #e8c96a;
  --gold-dark: #a8871c;
  --cream: #f5f0e6;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --muted-2: rgba(255, 255, 255, 0.5);
  --header-h: 78px;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --mobile-cta-h: 68px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Figtree", system-ui, sans-serif;
  background: var(--ink);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: 0;
}

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

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

h1,
h2,
h3,
.display {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-optical-sizing: auto;
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin: 0;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.gold {
  color: var(--gold-light);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 10, 0.82);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--ink-line);
  background: rgba(10, 10, 10, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.brand:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.brand img {
  height: 44px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav > a:not(.btn) {
  position: relative;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.25rem 0;
  transition: color 0.25s var(--ease);
}

.nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav > a:not(.btn):hover,
.nav > a:not(.btn):focus-visible {
  color: var(--gold-light);
}

.nav > a:not(.btn):hover::after,
.nav > a:not(.btn):focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--ink-line);
  color: var(--gold-light);
  width: 42px;
  height: 42px;
  border-radius: 0;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.nav-toggle:hover {
  border-color: var(--gold-light);
  background: rgba(201, 162, 39, 0.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.45rem;
  font-family: "Figtree", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.35) 50%, transparent 75%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.18);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(201, 162, 39, 0.32);
}

.btn-outline {
  background: transparent;
  border-color: rgba(232, 201, 106, 0.45);
  color: var(--gold-light);
}

.btn-outline:hover {
  background: rgba(201, 162, 39, 0.12);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.7rem 1.1rem;
  font-size: 0.72rem;
}

.btn-block {
  width: 100%;
}

.btn.is-loading {
  pointer-events: none;
  opacity: 0.75;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: -4%;
  z-index: -2;
  will-change: transform;
}

.hero-media-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, rgba(10, 10, 10, 0.62) 42%, rgba(10, 10, 10, 0.95) 100%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.55) 42%, rgba(10, 10, 10, 0.25) 72%, rgba(10, 10, 10, 0.55) 100%),
    url("/assets/img/hero.jpg") right center / cover no-repeat;
  transform: scale(1.08);
  transform-origin: 70% 45%;
  will-change: transform;
  animation: heroKenBurns 28s ease-in-out infinite alternate;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 201, 106, 0.35) 0%, rgba(201, 162, 39, 0.08) 45%, transparent 70%);
  filter: blur(2px);
  opacity: 0.55;
  animation: orbFloat 14s ease-in-out infinite alternate;
}

.orb-1 { width: 220px; height: 220px; left: 8%; top: 18%; animation-duration: 16s; }
.orb-2 { width: 140px; height: 140px; left: 38%; top: 58%; animation-duration: 12s; animation-delay: -3s; }
.orb-3 { width: 280px; height: 280px; right: 12%; top: 8%; animation-duration: 20s; animation-delay: -6s; opacity: 0.35; }
.orb-4 { width: 90px; height: 90px; right: 28%; bottom: 22%; animation-duration: 10s; animation-delay: -2s; }

.hero-rule {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 40%, var(--gold-light) 50%, var(--gold) 60%, transparent 100%);
  background-size: 200% 100%;
  z-index: -1;
  animation: ruleShimmer 4.5s linear infinite;
}

.hero-inner,
.hero > .container {
  position: relative;
  z-index: 1;
  padding: clamp(4.5rem, 11vw, 8rem) 0 5rem;
}

.hero-copy {
  max-width: 36rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1.25rem;
  font-family: "Figtree", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--cream);
  text-wrap: balance;
}

.hero-lead {
  max-width: 32rem;
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.hero-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 1.85rem;
  display: grid;
  gap: 0.55rem;
}

.hero-checks .check-item {
  position: relative;
  padding-left: 1.45rem;
  color: var(--cream);
  font-size: 0.98rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.hero-checks .check-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
}

.reveal-hero.is-visible .check-item {
  opacity: 1;
  transform: none;
}

.reveal-hero.is-visible .check-item:nth-child(1) { transition-delay: 0.1s; }
.reveal-hero.is-visible .check-item:nth-child(2) { transition-delay: 0.18s; }
.reveal-hero.is-visible .check-item:nth-child(3) { transition-delay: 0.26s; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

@keyframes heroKenBurns {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to { transform: scale(1.16) translate3d(-2.4%, -1.4%, 0); }
}

@keyframes orbFloat {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(18px, -22px, 0) scale(1.08); }
}

@keyframes ruleShimmer {
  from { background-position: 100% 0; }
  to { background-position: -100% 0; }
}

@keyframes iconFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-4px); }
}

.section-coverage {
  background:
    radial-gradient(ellipse at 80% 40%, rgba(201, 162, 39, 0.1), transparent 55%),
    var(--ink-soft);
}

.coverage-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}

.coverage-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.85rem;
}

.coverage-copy > p {
  margin: 0 0 1.35rem;
  color: var(--muted);
  max-width: 34rem;
  font-size: 1.05rem;
}

.coverage-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.coverage-points li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--cream);
  font-size: 0.98rem;
}

.coverage-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
}

.coverage-map {
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
}

.coverage-map svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35));
}

.coverage-map .uf {
  fill: rgba(201, 162, 39, 0.08);
  stroke: rgba(232, 201, 106, 0.55);
  stroke-width: 0.9;
  stroke-linejoin: round;
  transition: fill 0.25s var(--ease), stroke 0.25s var(--ease), transform 0.25s var(--ease);
  transform-box: fill-box;
  transform-origin: center;
  cursor: default;
}

.coverage-map .uf:hover {
  fill: rgba(232, 201, 106, 0.28);
  stroke: var(--gold-light);
  stroke-width: 1.4;
}

/* Sections */
.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.75rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.section-dark {
  background: var(--ink-soft);
}

.section-mid {
  background:
    radial-gradient(ellipse at top, rgba(201, 162, 39, 0.08), transparent 55%),
    var(--ink-mid);
}

/* Area cards */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.area-card {
  position: relative;
  padding: 1.6rem 1.35rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.area-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(232, 201, 106, 0.18) 48%, transparent 66%);
  transform: translateX(-120%);
  transition: transform 0.75s var(--ease);
  pointer-events: none;
}

.area-card:hover::before {
  transform: translateX(120%);
}

.area-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  box-shadow: inset 0 0 0 1px rgba(232, 201, 106, 0.35);
  transition: opacity 0.35s var(--ease);
}

.area-card:hover {
  border-color: rgba(232, 201, 106, 0.55);
  background: rgba(201, 162, 39, 0.07);
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.4), 0 0 40px rgba(201, 162, 39, 0.08);
}

.area-card:hover::after {
  opacity: 1;
}

.area-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 1.1rem;
  color: var(--gold);
  animation: iconFloat 3.6s ease-in-out infinite alternate;
  transition: color 0.3s var(--ease), transform 0.35s var(--ease), filter 0.35s var(--ease);
}

.area-card:nth-child(2) .area-icon { animation-delay: -0.6s; }
.area-card:nth-child(3) .area-icon { animation-delay: -1.2s; }
.area-card:nth-child(4) .area-icon { animation-delay: -1.8s; }
.area-card:nth-child(5) .area-icon { animation-delay: -2.4s; }
.area-card:nth-child(6) .area-icon { animation-delay: -3s; }

.area-card:hover .area-icon {
  color: var(--gold-light);
  animation: none;
  transform: scale(1.1) rotate(-4deg);
  filter: drop-shadow(0 0 10px rgba(232, 201, 106, 0.35));
}

.area-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
}

.area-card p {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.92rem;
}

/* How we work */
.how-panel {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
}

.how-copy {
  padding: 2rem;
  border: 1px solid var(--ink-line);
  background: rgba(0, 0, 0, 0.25);
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.how-copy:hover {
  border-color: rgba(232, 201, 106, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.how-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.how-copy p:last-child {
  margin-bottom: 0;
}

.how-callout {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.18), rgba(168, 135, 28, 0.08));
  border: 1px solid rgba(232, 201, 106, 0.35);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.how-callout:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(201, 162, 39, 0.12);
}

.how-callout strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.25;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  padding: 1.85rem 1.5rem;
  border-top: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.02);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

.service-card:hover {
  transform: translateY(-5px);
  border-top-color: var(--gold-light);
  background: rgba(201, 162, 39, 0.05);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3);
}

.service-card .num {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  transition: color 0.3s var(--ease);
}

.service-card:hover .num {
  color: var(--gold-light);
}

.service-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Audience */
.audience-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.audience-list li {
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
  font-size: 1.02rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}

.audience-list li:hover {
  border-color: rgba(232, 201, 106, 0.45);
  background: rgba(201, 162, 39, 0.06);
  transform: translateX(4px);
}

.audience-list span {
  color: var(--gold-light);
  margin-right: 0.55rem;
}

/* Contact */
.cta-band {
  position: relative;
  padding: clamp(4rem, 8vw, 5.5rem) 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at center, rgba(201, 162, 39, 0.14), transparent 60%),
    var(--ink);
  border-block: 1px solid var(--ink-line);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.contact-intro h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.1rem);
  margin-bottom: 0.75rem;
}

.contact-intro p {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  color: var(--muted);
}

.cta-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.contact-form {
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(232, 201, 106, 0.22);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.form-row {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}

.form-row label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  font: inherit;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-row input:hover,
.form-row textarea:hover {
  border-color: rgba(232, 201, 106, 0.35);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
  background: rgba(0, 0, 0, 0.45);
}

.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.form-status {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
}

.form-status.is-ok {
  color: #9be7a8;
}

.form-status.is-error {
  color: #ffb4b4;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 2rem;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 0.85rem;
}

.footer-brand p {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.9rem;
  max-width: 26rem;
}

.footer-col h4 {
  margin: 0 0 0.85rem;
  font-family: "Figtree", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.footer-col a,
.footer-col p {
  display: block;
  margin: 0 0 0.45rem;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.footer-col a:hover {
  color: var(--gold-light);
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted-2);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--gold-light);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Mobile CTA */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  gap: 0.65rem;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(10, 10, 10, 0.94);
  border-top: 1px solid var(--ink-line);
  backdrop-filter: blur(12px);
}

.mobile-cta .btn {
  flex: 1;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  z-index: 80;
  transform: translateX(-50%) translateY(12px);
  padding: 0.85rem 1.2rem;
  background: rgba(20, 20, 20, 0.96);
  border: 1px solid rgba(232, 201, 106, 0.4);
  color: var(--cream);
  font-size: 0.92rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.32s; }
.reveal-delay-4 { transition-delay: 0.44s; }

.reveal-hero {
  transform: translateY(36px) scale(0.985);
}

.reveal-hero.is-visible {
  transform: none;
}

@media (max-width: 960px) {
  .areas-grid,
  .services-grid,
  .contact-layout,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .how-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: var(--mobile-cta-h);
  }

  .mobile-cta {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem 1.25rem;
    background: rgba(10, 10, 10, 0.97);
    border-bottom: 1px solid var(--ink-line);
  }

  .nav.is-open {
    display: flex;
  }

  .nav > a:not(.btn) {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav .btn {
    margin-top: 0.75rem;
    width: 100%;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .areas-grid,
  .services-grid,
  .audience-list,
  .form-grid,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .hero > .container {
    padding-top: 3.5rem;
  }

  .toast {
    bottom: calc(var(--mobile-cta-h) + 0.75rem);
    width: min(92vw, 360px);
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .hero-media,
  .hero-media-bg,
  .hero-rule,
  .orb,
  .area-icon,
  .reveal,
  .btn,
  .area-card,
  .service-card,
  .audience-list li,
  .toast,
  .hero-checks .check-item {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .hero-checks .check-item {
    opacity: 1;
    transform: none;
  }

  .btn::before,
  .area-card::before {
    display: none;
  }
}
