:root {
  --ink: #172033;
  --muted: #667085;
  --paper: #f4f7fb;
  --navy: #0b2f6b;
  --deep: #071b3b;
  --orange: #f26b21;
  --line: #d7e0ec;
  --white: #ffffff;
  --soft-blue: #eaf1fb;
  --shadow: 0 22px 60px rgba(16, 31, 58, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(215, 224, 236, 0.9);
  backdrop-filter: blur(18px);
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img {
  width: 210px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--deep);
  font-size: 0.95rem;
  font-weight: 850;
}

.header-cta,
.primary-link,
.secondary-link,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 900;
  white-space: nowrap;
}

.header-cta,
.primary-link,
.primary-button {
  color: #ffffff;
  background: var(--orange);
  border: 0;
  box-shadow: 0 14px 30px rgba(242, 107, 33, 0.22);
}

.secondary-link {
  color: var(--navy);
  background: var(--soft-blue);
}

.site-hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 72px);
  background: linear-gradient(120deg, #071b3b 0%, #0b2f6b 60%, #103b7b 100%);
}

.hero-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.hero-content {
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.94;
}

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

h3 {
  margin: 0 0 8px;
  font-size: 1.24rem;
}

p {
  line-height: 1.65;
}

.hero-content > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.13rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-points {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.hero-points span {
  display: inline-flex;
  width: fit-content;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-weight: 850;
}

.hero-proof {
  overflow: hidden;
  align-self: stretch;
  min-height: 520px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-proof img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #eef4fb;
}

.proof-caption {
  display: grid;
  gap: 4px;
  padding: 18px;
  color: var(--deep);
}

.proof-caption span {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.trust-strip div {
  display: grid;
  gap: 4px;
  padding: 22px clamp(18px, 5vw, 56px);
  background: #ffffff;
}

.trust-strip strong {
  color: var(--deep);
}

.trust-strip span {
  color: var(--muted);
}

.section-band,
.proof-section,
.booking-section {
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

#services,
#proof,
#schedule {
  scroll-margin-top: 92px;
}

.section-inner,
.proof-inner,
.booking-section {
  width: min(1180px, 100%);
  margin: 0 auto;
}

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

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

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

.service-grid article {
  min-height: 250px;
  padding: 24px;
  display: grid;
  align-content: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.service-grid span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 44px;
  padding: 6px 10px;
  color: var(--navy);
  background: var(--soft-blue);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 950;
}

.service-grid p {
  color: var(--muted);
}

.proof-section {
  background: var(--deep);
  color: #ffffff;
}

.proof-inner {
  display: grid;
  gap: 28px;
}

.proof-grid {
  position: relative;
  min-height: 470px;
}

.proof-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  margin: 0;
  display: grid;
  opacity: 0;
  pointer-events: none;
  background: #0c244b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.proof-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.proof-slide img {
  width: 100%;
  height: 410px;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #f7fbff 0%, #e9f0fb 100%);
}

.proof-slide figcaption {
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 850;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.slider-button {
  min-height: 42px;
  padding: 0 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-weight: 900;
}

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

.slider-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  background: rgba(255, 255, 255, 0.28);
  border: 0;
  border-radius: 999px;
}

.slider-dot.active {
  background: var(--orange);
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
}

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

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

.booking-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.booking-points li {
  padding: 13px 14px;
  color: var(--deep);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-form label,
.date-picker,
.availability-controls label {
  display: grid;
  gap: 7px;
}

.booking-form .full,
.date-picker,
.booking-form button,
.form-status {
  grid-column: 1 / -1;
}

.booking-form span,
.date-picker > span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 950;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fbfdff;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11, 47, 107, 0.12);
}

.booking-form textarea {
  resize: vertical;
}

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

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--navy);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: #ffffff;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
}

.site-footer a {
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
  }

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

  .hero-proof {
    min-height: 380px;
  }

  .booking-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    gap: 12px;
  }

  .site-logo img {
    width: 180px;
  }

  .header-cta {
    display: none;
  }

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

  h1 {
    font-size: clamp(2.6rem, 13vw, 4.3rem);
  }

  .trust-strip,
  .service-grid,
  .proof-grid,
  .booking-form,
  .availability-controls {
    grid-template-columns: 1fr;
  }

  .proof-grid figure:first-child img,
  .proof-slide img {
    height: 260px;
  }

  .hero-proof {
    min-height: 320px;
  }

  .hero-points span {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .site-header {
    padding: 12px 16px;
  }

  .site-nav {
    gap: 18px;
    font-size: 0.9rem;
  }

  .hero-actions a,
  .booking-form button {
    width: 100%;
  }
}
