:root {
  --color-cream: #f5f2ea;
  --color-sand: #f2d7a0;
  --color-gold: #e6a43a;
  --color-amber: #d97a2c;
  --color-rust: #c45c24;
  --color-deep: #8e2f1b;
  --color-night: #140c09;
  --color-night-soft: #1e120e;
  --color-night-mid: #261711;
  --color-night-panel: rgba(29, 17, 12, 0.82);
  --color-line: rgba(242, 215, 160, 0.16);
  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.2);
  --shadow-card: 0 14px 30px rgba(0, 0, 0, 0.18);
  --radius-lg: 26px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  color: var(--color-cream);
  background: var(--color-night);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max-width), calc(100vw - 2rem)); margin: 0 auto; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  transition: background 0.22s ease, border-color 0.22s ease, backdrop-filter 0.22s ease;
}
.site-header--transparent {
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
}
.site-header--solid {
  background: rgba(20, 12, 9, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}
.site-header-inner {
  min-height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.15rem;
}
.brand { display: inline-flex; align-items: center; }
.brand-overlay { gap: 0.75rem; }
.brand-mark-stack {
  position: relative;
  width: 118px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.brand-mark-stack--large {
  width: 132px;
  height: 76px;
}
.brand-mark-stack--tight {
  width: 146px;
  height: 82px;
}
.brand-mark {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.32));
}
.brand-mark--large {
  width: 72px;
  height: 72px;
}
.brand-mark--zoom {
  width: 103px;
  height: 103px;
  transform: translate(-32px, 0px) scale(1);
  transform-origin: center center;
}
.brand-overlay-text,
.brand-overlay-sub {
  position: absolute;
  color: var(--color-cream);
  text-align: right;
  text-shadow:
    1px 0 0 rgba(166, 118, 38, 0.9),
    -1px 0 0 rgba(166, 118, 38, 0.9),
    0 1px 0 rgba(166, 118, 38, 0.9),
    0 -1px 0 rgba(166, 118, 38, 0.9),
    1px 1px 0 rgba(166, 118, 38, 0.68),
    -1px 1px 0 rgba(166, 118, 38, 0.68),
    1px -1px 0 rgba(166, 118, 38, 0.68),
    -1px -1px 0 rgba(166, 118, 38, 0.68);
  white-space: nowrap;
  width: 170px;
  display: block;
  right: 0;
}
.brand-overlay-text--script {
  top: 26px;
  left: auto;
  right: 46px;
  transform: none;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.08rem;
  line-height: 1;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.01em;
}
.brand-overlay-text--tight {
  top: 26px;
}
.brand-overlay-sub--small {
  top: 43px;
  left: auto;
  right: 54px;
  bottom: auto;
  transform: none;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.08rem;
  line-height: 1;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.01em;
}
.brand-overlay-sub--tight {
  top: 43px;
}
.brand-name {
  font-family: "Brush Script MT", "Segoe Script", "Snell Roundhand", cursive;
  font-size: 1.9rem;
  color: var(--color-cream);
}
.brand-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(245, 242, 234, 0.72);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.05rem;
}
.site-nav a {
  font-size: 0.92rem;
  color: rgba(245, 242, 234, 0.9);
}
.site-nav a:hover { color: var(--color-sand); }
.nav-cta {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #f1cb85 0%, #d99534 100%);
  color: #26160f !important;
  font-weight: 700;
}
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 1px solid rgba(242, 215, 160, 0.22);
  background: rgba(255,255,255,0.04);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--color-cream);
  border-radius: 999px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--color-night);
}
.page-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 6, 5, 0.08) 0%, rgba(10, 6, 5, 0.24) 42%, rgba(10, 6, 5, 0.54) 72%, rgba(10, 6, 5, 0.82) 100%);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 6rem 0 5.3rem;
}
.reference-hero--tall {
  min-height: 92vh;
}
.reference-hero-inner {
  max-width: 920px;
}
.reference-hero-inner--lower {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-bottom: 3.4rem;
  padding-top: 22rem;
}
.hero-copy-block {
  max-width: 820px;
}
.hero-bottom-mark {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 0.8rem;
  padding-right: clamp(1rem, 7vw, 8rem);
}
.hero-bottom-mark-image {
  width: clamp(340px, 42vw, 620px);
  height: auto;
  opacity: 0.98;
  filter: brightness(0) saturate(100%) invert(63%) sepia(35%) saturate(671%) hue-rotate(351deg) brightness(89%) contrast(92%) drop-shadow(0 10px 24px rgba(0, 0, 0, 0.3));
}
.eyebrow {
  margin: 0 0 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--color-sand);
}
.hero-brand-block {
  margin: 0 0 2rem;
}
.hero-brand-line {
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  line-height: 0.94;
  color: #f0cf91;
}
.hero-brand-line--primary {
  font-size: clamp(2.2rem, 6vw, 5rem);
  letter-spacing: 0.12em;
}
.hero-brand-line--secondary {
  margin-top: 0.35rem;
  font-size: clamp(1.2rem, 3.2vw, 2.35rem);
  letter-spacing: 0.18em;
}
h1 {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3.1vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff8ef;
}
.hero-subtitle,
.section-intro,
.copy-large {
  max-width: 720px;
  font-size: 1rem;
  color: rgba(255, 246, 236, 0.84);
}
.hero-subtitle--smaller {
  max-width: 500px;
  font-size: 0.84rem;
  color: rgba(255, 246, 236, 0.74);
}
.copy-large--light { color: rgba(255, 246, 236, 0.8); }
.hero-actions,
.button-row {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.hero-actions--below {
  margin: 0 0 1.4rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.92rem 1.28rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.14s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #2b190f;
  background: linear-gradient(180deg, #f2d59e 0%, #dd9f3f 55%, #c96d2e 100%);
  box-shadow: 0 12px 28px rgba(196, 92, 36, 0.25);
}
.btn-secondary {
  color: var(--color-cream);
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}
.text-link {
  color: var(--color-sand);
  font-weight: 700;
}
.text-link:hover { color: #fff2cf; }
.text-link--light { color: var(--color-sand); }

.page-section {
  padding: 4.8rem 0;
  background: var(--color-night);
}
.page-section--dark {
  background: linear-gradient(180deg, #160d0a 0%, #1a100d 100%);
}
.page-section--dark-alt {
  background: linear-gradient(180deg, #1d120e 0%, #221511 100%);
}
.reference-band { border-top: 1px solid rgba(242, 215, 160, 0.08); }
.section-header { margin-bottom: 1.8rem; }
.section-header.wide { max-width: 940px; }
.section-kicker {
  margin: 0 0 0.45rem;
  color: #d49a43;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
}
h2 {
  margin: 0 0 0.75rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.08;
  color: #fff3e2;
}
h3 {
  margin: 0 0 0.65rem;
  color: #fff3e2;
  font-size: 1.18rem;
}
p { margin: 0 0 1rem; }

.grid-2,
.grid-3,
.feature-grid,
.destination-grid {
  display: grid;
  gap: 1.25rem;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3, .destination-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.uneven-grid { grid-template-columns: 1.25fr 0.75fr; }
.card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(242, 215, 160, 0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}
.card--dark {
  background: rgba(255,255,255,0.05);
}
.card--dark-soft {
  background: rgba(67, 34, 22, 0.9);
}
.quote-card {
  background: linear-gradient(180deg, rgba(82, 42, 24, 0.96), rgba(31, 18, 12, 0.98));
  color: #fff4e8;
  border-left: 4px solid var(--color-gold);
}
.quote-card cite {
  display: block;
  margin-top: 0.9rem;
  color: rgba(255, 240, 222, 0.76);
  font-style: normal;
}
.check-list,
.bullet-list {
  margin: 0;
  padding-left: 1.15rem;
}
.check-list li,
.bullet-list li {
  margin-bottom: 0.72rem;
  color: rgba(255, 243, 226, 0.86);
}
.check-list--light li { color: rgba(255, 243, 226, 0.88); }
.feature-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}
.feature-grid-five {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.mini-feature {
  border-radius: 16px;
  padding: 1.2rem;
  border: 1px solid rgba(242, 215, 160, 0.1);
  box-shadow: var(--shadow-card);
}
.mini-feature--dark {
  background: rgba(255,255,255,0.05);
}
.mini-feature span {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-weight: 800;
  color: var(--color-gold);
}
.benefit-stack {
  display: grid;
  gap: 0.8rem;
}
.benefit-line {
  font-size: 1.14rem;
  font-weight: 700;
}
.benefit-stack--light .benefit-line {
  color: rgba(255, 243, 226, 0.92);
}
.next-steps-wrap { text-align: left; }
.next-steps-heading {
  margin: 0 0 1.1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #d49a43;
}
.destination-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(242, 215, 160, 0.1);
  box-shadow: var(--shadow-card);
}
.destination-card--dark {
  background: rgba(255,255,255,0.05);
}
.destination-image {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}
.destination-card h3,
.destination-card .text-link {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}
.destination-card h3 { padding-top: 1rem; }
.destination-card .text-link { display: inline-block; padding-bottom: 1.2rem; }
.feature-media,
.portrait-frame {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.feature-media img,
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 1rem;
}
.testimonial-photo {
  width: 88px;
  height: 88px;
  border-radius: 999px;
  object-fit: cover;
}
.resource-link-list { display: grid; gap: 1rem; }
.card--quest-resource {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  background: linear-gradient(180deg, rgba(22, 28, 20, 0.9), rgba(33, 20, 14, 0.92));
  border-color: rgba(242, 215, 160, 0.18);
}
.quest-resource-media {
  position: relative;
  min-height: 220px;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(239, 197, 120, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(17, 28, 21, 0.94), rgba(24, 17, 13, 0.94));
  border: 1px solid rgba(242, 215, 160, 0.14);
}
.quest-resource-media img {
  width: min(76%, 200px);
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.28));
}
.quest-resource-glow {
  position: absolute;
  inset: 18% 16%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(239, 197, 120, 0.16), transparent 64%);
  filter: blur(18px);
}
.quest-resource-copy p {
  max-width: 62ch;
}
.form-shell { display: grid; gap: 1rem; }
.field { display: grid; gap: 0.45rem; }
.field label { font-weight: 700; color: var(--color-cream); }
.field input,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(242, 215, 160, 0.14);
  background: rgba(255,255,255,0.06);
  color: var(--color-cream);
  font: inherit;
}
.field textarea { min-height: 180px; resize: vertical; }
.placeholder-note { color: rgba(255,243,226,0.66); font-size: 0.93rem; }
.cta-panel {
  padding: 2rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(242, 215, 160, 0.16), rgba(217, 122, 44, 0.12));
  border: 1px solid rgba(242, 215, 160, 0.1);
}
.site-footer {
  background: #130b08;
  color: var(--color-cream);
  padding: 2.3rem 0 2.8rem;
}
.site-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-footer nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-footer-bottom {
  padding-top: 1.1rem;
  color: rgba(245,242,234,0.75);
  font-size: 0.95rem;
}
.footer-wordmark { color: var(--color-cream); }

@media (max-width: 920px) {
  .site-nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(20, 12, 9, 0.98);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: 0 16px 40px rgba(0,0,0,0.28);
  }
  .site-nav.is-open { display: flex; }
  .nav-toggle { display: inline-flex; }
  .grid-3,
  .destination-grid,
  .feature-grid-five,
  .feature-split,
  .uneven-grid,
  .grid-2,
  .site-footer-top,
  .card--quest-resource {
    grid-template-columns: 1fr;
  }
  .site-footer-top {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .site-header-inner {
    min-height: 90px;
  }
  .brand-mark-stack--large,
  .brand-mark-stack--tight {
    width: 132px;
    height: 74px;
  }
  .brand-mark--large,
  .brand-mark--zoom {
    width: 86px;
    height: 86px;
  }
  .brand-overlay-text,
  .brand-overlay-sub {
    text-shadow:
      1px 0 0 rgba(72, 41, 22, 0.98),
      -1px 0 0 rgba(72, 41, 22, 0.98),
      0 1px 0 rgba(72, 41, 22, 0.98),
      0 -1px 0 rgba(72, 41, 22, 0.98),
      1px 1px 0 rgba(72, 41, 22, 0.88),
      -1px 1px 0 rgba(72, 41, 22, 0.88),
      1px -1px 0 rgba(72, 41, 22, 0.88),
      -1px -1px 0 rgba(72, 41, 22, 0.88),
      2px 0 0 rgba(72, 41, 22, 0.58),
      -2px 0 0 rgba(72, 41, 22, 0.58),
      0 2px 0 rgba(72, 41, 22, 0.58),
      0 -2px 0 rgba(72, 41, 22, 0.58);
  }
  .brand-overlay-text--script {
    left: auto;
    right: 2px;
    top: 28px;
    transform: none;
    font-size: 1.08rem;
    line-height: 1;
    font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.01em;
  }
  .brand-overlay-sub--small {
    display: block;
    left: auto;
    right: 0px;
    top: 43px;
    transform: none;
    font-size: 1.08rem;
    line-height: 1;
    font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.01em;
  }
  .reference-hero--tall,
  .reference-hero-inner--lower {
    min-height: 100svh;
  }
  .page-hero-inner {
    padding: 5rem 0 3rem;
  }
  .reference-hero-inner--lower {
    align-items: flex-start;
    padding-top: 17.8rem;
    padding-bottom: 1.8rem;
  }
  .hero-bottom-mark {
    margin-top: 0.75rem;
    justify-content: flex-end;
    padding-right: 0.5rem;
  }
  .hero-bottom-mark-image {
    width: clamp(200px, 56vw, 320px);
  }
  .hero-copy-block {
    max-width: 100%;
  }
  .hero-brand-block {
    margin: 0 0 1.3rem;
  }
  .hero-brand-line--primary {
    font-size: clamp(2.28rem, 10.8vw, 3.08rem);
    line-height: 0.98;
  }
  .hero-brand-line--secondary {
    font-size: clamp(1.42rem, 6.5vw, 1.9rem);
    line-height: 1.02;
    margin-top: 0.2rem;
  }
  h1 {
    font-size: clamp(0.98rem, 4.2vw, 1.22rem);
    line-height: 1.24;
    max-width: 92%;
  }
  .hero-subtitle--smaller {
    font-size: 0.92rem;
    max-width: 94%;
  }
  .btn,
  .nav-cta {
    width: 100%;
  }
}


.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(1.6rem, 3vw, 3rem);
  align-items: end;
}
.hero-card {
  background: rgba(14, 16, 15, 0.52);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 1.6rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}
.hero-card-title {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  color: rgba(242, 215, 160, 0.86);
  margin-bottom: 0.8rem;
}
.mission-hero .eyebrow,
.mission-hero h1,
.mission-hero .hero-subtitle {
  color: #8f6325;
}
.mission-hero h1 {
  color: #7a5220;
}
.mission-hero .hero-subtitle {
  color: rgba(91, 60, 22, 0.92);
}
.section-atmosphere {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section-atmosphere > .container {
  position: relative;
  z-index: 1;
}
.section-atmosphere::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.3s ease;
  z-index: 0;
}
.section-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 8, 7, 0.86) 0%, rgba(10, 8, 7, 0.78) 100%);
  z-index: 0;
}
.section-home-2::before,
.section-home-4::before,
.section-work-3::before,
.section-about-3::before,
.section-story-3::before,
.section-testimonials-3::before,
.section-resources-2::before,
.section-faq-1::before,
.section-contact-1::before {
  opacity: 1;
}
.section-home-2::before,
.section-story-3::before {
  background-image: linear-gradient(180deg, rgba(13, 17, 14, 0.18), rgba(13, 17, 14, 0.28)), url("assets/backgrounds/forest-light-1.jpg");
}
.section-home-4::before,
.section-about-3::before,
.section-resources-2::before {
  background-image: linear-gradient(180deg, rgba(11, 10, 8, 0.26), rgba(11, 10, 8, 0.3)), url("assets/backgrounds/redwood-light.jpg");
}
.section-work-3::before,
.section-testimonials-3::before {
  background-image: linear-gradient(180deg, rgba(12, 18, 12, 0.2), rgba(12, 18, 12, 0.28)), url("assets/backgrounds/forest-light-2.jpg");
}
.section-faq-1::before {
  background-image: linear-gradient(180deg, rgba(10, 14, 11, 0.18), rgba(10, 14, 11, 0.2)), url("assets/backgrounds/leaves-dark-1.jpg");
}
.section-contact-1::before {
  background-image: linear-gradient(180deg, rgba(10, 12, 11, 0.18), rgba(10, 12, 11, 0.2)), url("assets/backgrounds/forest-light-3.jpg");
}
.section-home-2::after,
.section-story-3::after {
  background: linear-gradient(180deg, rgba(10, 9, 8, 0.78) 0%, rgba(10, 9, 8, 0.66) 45%, rgba(10, 9, 8, 0.84) 100%);
}
.section-home-4::after,
.section-about-3::after,
.section-resources-2::after {
  background: linear-gradient(180deg, rgba(9, 8, 7, 0.84) 0%, rgba(9, 8, 7, 0.72) 44%, rgba(9, 8, 7, 0.88) 100%);
}
.section-work-3::after,
.section-testimonials-3::after {
  background: linear-gradient(180deg, rgba(9, 12, 9, 0.76) 0%, rgba(9, 12, 9, 0.68) 44%, rgba(9, 12, 9, 0.84) 100%);
}
.section-faq-1::after,
.section-contact-1::after {
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.78) 0%, rgba(8, 8, 8, 0.74) 100%);
}
.section-home-3,
.section-work-2,
.section-story-2,
.section-testimonials-1,
.section-contact-2 {
  background: linear-gradient(180deg, #1a1310 0%, #16100d 100%);
}
.section-home-5,
.section-about-2,
.section-about-4,
.section-faq-2,
.section-resources-1 {
  background: linear-gradient(180deg, #141110 0%, #100d0c 100%);
}
.section-work-4,
.section-story-4,
.section-testimonials-2 {
  background: linear-gradient(180deg, #1d1613 0%, #15100d 100%);
}
.page-section,
.page-hero:not(.reference-hero--tall) {
  padding-top: 6.8rem;
  padding-bottom: 6.8rem;
}
.section-header {
  margin-bottom: 3rem;
}
.section-kicker,
.eyebrow {
  margin-bottom: 0.8rem;
}
h2 {
  margin-bottom: 1.2rem;
}
p,
.hero-subtitle,
.copy-large,
.section-intro {
  max-width: 760px;
}
.card,
.mini-feature,
.cta-panel,
.hero-card {
  padding: 2rem;
}
.grid-2,
.grid-3,
.feature-grid,
.destination-grid,
.feature-split,
.benefit-stack,
.resource-link-list,
.form-shell {
  gap: 1.9rem;
}
.hero-actions,
.button-row {
  margin-top: 2rem;
  gap: 1rem;
}
.benefit-stack {
  gap: 1rem;
}
.benefit-line {
  padding: 0.4rem 0;
}
.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 1.8rem;
  align-items: center;
}
.site-footer {
  background: linear-gradient(180deg, #120d0c 0%, #0f0b0a 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 0 3.2rem;
}
.site-footer-top {
  align-items: flex-start;
  padding-bottom: 1.5rem;
}
.site-footer nav {
  gap: 1.15rem 1.5rem;
}
.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.35rem;
}
@media (max-width: 920px) {
  .page-hero-grid,
  .feature-band {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .page-section,
  .page-hero:not(.reference-hero--tall) {
    padding-top: 5.4rem;
    padding-bottom: 5.4rem;
  }
  .section-header {
    margin-bottom: 2rem;
  }
  .card,
  .mini-feature,
  .cta-panel,
  .hero-card {
    padding: 1.45rem;
  }
  .site-footer-bottom {
    display: grid;
  }
}

/* Prototype-specific additions */
.fit-grid {
  align-items: start;
}
.fit-card {
  position: relative;
}
.fit-card--is {
  background: linear-gradient(180deg, rgba(242, 215, 160, 0.16), rgba(217, 122, 44, 0.14));
}
.fit-card--is-not {
  background: rgba(20, 12, 9, 0.9);
}
.fit-list {
  margin: 0;
  padding-left: 1.15rem;
}
.fit-list li {
  margin-bottom: 0.72rem;
  color: rgba(255, 243, 226, 0.9);
}
.hero-card--fit {
  border-radius: 24px;
}
.hero-card-note {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: rgba(245, 242, 234, 0.8);
}

.pathway-selector {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0.5rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(242, 215, 160, 0.24);
  margin-bottom: 1.8rem;
}
.pathway-pill {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: transparent;
  color: rgba(245, 242, 234, 0.78);
  font-size: 0.9rem;
  font-weight: 600;
}
.pathway-pill.is-active {
  background: linear-gradient(180deg, #f2d59e 0%, #dd9f3f 55%, #c96d2e 100%);
  color: #2b190f;
}
.pathway-panels {
  margin-top: 0.4rem;
}
.pathway-panel {
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.pathway-panel[hidden] {
  display: none;
}

.testimonial-deck {
  margin-top: 2.6rem;
}
.testimonial-card {
  margin-bottom: 1rem;
}
.testimonial-card[hidden] {
  display: none;
}
.testimonial-controls {
  display: inline-flex;
  gap: 0.5rem;
  margin-top: 0.3rem;
}
.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(242, 215, 160, 0.7);
  background: transparent;
  cursor: pointer;
}
.testimonial-dot.is-active {
  background: rgba(242, 215, 160, 0.92);
}

.destination-copy {
  padding: 0 1.2rem 0.5rem;
  font-size: 0.95rem;
  color: rgba(245, 242, 234, 0.86);
}


.mission-hero-copy {
  background: rgba(248, 241, 228, 0.72);
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 24px;
  padding: 1.4rem 1.5rem;
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 40px rgba(73, 48, 18, 0.12);
}

.quote-feature {
  text-align: center;
}

.quote-feature blockquote {
  margin: 0;
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  line-height: 1.45;
  color: #6f4b1f;
  font-style: italic;
}

.quote-feature cite {
  display: block;
  margin-top: 0.9rem;
  color: rgba(91, 60, 22, 0.88);
  font-style: normal;
  letter-spacing: 0.04em;
}


.quote-feature blockquote {
  color: #b98a3f;
}

.story-hero-copy {
  background: rgba(32, 21, 13, 0.34);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  padding: 1.35rem 1.45rem;
  backdrop-filter: blur(5px);
}

.story-hero-title {
  text-shadow: 0 2px 14px rgba(0,0,0,0.28), 0 0 1px rgba(122, 82, 32, 0.2);
  -webkit-text-stroke: 0.35px rgba(122, 82, 32, 0.16);
}

.story-hero-subtitle {
  background: rgba(28, 18, 11, 0.28);
  display: inline-block;
  padding: 0.7rem 0.9rem;
  border-radius: 16px;
}

.qualifications-card {
  margin-top: 1.2rem;
}


.quote-signature {
  margin-top: 0.85rem;
  color: rgba(245, 242, 234, 0.88);
  font-style: italic;
  letter-spacing: 0.03em;
}
