/* ============================================
   Hot Zone Tours — Map-themed adventurous brand
   ============================================ */

:root {
  --parchment: #f5ebd8;
  --paper: #faf6ec;
  --ink: #2a1f15;
  --ink-soft: #4a3a2a;
  --terracotta: #b85436;
  --terracotta-dark: #8f3d22;
  --teal: #1d4d4f;
  --teal-soft: #2d6e70;
  --gold: #c89c45;
  --fire: #e8511e;
  --fire-dark: #b73d10;
  --rule: #c9b890;

  --serif: 'DM Serif Display', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, system-ui, sans-serif;

  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-pad: clamp(3.5rem, 8vw, 6.5rem);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--terracotta); text-decoration: none; transition: color .2s; }
a:hover { color: var(--fire); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); }

p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
  display: inline-block;
}

/* ============ NAV ============ */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.5rem 0;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--paper);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.brand .compass { width: 28px; height: 28px; flex: 0 0 28px; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--paper);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
}
.nav-links a:hover { color: var(--gold); }
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--paper);
  font-size: 1.6rem;
  cursor: pointer;
}

/* On dark hero: white text. On other pages: change in template. */
.nav.solid {
  position: sticky;
  background: var(--ink);
  padding: 1rem 0;
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--ink);
    flex-direction: column;
    gap: 0;
    padding: 1rem var(--gutter) 1.5rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.6rem 0; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--paper);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 12, 6, 0.55) 0%, rgba(20, 12, 6, 0.35) 50%, rgba(20, 12, 6, 0.7) 100%);
  z-index: 1;
}
.hero-map-texture {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  mix-blend-mode: overlay;
  z-index: 2;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'><g fill='none' stroke='%23f5ebd8' stroke-width='0.6' opacity='0.6'><path d='M0,80 Q100,40 200,90 T400,70'/><path d='M0,140 Q120,180 240,130 T400,160'/><path d='M0,220 Q80,250 180,210 T400,240'/><path d='M0,310 Q140,280 260,330 T400,300'/><circle cx='80' cy='110' r='2'/><circle cx='280' cy='180' r='2'/><circle cx='160' cy='270' r='2'/><circle cx='340' cy='90' r='2'/></g></svg>");
  background-size: 600px;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  margin: 0 auto;
  padding: 8rem var(--gutter) 6rem;
  width: 100%;
}
.hero-content .eyebrow {
  color: var(--gold);
}
.hero h1 {
  max-width: 14ch;
  margin-bottom: 1.25rem;
}
.hero-tagline {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  max-width: 48ch;
  margin-bottom: 2.25rem;
  color: rgba(245, 235, 216, 0.9);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 1rem 1.9rem;
  border-radius: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: 0;
  transition: transform .15s, background .2s, color .2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--fire);
  color: var(--paper);
}
.btn-primary:hover {
  background: var(--fire-dark);
  color: var(--paper);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--paper);
  border: 1.5px solid var(--paper);
}
.btn-outline:hover {
  background: var(--paper);
  color: var(--ink);
}
.btn-dark {
  background: var(--ink);
  color: var(--paper);
}
.btn-dark:hover {
  background: var(--terracotta);
  color: var(--paper);
}

/* ============ SECTIONS ============ */
section { padding: var(--section-pad) 0; }

.section-intro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.section-intro h2 { margin-bottom: 1.25rem; }
.section-intro p { font-size: 1.1rem; color: var(--ink-soft); }

/* Subtle topographic dotted line as a section divider */
.divider-route {
  height: 60px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 60' preserveAspectRatio='none'><path d='M10,30 Q100,10 200,30 T390,30' fill='none' stroke='%23b85436' stroke-width='1.5' stroke-dasharray='4,6' stroke-linecap='round'/><circle cx='10' cy='30' r='4' fill='%23b85436'/><circle cx='390' cy='30' r='4' fill='%23b85436'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80% 50px;
  opacity: 0.8;
}

/* ============ TOURS GRID ============ */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.tour-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px -10px rgba(42, 31, 21, 0.25);
}
.tour-card-image {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
}
.tour-card-body {
  padding: 1.75rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tour-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.tour-card h3 { margin-bottom: 0.85rem; }
.tour-card p {
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  flex: 1;
}
.tour-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--rule);
}
.tour-card-price {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ink);
}
.tour-card-price small {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.tour-card-link {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--terracotta);
}

/* ============ COMING SOON ============ */
.coming-soon {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}
.coming-soon h2 { color: var(--paper); }
.coming-soon-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 700px;
  margin: 2.5rem auto 3rem;
}
.coming-soon-item {
  background: rgba(245, 235, 216, 0.05);
  border: 1px solid rgba(245, 235, 216, 0.15);
  text-align: left;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
a.coming-soon-item:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 156, 69, 0.5);
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.6);
}
.coming-soon-item-image {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  background-color: #2a1f15;
}
.coming-soon-item-body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.coming-soon-item-flag {
  font-size: 1.4rem;
  margin-right: 0.4rem;
  vertical-align: middle;
}
.coming-soon-item h4 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--gold);
}
.coming-soon-item p {
  font-size: 0.95rem;
  color: rgba(245, 235, 216, 0.8);
  margin: 0;
}

/* ============ THREE COLUMN ============ */
.three-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}
.three-col-item { text-align: center; }
.three-col-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  color: var(--terracotta);
}
.three-col-item h3 {
  font-size: 1.4rem;
  margin-bottom: 0.85rem;
}
.three-col-item p { color: var(--ink-soft); font-size: 0.98rem; }

/* ============ HOSTS STRIP ============ */
.hosts {
  background: var(--paper);
}
.hosts-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.hosts-image {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border: 8px solid var(--paper);
  box-shadow: 0 18px 50px -15px rgba(42, 31, 21, 0.3);
}
.hosts-text h2 { margin-bottom: 1.25rem; }
.hosts-text p { color: var(--ink-soft); margin-bottom: 1.5rem; }

@media (max-width: 760px) {
  .hosts-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============ GALLERY TEASER ============ */
.gallery-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.gallery-teaser-grid > div {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
}
@media (max-width: 600px) {
  .gallery-teaser-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============ FOOTER CTA ============ */
.footer-cta {
  background: var(--teal);
  color: var(--paper);
  text-align: center;
}
.footer-cta h2 { color: var(--paper); margin-bottom: 1rem; }
.footer-cta p { color: rgba(245, 235, 216, 0.85); margin-bottom: 2rem; max-width: 50ch; margin-left: auto; margin-right: auto; }
.footer-cta-buttons { display: inline-flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink);
  color: rgba(245, 235, 216, 0.7);
  padding: 3rem 0 2rem;
  font-size: 0.9rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  max-width: var(--container);
  margin: 0 auto 2rem;
  padding: 0 var(--gutter);
}
.footer-brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--paper);
  margin-bottom: 0.5rem;
  display: block;
}
.footer-tag { font-style: italic; color: var(--gold); margin-bottom: 1rem; display: block; }
.site-footer h5 {
  color: var(--paper);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 600;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a { color: rgba(245, 235, 216, 0.75); }
.site-footer a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(245, 235, 216, 0.1);
  padding: 1.5rem var(--gutter) 0;
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
  font-size: 0.82rem;
}

@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ============ FORMS ============ */
.waitlist-form {
  display: flex;
  gap: 0.75rem;
  max-width: 520px;
  margin: 0 auto;
}
.waitlist-form input {
  flex: 1;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(245, 235, 216, 0.3);
  background: rgba(245, 235, 216, 0.08);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  border-radius: 2px;
}
.waitlist-form input::placeholder { color: rgba(245, 235, 216, 0.5); }
.waitlist-form input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(245, 235, 216, 0.12);
}
.form-message { margin-top: 1rem; font-size: 0.95rem; }
.form-message.success { color: var(--gold); }
.form-message.error { color: #ff8866; }

@media (max-width: 600px) {
  .waitlist-form { flex-direction: column; }
}

/* ============ UTILITY ============ */
.text-center { text-align: center; }
.mt-3 { margin-top: 3rem; }

/* ============ TOUR PAGE HERO (shorter than homepage) ============ */
.tour-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  color: var(--paper);
  overflow: hidden;
}
.tour-hero .hero-content { padding: 9rem var(--gutter) 5rem; }
.tour-hero h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); }
.tour-hero-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 2rem;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.tour-hero-meta span::before {
  content: '·';
  margin-right: 0.5rem;
  opacity: 0.6;
}
.tour-hero-meta span:first-child::before { content: ''; margin: 0; }

/* ============ NAV LIGHT (for tour pages) ============ */
/* When body has class .light-nav, nav stays absolute on dark hero like homepage */

/* ============ NARRATIVE BLOCK ============ */
.narrative {
  background: var(--parchment);
}
.narrative-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.narrative h2 { margin-bottom: 1.5rem; }
.narrative p {
  font-size: 1.12rem;
  color: var(--ink-soft);
  margin-bottom: 1.4em;
}
.narrative p strong, .narrative p em {
  color: var(--ink);
  font-style: normal;
  font-weight: 500;
}

/* ============ EXPERIENCE BULLETS ============ */
.experience {
  background: var(--paper);
}
.experience-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.experience-list {
  list-style: none;
}
.experience-list li {
  position: relative;
  padding: 0.9rem 0 0.9rem 2.25rem;
  font-size: 1.03rem;
  border-bottom: 1px dashed var(--rule);
}
.experience-list li:last-child { border-bottom: 0; }
.experience-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.3rem;
  width: 14px;
  height: 14px;
  border: 2px solid var(--terracotta);
  border-radius: 50%;
  background: var(--paper);
}
.experience-image {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border: 8px solid var(--paper);
  box-shadow: 0 18px 50px -15px rgba(42, 31, 21, 0.3);
}
@media (max-width: 760px) {
  .experience-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .experience-image { order: -1; aspect-ratio: 16/10; }
}

/* ============ ITINERARY ============ */
.itinerary {
  background: var(--parchment);
}
.itinerary-list {
  margin-top: 3rem;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.itinerary-day {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px dashed var(--rule);
  align-items: start;
}
.itinerary-day:last-child { border-bottom: 0; }
.itinerary-day-number {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--terracotta);
  line-height: 1;
}
.itinerary-day-number small {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.4rem;
}
.itinerary-day h4 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.itinerary-day p {
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 600px) {
  .itinerary-day { grid-template-columns: 1fr; gap: 0.5rem; }
  .itinerary-day-number { font-size: 1.5rem; }
  .itinerary-day-number small { display: inline-block; margin-left: 0.75rem; margin-top: 0; }
}

/* ============ DETAILS TABLE ============ */
.details {
  background: var(--paper);
}
.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--rule);
}
.details-row {
  display: contents;
}
.details-grid > div {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--rule);
}
.details-grid > div:nth-last-child(-n+2) { border-bottom: 0; }
.details-grid > div:nth-child(odd) {
  background: var(--parchment);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  border-right: 1px solid var(--rule);
}
.details-grid > div:nth-child(even) {
  font-size: 1rem;
  color: var(--ink);
}
@media (max-width: 600px) {
  .details-grid { grid-template-columns: 1fr; }
  .details-grid > div:nth-child(odd) { border-right: 0; }
}

/* ============ INCLUDED / EXCLUDED ============ */
.inex {
  background: var(--parchment);
}
.inex-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
.inex-col h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--terracotta);
  display: inline-block;
}
.inex-col ul { list-style: none; }
.inex-col li {
  padding: 0.6rem 0 0.6rem 2rem;
  position: relative;
  font-size: 1rem;
}
.inex-col.included li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.inex-col.excluded li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-weight: 700;
}
@media (max-width: 600px) {
  .inex-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============ FAITH CALLOUT ============ */
.faith-callout {
  background: var(--ink);
  color: var(--paper);
  padding: var(--section-pad) 0;
  position: relative;
}
.faith-callout-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
  position: relative;
  z-index: 2;
}
.faith-callout h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.25rem;
  color: var(--gold);
}
.faith-callout p {
  font-size: 1.1rem;
  color: rgba(245, 235, 216, 0.88);
  max-width: 56ch;
  margin: 0 auto;
}
.faith-callout::before {
  content: '✝';
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  color: var(--terracotta);
  opacity: 0.3;
  z-index: 1;
}

/* ============ APPLY CTA (tour-specific) ============ */
.tour-apply-cta {
  background: var(--terracotta);
  color: var(--paper);
  text-align: center;
}
.tour-apply-cta h2 { color: var(--paper); margin-bottom: 1rem; }
.tour-apply-cta p {
  color: rgba(245, 235, 216, 0.92);
  max-width: 50ch;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}
.tour-apply-cta .btn {
  background: var(--paper);
  color: var(--terracotta-dark);
}
.tour-apply-cta .btn:hover {
  background: var(--ink);
  color: var(--paper);
}

/* ============ TOUR HOSTS (slight variant) ============ */
.tour-hosts {
  background: var(--paper);
}

/* ============ SECTION INTRO ON LIGHT BG ============ */
.section-intro--dark h2 { color: var(--ink); }

/* ============ GALLERY (masonry via CSS columns) ============ */
.gallery {
  background: var(--parchment);
}
.gallery-grid {
  column-count: 3;
  column-gap: 1rem;
  margin-top: 3rem;
}
.gallery-grid img {
  width: 100%;
  margin-bottom: 1rem;
  break-inside: avoid;
  border: 6px solid var(--paper);
  box-shadow: 0 6px 24px -10px rgba(42, 31, 21, 0.25);
  transition: transform .25s, box-shadow .25s;
  display: block;
}
.gallery-grid img:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px -8px rgba(42, 31, 21, 0.4);
}
@media (max-width: 900px) { .gallery-grid { column-count: 2; } }
@media (max-width: 540px) { .gallery-grid { column-count: 1; } }

/* ============ FAQ (native details/summary) ============ */
.faq-list {
  max-width: 760px;
  margin: 3rem auto 0;
}
.faq-section { margin-bottom: 3rem; }
.faq-section h3 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 2.5rem 1.4rem 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
  position: relative;
  transition: color .15s;
}
.faq-item summary:hover { color: var(--terracotta); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--terracotta);
  font-family: var(--sans);
  font-weight: 300;
  transition: transform .2s;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item-body {
  padding: 0 0 1.5rem;
  color: var(--ink-soft);
}
.faq-item-body p { margin-bottom: 0.8em; }
.faq-item-body ul { margin: 0.5em 0 0.8em 1.2em; }

/* ============ APPLICATION FORM ============ */
.form-page {
  background: var(--parchment);
  padding: var(--section-pad) 0;
}
.app-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--paper);
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--rule);
  box-shadow: 0 12px 40px -20px rgba(42, 31, 21, 0.25);
}
.app-form-wrap h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
}
.app-form-wrap > p {
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}
.app-form .field { margin-bottom: 1.5rem; }
.app-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.app-form label .req { color: var(--terracotta); margin-left: 0.25rem; }
.app-form .help {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink-soft);
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}
.app-form input[type="text"],
.app-form input[type="email"],
.app-form input[type="tel"],
.app-form input[type="date"],
.app-form select,
.app-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--rule);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  border-radius: 2px;
  transition: border-color .15s, box-shadow .15s;
}
.app-form input:focus,
.app-form select:focus,
.app-form textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(184, 84, 54, 0.1);
}
.app-form textarea { min-height: 110px; resize: vertical; }
.app-form .radio-group,
.app-form .checkbox-group { display: flex; flex-direction: column; gap: 0.5rem; }
.app-form .radio-group label,
.app-form .checkbox-group label {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border: 1px solid transparent;
  border-radius: 2px;
}
.app-form .radio-group label:hover,
.app-form .checkbox-group label:hover { background: rgba(184, 84, 54, 0.05); }
.app-form input[type="radio"],
.app-form input[type="checkbox"] { margin-top: 0.25rem; flex: 0 0 auto; }
.app-form .submit-row {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px dashed var(--rule);
}
.app-form .form-message {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 2px;
  font-size: 0.95rem;
}
.app-form .form-message.success { background: rgba(29, 77, 79, 0.1); color: var(--teal); border: 1px solid var(--teal); }
.app-form .form-message.error { background: rgba(184, 84, 54, 0.1); color: var(--terracotta-dark); border: 1px solid var(--terracotta); }

/* ============ APPLY ROUTER (chooser cards) ============ */
.apply-chooser {
  background: var(--parchment);
}
.apply-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.apply-card {
  background: var(--paper);
  padding: 2.5rem 2rem;
  border: 1px solid var(--rule);
  text-align: center;
  transition: transform .15s, box-shadow .15s, border-color .15s;
  display: block;
  text-decoration: none;
  color: var(--ink);
}
.apply-card:hover {
  transform: translateY(-4px);
  border-color: var(--terracotta);
  box-shadow: 0 12px 32px -10px rgba(42, 31, 21, 0.25);
  color: var(--ink);
}
.apply-card-flag { font-size: 2.5rem; margin-bottom: 1rem; }
.apply-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.apply-card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1rem; }
.apply-card-cta {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--terracotta);
  text-transform: uppercase;
}

/* ============ COMING SOON PAGE ============ */
.coming-page {
  background: var(--parchment);
}
.coming-page-form {
  max-width: 560px;
  margin: 3rem auto 0;
  background: var(--ink);
  padding: 2.5rem;
  color: var(--paper);
  border-radius: 2px;
}
.coming-page-form h3 {
  font-family: var(--serif);
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}
.coming-page-form p {
  color: rgba(245, 235, 216, 0.85);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.coming-page-form .field { margin-bottom: 1rem; }
.coming-page-form input,
.coming-page-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(245, 235, 216, 0.08);
  border: 1px solid rgba(245, 235, 216, 0.2);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  border-radius: 2px;
}
.coming-page-form input::placeholder,
.coming-page-form textarea::placeholder { color: rgba(245, 235, 216, 0.5); }
.coming-page-form input:focus,
.coming-page-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.coming-page-form .check-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
}

/* ============ TOURS INDEX ============ */
.tours-index {
  background: var(--parchment);
}

/* ============ STATIC PAGES (privacy, terms) ============ */
.static-page {
  background: var(--paper);
  padding: var(--section-pad) 0;
}
.static-page-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.static-page h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 0.5rem; }
.static-page .updated {
  display: block;
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}
.static-page h2 {
  font-size: 1.5rem;
  margin: 2rem 0 0.75rem;
}
.static-page p { margin-bottom: 1em; color: var(--ink-soft); }
.static-page ul { margin: 0.5em 0 1em 1.4em; color: var(--ink-soft); }
