* { margin: 0; padding: 0; box-sizing: border-box; }

html, body { height: 100%; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--forest-deep);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

img, svg { display: block; max-width: 100%; }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: 2px;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }

.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;
}

/* ── Return-to-heart bar — shared on every destination page ─── */

.return-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(7, 20, 14, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 169, 97, 0.18);
  color: var(--cream);
}
.return-bar .return-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--gold-light);
  transition: color .25s var(--ease-organic);
}
.return-bar .return-link:hover { color: var(--gold); }
.return-bar .return-link::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold) 0%, rgba(201,169,97,0) 70%);
}
.return-bar .return-wordmark {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: rgba(236, 231, 216, 0.7);
  text-transform: uppercase;
}

/* ── Destination page surface ─────────────────────────────────── */

.page {
  background: var(--cream);
  color: var(--text);
  min-height: 100vh;
}

.page-inner {
  max-width: var(--max-prose);
  margin: 0 auto;
  padding: 64px 24px 96px;
}

.page-eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 6px;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--forest);
  letter-spacing: -0.005em;
}

.page-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.page-lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--forest-mid);
  margin: 0 0 28px;
  padding: 20px 0;
  border-top: 1px solid rgba(13, 31, 23, 0.12);
  border-bottom: 1px solid rgba(13, 31, 23, 0.12);
  text-align: center;
}

.page p { margin: 0 0 1.1em; }
.page p strong { color: var(--forest); font-weight: 500; }

.page h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--forest);
  margin: 2em 0 0.6em;
}

.page-deeper {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-muted);
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px dashed rgba(13, 31, 23, 0.18);
  font-size: 0.95rem;
}

.page-footer {
  margin-top: 80px;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

/* CTA pill set inside a page */
.page-cta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  justify-content: center;
}
.page-cta a, .page-cta button {
  display: inline-block;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  padding: 12px 26px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  color: var(--forest);
  background: transparent;
  transition: background .25s var(--ease-organic), color .25s var(--ease-organic);
}
.page-cta a:hover, .page-cta button:hover {
  background: var(--forest);
  color: var(--cream);
}

.page-cta-centred { text-align: center; }

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
