:root {
  --primary: #0a32a1;
  --primary-dark: #003168;
  --primary-medium: #11559c;
  --accent: #f05a28;
  --ink: #18233a;
  --muted: #667085;
  --line: #e6ebf2;
  --soft: #f6f8fb;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(0, 49, 104, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

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

.announcement {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 46px 9px 20px;
  color: #fff;
  background: var(--primary-medium);
  text-align: center;
  font-size: 0.86rem;
}

.announcement p {
  margin: 0;
}

.announcement button {
  position: absolute;
  right: 14px;
  top: 50%;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
  font-size: 1.05rem;
}

.announcement.hidden {
  display: none;
}

.site-header {
  position: fixed;
  top: 42px;
  left: 0;
  right: 0;
  z-index: 30;
  height: 90px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  transition: top 160ms ease, box-shadow 160ms ease;
}

.announcement.hidden + .site-header {
  top: 0;
}

.nav {
  width: min(1200px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}

.logo-link img {
  width: 250px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--primary-dark);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.phone {
  color: var(--primary-dark);
  font-weight: 800;
}

.book-button,
.primary-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  padding: 0 24px;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 76, 153, 0.22);
}

.book-button:hover,
.primary-button:hover {
  background: var(--primary-dark);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow);
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--primary-dark);
}

.hero {
  min-height: 675px;
  padding: 150px 20px 58px;
  background:
    radial-gradient(circle at 20% 18%, rgba(0, 76, 153, 0.12), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #fff 72%);
}

.hero-inner {
  width: min(1200px, 100%);
  min-height: 500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  align-items: center;
  gap: 28px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

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

h1 {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--primary-dark);
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--primary-dark);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-copy p {
  margin-bottom: 28px;
  color: #475467;
  font-size: 1.15rem;
  font-weight: 300;
}

.hero-image {
  align-self: end;
}

.hero-image img {
  width: 100%;
  min-height: 360px;
  object-fit: contain;
  object-position: center bottom;
}

.logo-strip {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 5vw, 70px);
  padding: 34px 0 42px;
}

.logo-strip img {
  max-height: 42px;
  width: auto;
  object-fit: contain;
}

.booking-intro,
.why-section,
.split-section,
.about-section,
.contact-section,
.brand-section,
.services-section {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0;
}

.booking-intro {
  max-width: 930px;
  text-align: center;
}

.booking-intro p {
  max-width: 760px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 300;
}

.check-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 24px;
  margin-top: 28px;
  color: var(--primary-dark);
  font-weight: 700;
}

.check-row span::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 6px;
  border-radius: 999px;
  background: #16a34a;
}

.section-title {
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-title p {
  color: var(--muted);
  font-weight: 300;
}

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

.why-card {
  min-height: 365px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.why-card h3 {
  min-height: 90px;
  margin: 0;
  padding: 24px 20px 12px;
  color: var(--primary-dark);
  font-size: 1.45rem;
  line-height: 1.14;
  font-weight: 800;
}

.why-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.why-card p {
  margin: 0;
  padding: 18px 20px 24px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 300;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 50px;
}

.stats div {
  padding: 28px 18px;
  border-radius: 22px;
  text-align: center;
  background: var(--soft);
}

.stats strong {
  display: block;
  color: var(--primary-dark);
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1;
  font-weight: 900;
}

.stats span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 500;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
}

.kicker {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

.review-cards article,
.contact-form,
.services-section article {
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.review-cards article {
  padding: 28px;
}

.review-cards span {
  display: block;
  margin-bottom: 14px;
  color: #f59e0b;
  letter-spacing: 0;
}

.review-cards p,
.about-section p,
.contact-copy p,
.services-section p {
  color: var(--muted);
  font-weight: 300;
}

.about-section {
  max-width: none;
  width: 100%;
  padding-inline: max(20px, calc((100vw - 1200px) / 2));
  background: var(--soft);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 42px;
}

.contact-form {
  padding: 30px;
}

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

label {
  display: block;
}

label span {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
}

input {
  height: 48px;
  padding: 0 14px;
}

textarea {
  min-height: 130px;
  padding: 14px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(0, 76, 153, 0.14);
  border-color: var(--primary);
}

.contact-form > label,
.checkbox,
.contact-form button {
  margin-top: 16px;
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: center;
}

.checkbox input {
  width: 18px;
  height: 18px;
}

.checkbox span {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.form-note {
  min-height: 24px;
  margin: 14px 0 0;
  color: #16845b;
  font-weight: 700;
}

.brand-section {
  text-align: center;
}

.brand-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}

.brand-list span {
  min-width: 132px;
  padding: 16px 20px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: var(--soft);
  font-weight: 800;
}

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

.services-section article {
  padding: 34px;
}

.footer {
  color: #d8e2f2;
  background: var(--primary-dark);
}

.footer-inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 44px;
  padding: 56px 0;
}

.footer img {
  width: 180px;
  padding: 12px;
  border-radius: 12px;
  background: #fff;
}

.footer h3 {
  margin: 0 0 16px;
  color: #fff;
}

.footer a,
.footer span {
  display: block;
  margin: 10px 0;
  color: #d8e2f2;
}

@media (max-width: 1020px) {
  .nav {
    grid-template-columns: auto auto;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .nav-links,
  .nav-actions {
    position: absolute;
    left: 20px;
    right: 20px;
    display: none;
    background: rgba(255, 255, 255, 0.97);
  }

  .nav-links {
    top: 72px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 22px;
    border-radius: 22px 22px 0 0;
    box-shadow: var(--shadow);
  }

  .nav-actions {
    top: 300px;
    flex-direction: column;
    align-items: stretch;
    padding: 0 22px 20px;
    border-radius: 0 0 22px 22px;
    box-shadow: var(--shadow);
  }

  .nav-links.open,
  .nav-actions.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 0;
  }

  .phone,
  .book-button {
    text-align: center;
    justify-content: center;
  }

  .hero-inner,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 680px) {
  .announcement {
    font-size: 0.72rem;
  }

  .site-header {
    top: 56px;
  }

  .hero {
    padding-top: 145px;
    min-height: auto;
  }

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

  .hero-inner {
    gap: 10px;
  }

  .logo-strip {
    flex-wrap: wrap;
    gap: 24px;
  }

  .logo-strip img {
    max-height: 34px;
  }

  .booking-intro,
  .why-section,
  .split-section,
  .about-section,
  .contact-section,
  .brand-section,
  .services-section {
    width: min(100% - 28px, 1200px);
    padding: 58px 0;
  }

  .about-section {
    width: 100%;
    padding-inline: 14px;
  }

  .why-grid,
  .stats,
  .review-cards,
  .field-grid,
  .services-section,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .why-card {
    min-height: auto;
  }

  .contact-form {
    padding: 22px;
  }
}

/* Hero redesign based on supplied reference */
body { padding-top: 0; }
.announcement { display: none !important; }
.site-header {
  position: relative;
  top: 0;
  height: 94px;
  background: #fff;
  backdrop-filter: none;
  border-bottom: 1px solid #eef2f7;
}
.nav { width: min(1240px, calc(100% - 48px)); }
.logo-link img { width: 285px; max-height: 72px; object-fit: contain; }
.nav-links { gap: 34px; font-weight: 700; }
.phone { display: inline-flex; gap: 8px; align-items: center; font-size: 1.05rem; }
.book-button, .primary-button { border-radius: 13px; min-height: 50px; padding-inline: 28px; }
.hero {
  min-height: auto;
  padding: 26px 24px 0;
  background: linear-gradient(90deg, #f6faff 0%, #eef6ff 55%, #f8fbff 100%);
  overflow: hidden;
}
.hero-inner {
  width: min(1240px, 100%);
  min-height: 390px;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 8px;
}
.hero-copy { padding: 15px 0 38px; }
h1 {
  max-width: 540px;
  margin-bottom: 10px;
  color: #06246c;
  font-size: clamp(3.4rem, 5.7vw, 5.4rem);
  line-height: .91;
  letter-spacing: -0.055em;
  font-weight: 900;
}
.hero-underline { width: 170px; height: 5px; margin: 12px 0 14px; background: #f47721; }
.hero-copy p { margin-bottom: 13px; color: #1f3156; font-size: 1.05rem; font-weight: 500; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.hero-phone { color: #06246c; font-size: 1.15rem; font-weight: 900; }
.hero-image { position: relative; align-self: stretch; display: flex; align-items: end; }
.hero-image img { width: 100%; min-height: 365px; max-height: 410px; object-fit: contain; object-position: center bottom; mix-blend-mode: multiply; }
.same-day-badge {
  position: absolute; z-index: 2; right: 0; top: 0;
  display: flex; align-items: center; gap: 11px;
  padding: 15px 18px; border: 1px solid #b7c5d7; border-radius: 16px;
  color: #06246c; background: rgba(255,255,255,.9); font-size: .88rem; line-height: 1.05;
}
.badge-clock { font-size: 2.6rem; line-height: 1; }
.benefit-bar {
  width: min(1240px, 100%); margin: 0 auto; padding: 12px 18px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid #b9c6d7; border-radius: 16px 16px 0 0; background: #fff;
}
.benefit-bar article { display: flex; align-items: center; gap: 14px; min-height: 70px; padding: 4px 18px; border-right: 1px solid #d6dde8; }
.benefit-bar article:last-child { border-right: 0; }
.benefit-icon { display: grid; place-items: center; width: 49px; height: 49px; flex: 0 0 49px; border-radius: 50%; color: #fff; background: #082c7c; font-size: 1.65rem; font-weight: 900; }
.benefit-bar strong { display: block; color: #071f5e; font-size: .96rem; }
.benefit-bar small { display: block; margin-top: 3px; color: #162341; line-height: 1.2; }
.contact-ribbon {
  width: min(1268px, 100%); margin: 0 auto 20px; min-height: 50px; padding: 10px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-radius: 0 0 16px 16px; color: #fff; background: #072970; font-size: .82rem;
}
.contact-ribbon a, .contact-ribbon span { white-space: nowrap; }
.logo-strip { padding-top: 28px; }
@media (max-width: 1020px) {
  .site-header { height: 82px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; padding-bottom: 10px; }
  .hero-copy h1 { margin-inline: auto; }
  .hero-underline { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-image img { min-height: 300px; }
  .same-day-badge { right: 14px; }
  .benefit-bar { grid-template-columns: repeat(2, 1fr); }
  .benefit-bar article:nth-child(2) { border-right: 0; }
  .benefit-bar article:nth-child(-n+2) { border-bottom: 1px solid #d6dde8; }
}
@media (max-width: 680px) {
  .site-header { top: 0; }
  .nav { width: min(100% - 24px, 1240px); }
  .logo-link img { width: 210px; }
  .hero { padding: 28px 14px 0; }
  h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
  .hero-actions { flex-direction: column; gap: 14px; }
  .same-day-badge { position: static; margin: 0 auto 5px; }
  .hero-image { flex-direction: column; }
  .hero-image img { min-height: 230px; }
  .benefit-bar { grid-template-columns: 1fr; }
  .benefit-bar article { border-right: 0; border-bottom: 1px solid #d6dde8; }
  .benefit-bar article:last-child { border-bottom: 0; }
  .contact-ribbon { justify-content: center; text-align: center; }
}
