:root {
  --pine: #20372d;
  --pine-2: #12251d;
  --moss: #6f7f4f;
  --reed: #d6c79e;
  --sand: #f5eddf;
  --cream: #fffaf0;
  --lake: #6f9e9b;
  --ink: #17231d;
  --muted: #657168;
  --line: rgba(32, 55, 45, 0.16);
  --shadow: 0 24px 80px rgba(18, 37, 29, 0.18);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(214, 199, 158, 0.46), transparent 34rem),
    linear-gradient(180deg, var(--cream), var(--sand));
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  background: var(--pine);
  color: white;
  padding: .75rem 1rem;
  border-radius: 999px;
  z-index: 20;
}
.skip-link:focus { left: 1rem; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: .85rem max(1rem, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(13,27,21,.86), rgba(13,27,21,.54));
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 42px rgba(8,15,12,.18);
}
.brand, .nav, .footer div, .contact-actions, .hero-actions {
  display: flex;
  align-items: center;
  gap: .8rem;
}
.brand {
  width: clamp(150px, 18vw, 245px);
}
.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 5px 14px rgba(0,0,0,.32));
}
.brand small, .footer span {
  display: block;
  color: var(--muted);
  font-size: .78rem;
}
.nav {
  justify-content: flex-end;
  margin-left: auto;
}
.nav a {
  padding: .75rem .95rem;
  color: rgba(255,255,255,.82);
  font-weight: 800;
  font-size: .9rem;
}
.nav a:not(.nav-call):hover {
  color: white;
}
.nav-call {
  margin-left: .35rem;
  border-radius: 999px;
  background: var(--cream);
  color: var(--pine) !important;
  box-shadow: 0 12px 26px rgba(0,0,0,.2);
}
.nav-toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.46);
  border-radius: 999px;
  background: var(--cream);
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(0,0,0,.2);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--pine);
  transition: transform .2s ease, opacity .2s ease;
}
.btn {
  border: 0;
  border-radius: 999px;
  padding: .95rem 1.25rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn.primary { background: var(--pine); color: white; box-shadow: 0 12px 26px rgba(32,55,45,.25); }
.btn.ghost { border: 1px solid var(--line); background: rgba(255,255,255,.62); color: var(--pine); }
.btn:hover { transform: translateY(-2px); }

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(260px, 340px);
  align-items: end;
  gap: 2.5rem;
  padding: 10rem max(1.25rem, calc((100vw - 1180px) / 2)) 4rem;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9) contrast(1.05); }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(18,37,29,.86), rgba(18,37,29,.42) 48%, rgba(18,37,29,.12)), linear-gradient(0deg, rgba(18,37,29,.56), transparent 42%);
}
.hero-content {
  width: 100%;
  min-width: 0;
  color: white;
}
.eyebrow {
  margin: 0 0 .8rem;
  color: var(--moss);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero .eyebrow { color: var(--reed); }
h1, h2, h3 { font-family: Fraunces, serif; line-height: .96; margin: 0; }
h1 {
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  letter-spacing: -.035em;
  max-width: 760px;
  text-wrap: balance;
}
h1 span { display: block; }
h2 { font-size: clamp(2.25rem, 4.8vw, 5rem); letter-spacing: -.055em; color: var(--pine-2); }
h3 { font-size: 1.55rem; letter-spacing: -.025em; }
p { line-height: 1.75; }
.hero-lead { max-width: min(660px, 100%); font-size: clamp(1.05rem, 2vw, 1.35rem); color: rgba(255,255,255,.86); }
.hero-card {
  justify-self: end;
  width: min(360px, 100%);
  padding: 1.4rem;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: var(--radius);
  background: rgba(255,250,240,.14);
  color: white;
  backdrop-filter: blur(16px);
}
.hero-card span { color: var(--reed); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; }
.hero-card strong { display: block; margin: .55rem 0; font-size: 1.3rem; }

.section { padding: 7.5rem max(1.25rem, calc((100vw - 1180px) / 2)); }
.trust-strip {
  width: min(1180px, calc(100% - 2.5rem));
  margin: -2.3rem auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}
.trust-strip div { background: var(--cream); padding: 1.5rem; }
.trust-strip strong { display: block; font-family: Fraunces, serif; font-size: 2.2rem; color: var(--pine); }
.trust-strip span { color: var(--muted); font-weight: 700; }

.intro { display: grid; grid-template-columns: .95fr 1.05fr; gap: 5rem; align-items: start; }
.intro p:last-child { font-size: 1.15rem; margin-top: 2rem; }
.section-heading { max-width: 780px; margin-bottom: 2.5rem; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.05rem; }

.stay-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stay-card {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--pine);
  box-shadow: 0 20px 50px rgba(18,37,29,.12);
}
.stay-card.featured { grid-column: span 2; }
.stay-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; opacity: .86; }
.stay-card:hover img { transform: scale(1.05); }
.stay-card::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(18,37,29,.88), transparent 62%); }
.stay-card div { position: absolute; inset: auto 1.2rem 1.2rem; z-index: 1; color: white; }
.stay-card span { color: var(--reed); font-weight: 900; }
.stay-card p { color: rgba(255,255,255,.82); margin-bottom: 0; }

.experiences { background: var(--pine); color: white; }
.experiences h2 { color: white; }
.experience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.16); border-radius: var(--radius); overflow: hidden; }
.experience-grid article { background: #1b3027; padding: 2rem; min-height: 300px; }
.experience-grid span { color: var(--reed); font-weight: 900; }
.experience-grid p { color: rgba(255,255,255,.72); }

.pricing-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); background: white; }
table { width: 100%; border-collapse: collapse; min-width: 760px; }
th, td { padding: 1.05rem 1.2rem; text-align: left; border-bottom: 1px solid var(--line); }
th { background: var(--pine); color: white; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; }
td:nth-child(2), td:nth-child(3), td:nth-child(4) { font-weight: 800; color: var(--pine); }
.pricing-note { margin-top: 1rem; padding: 1.25rem 1.4rem; border-radius: 20px; background: rgba(111, 158, 155, .16); color: var(--pine); line-height: 1.7; }

.events {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 4rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(111,127,79,.16), rgba(214,199,158,.32));
}
.event-copy { padding: 2rem; border-radius: var(--radius); background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.72); }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; }
.gallery-grid button { border: 0; padding: 0; border-radius: 22px; overflow: hidden; cursor: zoom-in; background: var(--pine); }
.gallery-grid button:nth-child(1),
.gallery-grid button:nth-child(6),
.gallery-grid button:nth-child(9),
.gallery-grid button:nth-child(12) {
  grid-column: span 2;
}
.gallery-grid img { width: 100%; height: 260px; object-fit: cover; transition: transform .35s ease; }
.gallery-grid button:hover img { transform: scale(1.05); }

.faq { background: #fbf4e8; }
.faq-list { display: grid; gap: .8rem; max-width: 900px; }
details { border: 1px solid var(--line); border-radius: 20px; background: white; padding: 1.15rem 1.3rem; }
summary { cursor: pointer; font-weight: 900; color: var(--pine); }
summary::marker { color: var(--moss); }

.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: 4rem; align-items: start; background: var(--pine-2); color: white; }
.contact h2 { color: white; }
.booking-form { display: grid; gap: .9rem; padding: 1.25rem; border-radius: var(--radius); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); }
label { display: grid; gap: .45rem; color: rgba(255,255,255,.78); font-weight: 800; }
input, textarea { width: 100%; border: 1px solid rgba(255,255,255,.18); border-radius: 16px; padding: 1rem; background: rgba(255,255,255,.92); font: inherit; color: var(--ink); }
textarea { resize: vertical; }

.footer { display: flex; justify-content: space-between; gap: 1rem; padding: 2rem max(1.25rem, calc((100vw - 1180px) / 2)); background: #0d1b15; color: white; }
.footer a { color: var(--reed); font-weight: 800; }

body.lightbox-open { overflow: hidden; }
.lightbox { position: fixed; inset: 0; display: none; place-items: center; z-index: 30; background: rgba(8,15,12,.92); padding: 2rem 6rem; }
.lightbox.is-open { display: grid; }
.lightbox figure { margin: 0; max-width: min(1100px, 100%); }
.lightbox img { max-height: 82vh; max-width: 100%; margin: 0 auto; border-radius: 24px; box-shadow: var(--shadow); touch-action: pan-y; }
.lightbox figcaption { margin-top: .85rem; color: rgba(255,255,255,.78); text-align: center; font-weight: 700; }
.lightbox button { position: fixed; display: grid; place-items: center; border-radius: 50%; border: 0; background: var(--cream); color: var(--pine); cursor: pointer; box-shadow: 0 18px 46px rgba(0,0,0,.25); }
.lightbox-close { top: 1.2rem; right: 1.2rem; width: 50px; height: 50px; font-size: 2rem; }
.lightbox-arrow { top: 50%; width: 58px; height: 58px; font-size: 3rem; transform: translateY(-50%); }
.lightbox-prev { left: 1.4rem; }
.lightbox-next { right: 1.4rem; }
.lightbox-counter { position: fixed; left: 50%; bottom: 1.35rem; transform: translateX(-50%); padding: .55rem .9rem; border-radius: 999px; background: rgba(255,255,255,.14); color: white; font-weight: 900; backdrop-filter: blur(14px); }

body.js-enabled [data-reveal] {
  transition: transform .7s ease;
}

@media (max-width: 980px) {
  .site-header {
    padding: .75rem 1rem;
  }
  .brand { width: 150px; }
  .nav-toggle { display: block; }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .nav {
    position: fixed;
    top: 74px;
    left: 1rem;
    right: 1rem;
    display: grid;
    justify-content: stretch;
    align-items: stretch;
    gap: .35rem;
    padding: .65rem;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 22px;
    background: rgba(13,27,21,.9);
    box-shadow: 0 18px 46px rgba(0,0,0,.24);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease;
  }
  body.nav-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav a {
    width: 100%;
    padding: .95rem 1rem;
    border-radius: 16px;
    background: rgba(255,255,255,.1);
    color: white;
    text-align: left;
  }
  .nav-call {
    margin-left: 0;
    text-align: center;
    background: var(--cream) !important;
    color: var(--pine) !important;
  }
  .hero {
    grid-template-columns: 1fr;
    align-items: end;
    gap: 1.5rem;
    min-height: auto;
    padding-top: 8rem;
  }
  .hero-card {
    justify-self: stretch;
    margin-top: .5rem;
  }
  .trust-strip, .stay-grid, .experience-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .intro, .events, .contact { grid-template-columns: 1fr; gap: 2rem; }
  .stay-card, .stay-card.featured { grid-column: span 1; }
}
@media (max-width: 640px) {
  .site-header { padding: .65rem .85rem; }
  .brand { width: 132px; }
  .nav { top: 66px; left: .75rem; right: .75rem; }
  .hero {
    min-height: 100svh;
    padding: 7.4rem 1rem 2rem;
  }
  .hero-content,
  .hero-lead {
    max-width: calc(100vw - 2rem);
  }
  h1 {
    max-width: calc(100vw - 2rem);
    font-size: clamp(2.35rem, 10vw, 3.05rem);
    letter-spacing: -.015em;
  }
  h2 { font-size: clamp(2.15rem, 11vw, 3.4rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions, .contact-actions { align-items: stretch; flex-direction: column; }
  .trust-strip, .stay-grid, .experience-grid, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid button:nth-child(1),
  .gallery-grid button:nth-child(6),
  .gallery-grid button:nth-child(9),
  .gallery-grid button:nth-child(12) {
    grid-column: span 1;
  }
  .lightbox {
    padding: 1rem;
  }
  .lightbox img {
    max-height: 76vh;
    border-radius: 18px;
  }
  .lightbox figcaption {
    font-size: .86rem;
  }
  .lightbox-close {
    top: .8rem;
    right: .8rem;
    width: 46px;
    height: 46px;
  }
  .lightbox-arrow {
    top: auto;
    bottom: 1rem;
    width: 48px;
    height: 48px;
    font-size: 2.4rem;
    transform: none;
  }
  .lightbox-prev { left: 1rem; }
  .lightbox-next { right: 1rem; }
  .lightbox-counter {
    bottom: 1.1rem;
  }
  .section { padding-block: 5rem; }
  .footer { flex-direction: column; }
}
