:root {
  --navy: #062b55;
  --deep: #031b34;
  --ocean: #0878b8;
  --sky: #d9f1ff;
  --yellow: #f7bd17;
  --gold: #dc9c06;
  --ink: #071525;
  --muted: #647386;
  --line: #dce5ef;
  --surface: #f5f9fc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(3, 27, 52, 0.18);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-pop: cubic-bezier(0.22, 1.3, 0.36, 1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
}

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

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

button,
input,
select {
  font: inherit;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes image-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes ripple-out {
  from {
    opacity: 0.35;
    transform: translate(-50%, -50%) scale(0);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes press-pop {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(0.97);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

body.motion-ready .reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out),
    filter 0.8s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

body.motion-ready .reveal[data-reveal="left"] {
  transform: translateX(-34px) scale(0.985);
}

body.motion-ready .reveal[data-reveal="right"] {
  transform: translateX(34px) scale(0.985);
}

body.motion-ready .reveal[data-reveal="scale"] {
  transform: translateY(18px) scale(0.94);
}

body.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  filter: blur(0);
}

.fx-ripple {
  position: absolute;
  top: var(--ripple-y);
  left: var(--ripple-x);
  width: var(--ripple-size);
  height: var(--ripple-size);
  pointer-events: none;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  animation: ripple-out 0.62s var(--ease-out);
}

.is-clicking {
  animation: press-pop 0.26s var(--ease-pop);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(6, 43, 85, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--navy);
  text-transform: uppercase;
}

.brand strong {
  display: block;
  font-size: 1.35rem;
  line-height: 0.9;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--ocean);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
  transition: transform 0.24s var(--ease-pop), filter 0.24s ease;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.header-logo {
  width: clamp(116px, 12vw, 156px);
  height: 58px;
}

.brand:hover .brand-logo {
  filter: drop-shadow(0 12px 18px rgba(8, 120, 184, 0.14));
  transform: translateY(-1px) scale(1.02);
}

.desktop-nav {
  display: flex;
  gap: 28px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.desktop-nav a {
  padding: 10px 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 950;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 950;
  text-transform: uppercase;
  isolation: isolate;
  transition: transform 0.24s var(--ease-pop), box-shadow 0.24s ease, background 0.24s ease;
}

.button:hover {
  transform: translate(var(--hover-x, 0), calc(var(--hover-y, 0) - 3px)) scale(1.015);
}

.button:active {
  transform: translateY(0) scale(0.985);
}

.button-primary {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(247, 189, 23, 0.3);
}

.button-light {
  background: var(--white);
  color: var(--navy);
}

.button-large {
  min-height: 56px;
  padding-inline: 30px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.mobile-menu {
  position: fixed;
  top: 82px;
  right: 0;
  left: 0;
  z-index: 19;
  display: none;
  flex-direction: column;
  padding: 18px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a {
  padding: 15px 8px;
  color: var(--navy);
  font-weight: 900;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--yellow);
}

.hero {
  position: relative;
  min-height: clamp(570px, calc(100vh - 138px), 760px);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(18, 142, 202, 0.52), transparent 30%),
    linear-gradient(120deg, var(--deep) 0%, var(--navy) 46%, #0f75ad 100%);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 78%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 27, 52, 0.98), rgba(3, 27, 52, 0.86) 39%, rgba(3, 27, 52, 0.18) 75%, rgba(3, 27, 52, 0.05)),
    linear-gradient(0deg, rgba(3, 27, 52, 0.34), transparent 54%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(420px, 0.78fr) minmax(420px, 1fr);
  gap: clamp(26px, 4vw, 64px);
  align-items: center;
  min-height: inherit;
  padding: clamp(56px, 7vw, 90px) clamp(28px, 5vw, 72px) clamp(56px, 7vw, 90px) clamp(28px, 6vw, 86px);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0;
}

.hero-content .eyebrow,
.hero-content h1,
.hero-copy,
.hero-actions,
.trust-row {
  animation: hero-rise 0.84s var(--ease-out) both;
}

.hero-content h1 {
  animation-delay: 0.08s;
}

.hero-copy {
  animation-delay: 0.16s;
}

.hero-actions {
  animation-delay: 0.24s;
}

.trust-row {
  animation-delay: 0.32s;
}

.hero-image {
  align-self: center;
  justify-self: end;
  width: min(720px, 100%);
  padding: clamp(10px, 1.4vw, 18px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: -24px 28px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
  animation: hero-rise 0.9s 0.2s var(--ease-out) both, image-float 7s 1.2s ease-in-out infinite;
}

.hero-image img {
  width: 100%;
  max-height: min(680px, calc(100vh - 120px));
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  object-position: right bottom;
  filter: saturate(0.98);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-kicker {
  max-width: 1220px;
  margin-right: auto;
  margin-left: auto;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3.8rem, 7.2vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2.1rem, 4.6vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.05;
}

.hero-copy {
  max-width: 630px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row span {
  padding: 10px 14px;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.quick-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.quick-proof article {
  padding: clamp(26px, 4vw, 46px);
  background: var(--navy);
  color: var(--white);
}

.quick-proof strong {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 1.15rem;
  text-transform: uppercase;
}

.quick-proof span {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.section {
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 70px);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  min-height: 520px;
  padding: clamp(62px, 8vw, 105px) clamp(18px, 5vw, 70px);
  background:
    radial-gradient(circle at 80% 10%, rgba(18, 142, 202, 0.44), transparent 30%),
    linear-gradient(125deg, var(--deep), var(--navy) 58%, #0f75ad);
  color: var(--white);
}

.page-hero > div,
.page-hero-image {
  animation: hero-rise 0.8s var(--ease-out) both;
}

.page-hero-image {
  animation-delay: 0.14s;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.page-hero > div:only-child {
  grid-column: 1 / -1;
  max-width: 980px;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.65;
}

.page-hero-image {
  overflow: hidden;
  padding: clamp(10px, 1.4vw, 18px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.page-hero-image img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.contact-hero-image {
  align-self: end;
  justify-self: center;
  width: min(330px, 100%);
  margin-bottom: calc(clamp(62px, 8vw, 105px) * -1);
  filter: drop-shadow(-18px 26px 34px rgba(0, 0, 0, 0.28));
  animation: hero-rise 0.9s 0.16s var(--ease-out) both, image-float 6.5s 1.1s ease-in-out infinite;
}

.contact-hero-image img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  object-position: bottom right;
}

.service-page-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
}

.intro-section {
  background: var(--surface);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  max-width: 1220px;
  margin: 0 auto;
}

.split p,
.section-heading p,
.why-card p,
.campaign-copy p,
.areas-section p,
.book-section p,
.review-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 42px;
}

.services-section {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  row-gap: clamp(122px, 10vw, 150px);
  padding-top: clamp(104px, 9vw, 132px);
  overflow: visible;
}

.service-card-wrap {
  --peek-x: 50%;
  --peek-tilt: -2deg;
  --peek-rest-tilt: -9deg;
  position: relative;
  min-height: 255px;
}

.service-card-wrap:nth-child(3n + 1) {
  --peek-x: 82%;
  --peek-tilt: -4deg;
  --peek-rest-tilt: -11deg;
}

.service-card-wrap:nth-child(3n) {
  --peek-x: 22%;
  --peek-tilt: 5deg;
  --peek-rest-tilt: 9deg;
}

.service-card-wrap:hover,
.service-card-wrap:focus-within {
  z-index: 5;
}

.service-peeker {
  position: absolute;
  top: 0;
  left: var(--peek-x);
  z-index: 0;
  width: min(252px, 78%);
  pointer-events: none;
  opacity: 0;
  filter: drop-shadow(0 22px 26px rgba(3, 27, 52, 0.22));
  transform: translate(-50%, 34px) scale(0.72) rotate(var(--peek-rest-tilt));
  transform-origin: 50% 100%;
  transition: opacity 0.22s ease, transform 0.34s var(--ease-pop), filter 0.28s ease;
}

.service-peeker img {
  display: block;
  width: 100%;
  height: auto;
}

.service-card-wrap:hover .service-peeker,
.service-card-wrap:focus-within .service-peeker,
.service-card-wrap.is-peeking .service-peeker {
  opacity: 1;
  filter: drop-shadow(0 28px 34px rgba(3, 27, 52, 0.26));
  transform: translate(-50%, -174px) scale(1) rotate(var(--peek-tilt));
}

.service-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  height: 100%;
  min-height: 255px;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  isolation: isolate;
  transition: transform 0.26s var(--ease-pop), box-shadow 0.26s ease, border-color 0.26s ease, background 0.26s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(8, 120, 184, 0.1), rgba(247, 189, 23, 0.14));
  opacity: 0;
  transition: opacity 0.26s ease;
}

.service-card:hover {
  border-color: rgba(8, 120, 184, 0.4);
  box-shadow: var(--shadow);
  transform: translate(var(--hover-x, 0), calc(var(--hover-y, 0) - 8px));
}

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

.service-card strong {
  color: var(--navy);
  font-size: 1.45rem;
}

.service-card span:last-child {
  color: var(--muted);
  line-height: 1.55;
}

.service-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 8px;
  transition: transform 0.26s var(--ease-pop), box-shadow 0.26s ease;
}

.service-card:hover .service-icon {
  transform: rotate(-4deg) scale(1.08);
  box-shadow: 0 14px 24px rgba(247, 189, 23, 0.24);
}

.service-icon svg {
  width: 28px;
  fill: currentColor;
}

.detail-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  background: var(--surface);
}

.detail-main {
  display: grid;
  gap: 18px;
}

.content-panel,
.sidebar-card {
  padding: clamp(24px, 4vw, 40px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(3, 27, 52, 0.08);
  transition: transform 0.28s var(--ease-pop), box-shadow 0.28s ease, border-color 0.28s ease;
}

.content-panel:hover,
.sidebar-card:hover {
  border-color: rgba(8, 120, 184, 0.24);
  box-shadow: 0 26px 58px rgba(3, 27, 52, 0.12);
  transform: translateY(-4px);
}

.content-panel h2 {
  font-size: clamp(1.85rem, 3.4vw, 3rem);
}

.check-list,
.number-list,
.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 13px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 17px;
  height: 17px;
  background: var(--yellow);
  border-radius: 5px;
  box-shadow: inset 0 0 0 4px rgba(6, 43, 85, 0.13);
}

.number-list {
  counter-reset: steps;
  display: grid;
  gap: 16px;
}

.number-list li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.number-list li::before {
  content: counter(steps, decimal-leading-zero);
  color: var(--ocean);
  font-size: 1.4rem;
  font-weight: 950;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: background 0.24s ease, border-color 0.24s ease, transform 0.24s var(--ease-pop);
}

.faq-list details:hover,
.faq-list details[open] {
  background: var(--white);
  border-color: rgba(8, 120, 184, 0.28);
  transform: translateX(4px);
}

.faq-list summary {
  color: var(--navy);
  cursor: pointer;
  font-weight: 950;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.sidebar-card {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 18px;
}

.sidebar-card h3 {
  margin-bottom: 0;
  font-size: 1.55rem;
}

.related-links {
  display: grid;
  gap: 10px;
}

.related-links a {
  position: relative;
  overflow: hidden;
  padding: 14px;
  color: var(--navy);
  font-weight: 900;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 0.24s var(--ease-pop), background 0.24s ease, border-color 0.24s ease;
}

.related-links a:hover {
  background: var(--sky);
  border-color: rgba(8, 120, 184, 0.28);
  transform: translate(calc(var(--hover-x, 0) + 6px), var(--hover-y, 0));
}

.support-section {
  background: var(--surface);
}

.support-section > * {
  max-width: 1180px;
  margin-inline: auto;
}

.area-list.large span,
.area-list.large a {
  font-size: 1.06rem;
}

.support-form {
  max-width: 720px;
  margin-inline: auto;
}

.why-section {
  background: linear-gradient(135deg, var(--deep), var(--navy));
}

.why-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.85fr);
  gap: clamp(28px, 6vw, 80px);
  max-width: 1220px;
  padding: clamp(34px, 6vw, 70px);
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.why-list {
  display: grid;
  gap: 16px;
}

.why-list div {
  padding: 20px;
  background: var(--surface);
  border-left: 5px solid var(--yellow);
  border-radius: 8px;
  transition: transform 0.24s var(--ease-pop), box-shadow 0.24s ease;
}

.why-list div:hover {
  box-shadow: 0 16px 34px rgba(3, 27, 52, 0.08);
  transform: translateX(6px);
}

.why-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1.05rem;
}

.why-list span {
  color: var(--muted);
}

.process-section {
  background:
    radial-gradient(circle at top left, rgba(8, 120, 184, 0.12), transparent 34%),
    var(--surface);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-grid article {
  min-height: 255px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 0.26s var(--ease-pop), box-shadow 0.26s ease, border-color 0.26s ease;
}

.process-grid article:hover {
  border-color: rgba(8, 120, 184, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--ocean);
  font-size: 3rem;
  font-weight: 950;
  line-height: 1;
}

.process-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.reviews-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: var(--white);
}

.reviews {
  display: grid;
  gap: 18px;
}

.reviews-widget-panel {
  overflow: hidden;
  padding: clamp(16px, 3vw, 28px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(3, 27, 52, 0.08);
}

.reviews-widget-panel iframe {
  display: block;
  min-height: 560px;
  border: 0;
}

blockquote {
  margin: 0;
  padding: clamp(26px, 4vw, 40px);
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.26s var(--ease-pop), box-shadow 0.26s ease;
}

blockquote:hover {
  box-shadow: 0 30px 70px rgba(3, 27, 52, 0.22);
  transform: translateY(-5px) rotate(-0.3deg);
}

blockquote p {
  color: var(--white);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 850;
  line-height: 1.35;
}

blockquote cite {
  color: var(--yellow);
  font-style: normal;
  font-weight: 900;
}

.campaign-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: var(--surface);
}

.campaign-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 8px solid var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.36s var(--ease-out), box-shadow 0.36s ease;
}

.campaign-image:hover img {
  box-shadow: 0 34px 76px rgba(3, 27, 52, 0.22);
  transform: scale(1.025);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--navy);
  font-weight: 950;
  text-transform: uppercase;
  border-bottom: 3px solid var(--yellow);
  transition: color 0.22s ease, transform 0.22s var(--ease-pop);
}

.text-link:hover {
  color: var(--ocean);
  transform: translateX(5px);
}

.areas-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: var(--white);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-list span,
.area-list a {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  padding: 13px 16px;
  color: var(--navy);
  font-weight: 900;
  background: var(--sky);
  border: 1px solid rgba(8, 120, 184, 0.18);
  border-radius: 8px;
  transition: transform 0.24s var(--ease-pop), background 0.24s ease, box-shadow 0.24s ease;
}

.area-list a {
  background: var(--white);
  box-shadow: inset 0 0 0 2px rgba(247, 189, 23, 0.24);
}

.area-list span:hover,
.area-list a:hover {
  background: var(--white);
  box-shadow: 0 12px 28px rgba(8, 120, 184, 0.12);
  transform: translateY(-4px) rotate(-1deg);
}

.service-area-hub {
  display: grid;
  gap: 34px;
}

.area-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.area-card {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(3, 27, 52, 0.08);
  transition: transform 0.28s var(--ease-pop), box-shadow 0.28s ease, border-color 0.28s ease;
}

.area-card:hover {
  border-color: rgba(8, 120, 184, 0.32);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.area-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.area-card span {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.area-card small {
  color: var(--gold);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.area-card strong {
  color: var(--navy);
  font-size: 1.25rem;
}

.area-card em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
}

.location-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.location-meta span {
  padding: 10px 12px;
  color: var(--white);
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.location-image {
  align-self: stretch;
}

.location-image img {
  height: 100%;
  min-height: 360px;
}

.location-image figcaption {
  margin: 10px 2px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.4;
}

.location-image figcaption a {
  color: var(--yellow);
  font-weight: 900;
}

.local-proof article {
  background: var(--deep);
}

.panel-copy {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.service-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.service-link-grid a {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 4px;
  min-height: 92px;
  align-content: center;
  padding: 16px;
  color: var(--navy);
  font-weight: 950;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 0.24s var(--ease-pop), border-color 0.24s ease, background 0.24s ease;
}

.service-link-grid a:hover {
  background: var(--sky);
  border-color: rgba(8, 120, 184, 0.32);
  transform: translateY(-4px);
}

.service-link-grid span {
  color: var(--gold);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.book-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.66fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 70px);
  background: linear-gradient(135deg, var(--navy), var(--deep));
  color: var(--white);
}

.book-section h2 {
  color: var(--white);
}

.book-section p {
  color: rgba(255, 255, 255, 0.78);
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.28s var(--ease-pop), box-shadow 0.28s ease;
}

.booking-form:hover {
  box-shadow: 0 32px 76px rgba(3, 27, 52, 0.18);
  transform: translateY(-4px);
}

body.modal-open {
  overflow: hidden;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 30px);
  background: rgba(3, 27, 52, 0.72);
  backdrop-filter: blur(8px);
}

.booking-modal[hidden] {
  display: none;
}

.booking-modal-card {
  position: relative;
  width: min(100%, 640px);
  max-height: min(90vh, 780px);
  overflow: auto;
  padding: clamp(22px, 4vw, 36px);
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
  animation: modal-in 0.24s var(--ease-pop);
}

.booking-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--navy);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.booking-modal-close:hover {
  background: var(--gold);
  transform: rotate(8deg) scale(1.04);
}

.booking-modal-intro {
  display: grid;
  gap: 10px;
  padding-right: 48px;
  margin-bottom: 18px;
}

.booking-modal-intro h2 {
  color: var(--navy);
  font-size: clamp(1.7rem, 4vw, 2.35rem);
}

.booking-modal-intro p {
  max-width: 54ch;
  color: var(--muted);
}

.booking-modal .booking-form {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.booking-modal .booking-form:hover {
  box-shadow: none;
  transform: none;
}

.booking-prompt-card {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-prompt-card h3 {
  color: var(--navy);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.booking-prompt-card p {
  color: var(--muted);
}

.form-step {
  display: grid;
  gap: 16px;
}

.form-step[hidden] {
  display: none;
}

.form-step-header {
  display: grid;
  gap: 5px;
  padding-bottom: 4px;
}

.form-step-header span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-step-header strong {
  color: var(--navy);
  font-size: clamp(1.28rem, 2.4vw, 1.65rem);
  line-height: 1.05;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.form-actions .button-light {
  border-color: var(--line);
  box-shadow: none;
}

.booking-form .form-message {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.45;
}

.booking-form .form-message-success {
  color: #117346;
}

.booking-form .form-message-error {
  color: #b42318;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--ocean);
  outline: 3px solid rgba(8, 120, 184, 0.18);
}

.form-note {
  margin: 0;
  color: var(--muted) !important;
  font-size: 0.85rem !important;
}

.site-footer {
  padding: 54px clamp(18px, 5vw, 70px) 98px;
  background: var(--deep);
  color: var(--white);
}

.footer-columns {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) repeat(3, minmax(150px, 0.32fr));
  gap: clamp(28px, 6vw, 80px);
  max-width: 1220px;
  margin: 0 auto;
}

.footer-brand {
  display: inline-flex;
  color: var(--white);
}

.footer-logo {
  width: min(270px, 100%);
  height: 170px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.footer-logo img {
  object-position: center;
}

.site-footer p {
  max-width: 620px;
  margin: 18px 0 14px;
  color: rgba(255, 255, 255, 0.72);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.site-footer a {
  color: var(--yellow);
  font-weight: 950;
}

.social-links a {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  transition: transform 0.22s var(--ease-pop), background 0.22s ease, color 0.22s ease;
}

.social-links a:hover {
  color: var(--navy);
  background: var(--yellow);
  transform: translateY(-3px);
}

.site-footer h3 {
  margin: 0 0 16px;
  color: var(--white);
}

.site-footer li + li {
  margin-top: 10px;
}

.mobile-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.mobile-cta a {
  display: grid;
  min-height: 48px;
  place-items: center;
  color: var(--navy);
  font-weight: 950;
  text-transform: uppercase;
  background: var(--yellow);
  border-radius: 7px;
}

.mobile-cta a:first-child {
  background: var(--navy);
  color: var(--white);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  body.motion-ready .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .service-grid,
  .process-grid,
  .area-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card-wrap:nth-child(n) {
    --peek-x: 50%;
    --peek-tilt: -2deg;
    --peek-rest-tilt: -9deg;
  }

  .service-card-wrap:nth-child(odd) {
    --peek-x: 76%;
    --peek-tilt: -4deg;
  }

  .service-card-wrap:nth-child(even) {
    --peek-x: 24%;
    --peek-tilt: 5deg;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 76px;
    padding: 12px 16px;
  }

  .brand strong {
    font-size: 1.08rem;
  }

  .brand small {
    font-size: 0.66rem;
  }

  .header-logo {
    width: 118px;
    height: 52px;
  }

  .phone-link,
  .header-actions .button {
    display: none;
  }

  .mobile-menu {
    top: 76px;
  }

  .hero {
    min-height: 690px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(3, 27, 52, 0.98), rgba(3, 27, 52, 0.76) 54%, rgba(3, 27, 52, 0.2)),
      linear-gradient(90deg, rgba(3, 27, 52, 0.66), rgba(3, 27, 52, 0.05));
  }

  .hero-inner {
    display: flex;
    min-height: inherit;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 36px 16px 52px;
  }

  .hero-content {
    width: calc(100% - 32px);
    order: 2;
    padding: 0;
    margin: 0 auto;
  }

  .hero-image {
    order: 1;
    width: min(560px, 100%);
    margin-right: 0;
    margin-left: auto;
  }

  .hero-image img {
    max-height: 310px;
    aspect-ratio: 1.35 / 1;
  }

  h1 {
    font-size: clamp(3.1rem, 18vw, 4.9rem);
  }

  h2 {
    font-size: clamp(2.15rem, 12vw, 3.5rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .booking-modal {
    padding: 12px;
  }

  .booking-modal-card {
    max-height: calc(100dvh - 24px);
    padding: 22px;
  }

  .booking-modal-intro {
    padding-right: 44px;
  }

  .trust-row span {
    width: 100%;
  }

  .quick-proof,
  .split,
  .why-card,
  .reviews-section,
  .campaign-section,
  .areas-section,
  .book-section,
  .page-hero,
  .detail-section,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: auto;
  }

  .contact-hero-image {
    justify-self: center;
    width: min(250px, 78vw);
    margin: 0 auto -64px;
  }

  .contact-hero-image img {
    max-height: 330px;
  }

  .sidebar-card {
    position: static;
  }

  .section,
  .book-section {
    padding-block: 64px;
  }

  .service-grid,
  .process-grid,
  .area-card-grid,
  .service-link-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .location-image img {
    min-height: 260px;
  }

  .service-grid {
    row-gap: 18px;
    padding-top: 0;
  }

  .service-peeker {
    display: none;
  }

  .service-card-wrap {
    min-height: auto;
  }

  .service-card,
  .process-grid article {
    min-height: auto;
  }

  .campaign-image {
    order: 2;
  }

  .mobile-cta {
    display: grid;
  }

  .footer-logo {
    width: min(232px, 100%);
    height: 146px;
  }
}
