
:root {
  --ivory: #F7F4EE;
  --stone: #EAE5DB;
  --ink: #23231F;
  --mist: #8B857A;
  --green-deep: #1a2b1c;
  --gold: #D3B574;
  --font-display: "Big Caslon FB", "Big Caslon", "Libre Caslon Display", "Libre Caslon Text", Georgia, serif;
  --font-body: "Jost", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --band: clamp(5rem, 12vw, 10rem);
  --gutter: clamp(1.25rem, 5vw, 4rem);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 1px solid var(--gold); outline-offset: 4px; }

.caps {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.serif { font-family: var(--font-display); font-weight: 400; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 1.6rem var(--gutter);
  color: #fff;
  transition: background 0.5s ease, color 0.5s ease, padding 0.5s ease, box-shadow 0.5s ease;
}
.nav__links { display: flex; gap: 2.5rem; }
.nav__links--right { justify-content: flex-end; }
.nav a.caps { position: relative; padding-bottom: 3px; }
.nav a.caps::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav a.caps:hover::after, .nav a.caps.here::after { transform: scaleX(1); }
.nav__brand {
  font-family: var(--font-display);
  font-size: 1.75rem; letter-spacing: 0.35em; text-indent: 0.35em;
}
.nav.scrolled {
  background: rgba(247, 244, 238, 0.96);
  color: var(--ink);
  padding-top: 1rem; padding-bottom: 1rem;
  box-shadow: 0 1px 0 rgba(35, 35, 31, 0.08);
}
.nav__toggle { display: none; }

/* ---------- Home hero ---------- */
.hero { position: relative; height: 100vh; min-height: 620px; overflow: hidden; background: var(--green-deep); }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 2.4s ease;
}
.hero__slide.on { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .hero__slide.on { animation: drift 14s ease-out forwards; }
  @keyframes drift { from { transform: scale(1); } to { transform: scale(1.06); } }
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(20, 24, 18, 0.38), rgba(20, 24, 18, 0.12) 40%, rgba(20, 24, 18, 0.42));
}
.hero__center {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: #fff; padding: 0 var(--gutter);
}
.hero__wordmark {
  font-family: var(--font-display);
  /* Libre Caslon Display ships only a 400 weight. The h1 default of 700 left the
     browser synthesising a fake bold — redrawing the glyph offset, which reads as
     stacked layers. Render the one real weight and forbid synthesis. */
  font-weight: 400;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  font-size: clamp(4rem, 11vw, 8.5rem);
  letter-spacing: 0.3em; text-indent: 0.3em;
  line-height: 1;
}
.hero__line { margin-top: 1.75rem; opacity: 0.92; }
.hero__caption {
  position: absolute; left: var(--gutter); bottom: 2.5rem; z-index: 2;
  color: #fff; opacity: 0.85;
  transition: opacity 1s ease;
}
.hero__caption.fading { opacity: 0; }
.hero__scrollcue {
  position: absolute; right: var(--gutter); bottom: 2.5rem; z-index: 2;
  color: #fff; opacity: 0.7; letter-spacing: 0.32em; text-transform: uppercase;
  font-size: 0.625rem; writing-mode: vertical-rl;
}

/* ---------- Page hero (interior pages) ---------- */
.phero {
  position: relative; height: 66vh; min-height: 440px;
  display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center; overflow: hidden;
}
.phero::after { content: ""; position: absolute; inset: 0; background: rgba(20, 24, 18, 0.36); }
.phero__text { position: relative; z-index: 2; text-align: center; color: #fff; padding: 0 var(--gutter); }
.phero__text .eyebrow { color: rgba(255, 255, 255, 0.8); }
.phero__text h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: 1.15; letter-spacing: 0.02em;
}

/* ---------- Quiet page head (journal, articles) ---------- */
.qhead { padding: calc(var(--band) + 4rem) var(--gutter) 0; text-align: center; }
.qhead h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem); line-height: 1.2;
  max-width: 820px; margin: 0 auto;
}

/* ---------- Reveal ---------- */
.rv { opacity: 0; transform: translateY(24px); transition: opacity 1.1s ease, transform 1.1s ease; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .hero__slide { transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Editorial ---------- */
.editorial { padding: var(--band) var(--gutter); text-align: center; }
.editorial--stone { background: var(--stone); }
.editorial__inner { max-width: 620px; margin: 0 auto; }
.eyebrow { color: var(--mist); display: block; margin-bottom: 2.25rem; }
.editorial h2, .statement h2, .h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.75rem, 3.6vw, 2.75rem);
  line-height: 1.3; letter-spacing: 0.01em;
}
.editorial p { margin-top: 1.75rem; color: rgba(35, 35, 31, 0.78); }
.textlink {
  display: inline-block; margin-top: 2.5rem; padding-bottom: 5px;
  border-bottom: 1px solid rgba(35, 35, 31, 0.35);
  transition: border-color 0.4s ease, color 0.4s ease;
}
.textlink:hover { border-color: var(--gold); color: var(--gold); }
.textlink--light { border-color: rgba(255, 255, 255, 0.4); }
.textlink--light:hover { border-color: var(--gold); }
.textlink--tight { margin-top: 1.25rem; font-size: 0.95rem; }

/* ---------- Membership modal (property pages) ---------- */
.mmodal {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
  padding: var(--gutter);
}
.mmodal.open { display: flex; }
.mmodal__backdrop {
  position: absolute; inset: 0; background: rgba(26, 43, 28, 0.55);
  backdrop-filter: blur(3px);
}
.mmodal__card {
  position: relative; width: 100%; max-width: 560px;
  max-height: 90vh; overflow-y: auto;
  background: var(--ivory); color: var(--ink);
  padding: clamp(2rem, 5vw, 3.25rem);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}
.mmodal__close {
  position: absolute; top: 1.1rem; right: 1.3rem;
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-body); font-size: 1.6rem; line-height: 1;
  color: var(--mist); transition: color 0.3s ease;
}
.mmodal__close:hover { color: var(--ink); }
.mmodal__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.1rem); line-height: 1.15;
  margin: 0.5rem 0 0.9rem;
}
.mmodal__sub {
  font-size: 0.95rem; line-height: 1.65; color: var(--mist);
  margin-bottom: 1.9rem;
}
.mmodal__sub strong { color: var(--ink); font-weight: 400; }
.mmodal__sub a { border-bottom: 1px solid rgba(35, 35, 31, 0.35); }
.mmodal__sub a:hover { border-color: var(--gold); color: var(--gold); }
.mmodal__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
@media (max-width: 520px) { .mmodal__row { grid-template-columns: 1fr; } }
.mmodal form input, .mmodal form textarea {
  width: 100%; margin-bottom: 0.9rem; padding: 0.85rem 0.2rem;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 300;
  color: var(--ink); background: transparent;
  border: 0; border-bottom: 1px solid rgba(35, 35, 31, 0.22);
  border-radius: 0; transition: border-color 0.3s ease;
}
.mmodal form input:focus, .mmodal form textarea:focus {
  outline: none; border-bottom-color: var(--gold);
}
.mmodal form textarea { resize: vertical; }
.mmodal form input::placeholder, .mmodal form textarea::placeholder { color: var(--mist); }
.mmodal__hp { position: absolute !important; left: -9999px !important; }
.mmodal__submit {
  margin-top: 1.1rem; padding: 0.95rem 2.2rem;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ivory); background: var(--green-deep);
  border: 0; cursor: pointer; transition: background 0.35s ease;
}
.mmodal__submit:hover { background: var(--ink); }
.mmodal__submit:disabled { opacity: 0.45; cursor: default; }
.mmodal__status {
  margin-top: 1rem; font-size: 0.9rem; line-height: 1.55; color: var(--mist);
  min-height: 1.2em;
}
.mband__btn {
  display: inline-block; margin-top: 2.5rem; margin-right: 1.75rem;
  padding: 0.95rem 2.2rem;
  font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--green-deep); background: var(--ivory);
  border: 0; cursor: pointer; transition: background 0.35s ease, color 0.35s ease;
}
.mband__btn:hover { background: var(--gold); color: var(--ivory); }

/* ---------- Destination scroller (home) ---------- */
.dest { padding: var(--band) 0; }
.dest__head { text-align: center; padding: 0 var(--gutter); margin-bottom: 4rem; }
.dest__track {
  display: flex; gap: clamp(1rem, 2.5vw, 2rem);
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 var(--gutter) 1.5rem;
  scrollbar-width: none;
}
.dest__track::-webkit-scrollbar { display: none; }
.card { flex: 0 0 clamp(240px, 26vw, 340px); scroll-snap-align: start; }
.card__frame { overflow: hidden; aspect-ratio: 3 / 4; background: var(--stone); }
.card__frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card:hover .card__frame img { transform: scale(1.045); }
.card__name { font-family: var(--font-display); font-size: 1.1875rem; margin-top: 1.4rem; line-height: 1.35; }
.card__place { color: var(--mist); margin-top: 0.5rem; display: block; }
.dest__all { text-align: center; margin-top: 3rem; }

/* ---------- Destinations page grid ---------- */
.region { padding: 0 var(--gutter) var(--band); }
.region__head { text-align: center; margin-bottom: 4rem; }
.region__head .caps { color: var(--mist); }
.region__rule { width: 40px; height: 1px; background: rgba(35, 35, 31, 0.25); margin: 1.4rem auto 0; }
.dgrid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 2.5vw, 2rem);
  max-width: 1240px; margin: 0 auto;
}
.dgrid .card { flex: none; }
@media (max-width: 980px) { .dgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .dgrid { grid-template-columns: 1fr; max-width: 420px; } }

/* ---------- Full-bleed statement bands ---------- */
.statement { position: relative; min-height: 82vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.statement--short { min-height: 62vh; }
.statement__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.statement::after { content: ""; position: absolute; inset: 0; background: rgba(20, 24, 18, 0.38); }
.statement__text { position: relative; z-index: 2; text-align: center; color: #fff; padding: var(--band) var(--gutter); max-width: 760px; }
.statement .eyebrow { color: rgba(255, 255, 255, 0.75); }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 82vh; }
.split--flip .split__img { order: 2; }
.split__img { background-size: cover; background-position: center; min-height: 380px; }
.split__body {
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--band) clamp(2rem, 7vw, 6.5rem);
}
.split__body h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.65rem, 3vw, 2.4rem); line-height: 1.32;
}
.split__body p { margin-top: 1.6rem; color: rgba(35, 35, 31, 0.78); max-width: 46ch; }

/* ---------- Pillars / hairline grids ---------- */
.pillars { background: var(--stone); padding: var(--band) var(--gutter); }
.pillars--ivory { background: var(--ivory); }
.pillars__head { text-align: center; max-width: 620px; margin: 0 auto 5rem; }
.pillars__grid { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1100px; margin: 0 auto; }
.pillars__grid--rows { row-gap: 4.5rem; }
.pillar { padding: 0 clamp(1.5rem, 3.5vw, 3.5rem); border-left: 1px solid rgba(35, 35, 31, 0.14); }
.pillar:first-child, .pillar.norule { border-left: 0; }
.pillar h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.35rem; margin-bottom: 1.1rem; }
.pillar p { font-size: 0.975rem; color: rgba(35, 35, 31, 0.72); }
.pillars__cta { text-align: center; margin-top: 5rem; }
@media (max-width: 860px) {
  .pillars__grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .pillars__grid--rows { row-gap: 3.5rem; }
  .pillar, .pillar:nth-child(4) { border-left: 0; padding: 0; text-align: center; }
}
@media (min-width: 861px) { .pillars__grid--rows .pillar:nth-child(4) { border-left: 0; } }

/* ---------- Experiences ---------- */
.exps { padding: var(--band) var(--gutter); }
.exps__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(2.5rem, 4vw, 4rem) clamp(1rem, 2.5vw, 2rem);
  max-width: 1240px; margin: 0 auto;
}
.exp { display: block; }
.exp__frame { overflow: hidden; aspect-ratio: 4 / 3; background: var(--stone); }
.exp__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.exp:hover .exp__frame img { transform: scale(1.045); }
.exp__meta { color: var(--mist); margin-top: 1.4rem; display: block; }
.exp__title { font-family: var(--font-display); font-size: 1.35rem; margin-top: 0.7rem; line-height: 1.35; }
.exp__desc { font-size: 0.95rem; color: rgba(35, 35, 31, 0.72); margin-top: 0.7rem; }
@media (max-width: 980px) { .exps__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .exps__grid { grid-template-columns: 1fr; } }

/* ---------- Property pages ---------- */
.gallery { padding: 0 0 var(--band); }
.gcard { flex: 0 0 clamp(300px, 44vw, 580px); scroll-snap-align: start; overflow: hidden; }
.gcard img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.gcard:hover img { transform: scale(1.035); }
.courses { list-style: none; margin-top: 2.25rem; }
.courses li { padding: 1.1rem 0; border-bottom: 1px solid rgba(35, 35, 31, 0.12); display: flex; flex-direction: column; gap: 0.35rem; }
.courses li:last-child { border-bottom: 0; }
.courses .serif { font-size: 1.15rem; line-height: 1.35; }
.courses .caps, .courses li > span:last-child:not(.serif) { color: var(--mist); font-size: 0.75rem; }
.courses li > span:last-child:not(.serif):not(.caps) { font-size: 0.9rem; line-height: 1.55; }
.fcard h3 { font-size: 1.25rem; margin: 0 0 0.8rem; font-weight: 400; }
.fcard p { font-size: 0.95rem; color: rgba(35, 35, 31, 0.72); }
.fcard__frame { overflow: hidden; aspect-ratio: 4 / 3; margin-bottom: 1.5rem; background: var(--stone); }
.fcard__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.fcard:hover .fcard__frame img { transform: scale(1.045); }
.pillars__grid--two { grid-template-columns: 1fr 1fr; max-width: 980px; }
@media (max-width: 860px) { .pillars__grid--two { grid-template-columns: 1fr; } }
.where { padding: var(--band) var(--gutter); }
.where__inner { max-width: 680px; margin: 0 auto; }
.where .eyebrow { text-align: center; }

/* ---------- Pricing ---------- */
.plans { padding: var(--band) var(--gutter); }
.plans__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 860px; margin: 0 auto; }
.plan { border: 1px solid rgba(35, 35, 31, 0.16); padding: 3.5rem 2.75rem; text-align: center; background: var(--ivory); }
.plan--annual { border-color: rgba(211, 181, 116, 0.75); }
.plan .caps { color: var(--mist); }
.plan__price { font-family: var(--font-display); font-size: 3rem; margin-top: 1.6rem; line-height: 1; }
.plan__term { color: var(--mist); font-size: 0.9rem; margin-top: 0.6rem; }
.plan__note { font-size: 0.95rem; color: rgba(35, 35, 31, 0.72); margin-top: 1.6rem; }
.plans__fine { text-align: center; color: var(--mist); font-size: 0.875rem; max-width: 560px; margin: 3rem auto 0; }
@media (max-width: 760px) { .plans__grid { grid-template-columns: 1fr; max-width: 440px; } }

/* ---------- Journal ---------- */
.jlist { max-width: 1060px; margin: 0 auto; padding: var(--band) var(--gutter); }
.jrow {
  display: grid; grid-template-columns: 5fr 6fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center; padding: 4.5rem 0;
  border-top: 1px solid rgba(35, 35, 31, 0.12);
}
.jrow:first-child { border-top: 0; padding-top: 0; }
.jrow__frame { overflow: hidden; aspect-ratio: 4 / 3; background: var(--stone); }
.jrow__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.jrow:hover .jrow__frame img { transform: scale(1.045); }
.jrow__date { color: var(--mist); display: block; }
.jrow__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1.3; margin-top: 1rem; }
.jrow__excerpt { color: rgba(35, 35, 31, 0.72); font-size: 0.975rem; margin-top: 1rem; }
@media (max-width: 760px) { .jrow { grid-template-columns: 1fr; gap: 1.6rem; padding: 3rem 0; } }

/* ---------- Article ---------- */
.article-hero { margin-top: 5.5rem; }
.article-hero img { width: 100%; height: 58vh; min-height: 360px; object-fit: cover; }
.article { max-width: 680px; margin: 0 auto; padding: clamp(3.5rem, 7vw, 5.5rem) var(--gutter) var(--band); }
.article > p:first-of-type::first-line { letter-spacing: 0.01em; }
.article p { margin: 1.6rem 0; color: rgba(35, 35, 31, 0.82); }
.article h2 { font-family: var(--font-display); font-weight: 400; font-size: 1.75rem; line-height: 1.35; margin: 3.2rem 0 0.4rem; }
.article h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.35rem; line-height: 1.4; margin: 2.6rem 0 0.2rem; }
.article ul, .article ol { margin: 1.6rem 0 1.6rem 1.4rem; color: rgba(35, 35, 31, 0.82); }
.article li { margin: 0.5rem 0; }
.article a { border-bottom: 1px solid rgba(35, 35, 31, 0.3); transition: border-color 0.3s ease, color 0.3s ease; }
.article a:hover { color: var(--gold); border-color: var(--gold); }
.article blockquote {
  font-family: var(--font-display); font-size: 1.35rem; line-height: 1.5;
  border-left: 1px solid var(--gold); padding-left: 1.75rem; margin: 2.5rem 0;
}
.article strong { font-weight: 500; }
.article table { border-collapse: collapse; margin: 2rem 0; width: 100%; font-size: 0.9rem; }
.article th, .article td { border-bottom: 1px solid rgba(35, 35, 31, 0.15); padding: 0.7rem 0.8rem; text-align: left; }
.article-nav {
  max-width: 1060px; margin: 0 auto; padding: 0 var(--gutter) var(--band);
  display: flex; justify-content: space-between; gap: 2rem;
}
.article-nav a { max-width: 44%; }
.article-nav .caps { color: var(--mist); display: block; margin-bottom: 0.8rem; }
.article-nav .serif { font-size: 1.1rem; line-height: 1.4; }
.article-nav a:hover .serif { color: var(--gold); }

/* ---------- Apply form ---------- */
.form { max-width: 640px; margin: 0 auto; padding: var(--band) var(--gutter); }
.form h2 { font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; margin: 3.5rem 0 2rem; }
.form h2:first-child { margin-top: 0; }
.field { margin-bottom: 2.25rem; }
.field label { display: block; margin-bottom: 0.7rem; color: var(--mist); }
.field input, .field textarea, .field select {
  width: 100%; background: transparent; border: 0;
  border-bottom: 1px solid rgba(35, 35, 31, 0.3);
  padding: 0.6rem 0; font-family: var(--font-body); font-weight: 300;
  font-size: 1.0625rem; color: var(--ink); border-radius: 0;
  transition: border-color 0.3s ease;
}
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-bottom-color: var(--gold); }
.field input::placeholder, .field textarea::placeholder { color: rgba(139, 133, 122, 0.55); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; gap: 0; } }
.form__submit {
  background: var(--green-deep); color: #fff; border: 0; cursor: pointer;
  font-family: var(--font-body); font-size: 0.6875rem; font-weight: 400;
  letter-spacing: 0.32em; text-transform: uppercase;
  padding: 1.3rem 3.5rem; margin-top: 1.5rem;
  transition: background 0.4s ease;
}
.form__submit:hover { background: #2f4a31; }
.form__fine { font-size: 0.8rem; color: var(--mist); margin-top: 1.5rem; }
.form__fine a { border-bottom: 1px solid rgba(35, 35, 31, 0.25); }
.form__status { margin-top: 1.5rem; font-size: 0.95rem; }
.form__status.err { color: #8c3b2e; }

/* ---------- Footer ---------- */
.footer { background: var(--green-deep); color: rgba(255, 255, 255, 0.82); padding: var(--band) var(--gutter) 3rem; }
.footer__brand {
  font-family: var(--font-display); color: #fff;
  font-size: 2.25rem; letter-spacing: 0.35em; text-indent: 0.35em;
  text-align: center; margin-bottom: 4rem;
}
.footer__cols {
  display: grid; grid-template-columns: repeat(3, auto); gap: clamp(2rem, 8vw, 8rem);
  justify-content: center; margin-bottom: 5rem;
}
.footer__cols .caps { color: rgba(255, 255, 255, 0.45); display: block; margin-bottom: 1.5rem; }
.footer__cols ul { list-style: none; }
.footer__cols li { margin-bottom: 0.8rem; font-size: 0.95rem; }
.footer__cols a:hover { color: var(--gold); }
.footer__base {
  text-align: center; font-size: 0.8rem; color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 2.5rem;
}
.footer__base a:hover { color: var(--gold); }

/* ---------- Mobile ---------- */
@media (max-width: 860px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .nav__links--left { display: none; }
  .nav__brand { grid-column: 2; text-align: center; font-size: 1.4rem; }
  .nav__toggle {
    display: block; grid-column: 1; background: none; border: 0; color: inherit;
    font: inherit; cursor: pointer; letter-spacing: 0.32em; text-transform: uppercase; font-size: 0.6875rem;
  }
  .nav__links--right { grid-column: 3; }
  .nav__links--right a:not(:last-child) { display: none; }
  .hero__scrollcue { display: none; }
  .menu {
    position: fixed; inset: 0; z-index: 50; background: var(--green-deep); color: #fff;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.2rem;
    opacity: 0; pointer-events: none; transition: opacity 0.45s ease;
  }
  .menu.open { opacity: 1; pointer-events: auto; }
  .menu a { font-family: var(--font-display); font-size: 1.6rem; }
  .menu__close { position: absolute; top: 1.7rem; right: var(--gutter); background: none; border: 0; color: #fff; font: inherit; letter-spacing: 0.32em; text-transform: uppercase; font-size: 0.6875rem; cursor: pointer; }
  .split, .split--flip { grid-template-columns: 1fr; }
  .split__img, .split--flip .split__img { order: -1; min-height: 55vw; }
  .footer__cols { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
}
@media (min-width: 861px) { .menu { display: none; } }
