@font-face {
  font-family: 'Serpentine';
  src: url('/fonts/serpentine-bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --green:   #2d5a27;
  --green2:  #3d7a35;
  --dark:    #111;
  --mid:     #555;
  --light:   #f8f7f4;
  --white:   #fff;
  --serif:   'Serpentine', 'Playfair Display', Georgia, serif;
  --sans:    'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── HEADER ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: linear-gradient(135deg, #1a3510 0%, #2d5a27 50%, #1e4a18 100%);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  transition: background 0.3s, box-shadow 0.3s;
}
#site-header.scrolled {
  background: linear-gradient(135deg, #1a3510 0%, #2d5a27 50%, #1e4a18 100%);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.logo-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.3s;
  letter-spacing: 0.3px;
}
.logo-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}
#site-header.scrolled .logo-title { color: #fff; }
#site-header.scrolled .logo-sub   { color: rgba(255,255,255,0.65); }

#main-nav a {
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  margin-left: 2.2rem;
  transition: color 0.2s;
}
#main-nav a:hover { color: var(--white); }
#site-header.scrolled #main-nav a { color: rgba(255,255,255,0.88); }
#site-header.scrolled #main-nav a:hover { color: #fff; }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px; height: 18px;
  background: none; border: none; cursor: pointer; padding: 0;
}
.nav-toggle span {
  display: block; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s, background 0.3s;
}
#site-header.scrolled .nav-toggle span { background: #fff; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── HERO CAROUSEL ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
/* Ken Burns keyframes — different zoom direction per slide */
@keyframes kb1 {
  from { transform: scale(1)    translate(0%,    0%);    }
  to   { transform: scale(1.12) translate(-1.5%, -1%);   }
}
@keyframes kb2 {
  from { transform: scale(1.1)  translate(-1%,  0%);    }
  to   { transform: scale(1)    translate(1.5%,  1%);   }
}
@keyframes kb3 {
  from { transform: scale(1)    translate(1%,    0.5%); }
  to   { transform: scale(1.12) translate(-0.5%, -1.5%);}
}

.slides { position: absolute; inset: 0; overflow: hidden; }
.slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  will-change: transform;
}
.slide.active { opacity: 1; }
.slide.kb-play:nth-child(1) { animation: kb1 9s ease-out forwards; }
.slide.kb-play:nth-child(2) { animation: kb2 9s ease-out forwards; }
.slide.kb-play:nth-child(3) { animation: kb3 9s ease-out forwards; }

.hero-content { display: none; }
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.2rem;
}
.hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  opacity: 0.9;
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  padding: 1rem 2.8rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--green2); }

.slide-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 3;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s;
  padding: 0;
}
.dot.active { background: #fff; border-color: #fff; }

/* ── STRIP ── */
.strip {
  background: var(--dark);
  padding: 1.1rem 2rem;
}
.strip-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 3rem;
}
.strip-item {
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.strip-icon { font-size: 1rem; }

/* ── SECTIONS ── */
.section {
  padding: 6rem 2rem;
  background: linear-gradient(150deg, #243d1f 0%, #1a3510 60%, #2d5a27 100%);
}
.section-light {
  background: linear-gradient(150deg, #1a3510 0%, #243d1f 60%, #1e3a18 100%);
}
.container { max-width: 1100px; margin: 0 auto; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #7ec87a;
  font-weight: 500;
  margin-bottom: 0.9rem;
  display: block;
}
.eyebrow-light { color: rgba(255,255,255,0.55); }

.section h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1.5rem;
}
.section p {
  font-size: 1.02rem;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  max-width: 680px;
  margin-bottom: 1rem;
}
.text-center { text-align: center; }
.text-center p, .text-center .eyebrow { margin-left: auto; margin-right: auto; }

/* ── SPLIT ABOUT ── */
.split-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split-text { display: flex; flex-direction: column; gap: 0; }
.split-text p { margin-bottom: 1.2rem; }
.btn-outline {
  display: inline-block;
  margin-top: 1rem;
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  padding: 0.8rem 2.2rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
  align-self: flex-start;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

.split-image {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
}
.split-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

/* ── PHOTO BREAK ── */
.photo-break {
  height: 480px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.photo-break-overlay {
  background: rgba(0,0,0,0.45);
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.photo-break-overlay blockquote {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 3vw, 1.9rem);
  font-style: italic;
  color: #fff;
  text-align: center;
  max-width: 720px;
  line-height: 1.5;
}

/* ── AMENITY CARDS ── */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.amenity-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.amenity-img {
  height: 240px;
  overflow: hidden;
}
.amenity-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.amenity-card:hover .amenity-img img { transform: scale(1.04); }
.amenity-body {
  padding: 1.6rem;
}
.amenity-body h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
  color: var(--dark);
}
.amenity-body p {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.65;
  margin: 0;
}

/* ── NEARBY ── */
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3rem;
  margin-top: 3rem;
}
.nearby-item { border-top: 2px solid rgba(255,255,255,0.15); padding-top: 1.5rem; }
.nearby-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.nearby-item h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: #fff;
}
.nearby-item p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
  margin: 0;
  max-width: none;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 0.5rem;
  margin-top: 3rem;
}
.g-item {
  overflow: hidden;
  border-radius: 2px;
  background: #ddd;
}
.g-item.g-wide { grid-column: span 2; }
.g-item.g-tall { grid-row: span 2; }
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.g-item:hover img { transform: scale(1.04); }

/* ── LOCATION ── */
.location-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2.5rem;
  display: block;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.map-wrap {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.1);
}

/* ── CONTACT ── */
.contact-section {
  background: #1a2e18;
  color: #fff;
}
.contact-section h2.contact-heading {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 1rem;
}
.contact-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 3rem;
}
.contact-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
}
.contact-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  min-width: 160px;
}
.contact-icon { font-size: 1.6rem; margin-bottom: 0.4rem; }
.contact-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green2);
  font-weight: 500;
}
.contact-block a, .contact-block span {
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  text-align: center;
  line-height: 1.5;
}
.contact-block a:hover { color: #fff; text-decoration: underline; }

/* ── FOOTER ── */
footer {
  background: #0d1a0c;
  padding: 3rem 2rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.3rem; }
.footer-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  font-weight: 400;
}
.footer-loc {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: center;
}
.footer-links a {
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  margin-top: 0.5rem;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .split-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .split-image img { height: 360px; }
  .amenity-grid { grid-template-columns: 1fr 1fr; }
  .nearby-grid { grid-template-columns: 1fr 1fr; }
  .photo-break { background-attachment: scroll; }
}

@media (max-width: 680px) {
  .nav-toggle { display: flex; }
  #main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: linear-gradient(135deg, #1a3510 0%, #2d5a27 50%, #1e4a18 100%);
    padding: 1rem 2rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }
  #main-nav.open { display: flex; }
  #main-nav a {
    margin-left: 0;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.88) !important;
  }
  #main-nav a:last-child { border-bottom: none; }
  #site-header { position: fixed; }
  #site-header .header-inner { padding: 1rem 1.25rem; }

  .hero { height: 85vh; }
  .strip-inner { gap: 0.8rem 1.5rem; }
  .section { padding: 4rem 1.25rem; }
  .amenity-grid { grid-template-columns: 1fr; }
  .nearby-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
  .g-item.g-tall { grid-row: span 1; }
  .photo-break { height: 300px; }
  .contact-blocks { gap: 2rem; }
}
