:root {
  --ink: #102033;
  --muted: #5b7084;
  --paper: #f5f9fc;
  --panel: #ffffff;
  --line: rgba(90, 153, 199, 0.2);
  --accent: #8ecdf3;
  --accent-dark: #2f82bd;
  --accent-deep: #176091;
  --navy: #0d263b;
  --blue-grey: #dbe8f1;
  --blue-grey-deep: #b9cedd;
  --soft: #eaf7ff;
  --soft-strong: #cfefff;
  --shadow: 0 22px 80px rgba(34, 101, 148, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

@keyframes heroImageDrift {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.08) translate3d(-1.25%, -0.8%, 0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 12px 28px rgba(61, 166, 225, 0.24);
  }

  50% {
    box-shadow: 0 16px 38px rgba(61, 166, 225, 0.38);
  }
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(7, 24, 39, 0.9), rgba(7, 24, 39, 0.54) 64%, rgba(7, 24, 39, 0));
  backdrop-filter: blur(6px);
  transition: background 220ms ease, padding 220ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  min-width: 0;
}

.brand-logo-wrap {
  display: flex;
  width: 86px;
  height: 64px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 86px;
  height: 64px;
  object-fit: contain;
  transition: filter 220ms ease, transform 220ms ease;
}

.brand:hover .brand-logo {
  filter: drop-shadow(0 8px 18px rgba(142, 205, 243, 0.32));
  transform: scale(1.05) rotate(-1deg);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 30px);
}

nav a,
.header-cta {
  position: relative;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.94rem;
  transition: color 180ms ease, transform 180ms ease;
}

nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

nav a:hover {
  color: #cfefff;
}

nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  border: 1px solid rgba(210, 239, 255, 0.72);
  border-radius: 8px;
  padding: 9px 16px;
  background: rgba(210, 239, 255, 0.18);
}

.header-cta:hover {
  transform: translateY(-2px);
  background: rgba(210, 239, 255, 0.28);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
  animation: heroImageDrift 18s ease-out both;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 19, 33, 0.94), rgba(18, 57, 86, 0.78) 45%, rgba(95, 135, 163, 0.22)),
    linear-gradient(0deg, rgba(8, 27, 43, 0.78), rgba(8, 27, 43, 0.02) 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: 140px 0 76px;
  color: #fff;
}

.hero-content > * {
  animation: fadeUp 680ms ease both;
}

.hero-content > *:nth-child(2) {
  animation-delay: 90ms;
}

.hero-content > *:nth-child(3) {
  animation-delay: 170ms;
}

.hero-content > *:nth-child(4) {
  animation-delay: 250ms;
}

.hero-content > *:nth-child(5) {
  animation-delay: 330ms;
}

.hero-content > *:nth-child(6) {
  animation-delay: 410ms;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d9f3ff;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.04rem, 2vw, 1.35rem);
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(640px, 100%);
  margin-top: 24px;
  border-top: 1px solid rgba(207, 239, 255, 0.28);
  border-bottom: 1px solid rgba(207, 239, 255, 0.2);
  background: rgba(9, 31, 49, 0.34);
  backdrop-filter: blur(8px);
}

.hero-trust div {
  min-width: 0;
  padding: 15px clamp(12px, 2.2vw, 22px);
}

.hero-trust div + div {
  border-left: 1px solid rgba(207, 239, 255, 0.2);
}

.hero-trust strong,
.hero-trust span {
  display: block;
}

.hero-trust strong {
  color: #ffffff;
  font-size: clamp(1.28rem, 2.4vw, 1.9rem);
  line-height: 1;
}

.hero-trust span {
  margin-top: 6px;
  color: #cfefff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-trust .rating-stars {
  margin-top: 5px;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.12em;
  text-shadow: 0 0 16px rgba(142, 205, 243, 0.58);
}

.hero-actions,
.hero-proof,
.contact-options,
.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 13px 20px;
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.button.primary {
  color: #061d30;
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(61, 166, 225, 0.28);
  animation: softPulse 4s ease-in-out infinite;
}

.button.primary:hover {
  color: #fff;
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.button.secondary {
  color: #fff;
  background: rgba(219, 232, 241, 0.14);
  border: 1px solid rgba(219, 232, 241, 0.48);
}

.button.secondary:hover {
  transform: translateY(-2px);
  background: rgba(219, 232, 241, 0.22);
}

.button:active,
.header-cta:active,
.carousel-button:active {
  transform: translateY(0) scale(0.98);
}

.hero-proof {
  margin-top: 28px;
}

.hero-proof span {
  border-left: 3px solid var(--accent);
  padding-left: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(219, 232, 241, 0.18);
}

.quick-strip div {
  padding: 22px clamp(18px, 4vw, 46px);
  background: #182f43;
  color: #ffffff;
}

.quick-strip div:hover {
  background: #203c54;
}

.quick-strip strong,
.quick-strip span {
  display: block;
}

.quick-strip span {
  margin-top: 4px;
  color: #b8cbd8;
}

.section {
  position: relative;
  isolation: isolate;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
}

.intro::before,
.split::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(135deg, #f7fbfd 0%, #e4eef5 50%, #d6e5ef 100%);
}

.split::before {
  background: linear-gradient(135deg, #ffffff 0%, #eef6fb 42%, #dce9f2 100%);
}

.intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 7vw, 86px);
  align-items: end;
}

.product-strip {
  position: relative;
  overflow: hidden;
  padding: 28px 0 32px;
  background: #f8fbfd;
  border-top: 1px solid rgba(35, 79, 111, 0.08);
  border-bottom: 1px solid rgba(35, 79, 111, 0.08);
}

.product-strip .section-kicker {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 16px;
  color: #234f6f;
}

.product-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 11%, #000 89%, transparent);
}

.product-logo-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: logoMarquee 38s linear infinite;
}

.product-marquee:hover .product-logo-track {
  animation-play-state: paused;
}

.product-logo-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(34px, 5.2vw, 92px);
  padding-right: clamp(34px, 5.2vw, 92px);
}

.product-logo {
  width: clamp(138px, 13vw, 220px);
  height: 48px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.92;
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.product-logo-sm {
  width: clamp(82px, 8vw, 128px);
}

.product-logo-mid {
  width: clamp(112px, 10vw, 168px);
}

.product-logo-wide {
  width: clamp(162px, 15vw, 250px);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro > p,
.booking-copy > p,
.coverage-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(35, 79, 111, 0.16);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 16px 42px rgba(31, 78, 112, 0.11);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(142, 205, 243, 0.18), transparent 42%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card:hover {
  border-color: rgba(47, 130, 189, 0.44);
  box-shadow: 0 24px 70px rgba(31, 78, 112, 0.2);
  transform: translateY(-8px);
}

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

.service-card.featured {
  border-color: rgba(47, 130, 189, 0.42);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: filter 260ms ease, transform 260ms ease;
}

.service-card:hover img {
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.055);
}

.service-card div {
  padding: 22px;
}

.price {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-deep);
  font-weight: 850;
}

.service-card h3,
.coverage-panel h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

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

.service-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 17px;
}

.service-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-dark);
  transition: transform 180ms ease;
}

.service-card:hover .service-list li::before {
  transform: scale(1.25);
}

.specialty {
  color: #ffffff;
}

.specialty::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background:
    radial-gradient(circle at 85% 10%, rgba(142, 205, 243, 0.24), transparent 30%),
    linear-gradient(135deg, #0d263b 0%, #173751 48%, #526e82 100%);
}

.specialty .section-kicker {
  color: #aee1ff;
}

.specialty h2 {
  color: #ffffff;
}

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

.specialty-card,
.quote-panel {
  border: 1px solid rgba(219, 232, 241, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 50px rgba(3, 18, 30, 0.18);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.specialty-card {
  padding: clamp(22px, 4vw, 30px);
}

.specialty-card:hover,
.quote-panel:hover {
  border-color: rgba(174, 225, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(3, 18, 30, 0.28);
  transform: translateY(-6px);
}

.specialty-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
  border-radius: 8px;
  object-fit: cover;
  transition: filter 260ms ease, transform 260ms ease;
}

.specialty-card:hover .specialty-photo {
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.025);
}

.specialty-card h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.specialty-card p,
.quote-panel p {
  margin: 0;
  color: #c7d8e4;
}

.quote-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: clamp(20px, 4vw, 28px);
}

.quote-panel strong {
  display: block;
  min-width: 190px;
  font-size: 1.1rem;
}

.quote-actions {
  justify-content: flex-end;
}

.specialty .button.secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(219, 232, 241, 0.45);
}

.work-gallery::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(135deg, #f6fbfe 0%, #e8f2f8 100%);
}

.gallery-heading-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.carousel-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  padding-top: 36px;
}

.carousel-button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(47, 130, 189, 0.24);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(31, 78, 112, 0.12);
  font: inherit;
  font-size: 1.25rem;
  font-weight: 900;
  cursor: pointer;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.carousel-button:hover {
  color: #ffffff;
  background: var(--accent-dark);
  box-shadow: 0 16px 36px rgba(31, 78, 112, 0.2);
  transform: translateY(-2px);
}

.carousel-button:disabled {
  cursor: default;
  opacity: 0.4;
}

.carousel-viewport {
  overflow: hidden;
}

.gallery-track {
  display: grid;
  grid-auto-columns: calc((100% - 42px) / 4);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-track img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  object-fit: cover;
  scroll-snap-align: start;
  box-shadow: 0 16px 42px rgba(31, 78, 112, 0.13);
  transition: filter 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.gallery-track img:hover {
  filter: saturate(1.08) contrast(1.05);
  box-shadow: 0 24px 58px rgba(31, 78, 112, 0.2);
  transform: translateY(-5px) scale(1.015);
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(24px, 6vw, 72px);
  align-items: start;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--muted);
  font-weight: 700;
}

.steps span {
  display: grid;
  flex: 0 0 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--accent-dark);
}

.coverage-panel {
  border: 1px solid rgba(47, 86, 113, 0.18);
  border-radius: 8px;
  padding: clamp(24px, 5vw, 38px);
  background: linear-gradient(135deg, #f9fcfe, #d7e7f1);
  box-shadow: 0 18px 50px rgba(42, 86, 118, 0.12);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.coverage-panel:hover {
  box-shadow: 0 24px 64px rgba(42, 86, 118, 0.18);
  transform: translateY(-5px);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent-deep);
  font-weight: 850;
  transition: color 180ms ease, transform 180ms ease;
}

.text-link:hover {
  color: var(--accent-dark);
  transform: translateX(4px);
}

.booking-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  padding: 88px clamp(18px, 5vw, 70px);
  background:
    radial-gradient(circle at 88% 14%, rgba(142, 205, 243, 0.32), transparent 28%),
    linear-gradient(135deg, #102033 0%, #18344c 47%, #d4e8f4 100%);
  color: #ffffff;
}

.booking-copy {
  position: sticky;
  top: 96px;
}

.booking-band .section-kicker {
  color: #aee1ff;
}

.booking-copy > p {
  margin-top: 18px;
  color: #c7d8e4;
}

.contact-options {
  display: grid;
  gap: 12px;
  max-width: 620px;
  margin-top: 16px;
}

.contact-panel {
  max-width: 640px;
  margin-top: 28px;
  border: 1px solid rgba(174, 225, 255, 0.2);
  border-radius: 8px;
  padding: clamp(14px, 3vw, 18px);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 52px rgba(3, 18, 30, 0.16);
}

.contact-panel-heading strong,
.contact-panel-heading span {
  display: block;
}

.contact-panel-heading strong {
  color: #ffffff;
  font-size: 1.04rem;
}

.contact-panel-heading span {
  margin-top: 3px;
  color: #c7d8e4;
}

.contact-options a {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 68px;
  border: 1px solid rgba(47, 130, 189, 0.22);
  border-radius: 8px;
  padding: 10px 14px 10px 10px;
  color: #eaf7ff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06));
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(3, 18, 30, 0.12);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  color: #09253b;
  background: var(--accent);
  box-shadow: 0 10px 24px rgba(61, 166, 225, 0.24);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.contact-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.contact-text {
  min-width: 0;
}

.contact-text small,
.contact-text strong {
  display: block;
}

.contact-text small {
  margin-bottom: 2px;
  color: #aee1ff;
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-text strong {
  color: #ffffff;
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  overflow-wrap: anywhere;
}

.contact-options a:hover {
  border-color: rgba(174, 225, 255, 0.5);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.09));
  box-shadow: 0 20px 48px rgba(3, 18, 30, 0.2);
  transform: translateX(6px);
}

.contact-options a:hover .contact-icon {
  color: #ffffff;
  background: var(--accent-dark);
  transform: scale(1.04);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border-radius: 8px;
  padding: clamp(18px, 4vw, 30px);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 24px 90px rgba(3, 18, 30, 0.24);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 850;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(47, 130, 189, 0.22);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fbfdff;
  font: inherit;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: rgba(47, 130, 189, 0.72);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(142, 205, 243, 0.22);
}

textarea {
  resize: vertical;
}

.wide {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  min-height: 24px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: #dcefff;
  background: #102033;
}

footer p {
  margin: 0;
}

.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .site-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .quick-strip,
  .intro,
  .service-grid,
  .specialty-grid,
  .split,
  .booking-band {
    grid-template-columns: 1fr;
  }

  .product-logo {
    width: 150px;
    height: 50px;
  }

  .product-logo-sm {
    width: 94px;
  }

  .product-logo-mid {
    width: 120px;
  }

  .product-logo-wide {
    width: 178px;
  }

  .gallery-heading-row {
    display: grid;
  }

  .carousel-controls {
    padding-top: 0;
  }

  .gallery-track {
    grid-auto-columns: minmax(260px, 82%);
  }

  .quote-panel {
    display: grid;
  }

  .quote-actions {
    justify-content: flex-start;
  }

  .booking-copy {
    position: static;
  }

  .service-grid {
    gap: 14px;
  }
}

@media (max-width: 620px) {
  .brand {
    gap: 8px;
  }

  .brand-logo-wrap {
    width: 68px;
    height: 52px;
  }

  .brand-logo {
    width: 68px;
    height: 52px;
  }

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

  .header-cta {
    padding: 8px 12px;
  }

  .hero-content {
    width: min(100% - 28px, 860px);
    padding-bottom: 50px;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .hero-trust div + div {
    border-top: 1px solid rgba(207, 239, 255, 0.2);
    border-left: 0;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  footer {
    display: block;
  }

  footer p + p {
    margin-top: 8px;
  }
}

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

  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
  }

  .product-logo-track {
    animation: none !important;
    transform: none !important;
  }
}
