/* =========================================================================
   Mekar Tour And Driver — styles.css
   Theme: "Golden Hour" (Option A) — warm, cinematic, modern.
   Plain CSS, mobile-first. No framework, no build step.
   ========================================================================= */

:root {
  /* ---- Palette (Golden Hour) ---- */
  --ink: #0c2a2a;
  --teal: #0f8f87;
  --teal-deep: #0a5e5a;
  --gold: #ffc15e;
  --amber: #f7953b;
  --coral: #f4704f;        /* spark only */
  --paper: #f8f6f1;
  --white: #ffffff;
  --muted: #586b69;

  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;

  /* On-dark text */
  --on-dark: #f4f1ea;
  --on-dark-muted: #b9c9c5;

  --maxw: 1140px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --shadow: 0 12px 34px rgba(12, 42, 42, 0.10);
  --shadow-lg: 0 24px 60px rgba(12, 42, 42, 0.18);
  --glow-gold: 0 0 0 4px rgba(255, 193, 94, 0.16), 0 0 26px rgba(255, 193, 94, 0.55);

  --font-head: "Bricolage Grotesque", system-ui, "Segoe UI", sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Reusable grain (SVG fractal noise) for atmosphere on dark/hero areas */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ----------------------------- Base / reset ----------------------------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--teal-deep); }

h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.4em;
  font-weight: 700;
}

/* Bigger, more confident type scale */
h1 { font-size: clamp(2.6rem, 7.5vw, 4.6rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 5vw, 3.1rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1rem; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 22px;
}

.section { padding: clamp(3.5rem, 9vw, 6.5rem) 0; position: relative; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  /* Deep teal on light sections clears WCAG AA (~6:1). Amber (#f7953b) was
     ~2.1:1 here and failed. Dark sections override this to gold below
     (.hero/.band-golden/.contact-text .eyebrow), which already pass on dark. */
  color: var(--teal-deep);
  margin: 0 0 0.6rem;
}

.section-head { max-width: 660px; margin-bottom: 2.8rem; }
.section-sub { color: var(--muted); font-size: 1.08rem; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 10px 0;
  z-index: 200;
}
.skip-link:focus { left: 0; }

/* Visible focus for keyboard users */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

/* -------------------------------- Buttons ------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 0.72em 1.35em;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  font-size: 0.95rem;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-lg { padding: 0.95em 1.7em; font-size: 1.05rem; }
.btn-sm { padding: 0.6em 1.05em; font-size: 0.9rem; }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #07321a;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.34);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); color: #fff; box-shadow: 0 14px 30px rgba(37, 211, 102, 0.42); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid rgba(12, 42, 42, 0.22);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-deep); background: rgba(15, 143, 135, 0.06); }

/* Ghost button on dark backgrounds — the homepage hero photo and every golden
   band (subpage/guide page-heroes, the contact section, mid-page CTA bands).
   The default dark ink label is unreadable there (~1.1:1), so use a light label
   + border for strong contrast (~13:1, well past WCAG AA). Keep this in sync
   with .band-golden so a ghost button is legible wherever it is placed. */
.hero .btn-ghost,
.band-golden .btn-ghost {
  color: var(--on-dark);
  border-color: rgba(255, 255, 255, 0.6);
}
.hero .btn-ghost:hover,
.band-golden .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

.icon { flex: none; }

/* -------------------------------- Header -------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 246, 241, 0.72);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
/* Sticky-header state change (class toggled by script.js on scroll) */
.site-header.scrolled {
  background: rgba(248, 246, 241, 0.94);
  box-shadow: 0 8px 28px rgba(12, 42, 42, 0.10);
  border-bottom-color: rgba(12, 42, 42, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
  transition: min-height 0.25s ease;
}
.site-header.scrolled .header-inner { min-height: 62px; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin-right: auto;
}
.brand-mark { flex: none; }
.brand-text-sub { color: var(--teal); }

.site-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  padding: 0.3em 0;
  position: relative;
}
.site-nav a:hover { color: var(--teal-deep); }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--gold));
  transition: width 0.2s ease;
}
.site-nav a:hover::after { width: 100%; }

.header-cta { margin-left: 0.4rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* --------------------------------- Hero --------------------------------- */
.hero {
  position: relative;
  color: var(--on-dark);
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
}
/* Real Bali hero photo under a dark teal→ink gradient so the headline stays legible */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 124, 123, 0.5) 0%, rgba(42, 35, 32, 0.72) 100%),
    url("assets/hero-gates-of-heaven.webp") center / cover no-repeat,
    linear-gradient(160deg, #0a3a39 0%, var(--ink) 55%, #07201f 100%);
  z-index: 0;
}
/* Grain texture so the hero reads as atmosphere, not a flat block */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.06;
  mix-blend-mode: overlay;
}
/* Soft warm glow accent */
.hero-glow {
  position: absolute;
  z-index: 0;
  top: -10%;
  right: -6%;
  width: 60vw;
  max-width: 760px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 193, 94, 0.42) 0%, transparent 62%);
  filter: blur(10px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(5rem, 12vw, 8rem);
  max-width: 820px;
}
.hero h1 { color: var(--white); text-wrap: balance; }
.hero .eyebrow { color: var(--gold); }
/* Gold gradient on the accent word */
.accent-word {
  background: linear-gradient(100deg, var(--gold) 10%, var(--amber) 70%, var(--coral) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold); /* fallback */
}
.hero-lead {
  font-size: 1.18rem;
  color: rgba(244, 241, 234, 0.92);
  max-width: 58ch;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.8rem 0 1.6rem;
}
/* Ghost button on the hero is handled by the shared dark-background rule above. */

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.7rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  color: var(--on-dark);
}
.hero-badges li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.45em 0.9em;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* -------------------------- Photo placeholders -------------------------- */
/* Styled as intentional design tiles (not "missing image" boxes). */
.photo-placeholder {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  background:
    radial-gradient(80% 70% at 75% 15%, rgba(255, 193, 94, 0.5), transparent 60%),
    linear-gradient(150deg, var(--teal) 0%, var(--teal-deep) 55%, var(--ink) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 160px;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.05;
  z-index: -1;
}
.photo-placeholder span {
  margin: 0.9rem;
  background: rgba(12, 42, 42, 0.42);
  backdrop-filter: blur(3px);
  padding: 0.4em 0.9em;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
/* Real photos swapped in for the placeholders keep the same framing */
img.photo-portrait,
img.spot-img,
img.gallery-img {
  display: block;
  width: 100%;
  /* height:auto lets each image's aspect-ratio set its height. Using height:100%
     here let an image stretch to a grid item's full (stretched) height and push
     the card's heading + description out the bottom of its box — which then
     overlapped the .sample-day panel at wide viewports. */
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* --------------------------------- About -------------------------------- */
.about { background: var(--white); }
.about-inner {
  display: grid;
  gap: 2.6rem;
  align-items: center;
}
.photo-portrait { aspect-ratio: 4 / 5; min-height: 340px; }

.feature-list { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 0.95rem; }
.feature-list li { display: flex; gap: 0.75rem; align-items: flex-start; }
.feature-icon {
  font-size: 1.15rem;
  flex: none;
  line-height: 1;
  width: 2.4rem; height: 2.4rem;
  display: grid; place-items: center;
  background: var(--paper);
  border-radius: 12px;
}

/* ------------------------------- Card grid ------------------------------ */
.services { background: var(--paper); }
/* Vary rhythm: services header is centered (others left-aligned) */
.services .section-head { margin-inline: auto; text-align: center; }

.card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(12, 42, 42, 0.07);
  border-radius: var(--radius-xl);
  padding: 1.7rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
/* Warm accent bar revealed on the card top */
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  font-size: 1.7rem;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(255,193,94,0.28), rgba(15,143,135,0.16));
  border-radius: 18px;
  margin-bottom: 1rem;
}
.card p { color: var(--muted); }
/* Reserve two lines for the title so titles that wrap (e.g. "Mount Batur
   Sunrise Tour") and those that don't start their descriptions at the same Y. */
.card h3 { min-height: 2.6rem; margin: 0 0 0.5rem; }
/* The description absorbs the flexible space, so every card's price + button
   form a uniform bottom block that lines up across the row. */
.card > p:not(.price) { flex: 1 0 auto; margin: 0 0 1.1rem; }
/* Price sits in a fixed-height slot and is pinned to its bottom, so a one-line
   note (e.g. "Quick quote for your route") and a two-line "Rp 1,100,000 per car
   (≈ US$62)" occupy the same space and the button keeps the same gap below. */
.card .price {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--teal-deep);
  font-size: 1.18rem;
  line-height: 1.3;
  min-height: 2.6em;            /* room for two lines */
  margin: 0.2rem 0 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;    /* keep the price at the slot's bottom edge */
}
/* Approx USD companion — smaller, muted, and never broken mid-token. */
.card .price-sub { font-weight: 600; font-size: 0.92rem; color: var(--muted); white-space: nowrap; }
.card-actions { margin-top: auto; display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; align-items: center; padding-top: 0.4rem; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--teal-deep);
}
.card-link:hover { color: var(--amber); }
.card-link .arrow { transition: transform 0.15s ease; }
.card-link:hover .arrow { transform: translateX(3px); }

/* ================== Dark "Golden Hour" immersive bands ================== */
/* The main newspaper-killer: deep teal→ink with a warm gold glow. */
.band-golden {
  background:
    radial-gradient(90% 70% at 85% 0%, rgba(255, 193, 94, 0.20) 0%, transparent 55%),
    radial-gradient(80% 80% at 0% 100%, rgba(15, 143, 135, 0.30) 0%, transparent 55%),
    linear-gradient(165deg, #0c3433 0%, var(--ink) 60%, #07201f 100%);
  color: var(--on-dark);
  isolation: isolate;
}
.band-golden::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.05;
  z-index: -1;
  pointer-events: none;
}
.band-golden h2, .band-golden h3 { color: var(--white); }
.band-golden .eyebrow { color: var(--gold); }
.band-golden .section-sub,
.band-golden p { color: var(--on-dark-muted); }
.band-golden .section-head { margin-inline: auto; text-align: center; }

/* --------------------------------- Spots -------------------------------- */
.spots-grid {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}
.spot { transition: transform 0.18s ease; }
.spot:hover { transform: translateY(-4px); }
.spot h3 { margin: 0.9rem 0 0.2rem; }
.spot p { color: var(--on-dark-muted); margin: 0; }
.spot-img { aspect-ratio: 4 / 3; min-height: 0; }
.spot:hover .spot-img { box-shadow: var(--shadow-lg); }

/* Sample day -> glowing numbered "route" timeline */
.sample-day {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 2rem clamp(1.4rem, 4vw, 2.4rem);
  backdrop-filter: blur(4px);
  max-width: 760px;
  margin-inline: auto;
}
.sample-day h3 { text-align: center; }
.timeline {
  counter-reset: step;
  list-style: none;
  margin: 1.6rem 0 1rem;
  padding: 0 0 0 3rem;
  position: relative;
  display: grid;
  gap: 1.1rem;
}
/* The lit route line */
.timeline::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 0.6rem;
  bottom: 0.6rem;
  width: 2px;
  background: linear-gradient(var(--gold), rgba(255, 193, 94, 0.15));
}
.timeline li {
  position: relative;
  display: flex;
  gap: 0.9rem;
  align-items: baseline;
  color: var(--on-dark);
}
/* Lit numbered node */
.timeline li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: -3rem;
  top: -0.1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--gold), var(--amber));
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--glow-gold);
}
.timeline .time {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--gold);
  flex: none;
  width: 4.2em;
}
.sample-note { color: var(--on-dark-muted); font-style: italic; margin: 0; text-align: center; }

/* -------------------------------- Reviews ------------------------------- */
.reviews { background: var(--white); }
.reviews .section-head { display: flex; flex-direction: column; align-items: flex-start; }
.reviews-grid { margin-top: 0.5rem; }

.tripadvisor-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
  background: var(--teal-deep);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 0.7em 1.2em;
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.tripadvisor-badge:hover { background: var(--teal); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.ta-owl { font-size: 1.2rem; }

.review-card {
  position: relative;
  background: var(--paper);
  border: 1px solid rgba(12, 42, 42, 0.07);
  border-radius: var(--radius-xl);
  padding: 1.7rem;
  margin: 0;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
/* Big decorative quote mark */
.review-card::before {
  content: "\201C";
  position: absolute;
  top: 0.1rem; right: 1rem;
  font-family: var(--font-head);
  font-size: 4rem;
  line-height: 1;
  color: rgba(247, 149, 59, 0.22);
}
/* Vary rhythm: feature the first review across two columns on wide screens */
.stars { color: var(--amber); font-size: 1.1rem; letter-spacing: 0.08em; margin-bottom: 0.6rem; }
.review-card blockquote {
  margin: 0 0 0.9rem;
  font-family: var(--font-head);
  font-size: 1.18rem;
  line-height: 1.32;
  color: var(--ink);
}
.review-card figcaption { color: var(--muted); font-weight: 600; font-size: 0.92rem; }

.tripadvisor-widget:empty { display: none; }
.tripadvisor-widget { margin-top: 2.2rem; min-height: 60px; }

/* -------------------------------- Gallery ------------------------------- */
.gallery { background: var(--paper); }
.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
.gallery-img { aspect-ratio: 1 / 1; min-height: 0; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.gallery-img:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }

/* -------------------------------- Contact ------------------------------- */
/* (Dark golden band — see .band-golden) */
.contact-inner {
  display: grid;
  gap: 2.6rem;
  align-items: start;
}
.contact .section-head, .contact-text { text-align: left; } /* keep contact text left-aligned for readability */
.contact-text .eyebrow { color: var(--gold); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin: 1.3rem 0 1.9rem; }
/* Ghost button in the contact band is handled by the shared dark-background rule. */
.message-tips {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
  backdrop-filter: blur(4px);
}
.message-tips h3 { margin-top: 0; color: var(--white); }
.message-tips ul { margin: 0; padding-left: 1.2rem; color: var(--on-dark-muted); }
.message-tips li { margin-bottom: 0.35rem; }
.form-link { color: var(--on-dark-muted); }

/* Map embed — keeps the rounded, shadowed frame; the iframe fills the box. */
.map-embed {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  min-height: 340px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--ink); /* fallback tint while the map tiles load */
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

/* --------------------------------- Footer ------------------------------- */
.site-footer { background: #07201f; color: #e7efec; padding-top: 2.8rem; }
.footer-inner {
  display: grid;
  gap: 1.7rem;
  padding-bottom: 1.7rem;
}
.footer-brand .brand-text { font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; }
.footer-brand p { color: rgba(231, 239, 236, 0.66); margin: 0.35rem 0 0; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.3rem; }
.footer-nav a, .footer-social a { color: #e7efec; text-decoration: none; font-weight: 600; }
.footer-nav a:hover, .footer-social a:hover { color: var(--gold); }
.footer-social { display: flex; flex-wrap: wrap; gap: 1.3rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.3rem 22px;
  font-size: 0.88rem;
  color: rgba(231, 239, 236, 0.66);
}
.footer-bottom p { margin: 0; }

/* ====================== Reveal-on-scroll (motion) ======================= */
/* .reveal is only added by script.js when motion is allowed, so without JS
   (or under reduced-motion) content is always visible. */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.65, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

/* ===================== Subpages (service / guide) ====================== */
/* Compact page hero — a shorter Golden Hour band that clears the sticky header. */
.page-hero {
  position: relative;
  padding: clamp(6rem, 13vw, 8.5rem) 0 clamp(2.8rem, 7vw, 4.2rem);
}
.page-hero .container { max-width: 880px; }
.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 6vw, 3.5rem); text-wrap: balance; }
.page-hero .page-lead { font-size: 1.15rem; color: rgba(244, 241, 234, 0.92); max-width: 60ch; }
.page-hero .hero-ctas { margin-top: 1.5rem; }

.breadcrumb { font-size: 0.85rem; margin: 0 0 1rem; color: var(--on-dark-muted); }
.breadcrumb a { color: var(--gold); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current] { color: var(--on-dark); }
.breadcrumb .sep { opacity: 0.5; margin: 0 0.35rem; }

/* Readable article / content column */
.content-wrap { max-width: 760px; margin-inline: auto; }
.prose > * { max-width: 70ch; }
.prose h2 { font-size: clamp(1.5rem, 3.6vw, 2.05rem); margin: 2.2rem 0 0.6rem; }
.prose h3 { font-size: 1.2rem; margin: 1.6rem 0 0.4rem; }
.prose p, .prose li { color: #2c3b39; font-size: 1.06rem; }
.prose ul, .prose ol { padding-left: 1.3rem; margin: 0 0 1.1rem; }
.prose li { margin-bottom: 0.45rem; }
.prose a { color: var(--teal-deep); font-weight: 600; }
.prose a:hover { color: var(--amber); }
.prose .lead { font-size: 1.18rem; color: var(--ink); }

/* Inline call-out / tip box inside prose */
.callout {
  background: linear-gradient(150deg, rgba(255,193,94,0.16), rgba(15,143,135,0.08));
  border: 1px solid rgba(247, 149, 59, 0.28);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  margin: 1.4rem 0;
}
.callout p:last-child { margin-bottom: 0; }

/* Cross-link cards (related services / guides) */
.link-cards {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr;
}
.link-card {
  display: block;
  background: var(--white);
  border: 1px solid rgba(12, 42, 42, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.4rem;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.link-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.link-card h3 { margin: 0 0 0.3rem; }
.link-card p { margin: 0; color: var(--muted); font-size: 0.96rem; }
.link-card .arrow { color: var(--amber); font-weight: 700; }

/* Mid-page CTA band (reuses .band-golden) */
.cta-band { text-align: center; }
.cta-band .container { max-width: 720px; }
.cta-band .hero-ctas { justify-content: center; }

/* -------------------------------- FAQ ----------------------------------- */
.guides-section { background: var(--paper); }
.faq { background: var(--white); }
.faq-list { display: grid; gap: 0.8rem; max-width: 820px; margin-inline: auto; }
.faq-item {
  background: var(--paper);
  border: 1px solid rgba(12, 42, 42, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 1.3rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--amber);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-item .faq-a { padding: 0 1.3rem 1.2rem; color: var(--muted); }
.faq-item .faq-a p:last-child { margin-bottom: 0; }

/* ============================== Breakpoints ============================= */
@media (min-width: 640px) {
  .link-cards { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .spots-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .about-inner { grid-template-columns: 0.85fr 1.15fr; }
  .contact-inner { grid-template-columns: 1.05fr 0.95fr; }
}

@media (min-width: 1024px) {
  .card-grid { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .spots-grid { grid-template-columns: repeat(4, 1fr); }
  .link-cards { grid-template-columns: repeat(3, 1fr); }
  /* Feature the first testimonial — asymmetry that breaks the uniform grid */
  .reviews-grid .review-card:first-child { grid-column: span 2; }
  .reviews-grid .review-card:first-child blockquote { font-size: 1.5rem; }
}

/* ---------------- Mobile nav (under 860px show toggle) ------------------ */
@media (max-width: 859px) {
  .nav-toggle { display: flex; }
  .header-cta { display: none; }

  .site-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    background: var(--paper);
    border-bottom: 1px solid rgba(12, 42, 42, 0.08);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    transition: transform 0.28s ease;
    max-height: calc(100svh - 72px);
    overflow-y: auto;
  }
  .site-nav.open { transform: translateY(0); }
  .site-nav ul { flex-direction: column; gap: 0; padding: 0.5rem 22px 1.3rem; }
  .site-nav li { border-bottom: 1px solid rgba(12, 42, 42, 0.08); }
  .site-nav li:last-child { border-bottom: 0; }
  .site-nav a { display: block; padding: 0.95rem 0; }
  .site-nav a::after { display: none; }
}

/* --------------------------- Reduced motion ----------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
