:root {
  --ink: #243129;
  --muted: #667169;
  --paper: #f7f4ee;
  --paper-deep: #eee8dd;
  --sage: #738173;
  --sage-dark: #4d5e50;
  --cream: #fffdf8;
  --line: rgba(36, 49, 41, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { color: inherit; }

.site-header {
  max-width: 1220px;
  margin: 0 auto;
  padding: 24px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  text-decoration: none;
  letter-spacing: .015em;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .94rem;
}

nav a { text-decoration: none; }

.nav-cta {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 10px 17px;
}

.hero {
  max-width: 1220px;
  min-height: 660px;
  margin: 0 auto;
  padding: 58px 34px 80px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  margin: 0 0 20px;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 600;
  color: var(--sage-dark);
}

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: -.035em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -.025em;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.75rem;
}

.intro {
  max-width: 620px;
  margin: 0;
  font-size: 1.14rem;
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform .18s ease, background .18s ease;
}

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

.primary {
  background: var(--ink);
  color: white;
}

.secondary {
  border: 1px solid var(--ink);
}

.hero-art {
  position: relative;
  height: 510px;
  overflow: hidden;
  border-radius: 240px 240px 18px 18px;
  background: linear-gradient(180deg, #e8dbc2 0%, #d9dfd1 100%);
}

.hero-art .sun {
  position: absolute;
  top: 92px;
  left: 50%;
  width: 126px;
  height: 126px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(255, 250, 230, .82);
}

.hero-art svg {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
}

.hero-art svg path:first-child { fill: #879582; }
.hero-art svg path:last-child { fill: #596b5c; }

.statement {
  padding: 115px 34px;
  background: var(--sage-dark);
  color: var(--cream);
}

.statement p {
  max-width: 960px;
  margin: 0 auto;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.22;
  text-align: center;
}

.split {
  max-width: 1160px;
  margin: 0 auto;
  padding: 125px 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.body-copy {
  padding-top: 34px;
  color: var(--muted);
  font-size: 1.08rem;
}

.body-copy p:first-child { margin-top: 0; }

.approach {
  padding: 110px max(34px, calc((100vw - 1160px)/2));
  background: var(--paper-deep);
}

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

.cards article {
  min-height: 315px;
  padding: 34px;
  background: rgba(255,255,255,.45);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cards span {
  display: block;
  margin-bottom: 60px;
  color: var(--sage-dark);
  font-size: .8rem;
  letter-spacing: .12em;
}

.cards p {
  color: var(--muted);
  margin-bottom: 0;
}

.booking {
  max-width: 1160px;
  margin: 110px auto;
  padding: 70px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: end;
  background: var(--ink);
  color: var(--cream);
  border-radius: 10px;
}

.booking p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255,255,255,.72);
}

.booking .eyebrow { color: #cbd4c9; }

.booking-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.light {
  background: var(--cream);
  color: var(--ink);
}

.email-link { color: var(--cream); }

footer {
  max-width: 1160px;
  margin: 0 auto;
  padding: 42px 34px 55px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
  font-size: .88rem;
  color: var(--muted);
}

footer p { margin: 0; }
footer .fine { opacity: .75; }

@media (max-width: 820px) {
  .site-header { padding: 20px; }
  nav > a:not(.nav-cta) { display: none; }

  .hero {
    min-height: 0;
    padding: 55px 22px 70px;
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-art { height: 410px; }

  .split {
    padding: 85px 22px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .body-copy { padding-top: 0; }

  .approach { padding: 80px 22px; }

  .cards { grid-template-columns: 1fr; }
  .cards article { min-height: 0; }
  .cards span { margin-bottom: 38px; }

  .booking {
    margin: 70px 22px;
    padding: 45px 28px;
    grid-template-columns: 1fr;
    gap: 35px;
  }

  footer {
    margin: 0 22px;
    padding-left: 0;
    padding-right: 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
