@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garant:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500&display=swap');

:root {
  --green: #A6947D;
  --green-dark: #8a7a68;
  --rust: #863725;
  --gold: #CF8A56;
  --gold-dark: #b87a46;
  --cream: #FAF7F2;
  --stone: #EDE0D0;
  --sky: #C3C2BC;
  --charcoal: #5C3D2A;
  --mist: #F5EEE6;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.6;
}

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garant', serif;
  font-weight: 300;
  line-height: 1.2;
}

.eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.section-title--white { color: var(--charcoal); }

.section-lead {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  max-width: 580px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dark); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.5); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-outline-green { background: transparent; color: var(--green); border: 1.5px solid var(--green); }
.btn-outline-green:hover { background: var(--green); color: #fff; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.nav.scrolled {
  background: var(--green);
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}
.nav-logo {
  font-family: 'Cormorant Garant', serif;
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-book {
  background: var(--gold);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 2px;
}
.nav-book:hover { background: var(--gold-dark) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: all 0.3s;
}

/* ── HERO (home) ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 7s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(200,148,58,0.95);
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(50px, 7.5vw, 88px);
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.hero h1 em { font-style: italic; color: rgba(255,255,255,0.78); }
.hero-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.14em;
  margin-bottom: 0.4rem;
}
.hero-capacity {
  font-size: 12px;
  color: rgba(255,255,255,0.48);
  letter-spacing: 0.08em;
  margin-bottom: 2.75rem;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 2;
}
.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.25);
  animation: pulse 2.2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 0.25; } 50% { opacity: 0.7; } }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding: 0 2.5rem 3.5rem;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(38px, 5.5vw, 64px);
  color: #fff;
  font-weight: 300;
}

/* ── LAYOUT ── */
.section { padding: 5rem 2.5rem; }
.section-sm { padding: 3.5rem 2.5rem; }
.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 760px; margin: 0 auto; }
.section-mist { background: var(--mist); }
.section-green { background: var(--stone); }
.section-rust { background: var(--green); }
.section-charcoal { background: var(--charcoal); }
.section-stone { background: var(--stone); }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── INTRO QUOTE ── */
.intro-quote {
  text-align: center;
  padding: 4.5rem 2.5rem;
  border-bottom: 1px solid var(--stone);
}
.intro-quote blockquote {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(20px, 2.8vw, 26px);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto 1.25rem;
  quotes: none;
}
.intro-attr {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rust);
}

/* ── STATS ROW ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--stone);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 2.75rem;
  background: #fff;
}
.stat {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--stone);
}
.stat:last-child { border-right: none; }
.stat-number {
  font-family: 'Cormorant Garant', serif;
  font-size: 46px;
  font-weight: 300;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-number sup {
  font-size: 22px;
  vertical-align: super;
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
}

/* ── ROOMS GRID ── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.room-card {
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 4px;
  overflow: hidden;
}
.room-img {
  height: 240px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.room-card:hover .room-img { transform: scale(1.03); }
.room-img-wrap { overflow: hidden; }
.room-body { padding: 1.5rem 1.75rem; }
.room-name {
  font-family: 'Cormorant Garant', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}
.room-beds {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.75rem;
}
.room-desc {
  font-size: 14px;
  line-height: 1.75;
  color: #666;
}
.room-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 1rem;
}
.tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 4px 11px;
  border-radius: 100px;
  background: var(--stone);
  color: var(--charcoal);
}

/* ── AMENITIES ── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}
.amenity {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.875rem 1rem;
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 4px;
  font-size: 13px;
  color: var(--charcoal);
}
.amenity i { color: var(--green); font-size: 18px; flex-shrink: 0; }

/* ── ACTIVITIES CARDS ── */
.acts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.act-card {
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 4px;
  padding: 1.75rem 1.5rem;
  transition: box-shadow 0.25s, transform 0.25s;
}
.act-card:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.act-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(45,90,39,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.act-icon i { color: var(--green); font-size: 22px; }
.act-name {
  font-family: 'Cormorant Garant', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}
.act-dist {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.act-desc { font-size: 13px; line-height: 1.75; color: #666; }

/* ── ACTIVITY DETAIL (things-to-do page) ── */
.act-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 4rem 0;
  border-bottom: 1px solid var(--stone);
  align-items: center;
}
.act-detail:last-child { border-bottom: none; }
.act-detail.reverse { direction: rtl; }
.act-detail.reverse > * { direction: ltr; }
.act-detail-img {
  height: 340px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
}
.act-detail-text h2 {
  font-size: clamp(28px, 3vw, 38px);
  color: var(--charcoal);
  margin: 0.5rem 0 1rem;
}
.act-detail-text p {
  font-size: 14px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 0.75rem;
}
.act-contact {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--mist);
  border-left: 3px solid var(--green);
  border-radius: 0 4px 4px 0;
  font-size: 13px;
  line-height: 2;
  color: var(--charcoal);
}
.act-contact a { color: var(--sky); text-decoration: none; }
.act-contact a:hover { text-decoration: underline; }

/* ── RESTAURANTS ── */
.rest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.rest-card {
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 4px;
  padding: 1.5rem;
}
.rest-name {
  font-family: 'Cormorant Garant', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}
.rest-dist {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.rest-desc { font-size: 13px; line-height: 1.72; color: #666; }
.rest-phone { font-size: 12px; color: var(--sky); margin-top: 0.5rem; }

/* ── GALLERY ── */
.gallery-masonry {
  columns: 3;
  column-gap: 10px;
  margin-top: 2.5rem;
}
.gallery-masonry .gal-item {
  break-inside: avoid;
  margin-bottom: 10px;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-masonry img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-masonry .gal-item:hover img { transform: scale(1.04); }
.gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gal-item:hover .gal-overlay {
  background: rgba(0,0,0,0.22);
}
.gal-overlay i { color: rgba(255,255,255,0); transition: color 0.3s; font-size: 26px; }
.gal-item:hover .gal-overlay i { color: rgba(255,255,255,0.85); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.6;
  transition: opacity 0.2s;
  line-height: 1;
}
.lightbox-close:hover { opacity: 1; }

/* ── FIND US ── */
.map-wrap {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--stone);
  margin-top: 2rem;
}
.map-wrap iframe { display: block; width: 100%; height: 420px; border: none; }
.distances-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 2rem;
}
.distances-table th {
  background: var(--green);
  color: #fff;
  padding: 10px 16px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.distances-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--stone);
  color: var(--charcoal);
}
.distances-table tr:nth-child(even) td { background: var(--mist); }
.distances-table td:last-child { color: #888; font-size: 13px; }

/* ── CTA BAND ── */
.cta-band {
  text-align: center;
  padding: 5.5rem 2.5rem;
}
.cta-band h2 {
  font-size: clamp(30px, 4vw, 50px);
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.cta-band p {
  font-size: 15px;
  color: var(--charcoal);
  opacity: 0.75;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

/* ── FOOTER ── */
.footer {
  background: var(--charcoal);
  padding: 4.5rem 2.5rem 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: 'Cormorant Garant', serif;
  font-size: 24px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
}
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.75; margin-bottom: 1.25rem; }
.footer-address { font-size: 12px; color: rgba(255,255,255,0.28); line-height: 1.9; }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.48);
  text-decoration: none;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.22); }

/* ── GALLERY STRIP (home) ── */
.gallery-strip-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 210px 210px;
  gap: 8px;
}
.gs-item {
  border-radius: 3px;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
.gs-item.tall { grid-row: 1 / 3; }
.gs-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gs-item:hover img { transform: scale(1.05); }

/* ── CONTACT FORM ── */
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: #888; }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 11px 14px;
  border: 1px solid var(--stone);
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--charcoal);
  background: #fff;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── MAP ── */
.map-wrap {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--stone);
  height: 380px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── DISTANCES TABLE ── */
.distances-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 2rem;
}
.distances-table th {
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  padding: 0.6rem 1rem;
  border-bottom: 2px solid var(--stone);
}
.distances-table td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--stone);
  color: var(--charcoal);
  line-height: 1.5;
}
.distances-table td:nth-child(2),
.distances-table td:nth-child(3) {
  white-space: nowrap;
  color: var(--green);
  font-weight: 500;
}
.distances-table tbody tr:hover { background: var(--mist); }

/* ── TWO-COL SPLIT ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-img {
  border-radius: 4px;
  overflow: hidden;
}
.split-img img { width: 100%; height: 380px; object-fit: cover; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--green);
    flex-direction: column;
    padding: 1.75rem 2rem;
    gap: 1.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  }
  .nav-toggle { display: flex; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid var(--stone); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-bottom: none; }
  .rooms-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .acts-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .act-detail { grid-template-columns: 1fr; gap: 2rem; }
  .act-detail.reverse { direction: ltr; }
  .rest-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .contact-form { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-strip-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gs-item.tall { grid-row: auto; }
  .section { padding: 3.5rem 1.5rem; }
  .section-sm { padding: 2.5rem 1.5rem; }
  .hero-scroll { display: none; }
}

@media (max-width: 560px) {
  .acts-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-masonry { columns: 1; }
  .hero-btns { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .gallery-strip-grid { grid-template-columns: 1fr; }
}
