:root{
  --bg:#f6f3ea;           /* warm linen */
  --panel:#ffffff;        /* cards */
  --panel2:#fbf8f0;       /* subtle section tint */
  --text:#162018;         /* deep evergreen ink */
  --muted:#4b5a50;        /* soft olive gray */

  --brand:#2f6b4f;        /* evergreen */
  --brand2:#4f8a64;       /* lighter evergreen */

  --line:rgba(22,32,24,.12);
  --shadow: 0 12px 28px rgba(22,32,24,.10);
  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
  --focus: 0 0 0 3px rgba(47,107,79,.18);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:
  radial-gradient(900px 520px at 12% 0%, rgba(79,138,100,.16), transparent 60%),
  radial-gradient(900px 520px at 88% 10%, rgba(47,107,79,.10), transparent 62%),
  linear-gradient(180deg, #ffffff 0%, var(--bg) 45%, #ffffff 100%);
  color: var(--text);
  line-height:1.45;
}
a{color:inherit}
.wrap{max-width:var(--max); margin:0 auto; padding:0 20px}

.skip{position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden}
.skip:focus{left:16px; top:16px; width:auto; height:auto; padding:10px 12px; background:#fff; color:#000; border-radius:10px; z-index:9999}

.siteHeader{
  position: sticky; top:0; z-index:50;
  background: rgba(246,243,234,.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.navBar{
  display:flex; align-items:center; justify-content:space-between;
  height:72px;
  gap:14px;
}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none; min-width:220px}
.mark{
  width:40px; height:40px; border-radius:12px;
  background:
    radial-gradient(12px 12px at 28px 10px, rgba(255,255,255,.35), transparent 60%),
    linear-gradient(135deg, var(--brand) 0%, #2fa77c 55%, #1d6f54 100%);
  box-shadow: 0 10px 20px rgba(0,0,0,.35);
  position:relative; overflow:hidden;
}
.mark:after{
  content:"";
  position:absolute; inset:-20%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.32), transparent 55%);
  transform: rotate(12deg);
}
.brandText small{display:block; color:var(--muted); margin-top:2px}

.navLinks{display:flex; gap:10px; align-items:center}
.navLinks a{
  text-decoration:none;
  color: var(--muted);
  font-weight: 700;
  padding:10px 12px;
  border-radius:12px;
}
.navLinks a:hover{color:var(--text); background: rgba(255,255,255,.06)}
.navLinks a.active{color:var(--text); background: rgba(255,255,255,.08); border:1px solid var(--line)}

.navCta{display:flex; gap:10px; align-items:center}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.85);
  color: var(--text);
  text-decoration:none;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 14px;
  transition: transform .06s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover{background: #ffffff; border-color: rgba(22,32,24,.18)}
.btn:active{transform: translateY(1px)}
.btn.primary{
  background: linear-gradient(180deg, var(--brand2), var(--brand));
  border-color: rgba(0,0,0,.0);
  color:#f7fbf8;
  box-shadow: 0 10px 22px rgba(47,107,79,.16);
}
.btn.primary:hover{filter:none; background: linear-gradient(180deg, #5a946e, #2f6b4f);}
.btn:focus-visible, .hamburger:focus-visible, input:focus-visible, textarea:focus-visible{
  outline:none; box-shadow: var(--focus)
}

.hamburger{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  cursor:pointer;
}
.hamburger svg{width:20px; height:20px}

.mobileMenu{display:none; padding: 10px 0 16px}
.mobileMenu a{
  display:block;
  padding: 12px 12px;
  border-radius: 14px;
  margin: 6px 0;
  text-decoration:none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-weight: 800;
}
.mobileMenu a:hover{background: rgba(255,255,255,.07)}
.mobileMenu.open{display:block}

.card{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card img{
  width: 100%;
  aspect-ratio: 16 / 10;   /* ← makes image taller */
  object-fit: cover;
  display: block;
}
.panel{
  background: var(--panel2);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.muted{color: var(--muted)}
.kicker{
  display: block;                 /* ← changed from inline-flex */
  width: fit-content;             /* ← allows true centering */
  margin: 0 auto 14px auto;       /* ← centers horizontally */

  padding: 10px 18px;             /* ← slightly more breathing room */
  border-radius: 999px;

  background: rgba(47,107,79,.10);
  border: 1px solid rgba(47,107,79,.18);
  color: var(--brand);

  font-weight: 800;               /* ← slightly lighter than 900 */
  letter-spacing: .35px;
  font-size: 12.5px;
  text-transform: uppercase;

  text-align: center;
}
.hero{padding: 54px 0 18px}
.heroGrid{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr; /* narrower text, wider photo */
  gap: 22px;
  align-items: start;
}
h1{
  margin: 12px 0 10px;
}
.heroMain{padding: 26px}
.heroMain h1{
  margin: 12px 0 12px;
  font-size: clamp(2px, 2.6vw, 35px);  /* smaller */
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #24352c;
}
.heroMain h1.heroTitle { margin: 12px 0 12px; }

.heroMain h1 .h1Line{
  display:block;
}

.heroMain h1 .h1Spacer{
  display:block;
  height: 0.75em;   /* <-- adjust this value */
}

.heroMain h1 .indent1{ padding-left: .75em; }
.heroMain h1 .indent2{ padding-left: 1.75em; }
.heroMain h1 .indent3{ padding-left: 2.75em; }

.heroMain{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.lead{color: var(--muted); font-size: 16.5px; max-width: 60ch}
.pillRow{margin-top:16px; display:flex; flex-wrap:wrap; justify-content:center; text-align:center; gap:8px}
.pillRow{
  padding: 8px;
  border-radius: 16px;
  background: rgba(22,32,24,.03);
}
.pill{
  padding: 8px 12px;
  border-radius: 999px;

  /* slightly darker than the card so inset reads */
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(22,32,24,.14);

  color: var(--muted);
  font-weight: 700;
  font-size: 13px;

  /* recessed / pressed */
  box-shadow:
    inset 0 2px 4px rgba(22,32,24,.14),
    inset 0 -1px 0 rgba(255,255,255,.85);

}
/* Make the left hero card span the full right-column stack */
.heroGrid{
  align-items: stretch; /* allow equal-height columns */
}


section{padding: 26px 0}
.sectionHead{display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin-bottom: 14px}
.sectionHead h2{margin:0; font-size: 22px}
.sectionHead p{margin:0; color:var(--muted); max-width:70ch}
.grid2{display:grid; grid-template-columns: 1fr 1fr; gap:16px}
.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px}

.cabinCard{padding:0; overflow:hidden}
.cabinTop{
  height: 300px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
}
/* Location page: let the note span wider than the default sectionHead paragraph width */
.sectionHead p.locationNote{
  max-width: none;
  width: 100%;
}
.cabinBody{padding: 16px 18px 18px}
.cabinMeta{display:flex; flex-wrap:wrap; gap:8px; margin-top:10px}
.linksRow{display:flex; flex-wrap:wrap; gap:10px; margin-top: 10px}

.map{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
iframe{display:block; width:100%; height: 360px; border:0}

.formGrid{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
.field{display:flex; flex-direction:column; gap:6px}
label{font-weight: 900}
input, textarea{
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: var(--text);
  padding: 12px 12px;
  font-size: 15px;
}
textarea{min-height: 140px; resize: vertical}
.help{font-size: 12.5px; color: var(--muted)}
.hidden{display:none !important}

.siteFooter{
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
  margin-top: 16px;
  color: var(--muted);
}
.footerGrid{display:grid; grid-template-columns: 1.2fr .8fr; gap:16px; align-items:start}
.footerBrand{display:flex; gap:10px; align-items:center}
.footerCard{
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
}
.footerCard h3{margin:0 0 10px; color: var(--text)}
.contactLine{display:flex; justify-content:space-between; gap:10px; padding:6px 0}
.contactLine a{color: var(--text); font-weight: 900; text-decoration:none}
.contactLine a:hover{text-decoration:underline}
.footerLinks{display:flex; flex-wrap:wrap; gap:10px; margin-top: 12px}
.fineprint{margin-top:12px; font-size: 12.5px}

/* Responsive */
@media (max-width: 920px){
  .heroGrid{grid-template-columns: 1fr}
  .grid3{grid-template-columns: 1fr}
  .grid2{grid-template-columns: 1fr}
  .footerGrid{grid-template-columns: 1fr}
  .navLinks{display:none}
  .hamburger{display:inline-flex; align-items:center; justify-content:center}
  .navCta .btn{display:none}
  .navCta .btn.primary{display:inline-flex}
  .formGrid{grid-template-columns: 1fr}
}
/* ===== FORCE hero slideshow to be LANDSCAPE (last rule wins) ===== */

/* Anchor absolutely-positioned slides to the slideshow box */
 .hero .slideshow{
  position: relative;
}.hero .slideshow .slide{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 450ms ease;
}
.hero .slideshow{
  position: relative;
  display: block;
}
.hero .slideshow .slide.is-active{ opacity: 1; }

@media (max-width: 740px){
  .hero .heroGrid > .card:last-child .slideshow{
    aspect-ratio: 4 / 3;
    min-height: 300px;
  }
}
/* Right column stack */
.heroRight{
  display: grid;
  gap: 16px;
}

/* Slideshow card */
.heroMediaCard{
  padding: 14px;
  background: #fff;
  overflow: hidden;
}

.heroMediaCard .slideshow{
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: calc(var(--radius2) - 10px);
  overflow: hidden;
}

/* Highlights card */
.heroHighlights{
  padding: 18px;
}

.heroHighlightsInner{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:center;
  text-align:center;
}
.linksRow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.linksRow{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.ctaLabel{
  font-size:13px;
  color:var(--muted);
  font-weight:600;
}
@media (max-width: 520px){
  .ctaLabel{
    width:100%;
  }
}
/* smaller buttons for cabin cards */
.btn.small{
  padding: 7px 12px;
  font-size: 13.5px;
  border-radius: 9px;
}
.locationNote{
  max-width: none;      /* remove narrow text constraint */
  width: 100%;
}
.cabinTop{
  position: relative;
  aspect-ratio: 16 / 9;      /* keeps the card stable while image loads */
  overflow: hidden;
}

.cabinTop img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* optional: recreate your subtle overlay gradient */
.cabinTop::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(0,0,0,.08), rgba(0,0,0,.02));
  pointer-events:none;
}
