/* =========================================================
   Ole Tours Mazatlán — styles.css
   Palette: Pacific blue, turquoise, sunset orange, shell white
   ========================================================= */

:root {
  --pacific-900: #062b4c;
  --pacific-700: #0a3d6b;
  --pacific-500: #155fa0;
  --turquoise: #13a8a6;
  --turquoise-soft: #e3f6f5;
  --sunset: #f26b2a;
  --sunset-dark: #d4531a;
  --sunset-soft: #fff0e6;
  --shell: #ffffff;
  --foam: #f2f9fb;
  --ink: #10263b;
  --muted: #53667a;
  --line: #dbe8ee;

  --font-display: "Bricolage Grotesque", "Trebuchet MS", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --r-lg: 28px;
  --r-md: 18px;
  --r-sm: 10px;
  --shadow: 0 14px 34px -18px rgba(6, 43, 76, 0.35);
  --shadow-lg: 0 30px 60px -28px rgba(6, 43, 76, 0.45);
  --header-h: 76px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--shell);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--pacific-500); }
a:hover { color: var(--sunset-dark); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  margin: 0 0 .5em;
  color: var(--pacific-900);
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 5.2rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 700; }
p { margin: 0 0 1em; }
ul { padding-left: 1.2em; }
:focus-visible { outline: 3px solid var(--sunset); outline-offset: 3px; border-radius: 6px; }

.container { width: min(1180px, 100% - 2.5rem); margin-inline: auto; }
.narrow { max-width: 68ch; }
.center { text-align: center; margin-inline: auto; }
.lead { font-size: 1.2rem; color: var(--muted); max-width: 60ch; }
.section { padding-block: clamp(4rem, 9vw, 7rem); }
.section-foam { background: var(--foam); }
.section-head { margin-bottom: 2.5rem; max-width: 62ch; }
.section-head.center { text-align: center; }
.section-head p { color: var(--muted); }

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  background: var(--sunset); color: #fff; padding: .6rem 1rem; border-radius: var(--r-sm);
}
.skip-link:focus { top: 1rem; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* Placeholder marker — used on every unverified item */
.ph-tag {
  display: inline-block;
  font-size: .78rem; font-weight: 600;
  padding: .2rem .6rem;
  border-radius: 999px;
  background: #fff6d6; color: #7a5a00;
  border: 1px dashed #d9b300;
  vertical-align: middle;
}

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--pacific-700); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.45rem;
  border-radius: 999px;
  border: 2px solid transparent;
  background: var(--bg); color: var(--fg);
  font: 600 1rem/1.2 var(--font-body);
  text-decoration: none; cursor: pointer;
  transition: transform .2s var(--ease), background-color .2s, box-shadow .2s;
}
.btn:hover { color: var(--fg); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn svg { width: 1.2em; height: 1.2em; flex: none; }
.btn-sunset { --bg: var(--sunset); }
.btn-sunset:hover { --bg: var(--sunset-dark); }
.btn-turquoise { --bg: var(--turquoise); }
.btn-light { --bg: #fff; --fg: var(--pacific-900); }
.btn-outline { --bg: transparent; --fg: var(--pacific-700); border-color: currentColor; }
.btn-outline-light { --bg: transparent; --fg: #fff; border-color: rgba(255,255,255,.8); }
.btn-sm { padding: .55rem 1.05rem; font-size: .92rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 6px 20px -16px rgba(6,43,76,.5); }
.nav { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--pacific-900); }
.brand-mark { width: 44px; height: 44px; flex: none; }
.brand-text { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; line-height: 1; }
.brand-text small { display: block; font-family: var(--font-body); font-weight: 600; font-size: .78rem; color: var(--sunset-dark); letter-spacing: .02em; margin-top: 3px; }

.nav-menu { display: flex; align-items: center; gap: 1.6rem; }
.nav-links { list-style: none; display: flex; gap: .3rem; margin: 0; padding: 0; }
.nav-links a {
  display: block; padding: .5rem .85rem; border-radius: 999px;
  text-decoration: none; color: var(--ink); font-weight: 600;
}
.nav-links a:hover { background: var(--turquoise-soft); color: var(--pacific-900); }
.nav-links a[aria-current="page"] { background: var(--pacific-700); color: #fff; }
.nav-actions { display: flex; align-items: center; gap: .8rem; }

.lang-switch { display: inline-flex; background: var(--foam); border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
.lang-switch button {
  border: 0; background: transparent; cursor: pointer;
  font: 700 .82rem var(--font-body); color: var(--muted);
  padding: .35rem .7rem; border-radius: 999px;
}
.lang-switch button[aria-pressed="true"] { background: #fff; color: var(--pacific-900); box-shadow: 0 2px 6px rgba(6,43,76,.15); }

.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--pacific-900); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 1rem;
    background: #fff; padding: 1.2rem 1.25rem 1.6rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: transform .25s var(--ease), opacity .25s, visibility .25s;
  }
  .nav-menu.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav-links { flex-direction: column; }
  .nav-links a { padding: .8rem 1rem; font-size: 1.1rem; }
  .nav-actions { justify-content: space-between; }
}

/* ---------- Media / image placeholders ---------- */
.media {
  position: relative; overflow: hidden; margin: 0;
  background:
    radial-gradient(circle at 78% 28%, rgba(255,166,107,.95) 0 14%, transparent 15%),
    linear-gradient(160deg, #7fd3e0 0%, var(--turquoise) 45%, var(--pacific-700) 100%);
}
.media img { width: 100%; height: 100%; object-fit: cover; }
.media.is-placeholder img { display: none; }
.media.is-placeholder::after {
  content: attr(data-ph-label);
  position: absolute; left: .8rem; bottom: .8rem; right: .8rem;
  font-size: .8rem; font-weight: 600; color: #fff;
  background: rgba(6,43,76,.55); padding: .35rem .6rem; border-radius: 8px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; isolation: isolate;
  min-height: min(88vh, 820px);
  display: grid; align-items: end;
  padding-block: 7rem 8.5rem;
}
.hero > .media { position: absolute; inset: 0; z-index: -2; background: linear-gradient(160deg, #7fd3e0 0%, var(--turquoise) 40%, var(--pacific-700) 100%); }
.hero > .media.is-placeholder::after { bottom: auto; top: 1rem; left: auto; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(6,43,76,.15) 0%, rgba(6,43,76,.35) 45%, rgba(6,43,76,.85) 100%);
}
.hero-inner { position: relative; }
.hero-sun {
  position: absolute; z-index: -1;
  width: clamp(180px, 26vw, 320px); aspect-ratio: 1;
  left: clamp(-40px, -2vw, 0px); top: clamp(-120px, -9vw, -60px);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #ffb27a, var(--sunset) 60%, var(--sunset-dark));
  opacity: .92;
  animation: sunrise 1.4s var(--ease) both;
}
.hero h1 {
  color: #fff; max-width: 12ch; margin-bottom: .35em;
  text-shadow: 0 4px 30px rgba(6,43,76,.35);
  animation: rise .9s .25s var(--ease) both;
}
.hero .lead { color: rgba(255,255,255,.92); animation: rise .9s .4s var(--ease) both; }
.hero .btn-row { margin-top: 1.8rem; animation: rise .9s .55s var(--ease) both; }
.wave-edge { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: clamp(40px, 7vw, 90px); color: var(--shell); }
.wave-edge.to-foam { color: var(--foam); }

@keyframes sunrise { from { transform: translateY(60px) scale(.85); opacity: 0; } to { transform: none; opacity: .92; } }
@keyframes rise { from { transform: translateY(24px); opacity: 0; } to { transform: none; opacity: 1; } }

/* Interior page hero */
.page-hero { min-height: 420px; padding-block: 6rem 6.5rem; }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 4rem); max-width: 16ch; }

/* ---------- Intro / facts ---------- */
.intro-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.pull-quote {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem); line-height: 1.25;
  color: var(--pacific-900); margin: 0 0 1rem;
  border-left: 6px solid var(--sunset); padding-left: 1.2rem;
}
.fact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.fact-list li {
  display: grid; grid-template-columns: 48px 1fr; gap: 1rem; align-items: center;
  background: var(--foam); border-radius: var(--r-md); padding: 1rem 1.2rem;
}
.fact-icon {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: #fff; color: var(--turquoise);
}
.fact-icon svg { width: 24px; height: 24px; }
.fact-list strong { display: block; color: var(--pacific-900); }
.fact-list span { color: var(--muted); font-size: .95rem; }

/* ---------- Tour cards ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.filter-btn {
  border: 1.5px solid var(--line); background: #fff; color: var(--ink);
  padding: .55rem 1.1rem; border-radius: 999px; cursor: pointer;
  font: 600 .95rem var(--font-body);
  transition: background-color .2s, color .2s, border-color .2s;
}
.filter-btn:hover { border-color: var(--turquoise); }
.filter-btn[aria-pressed="true"] { background: var(--pacific-700); border-color: var(--pacific-700); color: #fff; }

.tour-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.6rem; }
.tour-card {
  display: flex; flex-direction: column;
  background: #fff; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.tour-card[hidden] { display: none; }
.tour-card .media { aspect-ratio: 16 / 10; }
.tour-card-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .8rem; flex: 1; }
.tour-card h3 { margin: 0; }
.tour-card p { margin: 0; color: var(--muted); }
.tour-meta { display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; font-size: .93rem; color: var(--ink); }
.tour-meta span { display: inline-flex; align-items: center; gap: .35rem; }
.tour-meta svg { width: 18px; height: 18px; color: var(--turquoise); }
.tour-price {
  position: absolute; top: 1rem; right: 1rem;
  background: #fff; color: var(--pacific-900);
  border-radius: var(--r-sm); padding: .4rem .75rem;
  font-weight: 700; box-shadow: var(--shadow); line-height: 1.2; text-align: right;
}
.tour-price small { display: block; font-weight: 500; font-size: .75rem; color: var(--muted); }
.tour-card .ph-tag { position: absolute; top: 1rem; left: 1rem; }
.tour-includes { list-style: none; padding: 0; margin: 0; display: grid; gap: .3rem; font-size: .93rem; }
.tour-includes li { padding-left: 1.5rem; position: relative; }
.tour-includes li::before {
  content: ""; position: absolute; left: 0; top: .45em;
  width: .8rem; height: .45rem;
  border-left: 2.5px solid var(--turquoise); border-bottom: 2.5px solid var(--turquoise);
  transform: rotate(-45deg);
}
.tour-actions { margin-top: auto; padding-top: .6rem; display: flex; flex-wrap: wrap; gap: .6rem; }
.tour-actions .btn { flex: 1 1 auto; }
.empty-state { text-align: center; color: var(--muted); padding: 2rem; }

/* ---------- Split feature sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split.reverse > .split-media { order: 2; }
.split-media { border-radius: 40px 40px 40px 120px; aspect-ratio: 5 / 4; box-shadow: var(--shadow-lg); }
.split.reverse .split-media { border-radius: 40px 120px 40px 40px; }
.price-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0; }
.price-box {
  border-radius: var(--r-md); padding: 1.1rem 1.2rem;
  background: var(--sunset-soft); border: 1px solid #ffd9c2;
}
.price-box strong { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--sunset-dark); line-height: 1.1; }
.price-box span { color: var(--ink); font-size: .95rem; }
.route-line { display: flex; align-items: center; gap: .6rem; font-weight: 600; color: var(--pacific-700); margin-bottom: 1rem; }
.route-line svg { width: 22px; height: 22px; color: var(--sunset); }

/* ---------- Values ---------- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.value {
  padding: 1.6rem; border-radius: var(--r-md); background: #fff;
  border-top: 5px solid var(--turquoise);
}
.value:nth-child(2) { border-top-color: var(--sunset); }
.value:nth-child(3) { border-top-color: var(--pacific-500); }
.value:nth-child(4) { border-top-color: #58b957; }
.value p { color: var(--muted); margin: 0; }

.policy {
  margin-top: 2.5rem; padding: 1.6rem 1.8rem; border-radius: var(--r-md);
  background: var(--pacific-700); color: #fff;
  display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: start;
}
.policy h3 { color: #fff; margin-bottom: .4rem; }
.policy ul { margin: 0; padding-left: 1.1em; }
.policy p { margin: .6rem 0 0; opacity: .85; font-size: .93rem; }
.policy-icon { width: 44px; height: 44px; color: var(--sunset); }

/* ---------- Testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.testimonial {
  margin: 0; padding: 1.8rem; border-radius: var(--r-md);
  background: #fff; border: 1.5px dashed #d9b300; position: relative;
}
.testimonial blockquote { margin: .8rem 0 1rem; font-size: 1.05rem; }
.testimonial figcaption { color: var(--muted); font-size: .92rem; font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; isolation: isolate;
  background: linear-gradient(120deg, var(--pacific-900), var(--pacific-700) 55%, var(--turquoise));
  color: #fff; border-radius: 36px;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  display: grid; grid-template-columns: 1.4fr auto; gap: 2rem; align-items: center;
}
.cta-band::after {
  content: ""; position: absolute; z-index: -1;
  width: 340px; height: 340px; border-radius: 50%;
  right: -90px; top: -140px;
  background: radial-gradient(circle at 40% 40%, #ffb27a, var(--sunset) 65%);
  opacity: .9;
}
.cta-band h2 { color: #fff; }
.cta-band p { opacity: .9; margin: 0; max-width: 52ch; }

/* ---------- About ---------- */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.mission-card { padding: 2rem; border-radius: var(--r-md); background: var(--turquoise-soft); }
.mission-card:nth-child(2) { background: var(--sunset-soft); }
.mission-card p { margin: 0; }
.guide-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; list-style: none; padding: 0; margin: 0; }
.guide-list li { padding: 1.5rem; border-left: 4px solid var(--sunset); background: #fff; border-radius: 0 var(--r-md) var(--r-md) 0; }
.guide-list strong { display: block; font-family: var(--font-display); font-size: 1.2rem; color: var(--pacific-900); margin-bottom: .3rem; }
.guide-list span { color: var(--muted); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.team-card { text-align: center; padding: 2rem 1.4rem; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); }
.avatar {
  width: 112px; height: 112px; margin: 0 auto 1rem; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--turquoise), var(--pacific-700));
  color: #fff; font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  border: 4px solid #fff; box-shadow: 0 0 0 3px var(--sunset);
}
.team-card h3 { margin-bottom: .2rem; }
.team-card p { color: var(--muted); margin: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2rem; align-items: start; }
.card-panel { background: #fff; border-radius: var(--r-lg); padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--shadow); border: 1px solid var(--line); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.2rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .95rem; }
.field label .opt { font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink);
  padding: .8rem .95rem; border-radius: var(--r-sm);
  border: 1.5px solid var(--line); background: var(--foam);
  transition: border-color .2s, background-color .2s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--turquoise); background: #fff; box-shadow: 0 0 0 3px rgba(19,168,166,.2); }
.field [aria-invalid="true"] { border-color: #c62828; background: #fff6f6; }
.field-error { color: #b71c1c; font-size: .87rem; min-height: 1.2em; }
.check { flex-direction: row; align-items: flex-start; gap: .6rem; }
.check input { margin-top: .3rem; width: 18px; height: 18px; accent-color: var(--turquoise); }
.check label { font-weight: 400; }
.form-status { margin-top: 1rem; padding: .9rem 1rem; border-radius: var(--r-sm); display: none; }
.form-status.is-success { display: block; background: var(--turquoise-soft); color: var(--pacific-900); }
.form-status.is-error { display: block; background: #fff0f0; color: #b71c1c; }
.form-note { color: var(--muted); font-size: .9rem; margin-top: 1rem; }

.contact-list { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: 1.1rem; }
.contact-list li { display: grid; grid-template-columns: 44px 1fr; gap: .9rem; align-items: center; }
.contact-list .fact-icon { width: 44px; height: 44px; background: var(--foam); }
.contact-list small { display: block; color: var(--muted); }
.contact-list a { font-weight: 600; color: var(--pacific-900); text-decoration: none; }
.contact-list a:hover { color: var(--sunset-dark); }
.hours { margin: 1.4rem 0 0; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.hours dl { display: grid; grid-template-columns: 1fr auto; gap: .3rem 1rem; margin: .5rem 0 0; }
.hours dd { margin: 0; color: var(--muted); }

.map-ph {
  margin-top: 2rem; border-radius: var(--r-lg); min-height: 300px;
  display: grid; place-items: center; text-align: center; padding: 2rem;
  color: #fff;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.08) 0 1px, transparent 1px 48px),
    linear-gradient(140deg, var(--turquoise), var(--pacific-700));
}
.map-ph svg { width: 48px; height: 48px; color: var(--sunset); margin: 0 auto .6rem; }
.map-ph p { margin: .4rem 0 1rem; }

/* FAQ accordion */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: .8rem; }
.faq-item { background: #fff; border-radius: var(--r-md); border: 1px solid var(--line); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.15rem 1.4rem; border: 0; background: transparent; cursor: pointer; text-align: left;
  font: 700 1.05rem var(--font-body); color: var(--pacific-900);
}
.faq-q .plus { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--sunset-soft); position: relative; transition: transform .3s var(--ease), background-color .3s; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; background: var(--sunset-dark); transform: translate(-50%, -50%); }
.faq-q .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-q[aria-expanded="true"] .plus { transform: rotate(45deg); background: var(--sunset); }
.faq-q[aria-expanded="true"] .plus::before, .faq-q[aria-expanded="true"] .plus::after { background: #fff; }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 1.4rem 1.2rem; margin: 0; color: var(--muted); }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }

.privacy-note { font-size: .92rem; color: var(--muted); max-width: 820px; margin: 2.5rem auto 0; }

/* ---------- Dialog ---------- */
.tour-dialog {
  width: min(720px, 94vw); max-height: 90vh; padding: 0; border: 0;
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg); color: var(--ink);
}
.tour-dialog::backdrop { background: rgba(6,43,76,.6); backdrop-filter: blur(3px); }
.tour-dialog .media { aspect-ratio: 16 / 7; }
.dialog-body { padding: 1.6rem 1.8rem 2rem; }
.dialog-body h4 { margin: 1.3rem 0 .4rem; font-size: 1.05rem; }
.dialog-body ul { margin: 0; }
.dialog-close {
  position: absolute; top: .8rem; right: .8rem; z-index: 2;
  width: 42px; height: 42px; border-radius: 50%; border: 0; cursor: pointer;
  background: #fff; color: var(--pacific-900); font-size: 1.5rem; line-height: 1;
  box-shadow: var(--shadow);
}
.note-box { margin-top: 1.2rem; padding: .9rem 1rem; border-radius: var(--r-sm); background: var(--sunset-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--pacific-900); color: rgba(255,255,255,.82); padding-top: 4rem; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr; gap: 2rem; padding-bottom: 3rem; }
.site-footer h2 { font-size: 1.05rem; color: #fff; margin-bottom: 1rem; }
.site-footer .brand { color: #fff; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.site-footer a { color: rgba(255,255,255,.85); text-decoration: none; }
.site-footer a:hover { color: var(--sunset); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-block: 1.3rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem;
  font-size: .88rem;
}
.footer-bottom p { margin: 0; }

/* ---------- Floating buttons ---------- */
.wa-float {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 90;
  display: inline-flex; align-items: center; gap: .5rem;
  background: #25d366; color: #fff; text-decoration: none; font-weight: 700;
  padding: .85rem 1.1rem; border-radius: 999px;
  box-shadow: 0 12px 28px -10px rgba(0,0,0,.45);
  transition: transform .2s var(--ease);
}
.wa-float:hover { color: #fff; transform: translateY(-3px); }
.wa-float svg { width: 26px; height: 26px; }
.to-top {
  position: fixed; right: 1.35rem; bottom: 5.2rem; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--pacific-700); color: #fff; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s, transform .25s, visibility .25s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top svg { width: 22px; height: 22px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .intro-grid, .split, .contact-grid, .mission-grid { grid-template-columns: 1fr; }
  .split.reverse > .split-media { order: 0; }
  .testimonials, .guide-list, .team-grid { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 1rem; }
  .hero { padding-block: 5rem 6rem; min-height: 78vh; }
  .values-grid, .footer-grid, .form-grid, .price-pair { grid-template-columns: 1fr; }
  .tour-grid { grid-template-columns: 1fr; }
  .btn-row .btn { flex: 1 1 100%; }
  .wa-float .wa-label { display: none; }
  .wa-float { padding: .9rem; }
  .policy { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* Photo credits */
.photo-credits { font-size: .85rem; padding-bottom: 1.2rem; }
.photo-credits summary { cursor: pointer; font-weight: 600; color: #fff; }
.photo-credits ul { margin-top: .6rem; gap: .25rem; }

/* Coming-soon card */
.soon-card { border: 2px dashed #bfe6e5; box-shadow: none; background: var(--foam); }
.soon-art { aspect-ratio: 16 / 10; display: grid; place-items: center; background: linear-gradient(180deg, #fff 0%, var(--turquoise-soft) 100%); }
.soon-art svg { width: 45%; height: auto; }
.also-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.also-card { padding: 1.8rem; border-radius: var(--r-md); background: #fff; border: 1px solid var(--line); display: flex; flex-direction: column; gap: .6rem; align-items: flex-start; }
.also-card p { color: var(--muted); margin: 0; }
.also-card .price-line { font-family: var(--font-display); font-weight: 700; color: var(--sunset-dark); font-size: 1.25rem; }
@media (max-width: 700px) { .also-grid { grid-template-columns: 1fr; } }

/* Airport transfer highlight card (overlaps the hero) */
.hero-home { padding-bottom: clamp(9rem, 14vw, 12rem); }
.transfer-strip { position: relative; z-index: 5; margin-top: clamp(-120px, -9vw, -70px); padding-bottom: clamp(1rem, 3vw, 2rem); }
.strip-card {
  position: relative; overflow: hidden; isolation: isolate;
  display: grid; grid-template-columns: auto 1fr auto; gap: clamp(1.2rem, 3vw, 2.5rem); align-items: center;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-radius: 32px;
  background: linear-gradient(120deg, var(--sunset) 0%, #f5813f 45%, #ff9a52 100%);
  color: #fff;
  box-shadow: 0 30px 60px -24px rgba(212, 83, 26, .65), 0 0 0 6px rgba(255,255,255,.9);
}
.strip-card::after {
  content: ""; position: absolute; z-index: -1; right: -60px; bottom: -120px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(255,255,255,.14);
}
.strip-van {
  width: clamp(120px, 15vw, 190px); height: auto; aspect-ratio: 1; object-fit: cover;
  border-radius: 50%; border: 6px solid #fff; box-shadow: 0 12px 28px -10px rgba(6,43,76,.5);
}
.strip-badge {
  display: inline-block; background: var(--pacific-900); color: #fff;
  font-size: .85rem; font-weight: 700; padding: .3rem .8rem; border-radius: 999px; margin-bottom: .6rem;
}
.transfer-strip h2 { color: #fff; font-size: clamp(1.7rem, 3.2vw, 2.6rem); margin-bottom: .35rem; }
.strip-body p { margin: 0; color: #fff; font-size: 1.08rem; max-width: 44ch; }
.strip-points { list-style: none; padding: 0; margin: .9rem 0 0; display: flex; flex-wrap: wrap; gap: .45rem .6rem; }
.strip-points li {
  background: rgba(255,255,255,.22); border: 1px solid rgba(255,255,255,.45);
  padding: .25rem .75rem; border-radius: 999px; font-weight: 600; font-size: .9rem;
}
.strip-side { display: flex; flex-direction: column; gap: 1rem; align-items: stretch; }
.strip-prices { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.strip-price { background: #fff; color: var(--pacific-900); border-radius: 18px; padding: .8rem 1rem; text-align: center; }
.strip-price strong { display: block; font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); line-height: 1; color: var(--sunset-dark); }
.strip-price strong small { font-size: .45em; font-weight: 700; }
.strip-price span { display: block; margin-top: .3rem; font-size: .82rem; color: var(--muted); }
.btn-strip { --bg: var(--pacific-900); --fg: #fff; padding: 1rem 1.4rem; font-size: 1.08rem; }
.btn-strip:hover { --bg: var(--pacific-700); }
@media (max-width: 960px) {
  .strip-card { grid-template-columns: auto 1fr; }
  .strip-side { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .transfer-strip { margin-top: -50px; }
  .strip-card { grid-template-columns: 1fr; text-align: left; }
  .strip-van { width: 110px; }
}
@media (max-width: 560px) { .hero .btn-row .hero-wa { display: none; } }

/* Logo */
.brand-logo { height: 64px; width: auto; }
.footer-logo { display: inline-block; background: #fff; border-radius: var(--r-md); padding: .6rem .9rem; }
.footer-logo img { height: 64px; width: auto; }
@media (max-width: 560px) { .brand-logo { height: 50px; } }

/* Van photo accents */
.also-img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--r-sm); margin-bottom: .4rem; }
.split-media img[src*="transfer-van"] { object-position: center 40%; }


/* =========================================================
   Fun layer — playful, but polished
   ========================================================= */
:root { --sunshine: #ffc93c; --hibiscus: #ff5d8f; --bounce: cubic-bezier(.34, 1.56, .64, 1); }

/* Papel picado bunting */
.papel { height: 56px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='56' viewBox='0 0 300 56'%3E%3Cpath d='M0 5H300' stroke='%230a3d6b' stroke-width='1.5' opacity='.5'/%3E%3Cpath fill='%23f26b2a' fill-rule='evenodd' d='M6 5h48v38l-6 8l-6-8l-6 8l-6-8l-6 8l-6-8l-6 8l-6-8zM30 14l7 7-7 7-7-7zM16 34a3 3 0 1 0 6 0a3 3 0 1 0-6 0zM38 34a3 3 0 1 0 6 0a3 3 0 1 0-6 0zM14 12h5v5h-5zM41 12h5v5h-5z'/%3E%3Cpath fill='%2313a8a6' fill-rule='evenodd' d='M66 5h48v38l-6 8l-6-8l-6 8l-6-8l-6 8l-6-8l-6 8l-6-8zM90 14l7 7-7 7-7-7zM76 34a3 3 0 1 0 6 0a3 3 0 1 0-6 0zM98 34a3 3 0 1 0 6 0a3 3 0 1 0-6 0zM74 12h5v5h-5zM101 12h5v5h-5z'/%3E%3Cpath fill='%23ffc93c' fill-rule='evenodd' d='M126 5h48v38l-6 8l-6-8l-6 8l-6-8l-6 8l-6-8l-6 8l-6-8zM150 14l7 7-7 7-7-7zM136 34a3 3 0 1 0 6 0a3 3 0 1 0-6 0zM158 34a3 3 0 1 0 6 0a3 3 0 1 0-6 0zM134 12h5v5h-5zM161 12h5v5h-5z'/%3E%3Cpath fill='%23ff5d8f' fill-rule='evenodd' d='M186 5h48v38l-6 8l-6-8l-6 8l-6-8l-6 8l-6-8l-6 8l-6-8zM210 14l7 7-7 7-7-7zM196 34a3 3 0 1 0 6 0a3 3 0 1 0-6 0zM218 34a3 3 0 1 0 6 0a3 3 0 1 0-6 0zM194 12h5v5h-5zM221 12h5v5h-5z'/%3E%3Cpath fill='%23155fa0' fill-rule='evenodd' d='M246 5h48v38l-6 8l-6-8l-6 8l-6-8l-6 8l-6-8l-6 8l-6-8zM270 14l7 7-7 7-7-7zM256 34a3 3 0 1 0 6 0a3 3 0 1 0-6 0zM278 34a3 3 0 1 0 6 0a3 3 0 1 0-6 0zM254 12h5v5h-5zM281 12h5v5h-5z'/%3E%3C/svg%3E") repeat-x top left / 300px 56px; transform-origin: top center; animation: sway 6s ease-in-out infinite; }
.site-footer .papel { margin-top: -4rem; margin-bottom: 1.5rem; }
.papel-cta { margin-bottom: -.4rem; position: relative; z-index: 1; }
@keyframes sway { 0%, 100% { transform: skewX(0deg) translateY(0); } 50% { transform: skewX(-1.5deg) translateY(2px); } }

/* Section heading squiggle */
.section-head h2::after { content: ""; display: block; width: 84px; height: 12px; margin-top: .55rem; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='12' viewBox='0 0 84 12'%3E%3Cpath d='M2 7c6-6 10-6 16 0s10 6 16 0 10-6 16 0 10 6 16 0 10-6 16 0' fill='none' stroke='%23f26b2a' stroke-width='3.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat; }
.section-head.center h2::after { margin-inline: auto; }
.cta-band h2::after { content: ""; display: block; width: 84px; height: 12px; margin-top: .55rem; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='12' viewBox='0 0 84 12'%3E%3Cpath d='M2 7c6-6 10-6 16 0s10 6 16 0 10-6 16 0 10 6 16 0 10-6 16 0' fill='none' stroke='%23ffc93c' stroke-width='3.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat; }

/* Hero: squiggle word, sticker, sun rays */
.squiggle { position: relative; white-space: nowrap; }
.squiggle::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -.12em; height: .22em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='12' viewBox='0 0 84 12'%3E%3Cpath d='M2 7c6-6 10-6 16 0s10 6 16 0 10-6 16 0 10 6 16 0 10-6 16 0' fill='none' stroke='%23ffc93c' stroke-width='3.5' stroke-linecap='round'/%3E%3C/svg%3E") repeat-x left center / auto 100%;
  animation: draw 1.2s .9s var(--ease) both;
}
@keyframes draw { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0 0 0); } }
.hero-title-wrap { position: relative; display: inline-block; }
.sticker {
  position: absolute; top: -.6rem; right: -1.2rem;
  font-family: var(--font-display); font-weight: 800; font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--pacific-900); background: var(--sunshine);
  padding: .45rem .9rem; border-radius: 999px 999px 999px 6px;
  transform: rotate(8deg); box-shadow: 0 10px 20px -8px rgba(0,0,0,.35);
  animation: pop .6s 1s var(--bounce) both, bob 4s 1.8s ease-in-out infinite;
}
@keyframes pop { from { transform: rotate(8deg) scale(0); } to { transform: rotate(8deg) scale(1); } }
@keyframes bob { 0%, 100% { transform: rotate(8deg) translateY(0); } 50% { transform: rotate(4deg) translateY(-6px); } }
.hero-sun::before {
  content: ""; position: absolute; inset: -28%; border-radius: 50%; z-index: -1;
  background: repeating-conic-gradient(rgba(255,201,60,.35) 0 6deg, transparent 6deg 18deg);
  -webkit-mask: radial-gradient(circle, transparent 38%, #000 40%, transparent 70%);
          mask: radial-gradient(circle, transparent 38%, #000 40%, transparent 70%);
  animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Buttons: a little bounce */
.btn { transition: transform .35s var(--bounce), background-color .2s, box-shadow .2s; }
.btn:hover { transform: translateY(-3px) scale(1.02); }
.btn:active { transform: translateY(0) scale(.97); }

/* Cards: lift and tilt */
.tour-card, .also-card, .team-card, .mission-card, .value { transition: transform .4s var(--bounce), box-shadow .3s; }
.tour-card:hover, .also-card:hover, .team-card:hover { transform: translateY(-6px) rotate(-.5deg); box-shadow: var(--shadow-lg); }
.tour-card .media img, .also-img { transition: transform .7s var(--ease); }
.tour-card:hover .media img { transform: scale(1.06); }
.soon-card:hover .soon-art svg { animation: bob 1.6s ease-in-out infinite; }

/* Values with icons */
.value-icon {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 1rem;
  background: var(--turquoise-soft); color: var(--turquoise);
  transition: transform .4s var(--bounce);
}
.value:nth-child(2) .value-icon { background: var(--sunset-soft); color: var(--sunset); }
.value:nth-child(3) .value-icon { background: #e6effa; color: var(--pacific-500); }
.value:nth-child(4) .value-icon { background: #fff6d6; color: #d99a00; }
.value-icon svg { width: 26px; height: 26px; }
.value:hover { transform: translateY(-4px); }
.value:hover .value-icon { transform: rotate(-10deg) scale(1.1); }

/* Sample testimonials: pinned-note feel */
.testimonial:nth-child(odd) { transform: rotate(-1deg); }
.testimonial:nth-child(even) { transform: rotate(1deg); }
.testimonial { transition: transform .4s var(--bounce); }
.testimonial:hover { transform: rotate(0) translateY(-4px); }

/* Team avatars in different colors */
.team-card:nth-child(2) .avatar { background: linear-gradient(140deg, var(--sunset), var(--hibiscus)); }
.team-card:nth-child(3) .avatar { background: linear-gradient(140deg, var(--sunshine), var(--sunset)); color: var(--pacific-900); }

/* Highlights ticker */
.ticker { background: var(--sunshine); color: var(--pacific-900); overflow: hidden; border-block: 3px solid var(--pacific-900); margin-top: clamp(1.5rem, 3vw, 2.5rem); }
.ticker-track { display: flex; width: max-content; animation: ticker 38s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker ul { display: flex; list-style: none; margin: 0; padding: .8rem 0; }
.ticker li { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.05rem, 2vw, 1.35rem); white-space: nowrap; display: flex; align-items: center; }
.ticker li::after { content: "✦"; color: var(--sunset); margin: 0 1.4rem; font-size: .9em; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Transfer card: plane-to-hotel route */
.strip-route { display: flex; align-items: center; gap: .6rem; margin-top: 1rem; max-width: 340px; }
.strip-route svg { width: 26px; height: 26px; flex: none; color: #fff; }
.route-dash {
  flex: 1; height: 3px; border-radius: 3px;
  background: repeating-linear-gradient(90deg, #fff 0 10px, transparent 10px 18px);
  background-size: 18px 3px; animation: dash .9s linear infinite;
}
@keyframes dash { to { background-position: 18px 0; } }
.strip-van { transition: transform .5s var(--bounce); }
.strip-card:hover .strip-van { transform: rotate(-6deg) scale(1.04); }

/* WhatsApp button: gentle attention ring */
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: -1;
  background: #25d366; animation: ring 3s ease-out infinite;
}
@keyframes ring { 0% { transform: scale(1); opacity: .55; } 70%, 100% { transform: scale(1.35); opacity: 0; } }

/* Scroll reveal */
.reveal-pending { opacity: 0; transform: translateY(28px) scale(.98); }
.reveal-in { transition: opacity .6s var(--ease), transform .7s var(--bounce); }

@media (max-width: 560px) {
  .sticker { right: -.2rem; top: -1.6rem; }
  .papel { height: 44px; background-size: 236px 44px; }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  .reveal-pending { opacity: 1; transform: none; }
}

/* =========================================================
   Hero sun — refined line-art version (replaces the disc)
   ========================================================= */
.hero-sun {
  left: auto; right: clamp(-60px, 2vw, 40px); top: 50%;
  width: clamp(260px, 34vw, 460px);
  transform: translateY(-58%);
  background: none;
  border: 1.5px solid rgba(255, 255, 255, .45);
  box-shadow:
    inset 0 0 0 18px rgba(255, 255, 255, .04),
    inset 0 0 0 19.5px rgba(255, 255, 255, .22),
    inset 0 0 0 46px rgba(255, 255, 255, .03),
    inset 0 0 0 47.5px rgba(255, 255, 255, .14);
  opacity: 1;
  animation: sunFade 1.6s var(--ease) both;
}
/* fine rays */
.hero-sun::before {
  inset: -22%;
  background: repeating-conic-gradient(rgba(255, 255, 255, .5) 0 .5deg, transparent .5deg 10deg);
  -webkit-mask: radial-gradient(circle, transparent 52%, #000 53%, #000 62%, transparent 72%);
          mask: radial-gradient(circle, transparent 52%, #000 53%, #000 62%, transparent 72%);
  opacity: .55;
  animation: spin 160s linear infinite;
}
/* warm core glow */
.hero-sun::after {
  content: ""; position: absolute; inset: 30%; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 190, 130, .55) 0%, rgba(255, 140, 80, .18) 45%, transparent 72%);
  filter: blur(6px);
}
@keyframes sunFade { from { opacity: 0; transform: translateY(-50%) scale(.92); } to { opacity: 1; transform: translateY(-58%) scale(1); } }

/* soft sunset light across the hero */
.hero::before {
  background:
    radial-gradient(ellipse 60% 55% at 82% 38%, rgba(255, 150, 90, .22), transparent 70%),
    linear-gradient(180deg, rgba(6, 43, 76, .15) 0%, rgba(6, 43, 76, .35) 45%, rgba(6, 43, 76, .85) 100%);
}
.page-hero .hero-sun { display: none; }

@media (max-width: 760px) {
  .hero-sun { width: 240px; right: -90px; top: 18%; opacity: .7; }
}

/* Hero sun — lighter touch */
.hero-sun {
  border: 1px solid rgba(255, 255, 255, .5);
  box-shadow: inset 0 0 0 26px transparent, inset 0 0 0 27px rgba(255, 255, 255, .22);
}
.hero-sun::before { opacity: .4; }
.hero-sun::after {
  inset: 22%;
  background: radial-gradient(circle, rgba(255, 196, 140, .75) 0%, rgba(255, 150, 90, .35) 38%, rgba(255, 130, 70, 0) 70%);
  filter: blur(10px);
}
@media (max-width: 760px) {
  .hero-sun { width: 200px; right: -110px; top: 4%; opacity: .5; }
}

/* =========================================================
   Minimal theme — quieter type, flat surfaces, more space
   ========================================================= */
:root {
  --pacific-900: #0d1b2a;
  --pacific-700: #16304a;
  --pacific-500: #2f5d86;
  --turquoise: #2f7d7b;
  --turquoise-soft: #eef4f4;
  --sunset: #e2622a;
  --sunset-dark: #c14f1d;
  --sunset-soft: #fbf2ec;
  --foam: #f7f7f5;
  --ink: #1b1b1b;
  --muted: #6b6f76;
  --line: #e5e4e0;
  --r-lg: 14px; --r-md: 12px; --r-sm: 8px;
  --shadow: none; --shadow-lg: none;
}
body { font-size: 1.02rem; line-height: 1.7; }
h1, h2, h3 { font-weight: 600; letter-spacing: -.02em; }
h1 { font-size: clamp(2.3rem, 4.6vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
h3 { font-size: 1.15rem; }
.lead { font-size: 1.1rem; }
.section { padding-block: clamp(4.5rem, 10vw, 8rem); }
.section-head { margin-bottom: 3rem; }
.section-head h2::after, .cta-band h2::after { display: none; }

/* Flat surfaces, hairline borders */
.tour-card, .card-panel, .team-card, .also-card, .value, .fact-list li, .mission-card, .faq-item, .testimonial {
  box-shadow: none; border: 1px solid var(--line); background: #fff; border-radius: var(--r-md);
}
.value { border-top-width: 1px; border-top-color: var(--line); }
.value:nth-child(n) { border-top-color: var(--line); }
.mission-card { background: var(--foam); }
.testimonial { border-style: solid; border-color: var(--line); transform: none !important; }
.tour-card:hover, .also-card:hover, .team-card:hover, .value:hover, .testimonial:hover {
  transform: none; box-shadow: none; border-color: var(--pacific-900);
}
.tour-card:hover .media img { transform: none; }
.split-media, .tour-dialog { border-radius: var(--r-md); }
.split-media { aspect-ratio: 4 / 3; }
.split.reverse .split-media { border-radius: var(--r-md); }

/* Buttons: simple */
.btn { border-radius: 8px; font-weight: 600; padding: .8rem 1.4rem; }
.btn:hover { transform: none; box-shadow: none; }
.btn-outline { border-width: 1px; }
.nav-links a { border-radius: 6px; font-weight: 500; }
.nav-links a[aria-current="page"] { background: transparent; color: var(--pacific-900); box-shadow: inset 0 -2px 0 var(--sunset); border-radius: 0; }
.nav-links a:hover { background: var(--foam); }

/* Hero: photo, one line of text, nothing else */
.hero { min-height: min(72vh, 660px); padding-block: 6rem 5rem; }
.hero-home { padding-bottom: 8rem; }
.hero::before { background: linear-gradient(180deg, rgba(13,27,42,.30) 0%, rgba(13,27,42,.55) 55%, rgba(13,27,42,.8) 100%); }
.hero h1 { max-width: 16ch; text-shadow: none; }
.page-hero { min-height: 320px; padding-block: 5rem; }

/* Transfer card: restrained, still the first thing you see */
.transfer-strip { margin-top: -60px; }
.strip-card {
  background: #fff; color: var(--ink);
  border: 1px solid var(--line); border-top: 3px solid var(--sunset);
  border-radius: var(--r-md); box-shadow: 0 18px 40px -30px rgba(0,0,0,.4);
}
.strip-card::after { display: none; }
.transfer-strip h2 { color: var(--pacific-900); font-size: clamp(1.5rem, 2.4vw, 2rem); }
.transfer-strip p, .strip-price span { color: var(--muted); }
.strip-badge { background: var(--sunset-soft); color: var(--sunset-dark); font-weight: 600; }
.strip-van { border-width: 1px; border-color: var(--line); border-radius: var(--r-md); }
.strip-card:hover .strip-van { transform: none; }
.strip-points li { background: var(--foam); border-color: var(--line); color: var(--muted); font-weight: 500; }
.strip-price { background: var(--foam); border: 1px solid var(--line); }
.strip-route svg { color: var(--pacific-500); }
.route-dash { background: repeating-linear-gradient(90deg, var(--pacific-500) 0 8px, transparent 8px 16px); animation: none; }

/* Quiet accents */
.pull-quote { border-left-width: 2px; font-weight: 500; font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
.cta-band { background: var(--pacific-900); border-radius: var(--r-md); }
.cta-band::after { display: none; }
.policy { background: var(--foam); color: var(--ink); border: 1px solid var(--line); }
.policy h3 { color: var(--pacific-900); }
.policy p { color: var(--muted); opacity: 1; }
.policy-icon { color: var(--sunset); }
.tour-price { box-shadow: none; border: 1px solid var(--line); border-radius: var(--r-sm); }
.fact-icon { background: var(--foam); color: var(--pacific-500); border-radius: 8px; }
.avatar { box-shadow: none; border: 1px solid var(--line); background: var(--foam); color: var(--pacific-900); }
.team-card:nth-child(n) .avatar { background: var(--foam); color: var(--pacific-900); }
.soon-card { border: 1px dashed var(--line); background: #fff; }
.soon-art { background: var(--foam); }
.soon-art svg, .soon-card:hover .soon-art svg { animation: none; opacity: .5; }
.guide-list li { border-left-width: 2px; }

/* Calm motion */
.wa-float { border-radius: 8px; font-weight: 600; box-shadow: none; }
.wa-float::before { display: none; }
.wa-float:hover { transform: none; }
.to-top { border-radius: 8px; box-shadow: none; }
.reveal-pending { transform: translateY(14px); }
.media { background: linear-gradient(180deg, #dfe6ea, #b9c6cf); }
.media.is-placeholder::after { background: rgba(13,27,42,.6); font-weight: 500; }

/* =========================================================
   Color zoning — soft bands so every section reads apart
   ========================================================= */
:root {
  --sand: #fdf3ea;      --sand-ink: #c2571c;
  --sea: #e9f5f4;       --sea-ink: #16716e;
  --sky: #eaf1fa;       --sky-ink: #2a5e97;
  --mint: #edf6ec;      --mint-ink: #3d7a3a;
}
.section-foam { background: #fff; }
.tone-sand { background: var(--sand); --accent: var(--sand-ink); }
.tone-sea  { background: var(--sea);  --accent: var(--sea-ink); }
.tone-sky  { background: var(--sky);  --accent: var(--sky-ink); }
.tone-mint { background: var(--mint); --accent: var(--mint-ink); }
.tone-plain { background: #fff; --accent: var(--sunset-dark); }

/* Section label */
.kicker {
  display: inline-block; margin: 0 0 .6rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent, var(--sunset-dark));
  padding: .3rem .7rem; border-radius: 999px;
  background: rgba(255, 255, 255, .75); border: 1px solid rgba(0, 0, 0, .06);
}
.section-head h2 { margin-bottom: .4rem; }

/* Accent colour flows into each section's details */
.tone-sand, .tone-sea, .tone-sky, .tone-mint { --line: rgba(0, 0, 0, .09); }
.tone-sand .fact-icon, .tone-sea .fact-icon, .tone-sky .fact-icon, .tone-mint .fact-icon { color: var(--accent); background: #fff; }
.tone-sea .tour-includes li::before, .tone-sand .tour-includes li::before { border-color: var(--accent); }
.tone-sea .tour-meta svg { color: var(--accent); }
.tone-sand .pull-quote { border-left-color: var(--accent); }
.tone-mint .value { border-left: 3px solid var(--accent); }
.tone-sky .mission-card:first-child { background: #fff; border-left: 3px solid var(--sky-ink); }
.tone-sky .mission-card:nth-child(2) { background: #fff; border-left: 3px solid var(--sand-ink); }
.tone-sea .guide-list li { border-left-color: var(--accent); }
.tone-sand .avatar { background: #fff; color: var(--accent); border-color: var(--line); }
.tone-sand .testimonial { background: #fff; }
.tone-sky .card-panel, .tone-sand .card-panel { background: #fff; }
.tone-sky .faq-item, .tone-sand .faq-item { background: #fff; }
.faq-q .plus { background: #fff; border: 1px solid var(--line); }
.faq-q[aria-expanded="true"] .plus { background: var(--accent, var(--sunset)); border-color: transparent; }
.faq-q[aria-expanded="true"] .plus::before, .faq-q[aria-expanded="true"] .plus::after { background: #fff; }

/* Softer section rhythm: a thin rule where two white areas meet */
.section + .section-foam, .section-foam + .section { border-top: 1px solid var(--line); }

/* Colour in the small things */
.tour-price { background: #fff; color: var(--sunset-dark); border-color: var(--line); }
.strip-price strong { color: var(--sunset-dark); }
.btn-turquoise { --bg: var(--sea-ink); }
.value:nth-child(1) { border-left-color: var(--sea-ink); }
.value:nth-child(2) { border-left-color: var(--sand-ink); }
.value:nth-child(3) { border-left-color: var(--sky-ink); }
.value:nth-child(4) { border-left-color: var(--mint-ink); }
.cta-band { background: linear-gradient(120deg, #123a5c 0%, #1c5b7d 60%, #2f7d7b 100%); }
.site-footer { background: #0d1b2a; }
.ph-tag { background: #fff6d6; border-style: solid; border-color: #e6cf85; color: #8a6a00; }

/* Keep cards crisp on tinted backgrounds */
.tone-sand .tour-card, .tone-sea .tour-card, .tone-sky .tour-card, .tone-mint .tour-card,
.tone-sand .also-card, .tone-sea .also-card, .tone-sky .also-card,
.tone-mint .value, .tone-sand .team-card { background: #fff; }

/* Slightly stronger zoning and labels */
.tone-sea { background: #e4f2f0; }
.tone-sand { background: #fdf0e4; }
.tone-sky { background: #e7eff9; }
.tone-mint { background: #eaf4e8; }
.kicker { font-size: .8rem; background: #fff; }

/* Compact tour cards */
.tour-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 320px));
  justify-content: start;
  gap: 1.2rem;
}
.tour-card .media, .soon-art { aspect-ratio: 3 / 2; }
.tour-card-body { padding: 1rem 1.1rem 1.2rem; gap: .55rem; }
.tour-card h3 { font-size: 1.02rem; line-height: 1.25; }
.tour-card p, .tour-meta, .tour-includes { font-size: .88rem; }
.tour-card .tour-actions { gap: .45rem; padding-top: .3rem; }
.tour-card .btn { padding: .5rem .8rem; font-size: .85rem; }
.tour-price { padding: .3rem .55rem; font-size: .92rem; }
.tour-price small { font-size: .68rem; }
@media (max-width: 560px) {
  .tour-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Section separation, take 2: white page, colored rule + label
   ========================================================= */
.tone-sand, .tone-sea, .tone-sky, .tone-mint, .tone-plain, .section-foam { background: #fff; }
.section + .section, .section + .section-foam, .section-foam + .section { border-top: 0; }

.section[class*="tone-"] { position: relative; padding-block: clamp(3.5rem, 7vw, 6rem); }
/* hairline divider across the page */
.section[class*="tone-"]::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(1180px, 100% - 2.5rem); height: 1px; background: var(--line);
}
/* short colored marker sitting on the divider */
.section[class*="tone-"]::after {
  content: ""; position: absolute; top: -2px; left: 50%;
  margin-left: calc(min(1180px, 100% - 2.5rem) / -2);
  width: 64px; height: 5px; border-radius: 3px;
  background: var(--accent);
}
.tone-plain::after { display: none; }

/* Label: colored text with a dot, no chip */
.kicker {
  background: none; border: 0; padding: 0;
  display: flex; align-items: center; gap: .5rem;
  letter-spacing: .12em;
}
.kicker::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent, var(--sunset)); flex: none;
}

/* Cards need a touch of fill now that the page is all white */
.tour-card, .also-card, .value, .team-card, .mission-card, .faq-item, .fact-list li, .testimonial, .card-panel {
  background: #fcfbf9;
}
.tone-sky .card-panel, .tone-sand .card-panel { background: #fcfbf9; }
.tour-card .media { background: #eef1f3; }
.policy { background: #fcfbf9; }

/* Give each section's cards a hint of its color on the edge */
.tone-sea .tour-card:hover, .tone-sea .also-card:hover { border-color: var(--sea-ink); }
.tone-sky .card-panel { border-top: 3px solid var(--sky-ink); }
.tone-sand .testimonial { border-top: 3px solid var(--sand-ink); }
.tone-sand .team-card { border-top: 3px solid var(--sand-ink); }
.tone-sea .guide-list li { background: #fcfbf9; }

/* Hero photo: keep the headline off the lettering */
.hero-home > .media img { object-position: 60% 45%; }
.hero-home::before {
  background:
    linear-gradient(100deg, rgba(10,30,48,.72) 0%, rgba(10,30,48,.45) 42%, rgba(10,30,48,.12) 70%),
    linear-gradient(180deg, rgba(10,30,48,.35) 0%, rgba(10,30,48,.1) 40%, rgba(10,30,48,.55) 100%);
}
@media (max-width: 760px) { .hero-home > .media img { object-position: 42% 45%; } }
.hero-home > .media img { object-position: 46% 38%; }
@media (max-width: 760px) { .hero-home > .media img { object-position: 38% 40%; } }

/* Tours page hero: keep the van and the letters in frame */
.hero-tourspage { min-height: 420px; }
.hero-tourspage > .media img { object-position: 50% 72%; }
.hero-tourspage::before {
  background:
    linear-gradient(100deg, rgba(10,30,48,.7) 0%, rgba(10,30,48,.4) 45%, rgba(10,30,48,.12) 75%),
    linear-gradient(180deg, rgba(10,30,48,.3) 0%, rgba(10,30,48,.05) 45%, rgba(10,30,48,.45) 100%);
}
@media (max-width: 760px) { .hero-tourspage > .media img { object-position: 55% 70%; } }

/* About page hero: keep the diver and the rock in view, text over open sky */
.hero-aboutpage { min-height: 440px; }
.hero-aboutpage > .media img { object-position: 60% 30%; }
.hero-aboutpage::before {
  background:
    linear-gradient(100deg, rgba(10,30,48,.62) 0%, rgba(10,30,48,.32) 40%, rgba(10,30,48,0) 65%),
    linear-gradient(180deg, rgba(10,30,48,.15) 0%, rgba(10,30,48,0) 50%, rgba(10,30,48,.35) 100%);
}
@media (max-width: 760px) { .hero-aboutpage > .media img { object-position: 62% 30%; } }

.hero-aboutpage > .media img { object-position: 62% 45%; }
@media (max-width: 760px) { .hero-aboutpage > .media img { object-position: 64% 45%; } }
.hero-aboutpage { min-height: 500px; }
.hero-aboutpage > .media img { object-position: 60% 55%; }
@media (max-width: 760px) { .hero-aboutpage { min-height: 440px; } .hero-aboutpage::before { background: linear-gradient(180deg, rgba(10,30,48,.25) 0%, rgba(10,30,48,.55) 100%); } }

/* Founding year */
.since { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; padding-top: 1.2rem; border-top: 1px solid var(--line); color: var(--muted); }
.since-year { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; line-height: 1; color: var(--sunset-dark); flex: none; }

/* Our story photo: keep the lettering and building in frame */
.story-media img { object-position: 55% 72%; }

/* Facebook link */
.fb-link { display: inline-flex; align-items: center; gap: .4rem; }
.fb-link svg { width: 18px; height: 18px; }
.contact-list .fact-icon svg[fill] { width: 22px; height: 22px; }
