:root {
  --green: #2f5d3a;
  --green-deep: #1f3f27;
  --green-soft: #cfd9c9;
  --cream: #faf6ef;
  --cream-deep: #f1ebdf;
  --ink: #2a2a28;
  --ink-soft: #5a5954;
  --rule: #e3dccd;
  --max: 1100px;
  --radius: 6px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--green-deep);
  margin: 0 0 0.4em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.1; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); line-height: 1.2; margin-bottom: 0.6em; }
h3 { font-size: 1.2rem; line-height: 1.3; }

p { margin: 0 0 1em; }
a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--green-deep); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }
.narrow { max-width: 720px; margin: 0 auto; padding: 0 1.25rem; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--green-deep); color: #fff; padding: 0.5rem 1rem;
}
.skip:focus { left: 1rem; top: 1rem; z-index: 100; }

/* Header */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  position: sticky; top: 0; z-index: 50;
}
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.9rem; padding-bottom: 0.9rem;
}
.brand {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem;
  color: var(--green-deep); text-decoration: none; font-weight: 600;
}
.brand-mark {
  display: inline-grid; place-items: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--green); color: #fff;
  font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.1rem;
}
.nav-list {
  display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0;
}
.nav-list a {
  text-decoration: none; color: var(--ink); font-size: 0.95rem;
}
.nav-list a:hover { color: var(--green-deep); }

.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 0.4rem 0.7rem; font: inherit; cursor: pointer; color: var(--ink);
}

/* Hero */
.hero {
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
}
.hero-inner {
  padding: clamp(3rem, 7vw, 5.5rem) 1.25rem clamp(2rem, 4vw, 3rem);
  max-width: 820px;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.75rem; color: var(--ink-soft); margin: 0 0 1.2rem;
}
.lede {
  font-size: 1.15rem; color: var(--ink-soft); max-width: 60ch; margin-top: 0.6rem;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0 1rem; }
.btn {
  display: inline-block; padding: 0.75rem 1.25rem; border-radius: var(--radius);
  font-weight: 500; text-decoration: none; font-size: 0.98rem;
  transition: background .15s, color .15s, border-color .15s;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-deep); color: #fff; }
.btn-ghost { color: var(--green-deep); border: 1px solid var(--green); }
.btn-ghost:hover { background: var(--green); color: #fff; }
.hero-meta { color: var(--ink-soft); font-size: 0.92rem; }

.hero-image {
  display: block;
  width: 100%;
  height: clamp(220px, 36vw, 380px);
  object-fit: cover;
  object-position: center;
  border-top: 1px solid var(--rule);
}

/* Sections */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--rule);
}
.section-cream { background: var(--cream); }
.section-lede { color: var(--ink-soft); margin-top: -0.2em; margin-bottom: 1.8em; }
.footnote { color: var(--ink-soft); font-size: 0.9rem; margin-top: 1rem; }

/* Story lockup */
.lockup {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin: 2rem 0 0; padding: 1.5rem;
  border: 1px solid var(--rule); border-radius: var(--radius);
  background: #fff;
}
.lockup div { display: flex; flex-direction: column; }
.lockup-key { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }
.lockup-val { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--green-deep); }

/* Services table */
.services-table {
  border: 1px solid var(--rule); border-radius: var(--radius);
  overflow: hidden; background: #fff;
}
.srow {
  display: grid; grid-template-columns: 1fr 130px 100px;
  gap: 1rem; padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--rule); align-items: baseline;
}
.srow:last-child { border-bottom: 0; }
.srow-head {
  background: var(--cream-deep);
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft); padding-top: 0.7rem; padding-bottom: 0.7rem;
}
.srow em { color: var(--ink-soft); font-style: normal; font-size: 0.9em; }
.srow-signature { background: rgba(47,93,58,0.04); }
.star { color: var(--green); margin-left: 0.25rem; }

@media (max-width: 600px) {
  .srow {
    grid-template-columns: 1fr auto;
    gap: 0.1rem 1rem;
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
    line-height: 1.35;
  }
  .srow > :nth-child(1) { grid-column: 1; grid-row: 1; }
  .srow > :nth-child(2) {
    grid-column: 1; grid-row: 2;
    color: var(--ink-soft); font-size: 0.85rem; padding-top: 0;
  }
  .srow > :nth-child(3) {
    grid-column: 2; grid-row: 1 / span 2;
    align-self: center; text-align: right;
    font-weight: 500; white-space: nowrap;
  }
  .srow-head { padding: 0.55rem 1rem; }
  .srow-head > :nth-child(2) { display: none; }
}

/* Outdoor */
.event-types {
  list-style: none; padding: 0; margin: 1rem 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 0.4rem 1.2rem;
}
.event-types li::before { content: "— "; color: var(--green); }
.event-format { margin: 1.2rem 0 1.6rem; }

/* Reviews */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.quote {
  margin: 0; padding: 1.4rem 1.5rem;
  background: #fff; border: 1px solid var(--rule); border-radius: var(--radius);
}
.section-cream .quote { background: #fff; }
.quote blockquote {
  margin: 0 0 0.8rem; font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem; line-height: 1.45; color: var(--green-deep);
}
.quote figcaption { font-size: 0.88rem; color: var(--ink-soft); }
.reviews-cta { margin-top: 1.5rem; }

/* Team */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.5rem; margin-top: 1.5rem;
}
.member { background: #fff; border: 1px solid var(--rule); border-radius: var(--radius); padding: 1.2rem; }
.member-lead { grid-column: span 2; }
@media (max-width: 700px) { .member-lead { grid-column: auto; } }
.member-photo {
  display: block; width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius); margin-bottom: 0.9rem;
  object-fit: cover; object-position: center 30%;
  background: linear-gradient(135deg, var(--cream-deep), var(--green-soft));
}
.member-lead .member-photo {
  aspect-ratio: 900 / 736;
  object-fit: contain;
  object-position: center;
  background: var(--cream-deep);
}
.member h3 { margin-bottom: 0.1em; }
.member-role { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 0.5rem; }

/* Visit */
.visit-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start;
}
@media (max-width: 800px) { .visit-grid { grid-template-columns: 1fr; } }
address { font-style: normal; margin: 0 0 1.2rem; line-height: 1.7; }
.visit-note { color: var(--ink-soft); font-size: 0.95rem; margin: 0 0 1rem; }
.visit-meta { display: grid; grid-template-columns: 130px 1fr; gap: 0.4rem 1rem; margin: 1rem 0; }
.visit-meta dt { color: var(--ink-soft); font-size: 0.9rem; }
.visit-meta dd { margin: 0; }
.socials a { margin-right: 0.2rem; }

.map-wrap {
  aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--rule); background: var(--cream-deep);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* FAQ */
details {
  border-bottom: 1px solid var(--rule);
  padding: 1rem 0;
}
details summary {
  cursor: pointer; list-style: none; font-weight: 500;
  font-size: 1.05rem; color: var(--green-deep);
  display: flex; justify-content: space-between; gap: 1rem;
}
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; color: var(--green); font-size: 1.3rem; line-height: 1; }
details[open] summary::after { content: "−"; }
details p { margin-top: 0.7rem; color: var(--ink-soft); }

/* Footer */
.site-footer {
  background: var(--green-deep); color: #e9e3d4;
  padding: 2.5rem 0 1.5rem;
}
.site-footer a { color: #e9e3d4; }
.site-footer a:hover { color: #fff; }
.footer-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
@media (max-width: 700px) { .footer-row { grid-template-columns: 1fr; } }
.brand-footer { color: #fff; margin: 0 0 0.4rem; }
.site-footer .brand-mark { background: #fff; color: var(--green-deep); }
.footer-tag { color: #cdc7b6; margin: 0; }
.copy {
  text-align: center; color: #aea98e; font-size: 0.85rem;
  margin: 2rem 0 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08);
}

/* Mobile nav */
@media (max-width: 760px) {
  .nav-toggle { display: inline-block; }
  .nav-list {
    display: none; position: absolute; right: 1rem; top: 60px;
    background: var(--cream); border: 1px solid var(--rule); border-radius: var(--radius);
    padding: 0.8rem 1rem; flex-direction: column; gap: 0.6rem;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  }
  .nav-list.open { display: flex; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}
