:root {
  --primary: #004c99;
  --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: 65px;
  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: 160px;
}

.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;
  }
}
