/* ============================================================
   Jet Ski Tenerife — Design System
   Adventure / Adrenaline · Dark Navy + Sunset Orange
   ============================================================ */

/* ---------- 1. CSS Variables ---------- */
:root {
  /* Backgrounds */
  --bg-primary: #0A1628;
  --bg-secondary: #0F1F3D;
  --bg-elevated: #15284A;
  --surface: #FFFFFF;
  --surface-muted: #F4F6FA;

  /* Accent */
  --accent: #FF5B1F;
  --accent-hover: #E04A12;
  --accent-soft: #FFF1EB;
  --accent-2: #00C2FF;

  /* Text */
  --text-on-dark: #FFFFFF;
  --text-on-dark-muted: #A8B5CC;
  --text-primary: #0A1628;
  --text-muted: #5A6B85;
  --text-subtle: #6B7A94;

  /* Functional */
  --border: #E4E9F2;
  --border-dark: #243A5E;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --star: #FFB400;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(10,22,40,0.06);
  --shadow-md: 0 4px 24px rgba(10,22,40,0.08);
  --shadow-lg: 0 12px 40px rgba(10,22,40,0.12);
  --shadow-accent: 0 12px 40px rgba(255,91,31,0.28);

  /* Spacing scale */
  --space-1: 4px;  --space-2: 8px;  --space-3: 12px;
  --space-4: 16px; --space-5: 24px; --space-6: 32px;
  --space-7: 48px; --space-8: 64px; --space-9: 96px; --space-10: 128px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* Layout */
  --container: 1280px;
  --container-pad: 24px;
  --nav-h: 72px;

  /* Motion */
  --dur-fast: 200ms;
  --dur-med: 300ms;
  --dur-slow: 500ms;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1024px) {
  :root { --container-pad: 48px; }
}

/* ---------- 2. Reset + Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: var(--accent); text-decoration: none; transition: color var(--dur-fast) var(--ease); }
a:hover { color: var(--accent-hover); }
ul, ol { list-style: none; padding: 0; }

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.5rem, 5vw + 1rem, 4rem); line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3vw + 1rem, 3rem); }
h3 { font-size: clamp(1.5rem, 1.5vw + 1rem, 1.75rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: clamp(1.125rem, 0.5vw + 1rem, 1.25rem); font-weight: 600; line-height: 1.4; }
p { line-height: 1.65; }
.eyebrow {
  font-size: 12px; font-weight: 500; line-height: 1.5;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent);
}
.lead { font-size: clamp(1.0625rem, 0.5vw + 1rem, 1.125rem); line-height: 1.6; color: var(--text-muted); }

/* ---------- 4. Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.section { padding-block: 64px; }
@media (min-width: 1024px) { .section { padding-block: 96px; } }
.section-lg { padding-block: 80px; }
@media (min-width: 1024px) { .section-lg { padding-block: 128px; } }
.section--dark { background: var(--bg-primary); color: var(--text-on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--text-on-dark); }
.section--muted { background: var(--surface-muted); }

.stack > * + * { margin-top: var(--space-4); }
.stack-lg > * + * { margin-top: var(--space-6); }
.stack-xl > * + * { margin-top: var(--space-7); }

.grid { display: grid; gap: var(--space-5); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px)  { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* Section header (eyebrow + h2 + intro) */
.section-head { max-width: 720px; margin-bottom: var(--space-7); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { display: inline-block; margin-bottom: var(--space-3); }
.section-head p { color: var(--text-muted); margin-top: var(--space-3); font-size: 1.0625rem; }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--space-2);
  padding: 14px 28px;
  font-size: 16px; font-weight: 600; line-height: 1;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--accent-hover); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-accent); }
.btn--ghost { background: transparent; color: currentColor; border: 1.5px solid currentColor; }
.btn--ghost:hover { background: currentColor; color: var(--bg-primary); }
.btn--light { background: #fff; color: var(--text-primary); box-shadow: var(--shadow-sm); }
.btn--light:hover { background: #fff; color: var(--text-primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--lg { padding: 18px 36px; font-size: 18px; }
.btn--block { display: flex; width: 100%; }

/* ---------- 6. Chip / Badge ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  font-size: 12px; font-weight: 600; line-height: 1;
  letter-spacing: 0.03em; text-transform: uppercase;
  border-radius: var(--radius-pill);
  background: var(--accent-soft); color: var(--accent);
}
.chip--dark { background: rgba(255,255,255,0.1); color: #fff; }
.chip--success { background: rgba(16,185,129,0.12); color: var(--success); }
.chip--outline { background: transparent; border: 1.5px solid var(--border-dark); color: var(--text-on-dark); }

/* ---------- 7. Cards ---------- */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.tour-card { display: flex; flex-direction: column; }
.tour-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.tour-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.tour-card:hover .tour-card__img { transform: scale(1.05); }
.tour-card__chip { position: absolute; top: 12px; left: 12px; }
.tour-card__body { padding: 20px 24px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.tour-card__title { font-size: 1.25rem; font-weight: 600; line-height: 1.35; }
.tour-card__meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 14px; color: var(--text-muted); }
.tour-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.tour-card__meta .icon { width: 16px; height: 16px; color: var(--text-subtle); }
.tour-card__price-row { display: flex; align-items: baseline; justify-content: space-between; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border); }
.tour-card__price { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--accent); }
.tour-card__price small { font-size: 12px; font-weight: 500; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.tour-card__cta { color: var(--accent); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; font-size: 14px; }
.tour-card a { color: inherit; text-decoration: none; display: contents; }

/* Location card (image bg + text overlay) */
.loc-card {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-lg);
  overflow: hidden; display: flex; align-items: flex-end;
  color: #fff; text-decoration: none;
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}
.loc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: #fff; }
.loc-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.loc-card:hover .loc-card__img { transform: scale(1.08); }
.loc-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0) 40%, rgba(10,22,40,0.85) 100%);
}
.loc-card__body { position: relative; padding: 24px; z-index: 1; width: 100%; }
.loc-card__title { font-size: 1.375rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.loc-card__meta { font-size: 14px; color: var(--text-on-dark-muted); }

/* ---------- 8. Header / Navigation ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: var(--nav-h);
  transition: background var(--dur-med) var(--ease), backdrop-filter var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
  color: var(--text-on-dark);
}
.site-header--transparent { background: transparent; }
.site-header--solid { background: rgba(10,22,40,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 1px 0 rgba(255,255,255,0.06); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 24px; }
.nav__brand { display: flex; align-items: center; gap: 10px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px; color: #fff; text-decoration: none; }
.nav__brand:hover { color: #fff; }
.nav__brand-mark { width: 32px; height: 32px; }
.nav__menu { display: none; gap: 28px; }
.nav__menu a { color: #fff; font-size: 15px; font-weight: 500; position: relative; padding: 6px 0; }
.nav__menu a:hover { color: var(--accent-2); }
.nav__menu a.is-active::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--accent); border-radius: 2px; }
.nav__right { display: flex; align-items: center; gap: 12px; }
.nav__toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; color: #fff; border-radius: 8px; }
.nav__toggle:hover { background: rgba(255,255,255,0.1); }
@media (min-width: 1024px) {
  .nav__menu { display: flex; }
  .nav__toggle { display: none; }
}

/* Language switcher */
.lang-switch { position: relative; }
.lang-switch__btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; color: #fff; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; transition: background var(--dur-fast) var(--ease); }
.lang-switch__btn:hover { background: rgba(255,255,255,0.1); }
.lang-switch__btn .icon { width: 16px; height: 16px; }
.lang-switch__menu { position: absolute; top: calc(100% + 8px); right: 0; background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); min-width: 180px; padding: 8px; opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity var(--dur-fast), transform var(--dur-fast); z-index: 60; }
.lang-switch.is-open .lang-switch__menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.lang-switch__menu a { display: flex; align-items: center; gap: 10px; padding: 8px 12px; color: var(--text-primary); font-size: 14px; border-radius: 6px; }
.lang-switch__menu a:hover { background: var(--surface-muted); color: var(--text-primary); }
.lang-switch__menu a.is-active { color: var(--accent); font-weight: 600; }

/* Mobile menu overlay */
.mobile-menu { position: fixed; inset: 0; background: var(--bg-primary); z-index: 100; opacity: 0; visibility: hidden; transition: opacity var(--dur-med), visibility var(--dur-med); padding: 24px; display: flex; flex-direction: column; }
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }
.mobile-menu__list { display: flex; flex-direction: column; gap: 4px; margin-top: 24px; }
.mobile-menu__list a { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; color: #fff; padding: 12px 0; border-bottom: 1px solid var(--border-dark); }
.mobile-menu__list a:hover { color: var(--accent); }
.mobile-menu__footer { margin-top: auto; display: flex; flex-direction: column; gap: 16px; }

/* ---------- 9. Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; overflow: hidden; padding-top: var(--nav-h); }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,22,40,0.75) 0%, rgba(10,22,40,0.55) 100%); }
.hero__body { position: relative; z-index: 1; max-width: 760px; padding-block: 64px; }
.hero h1 { color: #fff; margin-top: 16px; margin-bottom: 20px; }
.hero__sub { font-size: clamp(1.0625rem, 0.5vw + 1rem, 1.25rem); line-height: 1.55; color: var(--text-on-dark-muted); max-width: 600px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero__trust { display: inline-flex; align-items: center; gap: 8px; margin-top: 40px; font-size: 14px; color: var(--text-on-dark-muted); }
.hero__trust .icon { width: 18px; height: 18px; color: var(--star); }

/* ---------- 10. USP bar ---------- */
.usp-bar { background: var(--surface-muted); border-block: 1px solid var(--border); padding-block: 32px; }
.usp-bar__grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .usp-bar__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .usp-bar__grid { grid-template-columns: repeat(4, 1fr); } }
.usp { display: flex; gap: 14px; align-items: flex-start; }
.usp__icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: var(--radius-md); background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; }
.usp__icon .icon { width: 22px; height: 22px; }
.usp__title { font-weight: 600; font-size: 15px; margin-bottom: 2px; }
.usp__text { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* ---------- 11. Stats band ---------- */
.stats-band { background: var(--bg-secondary); color: #fff; padding-block: 56px; }
.stats-band__grid { display: grid; gap: 32px; grid-template-columns: repeat(2, 1fr); text-align: center; }
@media (min-width: 1024px) { .stats-band__grid { grid-template-columns: repeat(4, 1fr); } }
.stat__value { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 3vw + 1rem, 3rem); font-weight: 700; color: var(--accent); line-height: 1; }
.stat__label { font-size: 14px; color: var(--text-on-dark-muted); margin-top: 8px; text-transform: uppercase; letter-spacing: 0.05em; }

/* ---------- 12. Reviews slider ---------- */
.reviews { position: relative; }
.reviews__track { display: grid; grid-auto-flow: column; grid-auto-columns: 90%; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 16px; scrollbar-width: none; }
.reviews__track::-webkit-scrollbar { display: none; }
@media (min-width: 768px) { .reviews__track { grid-auto-columns: 48%; } }
@media (min-width: 1024px) { .reviews__track { grid-auto-columns: 32%; } }
.review { scroll-snap-align: start; background: #fff; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-md); display: flex; flex-direction: column; gap: 16px; }
.review__stars { display: flex; gap: 2px; color: var(--star); }
.review__stars .icon { width: 18px; height: 18px; }
.review__text { color: var(--text-muted); line-height: 1.6; flex: 1; }
.review__author { display: flex; gap: 12px; align-items: center; }
.review__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.review__name { font-weight: 600; font-size: 15px; }
.review__meta { font-size: 13px; color: var(--text-subtle); }

/* ---------- 13. FAQ accordion ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 0; text-align: left; font-size: 17px; font-weight: 600; color: var(--text-primary); cursor: pointer; gap: 16px; }
.faq__btn:hover { color: var(--accent); }
.faq__btn .icon { width: 24px; height: 24px; flex-shrink: 0; transition: transform var(--dur-med) var(--ease); color: var(--text-muted); }
.faq__item.is-open .faq__btn .icon { transform: rotate(45deg); color: var(--accent); }
.faq__panel { max-height: 0; overflow: hidden; transition: max-height var(--dur-med) var(--ease); }
.faq__item.is-open .faq__panel { max-height: 400px; }
.faq__panel p { padding-bottom: 20px; color: var(--text-muted); line-height: 1.7; }

/* ---------- 14. Final CTA banner ---------- */
.cta-banner { background: linear-gradient(135deg, var(--accent) 0%, #FF7A3D 100%); color: #fff; border-radius: var(--radius-xl); padding: 48px 32px; text-align: center; }
@media (min-width: 1024px) { .cta-banner { padding: 72px 48px; } }
.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.92); font-size: 1.0625rem; margin-bottom: 28px; max-width: 520px; margin-inline: auto; }

/* ---------- 15. Footer ---------- */
.site-footer { background: var(--bg-primary); color: var(--text-on-dark-muted); padding-block: 64px 24px; }
.site-footer__grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.site-footer h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; font-family: 'Inter', sans-serif; font-weight: 600; }
.site-footer a { color: var(--text-on-dark-muted); font-size: 15px; line-height: 2; }
.site-footer a:hover { color: #fff; }
.site-footer__brand { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700; color: #fff; }
.site-footer__tag { margin-top: 8px; max-width: 320px; font-size: 14px; line-height: 1.6; }
.site-footer__bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border-dark); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; font-size: 13px; }

/* ---------- 16. Sticky mobile CTA bar (tour-detail) ---------- */
.mobile-cta-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 40; background: #fff; box-shadow: 0 -4px 24px rgba(10,22,40,0.1); padding: 12px 16px; display: flex; align-items: center; gap: 12px; }
.mobile-cta-bar__price { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.125rem; color: var(--accent); }
.mobile-cta-bar__price small { display: block; font-size: 11px; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.mobile-cta-bar .btn { flex: 1; }
@media (min-width: 1024px) { .mobile-cta-bar { display: none; } }

/* ---------- 17. WhatsApp floating ---------- */
.whatsapp-fab { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,0.4); z-index: 30; transition: transform var(--dur-fast) var(--ease); }
.whatsapp-fab:hover { transform: scale(1.08); color: #fff; }
.whatsapp-fab .icon { width: 28px; height: 28px; }
.whatsapp-fab.has-pulse::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: #25D366; opacity: 0.5; animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.6); opacity: 0; } }
@media (max-width: 1023px) { .whatsapp-fab { bottom: 88px; } }

/* ---------- 18. Breadcrumbs ---------- */
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 14px; color: var(--text-muted); padding-block: 24px; }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs__sep { color: var(--text-subtle); }

/* ---------- 19. Tour detail layout ---------- */
.tour-detail { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 1024px) { .tour-detail { grid-template-columns: 1fr 380px; gap: 64px; } }
.tour-gallery { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: repeat(2, 200px); gap: 8px; border-radius: var(--radius-lg); overflow: hidden; }
.tour-gallery img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; transition: opacity var(--dur-fast); }
.tour-gallery img:hover { opacity: 0.9; }
.tour-gallery > :first-child { grid-row: span 2; }
@media (min-width: 1024px) { .tour-gallery { grid-template-rows: repeat(2, 260px); } }

.booking-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-md); }
@media (min-width: 1024px) { .booking-card { position: sticky; top: calc(var(--nav-h) + 24px); } }
.booking-card__price { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700; color: var(--accent); line-height: 1; }
.booking-card__price small { display: block; font-size: 12px; font-weight: 500; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }

/* Quick facts chips row */
.facts-row { display: flex; flex-wrap: wrap; gap: 8px; }
.fact { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; background: var(--surface-muted); border: 1px solid var(--border); border-radius: var(--radius-pill); font-size: 13px; font-weight: 500; color: var(--text-primary); }
.fact .icon { width: 16px; height: 16px; color: var(--accent); }

/* Itinerary timeline */
.itinerary { display: flex; flex-direction: column; gap: 20px; position: relative; padding-left: 28px; }
.itinerary::before { content: ''; position: absolute; left: 10px; top: 8px; bottom: 8px; width: 2px; background: var(--border); }
.itinerary__item { position: relative; }
.itinerary__item::before { content: ''; position: absolute; left: -24px; top: 6px; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.itinerary__time { font-weight: 600; color: var(--accent); font-size: 14px; }
.itinerary__text { color: var(--text-muted); margin-top: 2px; }

/* Included/Excluded */
.inex { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .inex { grid-template-columns: 1fr 1fr; } }
.inex ul { display: flex; flex-direction: column; gap: 10px; }
.inex li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; line-height: 1.5; }
.inex li .icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.inex--yes li .icon { color: var(--success); }
.inex--no li .icon { color: var(--danger); }

/* ---------- 20. Forms ---------- */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 14px; font-weight: 500; color: var(--text-primary); }
.input, .textarea, .select { height: 48px; padding: 0 16px; border: 1.5px solid var(--border); border-radius: var(--radius-md); background: #fff; font-size: 15px; transition: border-color var(--dur-fast), box-shadow var(--dur-fast); width: 100%; }
.textarea { height: auto; padding: 12px 16px; min-height: 120px; resize: vertical; line-height: 1.5; }
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,91,31,0.15); }

/* ---------- 21. Price table ---------- */
.price-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.price-table th, .price-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border); }
.price-table th { font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-muted); font-weight: 600; background: var(--surface-muted); }
.price-table td { font-size: 15px; }
.price-table tr:last-child td { border-bottom: none; }
.price-table .price { font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: var(--accent); font-size: 1.125rem; }

/* ---------- 22. Blog cards ---------- */
.post-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease); display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow); }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__body { padding: 20px 24px 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.post-card__date { font-size: 13px; color: var(--text-subtle); }
.post-card__title { font-size: 1.125rem; font-weight: 600; line-height: 1.4; color: var(--text-primary); }
.post-card a { color: inherit; display: contents; }

/* Article body */
.prose { max-width: 720px; margin-inline: auto; font-size: 1.0625rem; line-height: 1.75; color: var(--text-primary); }
.prose p + p { margin-top: 1.25em; }
.prose h2, .prose h3 { margin-top: 2em; margin-bottom: 0.5em; }
.prose h2 { font-size: 1.75rem; }
.prose h3 { font-size: 1.375rem; }

/* ---------- 23. Animations ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 80ms; }
.reveal--delay-2 { transition-delay: 160ms; }
.reveal--delay-3 { transition-delay: 240ms; }

/* ---------- 24. Utility ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; top: -40px; left: 8px; background: var(--accent); color: #fff; padding: 8px 16px; border-radius: 6px; z-index: 1000; transition: top var(--dur-fast); }
.skip-link:focus { top: 8px; color: #fff; }
.icon { display: inline-block; flex-shrink: 0; }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 32px; }
.hidden { display: none; }
@media (min-width: 1024px) { .lg\:block { display: block; } .lg\:hidden { display: none; } }

/* ---------- 25. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 27. Location SEO pages ---------- */
.loc-hero { position: relative; min-height: 560px; display: flex; align-items: flex-end; color: #fff; padding-top: var(--nav-h); overflow: hidden; }
.loc-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.loc-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,22,40,0.45) 0%, rgba(10,22,40,0.92) 100%); z-index: 1; }
.loc-hero__content { position: relative; z-index: 2; padding-bottom: 64px; }
.loc-hero__content .breadcrumbs { color: var(--text-on-dark-muted); margin-bottom: 12px; }
.loc-hero__content .breadcrumbs a { color: var(--text-on-dark-muted); }
.loc-hero__content .breadcrumbs a:hover { color: #fff; }
.loc-hero__content .breadcrumbs span:last-child { color: #fff; }
.loc-hero__title { color: #fff; margin-top: 0; margin-bottom: 8px; }
.loc-hero__tagline { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 500; color: var(--accent); margin-bottom: 16px; }
.loc-hero__intro { color: var(--text-on-dark-muted); font-size: 1.0625rem; line-height: 1.65; max-width: 720px; margin-bottom: 28px; }
.loc-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.quick-facts { background: var(--surface); border-bottom: 1px solid var(--border); padding: 24px 0; }
.quick-facts__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.quick-fact { display: flex; align-items: center; gap: 12px; }
.quick-fact__icon { color: var(--accent); flex-shrink: 0; }
.quick-fact > div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.quick-fact__label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.03em; font-weight: 500; }
.quick-fact strong { font-size: 14px; color: var(--text-primary); font-weight: 600; line-height: 1.3; word-break: break-word; }

.prose { max-width: 820px; margin-inline: auto; }
.prose h2 { margin-bottom: 20px; }
.prose p { font-size: 1.0625rem; line-height: 1.75; color: var(--text-muted); margin-bottom: 16px; }

.loc-map__address { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; color: var(--text-muted); margin-bottom: 16px; }
.loc-map__address .icon { color: var(--accent); }

@media (max-width: 767px) {
  .loc-hero { min-height: 460px; }
  .loc-hero__content { padding-bottom: 40px; }
  .loc-hero__tagline { font-size: 1.0625rem; }
  .loc-hero__intro { font-size: 0.9375rem; }
}

/* ---------- 26. Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(10,22,40,0.10);
  padding: 16px 24px;
  transform: translateY(100%);
  transition: transform 300ms ease-out;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner {
  max-width: 1280px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text { flex: 1; min-width: 240px; }
.cookie-banner__text strong { display: block; font-size: 15px; margin-bottom: 4px; color: var(--text-primary); }
.cookie-banner__text p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0; }
.cookie-banner__text a { color: var(--accent); }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
@media (max-width: 639px) {
  .cookie-banner__inner { flex-direction: column; align-items: stretch; }
  .cookie-banner__actions { justify-content: stretch; }
  .cookie-banner__actions .btn { flex: 1; text-align: center; }
}
