:root {
  --brown: #f4ece1;
  --paper: #f4ece1;
  --paper-deep: #eee5d8;
  --paper-soft: #f5eee4;
  --green: #2a3a32;
  --green-2: #3a4a41;
  --green-soft: #777b5f;
  --gold: #ae8747;
  --rose: #cda7aa;
  --lavender: #9c9ab6;
  --ink: #3b3a34;
  --muted: #6d6a60;
  --line: rgba(40, 56, 48, .14);
  --shadow: 0 18px 50px rgba(36, 38, 33, .08);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px clamp(22px, 5vw, 72px);
  background: rgba(244, 236, 225, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(246,238,228,.16);
}
.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  color: var(--green);
  letter-spacing: .04em;
}
nav { display: flex; gap: 28px; align-items: center; font-size: .94rem; }
nav a:hover { color: var(--gold); }
.nav-cta {
  border: 1px solid var(--green);
  padding: 8px 14px;
  border-radius: 999px;
}

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: clamp(32px, 5vw, 84px);
  padding: clamp(42px, 6vw, 88px) clamp(22px, 5vw, 72px);
  background:
    radial-gradient(circle at 82% 16%, rgba(205,167,170,.13), transparent 26%),
    radial-gradient(circle at 14% 88%, rgba(156,154,182,.08), transparent 22%),
    var(--brown);
}
.hero-art {
  width: 100%;
  max-width: 980px;
  display: block;
  background: transparent;
  mix-blend-mode: normal;
}


.hero-copy { max-width: 570px; }
.eyebrow, .section-kicker {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .76rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
}
h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--green);
  line-height: 1.03;
  margin: 0;
}
h1 { font-size: clamp(3.15rem, 6vw, 6.2rem); font-weight: 500; }
h2 { font-size: clamp(2.35rem, 4vw, 4.15rem); font-weight: 500; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 600; }
.lede { font-size: 1.08rem; max-width: 46ch; margin: 24px 0 0; }
.hero-actions, .booking-card .button { margin-top: 28px; }
.hero-actions, .contact-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .94rem;
  transition: .2s ease;
}
.button-primary { background: var(--green); color: white; }
.button-primary:hover { transform: translateY(-1px); background: #223229; }
.button-secondary { border: 1px solid var(--green); color: var(--green); background: transparent; }
.button-secondary:hover { background: rgba(40,56,48,.06); }

.intro, .savannah, .booking {
  text-align: center;
  background: var(--green);
  color: var(--paper);
}
.intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(30px, 8vw, 110px);
  align-items: start;
  background: var(--green);
  color: var(--paper);
}
.intro-copy p { font-size: 1.04rem; margin-top: 0; }

.gallery-section {
  padding: clamp(72px, 9vw, 120px) clamp(22px, 5vw, 72px);
  background: var(--brown);
  color: var(--ink);
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 8vw, 120px);
  align-items: end;
  margin-bottom: 34px;
}
.section-note {
  color: var(--muted);
  max-width: 56ch;
}

.gallery-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.gallery-main {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(40, 56, 48, .09);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-main img {
  width: 100%;
  height: min(66vw, 690px);
  min-height: 440px;
  object-fit: cover;
  transition: opacity .18s ease;
}

.gallery-main img.is-changing {
  opacity: .25;
}

.gallery-main figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 16px 20px 18px;
  color: var(--muted);
  font-size: .94rem;
}

.gallery-counter {
  flex: 0 0 auto;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .08em;
}

.gallery-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--green);
  background: rgba(246, 238, 228, .9);
  color: var(--green);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: .2s ease;
}

.gallery-arrow:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-1px);
}

.gallery-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  border: 0;
  background: rgba(40, 56, 48, .22);
  cursor: pointer;
  transition: .2s ease;
}

.gallery-dot.active {
  width: 24px;
  border-radius: 999px;
  background: var(--green);
}


.details {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: var(--green);
  color: var(--paper);
}
.details-card { padding: clamp(72px, 9vw, 130px) clamp(22px, 8vw, 120px); }
.details-card h2 {
  color: var(--green);
  max-width: 12ch;
}
.detail-list {
  padding-left: 20px;
  margin: 28px 0 0;
}
.detail-list li { margin: 12px 0; }
.quote-card {
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  background:
    linear-gradient(rgba(173,134,72,.10), rgba(173,134,72,.10)),
    radial-gradient(circle at 50% 50%, rgba(40,56,48,.05), transparent 42%),
    #eadfce;
}
.quote-card p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.25rem, 4vw, 4.7rem);
  line-height: 1.08;
  max-width: 12ch;
  color: var(--green);
}

.savannah {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(54px, 8vw, 120px);
  align-items: start;
  background: var(--brown);
  color: var(--ink);
}
.savannah p { font-size: 1.05rem; }

.booking {
  text-align: center;
  background: var(--green);
  color: var(--paper);
}
.booking h2 { max-width: 12ch; margin-inline: auto; }
.booking-intro {
  max-width: 56ch;
  margin: 18px auto 0;
  color: var(--muted);
}
.booking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.booking-card {
  background: white;
  border: 1px solid rgba(40, 56, 48, .09);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.booking-card h3 { margin-bottom: 10px; }
.booking-card p { margin: 0; color: var(--muted); }

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(22px, 5vw, 72px);
  background: var(--green);
  color: #f6eee4;
  font-size: .85rem;
}
footer span { color: var(--gold); padding: 0 4px; }

@media (max-width: 1180px) {
  }

@media (max-width: 980px) {
  nav a:not(.nav-cta) { display: none; }
  .hero,
  .intro,
  .section-head,
  .details,
  .savannah,
  .booking-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-copy {
    margin-inline: auto;
    text-align: center;
  }
  .lede { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .quote-card {
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  background:
    linear-gradient(rgba(173,134,72,.10), rgba(173,134,72,.10)),
    radial-gradient(circle at 50% 50%, rgba(40,56,48,.05), transparent 42%),
    #eadfce;
}
}

@media (max-width: 720px) {
  .fact:nth-last-child(-n+2) { border-bottom: 0; }
  .booking-card { padding: 24px; }
}

@media (max-width: 560px) {
  .site-header { padding: 14px 18px; }
  .brand { font-size: 1.3rem; }
  .nav-cta { padding: 7px 12px; }
  .hero { padding: 28px 18px 64px; }
  .hero-art { width: 118%; max-width: none; }
  h1 { font-size: clamp(2.65rem, 14vw, 4.4rem); }
  .intro, .savannah, .booking, .gallery-section {
  padding: clamp(72px, 9vw, 120px) clamp(22px, 5vw, 72px);
  background: var(--brown);
  color: var(--ink);
}
  .details-card { padding-left: 18px; padding-right: 18px; }
  .quote-card {
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  background:
    linear-gradient(rgba(173,134,72,.10), rgba(173,134,72,.10)),
    radial-gradient(circle at 50% 50%, rgba(40,56,48,.05), transparent 42%),
    #eadfce;
}
  footer { flex-direction: column; padding: 24px 18px; }
}


@media (max-width: 720px) {
  .gallery-carousel {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-main {
    grid-column: 1;
    grid-row: 1;
  }

  .gallery-main img {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .gallery-arrow {
    position: absolute;
    z-index: 3;
    top: 44%;
    width: 44px;
    height: 44px;
    background: rgba(246, 238, 228, .92);
  }

  .gallery-prev { left: 10px; }
  .gallery-next { right: 10px; }

  .gallery-main figcaption {
    align-items: flex-start;
    font-size: .88rem;
  }

  .gallery-dots {
    gap: 6px;
  }
}


.gallery-section h2,
.gallery-section h3 {
  color: var(--paper);
}

.gallery-section .section-note {
  color: rgba(246,238,228,.78);
}

.gallery-section .section-kicker {
  color: var(--gold);
}

.gallery-main {
  background: var(--paper);
}

.gallery-arrow {
  background: rgba(244,236,225,.95);
}

.gallery-dot {
  background: rgba(246,238,228,.30);
}

.gallery-dot.active {
  background: var(--gold);
}

.savannah h2 {
  color: var(--paper);
}
.savannah .section-kicker {
  color: var(--gold);
}

/* Refined alternating section palette */
.intro h2 { color: var(--paper); }
.intro .section-kicker { color: var(--gold); }
.intro-copy p { color: rgba(246,238,228,.90); }

.gallery-section h2,
.gallery-section h3 { color: var(--green); }
.gallery-section .section-note { color: var(--muted); }
.gallery-section .section-kicker { color: var(--gold); }

.details-card h2 { color: var(--paper); max-width: 12ch; }
.details-card .section-kicker { color: var(--gold); }

.savannah-heading { max-width: 720px; }

.savannah .section-kicker {
  color: var(--gold);
  margin-bottom: 20px;
}

.savannah h2 {
  color: var(--green);
  font-size: clamp(3rem, 5vw, 5.25rem);
  line-height: .98;
  letter-spacing: -.02em;
}

.savannah-copy {
  max-width: 700px;
  padding-top: 32px;
}

.savannah-copy p {
  margin: 0 0 24px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1rem, 1.12vw, 1.16rem);
  line-height: 1.72;
  color: #4f4c44;
  text-align: left;
}

.savannah-copy p:last-child { margin-bottom: 0; }

.booking h2 { color: var(--paper); }
.booking .section-kicker { color: var(--gold); }
.booking-intro { color: rgba(246,238,228,.82); }

/* Keep cards readable on the green booking section */
.booking-card {
  background: var(--paper);
  color: var(--ink);
}

.booking-card h3 { color: var(--green); }

.hero,
.intro,
.gallery-section,
.details,
.savannah,
.booking {
  border-top: 1px solid rgba(40,56,48,.08);
}

.intro,
.details,
.booking {
  border-top-color: rgba(246,238,228,.10);
}

@media (max-width: 980px) {
  .savannah-copy {
    padding-top: 0;
    max-width: 62ch;
  }

  .savannah h2 br {
    display: none;
  }
}


/* --- v2 spacing and typography refinements --- */
.intro {
  padding: clamp(84px, 9vw, 132px) clamp(28px, 5vw, 72px);
  align-items: center;
}

.intro h2 {
  font-size: clamp(2.85rem, 4.6vw, 4.95rem);
  line-height: 1.06;
  max-width: 9.5ch;
  margin-inline: auto;
}

.intro-copy {
  max-width: 52ch;
  margin-inline: auto;
}

.intro-copy p {
  font-size: clamp(.99rem, 1.06vw, 1.08rem);
  line-height: 1.72;
  margin-bottom: 1.15rem;
}

.savannah {
  padding: clamp(84px, 9vw, 132px) clamp(28px, 5vw, 72px);
  align-items: center;
}

.savannah h2 {
  font-size: clamp(2.7rem, 4.25vw, 4.7rem);
  line-height: 1.02;
  max-width: 8.5ch;
  margin-inline: auto;
}

.savannah-heading {
  max-width: 760px;
}

.savannah-copy {
  max-width: 700px;
  padding-top: 0;
}

.savannah-copy p {
  font-size: clamp(.99rem, 1.05vw, 1.08rem);
  line-height: 1.72;
}

@media (max-width: 980px) {
  .intro,
  .savannah {
    padding: 68px 22px;
  }

  .intro h2,
  .savannah h2 {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .intro,
  .savannah,
  .booking,
  .gallery-section {
    padding: 58px 18px;
  }
}

/* --- Final typography pass --- */
h1, h2, h3 {
  text-wrap: balance;
  hyphens: none;
}

p, li, figcaption {
  text-wrap: pretty;
}

.keep-together {
  white-space: nowrap;
}

/* Hero: slightly calmer measure and cleaner line breaks */
.hero-copy {
  max-width: 590px;
}

.hero h1 {
  font-size: clamp(3rem, 5.45vw, 5.9rem);
  line-height: 1.01;
  max-width: 10.5ch;
}

.hero .lede {
  font-size: clamp(1rem, 1.08vw, 1.08rem);
  line-height: 1.7;
  max-width: 48ch;
}

/* The Stay */
.intro h2 {
  font-size: clamp(2.75rem, 4.25vw, 4.6rem);
  line-height: 1.04;
  max-width: 10.5ch;
}

.intro-copy {
  max-width: 54ch;
}

.intro-copy p {
  font-size: clamp(.98rem, 1.02vw, 1.06rem);
  line-height: 1.74;
}

/* Gallery */
.section-head {
  align-items: center;
}

.section-head h2 {
  font-size: clamp(2.65rem, 4.05vw, 4.35rem);
  line-height: 1.03;
  max-width: 11ch;
}

.section-note {
  font-size: clamp(.96rem, 1vw, 1.04rem);
  line-height: 1.68;
}

/* Details */
.details-card h2 {
  font-size: clamp(2.65rem, 4.15vw, 4.5rem);
  line-height: 1.03;
  max-width: 9.5ch;
}

.detail-list {
  max-width: 48ch;
}

.detail-list li {
  line-height: 1.62;
}

.quote-card p {
  text-wrap: balance;
  font-size: clamp(2.1rem, 3.55vw, 4.15rem);
  line-height: 1.08;
  max-width: 11ch;
}

/* Savannah */
.savannah h2 {
  font-size: clamp(2.6rem, 4vw, 4.45rem);
  line-height: 1.01;
  max-width: 9.75ch;
}

.savannah-copy {
  max-width: 58ch;
}

.savannah-copy p {
  font-size: clamp(.98rem, 1vw, 1.06rem);
  line-height: 1.72;
}

/* Booking */
.booking h2 {
  font-size: clamp(2.65rem, 4.1vw, 4.5rem);
  line-height: 1.03;
  max-width: 10.5ch;
}

.booking-intro {
  font-size: clamp(.98rem, 1vw, 1.04rem);
  line-height: 1.68;
  max-width: 58ch;
}

.booking-card h3 {
  text-wrap: balance;
}

.booking-card p {
  line-height: 1.62;
}

/* Smaller screens: remove forced no-wrap if it would overflow */
@media (max-width: 700px) {
  .keep-together {
    white-space: normal;
  }

  .hero h1,
  .intro h2,
  .section-head h2,
  .details-card h2,
  .savannah h2,
  .booking h2 {
    max-width: none;
  }
}

