:root {
  --ink: #251c22;
  --muted: #6f6269;
  --paper: #fffaf7;
  --soft: #f6ebe6;
  --rose: #b85a71;
  --rose-dark: #803449;
  --teal: #1f7771;
  --teal-dark: #145450;
  --gold: #c7954b;
  --charcoal: #181516;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(37, 28, 34, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(255, 250, 247, 0.96);
  color: var(--ink);
  box-shadow: 0 10px 36px rgba(37, 28, 34, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  opacity: 0.76;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-weight: 700;
  font-size: 0.94rem;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  content: "";
  background: currentColor;
  transition: width 0.2s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(24, 21, 22, 0.84) 0%, rgba(24, 21, 22, 0.62) 36%, rgba(24, 21, 22, 0.18) 74%),
    linear-gradient(0deg, rgba(24, 21, 22, 0.42), rgba(24, 21, 22, 0.1));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 66px;
  color: var(--white);
}

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

.hero .eyebrow {
  color: #ffd5ab;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
}

h1 {
  max-width: 8ch;
  margin-bottom: 22px;
  font-size: clamp(4.6rem, 12vw, 9.6rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 5vw, 4.6rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.03rem, 2vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions,
.hero-stats,
.booking-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: var(--white);
  background: var(--rose);
  box-shadow: 0 12px 28px rgba(184, 90, 113, 0.32);
}

.btn.primary:hover {
  background: var(--rose-dark);
}

.btn.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

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

.hero-stats span {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(10px);
}

.hero-stats strong {
  font-size: 1.25rem;
}

.section {
  padding: clamp(62px, 9vw, 112px) clamp(18px, 4vw, 54px);
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.intro-band {
  padding-block: clamp(34px, 5vw, 62px);
  color: var(--white);
  background: var(--teal-dark);
}

.intro-band .eyebrow {
  color: #f2c179;
}

.intro-grid,
.split-grid,
.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.intro-grid h2 {
  max-width: 700px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.intro-grid p:last-child,
.section-heading p,
.experience-copy p,
.booking-copy p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.intro-grid p:last-child {
  color: rgba(255, 255, 255, 0.82);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-heading.compact {
  max-width: 620px;
}

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

.service-card,
.booking-form {
  border: 1px solid rgba(37, 28, 34, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(37, 28, 34, 0.07);
}

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

.service-card.featured {
  background: #fff2f0;
  border-color: rgba(184, 90, 113, 0.18);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
}

.service-tag {
  margin-bottom: 8px;
  color: var(--rose-dark);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card p:not(.service-tag) {
  color: var(--muted);
  line-height: 1.65;
}

.booking-highlights span {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--teal-dark);
  background: rgba(31, 119, 113, 0.1);
  font-weight: 800;
  font-size: 0.9rem;
}

.booking-section {
  background: var(--charcoal);
}

.booking-section h2,
.booking-section .booking-copy p {
  color: var(--white);
}

.booking-section .eyebrow {
  color: #f2c179;
}

.booking-form {
  padding: clamp(18px, 3vw, 30px);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  color: var(--ink);
  font-weight: 800;
  font-size: 0.88rem;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(37, 28, 34, 0.16);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

input:focus,
select:focus {
  outline: 3px solid rgba(31, 119, 113, 0.18);
  border-color: var(--teal);
}

.summary-box {
  min-height: 72px;
  margin: 8px 0 16px;
  padding: 14px;
  border-radius: var(--radius);
  color: var(--teal-dark);
  background: rgba(31, 119, 113, 0.1);
  font-weight: 800;
  line-height: 1.5;
}

.submit-btn {
  width: 100%;
  border: 0;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--teal-dark);
  font-weight: 800;
  line-height: 1.45;
}

.site-footer {
  padding: 34px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: var(--teal-dark);
}

.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(320px, 1fr);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  color: rgba(255, 255, 255, 0.82);
}

.footer-inner strong {
  font-size: 1.18rem;
}

.map-wrap {
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 18px;
    left: 18px;
    display: none;
    padding: 16px;
    border-radius: var(--radius);
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(24, 21, 22, 0.86) 0%, rgba(24, 21, 22, 0.72) 56%, rgba(24, 21, 22, 0.26) 100%);
  }

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

  .intro-grid,
  .split-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

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

}

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

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    width: calc(100% - 32px);
  }

  h1 {
    font-size: clamp(4rem, 24vw, 6.2rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    display: grid;
  }

  .services-grid,
  .form-duo {
    grid-template-columns: 1fr;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
  }
}
