:root {
  --olive: #3a4528;
  --olive-deep: #2a3320;
  --olive-dark: #1c2316;
  --olive-mid: #4a5636;
  --olive-soft: #6b7558;
  --cream: #f6f1e6;
  --cream-dark: #ebe4d4;
  --gold: #c4a35a;
  --gold-soft: #d4bc7e;
  --ink: #1f2418;
  --muted: #5c614f;
  --white: #fffdf8;
  --shadow: 0 18px 50px rgba(28, 35, 22, 0.16);
  --radius: 18px;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

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

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

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

h1,
h2,
h3,
.logo-word {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 241, 230, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(58, 69, 40, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--cream);
}

.logo-word {
  font-size: 1.2rem;
  line-height: 1.1;
  color: var(--olive-deep);
}

.logo-word span {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive-soft);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--olive);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn-gold {
  background: var(--gold);
  color: var(--olive-dark);
}

.btn-olive {
  background: var(--olive);
  color: var(--cream);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(246, 241, 230, 0.35);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.4rem;
  color: var(--olive-deep);
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  place-items: end start;
  overflow: hidden;
  color: var(--cream);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 35, 22, 0.18) 0%, rgba(28, 35, 22, 0.72) 100%),
    linear-gradient(90deg, rgba(28, 35, 22, 0.45) 0%, rgba(28, 35, 22, 0.05) 55%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 0 0 80px;
  max-width: 680px;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.92;
  margin: 14px 0 18px;
}

.hero p {
  font-size: 1.15rem;
  max-width: 520px;
  color: rgba(246, 241, 230, 0.88);
  margin-bottom: 28px;
}

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

/* Sections */
section {
  padding: 88px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 42px;
}

.section-head h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.05;
  color: var(--olive-deep);
  margin-top: 8px;
}

.lead {
  font-size: 1.12rem;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.photo-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.photos-row {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.photos-row figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--olive-deep);
}

.photos-row img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.photos-row figcaption {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 10px 4px 0;
}

.checklist {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
  flex-shrink: 0;
}

/* Amenities */
.amenities {
  background: var(--olive-deep);
  color: var(--cream);
}

.amenities .section-head h2,
.amenities .lead {
  color: var(--cream);
}

.amenities .lead {
  color: rgba(246, 241, 230, 0.78);
}

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

.card {
  background: rgba(255, 253, 248, 0.06);
  border: 1px solid rgba(246, 241, 230, 0.1);
  border-radius: 16px;
  padding: 24px;
}

.card h3 {
  font-size: 1.55rem;
  margin-bottom: 8px;
}

.card p {
  color: rgba(246, 241, 230, 0.78);
  font-size: 0.98rem;
}

/* Booking */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.price-card,
.guest-card {
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.price-card {
  background: var(--olive);
  color: var(--cream);
}

.price-card .amount {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  margin: 12px 0 8px;
}

.price-card .amount span {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

.guest-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
}

.guest-card h3 {
  font-size: 2rem;
  color: var(--olive-deep);
}

/* Contact */
.contact {
  background:
    linear-gradient(180deg, rgba(42, 51, 32, 0.82), rgba(28, 35, 22, 0.9)),
    url("images/hero-tent.jpg") center/cover no-repeat;
  color: var(--cream);
}

.contact-box {
  max-width: 680px;
}

.contact h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  margin: 10px 0 16px;
}

.email-link {
  display: inline-block;
  margin: 18px 0 8px;
  font-size: clamp(1.15rem, 3vw, 1.7rem);
  color: var(--gold-soft);
  border-bottom: 1px solid rgba(196, 163, 90, 0.4);
}

.form {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(246, 241, 230, 0.18);
  background: rgba(255, 253, 248, 0.08);
  color: var(--cream);
  border-radius: 12px;
  padding: 14px 16px;
  font: inherit;
}

input::placeholder,
textarea::placeholder {
  color: rgba(246, 241, 230, 0.55);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

select option {
  color: var(--ink);
}

.note {
  font-size: 0.9rem;
  color: rgba(246, 241, 230, 0.7);
}

/* Footer */
footer {
  background: var(--olive-dark);
  color: rgba(246, 241, 230, 0.72);
  padding: 28px 0;
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* Draft banner so it is obvious this is not live */
.draft-banner {
  background: var(--gold);
  color: var(--olive-dark);
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 8px 16px;
}

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

  .nav-links {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(58, 69, 40, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .split,
  .grid,
  .booking-grid,
  .form-row,
  .photos-row {
    grid-template-columns: 1fr;
  }

  .photos-row img {
    height: 260px;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-copy {
    padding-bottom: 48px;
  }
}
