@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: linear-gradient(
    to bottom,
    #1a3510 0%,
    #2d5a27 8%,
    #3d7a35 16%,
    #2d5a27 24%,
    #1a3510 32%,
    #243d1f 40%,
    #2d5a27 48%,
    #1e4a18 56%,
    #3d7a35 64%,
    #243d1f 72%,
    #1a3510 80%,
    #2d5a27 88%,
    #1e3a18 100%
  );
  min-height: 100vh;
  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;
}
/* Evergreen tree silhouette along bottom of nav */
#site-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55px;
  pointer-events: none;
  z-index: 1;
  background-image: url("/images/forest-silhouette.svg");
  background-size: 400px 55px;
  background-repeat: repeat-x;
  background-position: bottom left;
}
#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;
  text-shadow: 0 1px 4px rgba(0,0,0,0.55);
}
#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;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-contact a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-contact a:hover { color: #fff; }
.footer-maps {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.map-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
  font-weight: 500;
  transition: color 0.2s, opacity 0.2s;
  letter-spacing: 0.3px;
}
.map-icon-link:hover { color: #fff; opacity: 0.9; }
.map-icon-link svg { flex-shrink: 0; border-radius: 7px; }

/* ── 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: 900px) {
  .nav-toggle { display: flex; }
  #main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: linear-gradient(135deg, #1a3510 0%, #2d5a27 50%, #1e4a18 100%);
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.45);
    /* tree silhouette on mobile dropdown bottom */
    background-image: linear-gradient(135deg, #1a3510 0%, #2d5a27 50%, #1e4a18 100%),
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 28'%3E%3Cpolygon points='22,2 10,16 34,16' fill='%23000' opacity='.2'/%3E%3Cpolygon points='22,9 7,28 37,28' fill='%23000' opacity='.2'/%3E%3Cpolygon points='65,6 55,18 75,18' fill='%23000' opacity='.2'/%3E%3Cpolygon points='65,13 53,28 77,28' fill='%23000' opacity='.2'/%3E%3Cpolygon points='108,2 95,18 121,18' fill='%23000' opacity='.2'/%3E%3Cpolygon points='108,10 93,28 123,28' fill='%23000' opacity='.2'/%3E%3Cpolygon points='150,5 140,18 160,18' fill='%23000' opacity='.2'/%3E%3Cpolygon points='150,12 138,28 162,28' fill='%23000' opacity='.2'/%3E%3Cpolygon points='190,1 177,18 203,18' fill='%23000' opacity='.2'/%3E%3Cpolygon points='190,10 175,28 205,28' fill='%23000' opacity='.2'/%3E%3Cpolygon points='232,6 222,18 242,18' fill='%23000' opacity='.2'/%3E%3Cpolygon points='232,13 220,28 244,28' fill='%23000' opacity='.2'/%3E%3Cpolygon points='272,2 260,18 284,18' fill='%23000' opacity='.2'/%3E%3Cpolygon points='272,10 258,28 286,28' fill='%23000' opacity='.2'/%3E%3C/svg%3E");
    background-size: cover, 300px 28px;
    background-repeat: no-repeat, repeat-x;
    background-position: center, bottom left;
  }
  #main-nav.open {
    max-height: 420px;
    padding: 1rem 2rem 2.5rem;
  }
  #main-nav a {
    margin-left: 0;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9) !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  }
  #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; }
}

/* ── CONTACT FORM ── */
.contact-form-wrap {
  max-width: 680px;
  margin: 3rem auto 0;
}
.contact-form-wrap form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group label {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.form-optional { font-weight: 300; text-transform: none; letter-spacing: 0; opacity: 0.6; }
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #fff;
  font-family: var(--sans);
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.11);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-error {
  background: rgba(200,50,50,0.2);
  border: 1px solid rgba(200,80,80,0.5);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #f5a0a0;
  font-size: 0.88rem;
}
.form-submit {
  align-self: flex-start;
  background: linear-gradient(135deg, #3d8c2a, #5acd40);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.85rem 2.2rem;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}
.form-submit:hover { opacity: 0.92; transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Animated success checkmark */
.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  gap: 1rem;
}
.success-circle-wrap { width: 80px; height: 80px; }
.success-svg { width: 80px; height: 80px; }
.success-ring {
  stroke-dasharray: 158;
  stroke-dashoffset: 158;
  animation: draw-ring 0.7s cubic-bezier(0.65,0,0.45,1) 0.1s forwards;
}
.success-tick {
  stroke-dasharray: 55;
  stroke-dashoffset: 55;
  animation: draw-tick 0.4s cubic-bezier(0.65,0,0.45,1) 0.85s forwards;
}
@keyframes draw-ring  { to { stroke-dashoffset: 0; } }
@keyframes draw-tick  { to { stroke-dashoffset: 0; } }
.success-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: #fff;
  margin: 0;
}
.success-body { color: rgba(255,255,255,0.65); margin: 0; }

/* Header inner above tree silhouette */
.header-inner { position: relative; z-index: 5; }

@media (max-width: 680px) {
  .form-row { grid-template-columns: 1fr; }
  .form-submit { width: 100%; justify-content: center; text-align: center; }
}
