:root {
  --ink: #070707;
  --muted: #676b70;
  --line: #d6d8db;
  --paper: #f4f4f2;
  --white: #ffffff;
  --carbon: #0b0b0c;
  --steel: #545a60;
  --platinum: #f5f5f1;
  --silver: #c9ccd0;
  --graphite: #202124;
  --accent: #41606b;
  --shadow: 0 20px 60px rgba(7, 7, 7, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--white);
  background: rgba(7, 7, 7, 0.94);
  box-shadow: 0 10px 35px rgba(7, 7, 7, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 168px;
}

.logo-crop {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: #000000;
}

.logo-crop img {
  width: 100%;
  max-width: none;
  object-fit: cover;
  object-position: top center;
}

.header-logo {
  width: 172px;
  height: 58px;
}

.header-logo img {
  height: 114px;
}

.footer-logo {
  width: 210px;
  height: 72px;
}

.footer-logo img {
  height: 139px;
}

.nav-links {
  display: inline-flex;
  gap: clamp(14px, 3vw, 34px);
  align-items: center;
  font-size: 0.9rem;
}

.nav-links a {
  opacity: 0.82;
}

.nav-links a:hover {
  opacity: 1;
}

.header-cta,
.primary-action,
.secondary-action,
.confirmation a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
}

.header-cta {
  justify-self: end;
  color: var(--ink);
  background: var(--white);
}

.primary-action {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.16);
}

.secondary-action {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
  background: var(--carbon);
}

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

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 11, 13, 0.92) 0%, rgba(10, 11, 13, 0.68) 36%, rgba(10, 11, 13, 0.1) 78%),
    linear-gradient(0deg, rgba(10, 11, 13, 0.68), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(720px, calc(100% - 36px));
  min-height: 92vh;
  margin-left: clamp(18px, 7vw, 92px);
  padding-top: 96px;
  padding-bottom: 54px;
}

.hero-booking-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 520px);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  width: min(1400px, calc(100% - 36px));
  min-height: 92vh;
  margin: 0 auto;
  padding: 112px 0 44px;
}

.booking-hero .hero-content {
  width: auto;
  min-height: auto;
  margin-left: 0;
  padding: 0;
}

.quick-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.quick-contact a,
.dark-action,
.light-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 6px;
  font-weight: 900;
}

.quick-contact a:first-child,
.dark-action {
  color: var(--ink);
  background: var(--white);
}

.quick-contact a:last-child,
.light-action {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.hero-booking-form {
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(8, 8, 9, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-booking-form .form-title {
  display: grid;
  gap: 6px;
  padding: 2px 4px 4px;
}

.hero-booking-form .form-title h2 {
  color: var(--white);
  font-size: 1.7rem;
  line-height: 1.05;
}

.hero-booking-form fieldset {
  padding: 14px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.94);
}

.hero-booking-form legend {
  color: var(--ink);
}

.hero-booking-form .booking-summary {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-booking-form .confirmation {
  grid-column: auto;
  box-shadow: none;
}

.hero-booking-form .primary-action {
  background: var(--white);
}

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

.hero .eyebrow {
  color: var(--platinum);
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1;
}

h1 {
  max-width: 10ch;
  font-size: clamp(4.1rem, 12vw, 8.8rem);
}

h2 {
  max-width: 920px;
  font-size: clamp(2rem, 4.5vw, 4.8rem);
}

h3 {
  font-size: 1.25rem;
  line-height: 1.16;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  line-height: 1.45;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(660px, 100%);
  margin: 50px 0 0;
}

.hero-stats div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats dt {
  font-weight: 900;
}

.hero-stats dd {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

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

.booking-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(36px, 6vw, 74px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--ink);
}

.booking-cta h2 {
  max-width: 740px;
  font-size: clamp(1.8rem, 3.6vw, 3.6rem);
}

.booking-cta p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.booking-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.trust-strip span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-right: 1px solid var(--line);
  color: var(--steel);
  font-weight: 800;
  text-align: center;
}

.section {
  padding: clamp(64px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
  background: var(--paper);
}

.body-copy {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.body-copy p {
  margin: 0;
}

.body-copy p + p {
  margin-top: 18px;
}

.section-heading {
  display: grid;
  gap: 8px;
  max-width: 980px;
  margin-bottom: clamp(28px, 5vw, 58px);
}

.service-grid,
.package-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.package-card,
.faq-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card {
  min-height: 260px;
  padding: 24px;
}

.service-icon {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card p,
.package-card p,
.package-card li,
.faq-grid p,
.process-list span {
  color: var(--muted);
  line-height: 1.55;
}

.process-section {
  color: var(--white);
  background: var(--carbon);
}

.process-section .eyebrow {
  color: var(--silver);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process-list li {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  counter-increment: step;
}

.process-list li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 34px;
  color: var(--silver);
  font-weight: 900;
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
}

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

.package-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
}

.package-card.featured {
  color: var(--white);
  border-color: var(--carbon);
  background: var(--carbon);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.package-card.featured .package-kicker,
.package-card.featured .price {
  color: var(--white);
}

.package-card.featured p,
.package-card.featured li {
  color: rgba(255, 255, 255, 0.72);
}

.package-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin: 28px 0 20px;
  color: var(--accent);
  font-size: 1.7rem;
  font-weight: 900;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
  background: #e9eaeb;
}

.booking-intro {
  position: sticky;
  top: 96px;
  align-self: start;
}

.booking-intro p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.6;
}

.booking-contact {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.booking-contact a {
  width: fit-content;
  color: var(--accent);
  font-weight: 900;
}

.booking-form {
  display: grid;
  gap: 18px;
}

fieldset {
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

legend {
  padding: 0 8px;
  font-weight: 900;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #fbfcfd;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(65, 96, 107, 0.14);
}

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

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

.addon,
.consent {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.addon input,
.consent input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  accent-color: var(--accent);
}

.consent {
  grid-template-columns: auto 1fr;
  margin-top: 18px;
}

.booking-summary {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 8px;
  color: var(--white);
  background: var(--carbon);
}

.booking-summary div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.booking-summary span {
  color: rgba(255, 255, 255, 0.68);
}

.booking-summary strong {
  color: var(--white);
  font-size: 2rem;
}

.booking-summary p {
  margin: 0;
}

.fine-print {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
  line-height: 1.5;
}

.full-width {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.confirmation {
  grid-column: 2;
  padding: 22px;
  border-left: 5px solid var(--accent);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.confirmation p {
  color: var(--muted);
  line-height: 1.55;
}

.confirmation a {
  color: var(--ink);
  background: var(--platinum);
  border-color: var(--silver);
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.faq-grid article {
  padding: 24px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--ink);
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.site-footer .legal-copy {
  max-width: 620px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
  line-height: 1.45;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .nav-links {
    display: none;
  }

  .hero-booking-layout,
  .booking-cta,
  .split-section,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .package-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .service-card,
  .package-card,
  .process-list li {
    min-height: auto;
  }

  .booking-intro {
    position: static;
  }

  .booking-cta-actions {
    justify-content: flex-start;
  }

  .confirmation {
    grid-column: auto;
  }
}

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

  .brand {
    min-width: 0;
  }

  .header-logo {
    width: 132px;
    height: 45px;
  }

  .header-logo img {
    height: 88px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 11, 13, 0.94) 0%, rgba(10, 11, 13, 0.74) 58%, rgba(10, 11, 13, 0.28) 100%),
      linear-gradient(0deg, rgba(10, 11, 13, 0.72), transparent 48%);
  }

  .hero-content {
    width: calc(100% - 28px);
    min-height: 88vh;
    margin-left: 14px;
    padding-top: 86px;
  }

  .hero-booking-layout {
    width: calc(100% - 28px);
    min-height: auto;
    padding: 92px 0 28px;
  }

  .booking-hero .hero-content {
    width: 100%;
    min-height: auto;
    margin-left: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-booking-form {
    padding: 12px;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5.5rem);
  }

  .hero-stats,
  .trust-strip,
  .form-grid,
  .addon-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .trust-strip span {
    min-height: 56px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  fieldset {
    padding: 18px;
  }

  .site-footer {
    display: grid;
  }
}
