:root {
  --bg: #f7f2e9;
  --paper: #fbf8f2;
  --ink: #1f1b16;
  --muted: #6b6255;
  --line: rgba(31, 27, 22, 0.12);
  --gold: #9f7a36;
  --gold-soft: #c1a56a;
  --dark: #1a1a1a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
}

a { color: var(--gold); text-decoration: none; }
a:hover { opacity: 0.86; }
img { max-width: 100%; display: block; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.narrow { width: min(820px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 248, 242, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.inner-header { position: relative; }
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand, .footer-brand {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink);
}
.brand { font-size: 1rem; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.site-nav a {
  color: var(--ink);
  font-size: 0.95rem;
}
.site-nav a.active { color: var(--gold); }
.nav-cta {
  border: 1px solid var(--gold);
  padding: 10px 14px;
  border-radius: 999px;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.6rem;
  color: var(--ink);
}

.hero {
  min-height: 84vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(24,18,11,0.48), rgba(24,18,11,0.38)),
    radial-gradient(circle at top right, rgba(193,165,106,0.35), transparent 35%),
    linear-gradient(120deg, #2c2419 0%, #3d3427 25%, #74624b 100%);
  color: #fffaf1;
}
.hero-inner { padding: 90px 0; max-width: 820px; }
.page-hero {
  padding: 96px 0 56px;
  background: linear-gradient(180deg, rgba(159,122,54,0.09), transparent);
}
.eyebrow {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 600;
}
.eyebrow.light { color: #d9c399; }
h1, h2, h3 {
  font-family: 'Cinzel', serif;
  line-height: 1.2;
  margin: 0 0 18px;
  font-weight: 600;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.75rem); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }
.lead {
  font-size: 1.1rem;
  max-width: 760px;
  color: inherit;
}
.muted { color: var(--muted); font-style: italic; }
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  border: 1px solid var(--gold);
}
.button-secondary {
  background: transparent;
  color: inherit;
  border-color: rgba(255,255,255,0.55);
}
.page-hero .button-secondary,
.feature-panel .button-secondary {
  border-color: var(--gold);
  color: var(--gold);
}
.section { padding: 82px 0; }
.tinted { background: #f2ece1; }
.dark-band {
  background: #221e18;
  color: #f7f0e3;
}
.contact-strip { border-top: 1px solid var(--line); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}
.aligned-centre { align-items: center; }
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 28px;
}
.card, .mini-card, .journey-item {
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(27, 22, 17, 0.04);
}
.feature-panel {
  background: linear-gradient(135deg, rgba(159,122,54,0.12), rgba(255,255,255,0.6));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 48px;
}
.prose p + p { margin-top: 1rem; }
.journey-list {
  display: grid;
  gap: 24px;
}
.styled-list {
  margin: 0;
  padding-left: 18px;
}
.text-link.light { color: #f0d7a6; }
.site-footer {
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
  background: #f5efe6;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .two-col,
  .three-col,
  .card-grid {
    grid-template-columns: 1fr;
  }
  .site-nav {
    position: absolute;
    right: 20px;
    top: 78px;
    width: min(320px, calc(100% - 40px));
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 16px 50px rgba(0,0,0,0.08);
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .feature-panel { padding: 32px; }
}

@media (max-width: 640px) {
  .container, .narrow { width: min(100% - 28px, 1120px); }
  .section { padding: 62px 0; }
  .hero { min-height: 72vh; }
  .hero-inner { padding: 72px 0; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
}
