:root {
  color-scheme: light;
  --ink: #161615;
  --muted: #666057;
  --paper: #fbf7ef;
  --ivory: #fffdf8;
  --gold: #c9974a;
  --sage: #6d8978;
  --coral: #c96f57;
  --charcoal: #23201e;
  --line: rgba(22, 22, 21, 0.14);
  --shadow: 0 22px 60px rgba(31, 28, 24, 0.14);
  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;
  background: var(--paper);
  color: var(--ink);
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--ivory);
  background: linear-gradient(180deg, rgba(17, 15, 14, 0.72), rgba(17, 15, 14, 0));
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.42);
  border-radius: 50%;
  color: #f0c879;
}

.nav-links {
  gap: clamp(12px, 3vw, 32px);
  font-size: 0.95rem;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #171412;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(13, 12, 11, 0.92) 0%, rgba(13, 12, 11, 0.74) 38%, rgba(13, 12, 11, 0.12) 76%),
    linear-gradient(0deg, rgba(13, 12, 11, 0.42), rgba(13, 12, 11, 0.06));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 88px);
  padding-top: 84px;
  color: var(--ivory);
}

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

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

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 9vw, 7.7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 610px;
  color: rgba(255, 253, 248, 0.82);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions,
.button {
  display: flex;
  align-items: center;
}

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

.button {
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  background: var(--gold);
  color: #1e1710;
}

.button-secondary {
  border-color: rgba(255, 253, 248, 0.38);
  color: var(--ivory);
  background: rgba(255, 253, 248, 0.08);
}

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

.trust-band div {
  min-height: 116px;
  padding: 26px clamp(18px, 4vw, 48px);
  background: var(--ivory);
}

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

.trust-band span {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.5;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 108px) 0;
}

.intro,
.split-section,
.booking-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.intro p,
.split-section p,
.booking-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.feature-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

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

.feature-card,
.price-card,
.testimonial,
.booking-form,
.faq details {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 250px;
  padding: 24px;
}

.feature-card p,
.price-card li,
.faq p {
  color: var(--muted);
  line-height: 1.6;
}

.icon {
  display: block;
  margin-bottom: 34px;
  color: var(--sage);
  font-weight: 900;
}

.packages {
  width: 100%;
  max-width: none;
  padding-right: max(18px, calc((100vw - 1180px) / 2));
  padding-left: max(18px, calc((100vw - 1180px) / 2));
  background: #ebe3d6;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 28px;
}

.price-card.featured {
  border-color: rgba(201, 151, 74, 0.7);
  transform: translateY(-14px);
}

.package-label {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin: 8px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding-left: 20px;
}

.button-card {
  margin-top: auto;
  background: var(--charcoal);
  color: var(--ivory);
}

.testimonial {
  padding: clamp(24px, 4vw, 42px);
}

.testimonial p {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.25;
}

.booking-section {
  width: 100%;
  max-width: none;
  padding-right: max(18px, calc((100vw - 1180px) / 2));
  padding-left: max(18px, calc((100vw - 1180px) / 2));
  background: var(--charcoal);
  color: var(--ivory);
}

.booking-copy p {
  color: rgba(255, 253, 248, 0.74);
}

.booking-note {
  display: grid;
  gap: 4px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 8px;
  color: rgba(255, 253, 248, 0.76);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(20px, 4vw, 32px);
  color: var(--ink);
}

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

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

textarea {
  resize: vertical;
}

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

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--sage);
  font-weight: 800;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq details {
  padding: 20px 22px;
  box-shadow: none;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq p {
  margin: 12px 0 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 4vw, 56px);
  background: #11100f;
  color: var(--ivory);
}

.footer a {
  color: #f0c879;
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-scrim {
    background: linear-gradient(0deg, rgba(13, 12, 11, 0.82), rgba(13, 12, 11, 0.2));
  }

  .hero-content {
    align-self: flex-end;
    margin: 0 auto;
    padding-bottom: 44px;
  }

  .trust-band,
  .intro,
  .split-section,
  .booking-section,
  .pricing-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

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

@media (min-width: 901px) and (max-width: 1180px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 560px) {
  .hero-actions .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.7rem);
  }

  .footer {
    flex-direction: column;
  }
}
