/* ---------- Design tokens ---------- */
:root {
  --ink: #211f1a;
  --ink-soft: #4a463d;
  --paper: #faf7f1;
  --paper-soft: #f1ece1;
  --line: rgba(33, 31, 26, 0.14);
  --green: #33513c;
  --green-deep: #223629;
  --green-tint: #e7ede6;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Source Serif 4", Georgia, "Times New Roman", serif;
  --max-width: 1080px;
  --max-width-narrow: 720px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; margin: 0 0 0.6em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.wrap-narrow { max-width: var(--max-width-narrow); }

/* ---------- Status ribbon ---------- */
.status-ribbon {
  background: var(--green-deep);
  color: var(--paper);
  text-align: center;
  font-size: 0.85rem;
  padding: 0.55rem 1rem;
  letter-spacing: 0.01em;
}
.status-ribbon a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: saturate(160%) blur(6px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.95rem;
}
.nav-links a { text-decoration: none; }
.nav-links a:not(.nav-cta):hover { text-decoration: underline; text-underline-offset: 3px; }
.nav-cta {
  background: var(--green);
  color: var(--paper);
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.nav-cta:hover { background: var(--green-deep); }

.lang-switch {
  font-size: 0.82rem;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0.3rem 0.55rem;
  text-decoration: none !important;
}
.lang-switch:hover { color: var(--ink); border-color: var(--ink-soft); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 1.5rem 1rem;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.6rem 0; width: 100%; }
  .nav-cta { margin-top: 0.5rem; text-align: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,18,14,0.15) 0%, rgba(20,18,14,0.1) 40%, rgba(18,16,12,0.78) 100%);
}
.hero-content {
  position: relative;
  color: #fff;
  padding: 3rem 1.5rem 3.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  opacity: 0.85;
  margin-bottom: 0.75rem;
}
.hero h1 {
  font-size: clamp(2.8rem, 9vw, 4.5rem);
  margin: 0 0 0.5rem;
}
.hero .promise {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  max-width: 30ch;
  margin-bottom: 1.25rem;
}
.hero-status {
  font-size: 0.95rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  display: inline-block;
  padding: 0.5rem 0.9rem;
  border-radius: 3px;
  margin-bottom: 1.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.8rem 1.6rem;
  border-radius: 3px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover { background: var(--green-deep); }

/* ---------- Sections ---------- */
.section { padding: 4.5rem 0; }
.section-alt { background: var(--paper-soft); }
.section-green {
  background: var(--green-deep);
  color: var(--paper);
}
.section-green .lede-on-green { color: rgba(250,247,241,0.85); }
.section-green h2 { color: #fff; }

.section h2 {
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  margin-bottom: 1.25rem;
}
.center-heading { text-align: center; }
.lede {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 62ch;
}
.section-green .lede { color: rgba(250,247,241,0.85); }

/* simple entrance fade for the hero photograph only */
@media (prefers-reduced-motion: no-preference) {
  .hero-img { animation: hero-fade 1.1s ease both; }
}
@keyframes hero-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------- Cards (removals/addition) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.75rem;
}
.card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.card p { color: var(--ink-soft); margin: 0; font-size: 0.98rem; }
.card-accent {
  background: var(--green-tint);
  border-color: rgba(51, 81, 60, 0.25);
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .gallery-wide { grid-column: span 4; }
  .gallery-item:not(.gallery-wide) { grid-column: span 2; }
}
.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.caption-note {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-top: 1rem;
  text-align: center;
}

/* ---------- Who for / not for ---------- */
.who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) {
  .who-grid { grid-template-columns: 1fr 1fr; }
}
.who-grid h3 { font-size: 1.15rem; }
.check-list li, .cross-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.85rem;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.35em;
  width: 0.9rem; height: 0.9rem;
  border: 1.5px solid var(--green);
  border-radius: 50%;
}
.cross-list li::before {
  content: "";
  position: absolute;
  left: 0.1rem; top: 0.55em;
  width: 0.7rem; height: 1.5px;
  background: var(--ink-soft);
}

/* ---------- Honest note ---------- */
.honest-note {
  background: var(--paper-soft);
  border-left: 3px solid var(--green);
  border-radius: 4px;
  padding: 1.75rem 2rem;
}
.honest-note h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.honest-note p { color: var(--ink-soft); margin: 0; }

/* ---------- Disclosure / seasonal ---------- */
.disclosure-box {
  background: var(--paper-soft);
  border-radius: 6px;
  padding: 1.75rem 2rem;
  margin: 2rem 0;
}
.disclosure-box h3 { font-size: 1.1rem; }
.disclosure-box ul { list-style: none; }
.disclosure-box li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--ink-soft);
}
.disclosure-box li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--green);
}
.seasonal-note h3 { font-size: 1.1rem; }
.seasonal-note p { color: var(--ink-soft); max-width: 62ch; }

/* ---------- Video ---------- */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .video-grid { grid-template-columns: 1fr 1fr; max-width: 720px; margin-left: auto; margin-right: auto; }
}
.video-item { margin: 0; }
.video-item video {
  width: 100%;
  border-radius: 6px;
  background: #000;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}
.video-item figcaption {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 0.6rem;
  text-align: center;
}

/* ---------- Travel ---------- */
.travel-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.travel-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}
.travel-time { color: var(--ink-soft); white-space: nowrap; }
.travel-caveat { font-size: 0.88rem; color: var(--ink-soft); margin-top: 1rem; }

/* ---------- Questions ---------- */
.qa-heading { margin-top: 2.5rem; font-size: 1.25rem; }
.qa-intro { color: var(--ink-soft); font-size: 0.98rem; max-width: 62ch; }
.qa-list { display: flex; flex-direction: column; gap: 0.6rem; }
.qa-list details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.9rem 1.1rem;
}
.qa-list summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-display);
}
.qa-list details p { margin: 0.75rem 0 0; color: var(--ink-soft); }
.open-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.7rem;
  color: var(--ink-soft);
}
.open-list li::before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--green);
  font-family: var(--font-display);
  font-weight: 600;
}

.question-form-wrap { margin-top: 3rem; }
.question-form-wrap h3 { font-size: 1.2rem; }

/* ---------- Forms ---------- */
.site-form { margin-top: 1.5rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 560px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.field { margin-bottom: 1.1rem; }
.field label, .checkbox-field {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
  color: var(--ink-soft);
}
.section-green .field label { color: rgba(250,247,241,0.85); }
.req { color: #b5533f; }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
}
.section-green .field input,
.section-green .field select,
.section-green .field textarea {
  background: rgba(250,247,241,0.95);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--green);
  outline-offset: 1px;
}
.field input:invalid[data-touched="true"],
.field textarea:invalid[data-touched="true"] {
  border-color: #b5533f;
}
.error-msg {
  display: block;
  color: #b5533f;
  font-size: 0.85rem;
  margin-top: 0.3rem;
  min-height: 1.1em;
}
.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0.5rem 0 1.5rem;
  cursor: pointer;
}
.checkbox-field input { margin-top: 0.25rem; width: auto; }
.form-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  max-width: 55ch;
  margin-bottom: 1.25rem;
}
.section-green .form-note { color: rgba(250,247,241,0.7); }
.form-success {
  margin-top: 1.25rem;
  background: var(--green-tint);
  color: var(--green-deep);
  border: 1px solid rgba(51,81,60,0.3);
  border-radius: 4px;
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
}
.section-green .form-success {
  background: rgba(250,247,241,0.95);
}

/* honeypot: hidden from real users, present for bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(250,247,241,0.75);
  padding: 3rem 0;
  font-size: 0.9rem;
}
.footer-wrap p { margin: 0 0 0.5rem; }
.footer-wordmark {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.75rem;
}
.footer-copy { margin-top: 1.25rem; opacity: 0.6; font-size: 0.82rem; }
