/* ═══════════════════════════════════════════════════════════
   SHELL PARK — SHARED STYLES
   Used by all content pages (things-to-do, getting-here, faq).
   Mirrors design tokens from index.html for visual consistency.
   ═══════════════════════════════════════════════════════════ */

:root {
  --ink:        #16120d;
  --stone:      #261e14;
  --warm-off:   #faf5ee;
  --sand:       #f2e8d9;
  --tile-rust:  #a8391a;
  --tile-teal:  #23695a;
  --tile-gold:  #c08b2c;
  --muted:      #6e5e4a;
  --rule:       rgba(22,18,13,.1);
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'DM Sans', system-ui, sans-serif;
  --tamil:      'Noto Serif Tamil', serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--warm-off); color: var(--ink); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── TILE STRIPE ────────────────────────────────────────── */
.tile-stripe {
  height: 6px;
  background: repeating-linear-gradient(90deg,
    var(--tile-rust) 0 14px, var(--tile-gold) 14px 28px,
    var(--tile-teal) 28px 42px, var(--tile-gold) 42px 56px);
}

/* ─── NAV (always solid on content pages — no video hero behind it) ─── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  background: rgba(250,245,238,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
  border-bottom: 1px solid var(--rule);
}
.nav-logo {
  font-family: var(--serif); font-size: 1.45rem; font-weight: 600;
  color: var(--stone); line-height: 1; letter-spacing: .02em;
}
.nav-logo span { color: var(--tile-gold); }
.nav-logo small {
  display: block; font-family: var(--tamil); font-size: .52rem;
  font-weight: 300; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-top: 3px;
}
.nav-links { display: flex; gap: 1.8rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: .78rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); transition: color .3s;
}
.nav-links a:hover { color: var(--tile-gold) !important; }
.nav-links a.active { color: var(--tile-rust) !important; }
.nav-book {
  background: var(--tile-rust); color: #fff !important;
  padding: .5rem 1.3rem; border-radius: 1px;
}
.nav-book:hover { background: var(--stone); color: #fff !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); }

/* ─── PAGE HERO (banner for content pages) ─────────────────── */
.page-hero {
  position: relative; padding: 11rem 5vw 5rem;
  background: var(--stone); background-size: cover; background-position: center;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(22,18,13,.92) 0%, rgba(22,18,13,.55) 100%);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; text-align: center; }
.breadcrumb { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 1rem; }
.breadcrumb a:hover { color: var(--tile-gold); }
.page-h1 {
  font-family: var(--serif); font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 400; color: #fff; line-height: 1.08;
}
.page-h1 em { font-style: italic; color: #e4c87a; }
.page-tagline {
  margin-top: 1rem; font-size: 1rem; color: rgba(255,255,255,.72);
  line-height: 1.75; max-width: 560px; margin-left: auto; margin-right: auto;
}

/* ─── SHARED TEXT/SECTION STYLES ────────────────────────────── */
.eyebrow {
  font-size: .7rem; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; margin-bottom: .9rem;
}
.eyebrow-gold { color: var(--tile-gold); }
.eyebrow-teal { color: var(--tile-teal); }
.eyebrow-rust { color: var(--tile-rust); }
.section-h {
  font-family: var(--serif); font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  font-weight: 400; line-height: 1.1; margin-bottom: 1.2rem;
}
.on-light { color: var(--stone); }
.on-light em { font-style: italic; color: var(--tile-rust); }
.body-text { font-size: 1rem; line-height: 1.85; font-weight: 300; color: var(--muted); }
.body-text + .body-text { margin-top: 1rem; }

section.content { padding: 5.5rem 5vw; }
section.content.alt { background: var(--sand); }
.content-inner { max-width: 1080px; margin: 0 auto; }
.content-inner.narrow { max-width: 760px; }

/* ─── INFO / ATTRACTION CARDS ───────────────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.info-card {
  background: var(--warm-off); padding: 2rem 1.7rem;
  border-bottom: 3px solid transparent; transition: border-color .25s, transform .2s;
}
section.content.alt .info-card { background: #fff; }
.info-card:hover { border-color: var(--tile-rust); transform: translateY(-3px); }
.info-card .tag {
  display: inline-block; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--tile-teal); background: rgba(35,105,90,.1); padding: .25rem .6rem; margin-bottom: .8rem;
}
.info-card h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--stone); margin-bottom: .5rem; }
.info-card p { font-size: .9rem; line-height: 1.7; color: var(--muted); }

/* ─── STEPS (getting-here travel modes) ─────────────────────── */
.steps { display: flex; flex-direction: column; gap: 0; margin-top: 2.5rem; }
.step {
  display: grid; grid-template-columns: 64px 1fr; gap: 1.5rem;
  padding: 1.8rem 0; border-bottom: 1px solid var(--rule);
}
.step:last-child { border-bottom: none; }
.step-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--sand); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.step h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--stone); margin-bottom: .4rem; }
.step p { font-size: .92rem; line-height: 1.75; color: var(--muted); }
.step .meta { display: inline-block; margin-top: .6rem; font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; color: var(--tile-rust); }

/* ─── FAQ ACCORDION (native <details>, no JS needed) ────────── */
.faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: .8rem; }
.faq-item {
  background: var(--warm-off); border-left: 3px solid var(--tile-rust);
  padding: 0 1.6rem;
}
section.content.alt .faq-item { background: #fff; }
.faq-item summary {
  font-family: var(--serif); font-size: 1.08rem; font-weight: 600; color: var(--stone);
  padding: 1.2rem 0; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--tile-rust); flex-shrink: 0; transition: transform .25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: .92rem; line-height: 1.8; color: var(--muted); padding-bottom: 1.3rem; }

/* ─── CTA STRIP ──────────────────────────────────────────────── */
.cta-strip {
  background: var(--tile-rust); padding: 4rem 5vw; text-align: center;
}
.cta-strip h2 { color: #fff; font-family: var(--serif); font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 400; margin-bottom: 1.5rem; }
.cta-strip .btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-rust, .btn-outline-w {
  display: inline-block; padding: .8rem 2rem; font-size: .8rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; border: none; cursor: pointer;
}
.btn-rust { background: var(--stone); color: #fff; }
.btn-outline-w { border: 1px solid rgba(255,255,255,.5); color: #fff; background: transparent; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--ink); color: rgba(228,212,184,.35);
  text-align: center; padding: 2.2rem 5vw;
  font-size: .76rem; letter-spacing: .05em;
}
footer strong { color: rgba(228,212,184,.7); }
footer a { color: rgba(228,212,184,.5); }
footer p { margin: 0; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #nav.open .nav-links {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--stone); padding: 2.5rem 5vw;
    gap: 1.5rem; justify-content: flex-start;
  }
  #nav.open .nav-links a { color: rgba(228,212,184,.8); font-size: .95rem; }
  #nav.open .hamburger span { background: #fff; }
}
@media (max-width: 580px) {
  .card-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 48px 1fr; }
  .step-icon { width: 44px; height: 44px; font-size: 1.2rem; }
}
