/* ==========================================================================
   COMPASS ROSE TRAVEL — Design System
   Theme: "The Nautical Chart" — cartography, coordinates, hand-drawn routes.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,400;1,9..144,500&family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ---------------------------------------------------------------------- */
/* TOKENS                                                                  */
/* ---------------------------------------------------------------------- */
:root{
  /* type */
  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* radii / motion */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 22px;
  --ease: cubic-bezier(.16,.8,.28,1);
  --dur: .6s;

  /* light theme — "Day Chart" */
  --bg: #F7F2E7;
  --bg-alt: #EFE6D2;
  --surface: #FFFEFA;
  --surface-2: #FBF6EA;
  --text: #1C2620;
  --text-muted: #5B6459;
  --border: #DED0AC;
  --border-soft: #E7DAB8;
  --accent: #B5622C;
  --accent-soft: #E4CBB2;
  --accent-2: #2C6E6B;
  --accent-3: #5C6E45;
  --ink: #10202F;
  --shadow: 0 20px 60px -25px rgba(16,32,47,.35);
  --overlay-a: rgba(16,32,47,.15);
  --overlay-b: rgba(16,32,47,.82);
}

html[data-theme="dark"]{
  /* dark theme — "Night Chart" */
  --bg: #0E1826;
  --bg-alt: #121F30;
  --surface: #16233590;
  --surface-2: #17253A;
  --text: #F1ECDC;
  --text-muted: #A9B4BE;
  --border: #2B3B53;
  --border-soft: #24334A;
  --accent: #E28A50;
  --accent-soft: #4A3423;
  --accent-2: #5FB6AF;
  --accent-3: #93AE7A;
  --ink: #F1ECDC;
  --shadow: 0 24px 70px -20px rgba(0,0,0,.6);
  --overlay-a: rgba(6,12,20,.35);
  --overlay-b: rgba(8,14,22,.86);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-body);
  -webkit-font-smoothing:antialiased;
  transition:background .4s var(--ease), color .4s var(--ease);
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
svg{ display:block; }
.icon{ width:1em; height:1em; stroke:currentColor; fill:none; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.icon-fill{ fill:currentColor; stroke:none; }

::selection{ background:var(--accent); color:var(--surface); }

/* focus */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline:2px solid var(--accent); outline-offset:3px; border-radius:4px;
}

/* ---------------------------------------------------------------------- */
/* TYPE SCALE                                                              */
/* ---------------------------------------------------------------------- */
.eyebrow{
  font-family:var(--font-mono);
  font-size:.7rem;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:var(--accent);
  display:inline-flex;
  align-items:center;
  gap:.6em;
}
.eyebrow::before{
  content:'';
  width:26px; height:1px;
  background:var(--accent);
  display:inline-block;
}

h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--text);
  margin:0;
  line-height:1.04;
  letter-spacing:-.01em;
}
.display-1{ font-size:clamp(2.6rem,6.4vw,5.6rem); font-weight:600; }
.display-1 em{ font-style:italic; font-weight:400; color:var(--accent); }
.display-2{ font-size:clamp(2rem,4.4vw,3.4rem); font-weight:600; }
.display-2 em{ font-style:italic; font-weight:400; color:var(--accent); }
.display-3{ font-size:clamp(1.35rem,2vw,1.9rem); font-weight:600; }

p{ margin:0; }
.lede{
  font-size:clamp(1rem,1.4vw,1.2rem);
  color:var(--text-muted);
  line-height:1.65;
  max-width:46ch;
}
.body-sm{ font-size:.92rem; color:var(--text-muted); line-height:1.7; }
.mono{ font-family:var(--font-mono); }
.coords{ font-family:var(--font-mono); font-size:.72rem; letter-spacing:.08em; color:var(--text-muted); }

/* ---------------------------------------------------------------------- */
/* LAYOUT                                                                  */
/* ---------------------------------------------------------------------- */
.wrap{ max-width:1240px; margin:0 auto; padding:0 clamp(1.25rem,4vw,2.5rem); }
.wrap-narrow{ max-width:920px; margin:0 auto; padding:0 clamp(1.25rem,4vw,2.5rem); }
section{ position:relative; }
.section-pad{ padding:clamp(4.5rem,9vw,7.5rem) 0; }
.section-head{ margin-bottom:clamp(2.5rem,5vw,4rem); max-width:640px; }
.section-head.center{ max-width:640px; margin-left:auto; margin-right:auto; text-align:center; }
.stack{ display:flex; flex-direction:column; }
.divider{ height:1px; background:linear-gradient(90deg,transparent,var(--border),transparent); border:0; margin:0; }

/* ---------------------------------------------------------------------- */
/* BUTTONS                                                                 */
/* ---------------------------------------------------------------------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.6rem;
  font-family:var(--font-mono); font-weight:500; font-size:.72rem;
  letter-spacing:.14em; text-transform:uppercase;
  padding:1rem 1.9rem; border-radius:100px; border:1px solid transparent;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  white-space:nowrap;
}
.btn .icon{ width:.9em; height:.9em; }
.btn-primary{
  background:var(--accent); color:#fff9f2;
  box-shadow:0 12px 30px -12px color-mix(in srgb, var(--accent) 70%, transparent);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 18px 34px -12px color-mix(in srgb, var(--accent) 80%, transparent); }
.btn-ghost{
  background:transparent; color:var(--text); border-color:var(--border);
}
.btn-ghost:hover{ border-color:var(--accent); color:var(--accent); transform:translateY(-2px); }
.btn-outline-invert{
  background:transparent; color:#F1ECDC; border-color:rgba(241,236,220,.35);
}
.btn-outline-invert:hover{ background:#F1ECDC; color:var(--ink); border-color:#F1ECDC; }
.btn-block{ width:100%; }
.btn-sm{ padding:.7rem 1.3rem; font-size:.65rem; }

.link-arrow{
  display:inline-flex; align-items:center; gap:.5rem;
  font-family:var(--font-mono); font-size:.7rem; letter-spacing:.1em; text-transform:uppercase;
  color:var(--accent); font-weight:600;
}
.link-arrow .icon{ width:.85em; height:.85em; transition:transform .3s var(--ease); }
.link-arrow:hover .icon{ transform:translateX(5px); }

/* ---------------------------------------------------------------------- */
/* HEADER / NAV                                                           */
/* ---------------------------------------------------------------------- */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:60;
  padding:1.4rem 0;
  transition:padding .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  border-bottom:1px solid transparent;
}
.site-header.is-scrolled{
  padding:.85rem 0;
  background:color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter:blur(14px);
  border-color:var(--border);
  box-shadow:0 10px 30px -20px rgba(0,0,0,.25);
}
.nav-row{ display:flex; align-items:center; justify-content:space-between; gap:1rem; }
.brand{ display:flex; align-items:center; gap:.7rem; }
.brand-mark{ width:2.5rem; height:2.5rem; color:var(--accent); flex-shrink:0; }
.brand-type{ display:flex; flex-direction:column; line-height:1.15; }
.brand-name{ font-family:var(--font-display); font-weight:600; font-size:1.05rem; letter-spacing:.02em; color:var(--text); }
.brand-name em{ font-style:italic; color:var(--accent); }
.brand-sub{ font-family:var(--font-mono); font-size:.55rem; letter-spacing:.32em; color:var(--text-muted); text-transform:uppercase; }

.nav-links{ display:flex; align-items:center; gap:2.1rem; }
.nav-links a{
  font-family:var(--font-mono); font-size:.7rem; letter-spacing:.1em; text-transform:uppercase;
  color:var(--text-muted); position:relative; padding:.3rem 0;
}
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:0; height:1px; width:0%;
  background:var(--accent); transition:width .35s var(--ease);
}
.nav-links a:hover{ color:var(--text); }
.nav-links a:hover::after, .nav-links a.is-active::after{ width:100%; }
.nav-links a.is-active{ color:var(--accent); }

.nav-actions{ display:flex; align-items:center; gap:.7rem; }
.icon-btn{
  width:2.6rem; height:2.6rem; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--border); background:var(--surface-2); color:var(--text);
  transition:all .3s var(--ease);
}
.icon-btn:hover{ border-color:var(--accent); color:var(--accent); transform:translateY(-2px); }
.icon-btn .icon{ width:1.05rem; height:1.05rem; }
.theme-icon-dark{ display:none; }
html[data-theme="dark"] .theme-icon-light{ display:none; }
html[data-theme="dark"] .theme-icon-dark{ display:block; }

.call-chip{
  display:none;
  align-items:center; gap:.55rem;
  font-family:var(--font-mono); font-size:.68rem; letter-spacing:.06em;
  border:1px solid var(--border); color:var(--text); padding:.75rem 1.2rem; border-radius:100px;
}
.call-chip .icon{ width:.85rem; height:.85rem; color:var(--accent); }
.call-chip:hover{ border-color:var(--accent); color:var(--accent); }
@media(min-width:860px){ .call-chip{ display:inline-flex; } }

/* ---------------------------------------------------------------------- */
/* OFF CANVAS DRAWER                                                       */
/* ---------------------------------------------------------------------- */
#backdrop{
  position:fixed; inset:0; z-index:90; background:rgba(8,12,18,.6); backdrop-filter:blur(3px);
  opacity:0; pointer-events:none; transition:opacity .4s var(--ease);
}
#backdrop.is-open{ opacity:1; pointer-events:auto; }
#drawer{
  position:fixed; top:0; right:0; height:100%; width:min(90vw,410px); z-index:95;
  background:var(--ink); color:#F1ECDC;
  transform:translateX(100%); transition:transform .5s var(--ease);
  padding:2.4rem 2.2rem; display:flex; flex-direction:column; justify-content:space-between;
  box-shadow:-30px 0 60px rgba(0,0,0,.4);
}
#drawer.is-open{ transform:translateX(0); }
.drawer-top{ display:flex; align-items:center; justify-content:space-between; padding-bottom:1.6rem; border-bottom:1px solid rgba(241,236,220,.15); }
.drawer-nav{ margin-top:2.4rem; display:flex; flex-direction:column; gap:0; }
.drawer-nav a{
  font-family:var(--font-display); font-size:1.5rem; font-weight:500;
  padding:1.05rem 0; border-bottom:1px solid rgba(241,236,220,.1);
  display:flex; align-items:center; justify-content:space-between;
  color:#F1ECDC; transition:color .3s, padding-left .3s;
}
.drawer-nav a:hover{ color:var(--accent); padding-left:.4rem; }
.drawer-nav a .icon{ width:.85rem; height:.85rem; color:var(--accent); }
.drawer-foot{ display:flex; flex-direction:column; gap:.9rem; padding-top:1.6rem; border-top:1px solid rgba(241,236,220,.15); }
.drawer-foot a{ display:flex; align-items:center; gap:.7rem; font-family:var(--font-mono); font-size:.78rem; color:#d9d2bd; }
.drawer-foot a:hover{ color:var(--accent); }
.drawer-foot .icon{ width:.9rem; height:.9rem; color:var(--accent); }
.drawer-foot .coords{ color:#8a8f7f; padding-top:.3rem; }

/* ---------------------------------------------------------------------- */
/* HERO                                                                    */
/* ---------------------------------------------------------------------- */
.hero{
  position:relative; min-height:100svh;
  display:flex; flex-direction:column; justify-content:flex-end;
  background:#071019; overflow:hidden;
  --hero-bg:#071019;
  --hero-surface:#F1ECDC;
  --hero-muted:#cdd3d1;
  --hero-accent:#E9B36B;
}
.hero-media{ position:absolute; inset:0; z-index:0; }
.hero-media img{ width:100%; height:100%; object-fit:cover; }
.hero-media::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(7,16,25,.35) 0%, rgba(7,16,25,.58) 45%, var(--hero-bg) 96%);
}
.chart-lines{ position:absolute; inset:0; z-index:1; opacity:.35; mix-blend-mode:soft-light; pointer-events:none; }

.compass-spin{
  position:absolute; top:6.5rem; right:clamp(1rem,5vw,4rem); z-index:2;
  width:clamp(70px,10vw,120px); height:clamp(70px,10vw,120px);
  color:var(--hero-surface); opacity:.85;
  animation:spin 40s linear infinite;
}
@keyframes spin{ to{ transform:rotate(360deg); } }

.hero-inner{ position:relative; z-index:3; padding:9rem 0 3.5rem; }
.hero-inner .eyebrow{ color:var(--hero-accent); margin-bottom:1.4rem; }
.hero-inner .eyebrow::before{ background:var(--hero-accent); }
.hero h1{ color:var(--hero-surface); max-width:16ch; }
.hero h1 em{ color:var(--hero-accent); font-style:italic; font-weight:400; }
.hero .lede{ color:var(--hero-muted); max-width:44ch; margin-top:1.4rem; }
.hero-badges{ display:flex; flex-wrap:wrap; gap:1.8rem; margin:2.4rem 0 2.6rem; }
.hero-badges span{ display:flex; align-items:center; gap:.6rem; font-family:var(--font-mono); font-size:.68rem; letter-spacing:.08em; text-transform:uppercase; color:var(--hero-muted); }
.hero-badges .icon{ width:1rem; height:1rem; color:var(--hero-accent); }
.hero-ctas{ display:flex; flex-wrap:wrap; gap:1rem; }
.hero .btn-primary{ background:var(--hero-accent); color:#06131C; box-shadow:0 16px 36px -16px rgba(0,0,0,.45); }
.hero .btn-primary:hover{ background:#F0C17A; color:#06131C; }
.hero .btn-outline-invert{ background:transparent; color:var(--hero-surface); border-color:rgba(241,236,220,.34); }
.hero .btn-outline-invert:hover{ background:var(--hero-surface); color:#071019; border-color:var(--hero-surface); }
.scroll-cue{
  position:absolute; bottom:1.6rem; left:50%; transform:translateX(-50%); z-index:3;
  display:flex; flex-direction:column; align-items:center; gap:.5rem;
  color:var(--hero-muted); font-family:var(--font-mono); font-size:.62rem; letter-spacing:.2em; text-transform:uppercase;
}
.scroll-cue .line{ width:1px; height:34px; background:linear-gradient(var(--hero-surface),transparent); animation:pulse-down 2.2s ease-in-out infinite; }
@keyframes pulse-down{ 0%,100%{ opacity:.25; } 50%{ opacity:1; } }

/* ---------------------------------------------------------------------- */
/* MARQUEE                                                                 */
/* ---------------------------------------------------------------------- */
.marquee{
  background:#071019; color:#F1ECDC; border-top:1px solid rgba(241,236,220,.12); border-bottom:1px solid rgba(241,236,220,.12);
  overflow:hidden; position:relative; z-index:4;
}
.marquee-track{
  display:flex; width:max-content;
  animation:marquee 34s linear infinite;
}
.marquee:hover .marquee-track{ animation-play-state:paused; }
@keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
.marquee-item{
  display:flex; align-items:center; gap:.9rem;
  font-family:var(--font-mono); font-size:.78rem; letter-spacing:.14em; text-transform:uppercase;
  padding:1rem 2rem; white-space:nowrap; color:#e7e1cd;
}
.marquee-item .icon{ width:.9rem; height:.9rem; color:var(--accent); }
.marquee-item .dot{ color:var(--accent); }

/* ---------------------------------------------------------------------- */
/* TOUR / SERVICE CARDS                                                    */
/* ---------------------------------------------------------------------- */
.tour-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
@media(max-width:980px){ .tour-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:640px){ .tour-grid{ grid-template-columns:1fr; } }

.tour-card{
  background:var(--surface); border:1px solid var(--border-soft); border-radius:var(--r-lg);
  overflow:hidden; display:flex; flex-direction:column;
  transition:transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}
.tour-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow); border-color:var(--accent); }
.tour-media{ position:relative; aspect-ratio:4/3; overflow:hidden; }
.tour-media img{ width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease); }
.tour-card:hover .tour-media img{ transform:scale(1.08); }
.tour-tag{
  position:absolute; top:1rem; left:1rem;
  font-family:var(--font-mono); font-size:.62rem; letter-spacing:.12em; text-transform:uppercase;
  background:rgba(16,32,47,.72); color:#F1ECDC; padding:.4rem .75rem; border-radius:100px;
  backdrop-filter:blur(6px);
}
.tour-body{ padding:1.6rem; display:flex; flex-direction:column; gap:.9rem; flex:1; }
.tour-route-no{ font-family:var(--font-mono); font-size:.68rem; color:var(--accent); letter-spacing:.1em; }
.tour-body h3{ font-size:1.28rem; font-weight:600; }
.tour-body p{ color:var(--text-muted); font-size:.85rem; line-height:1.6; }
.tour-meta{ display:flex; gap:1.1rem; margin-top:.2rem; flex-wrap:wrap; }
.tour-meta span{ display:flex; align-items:center; gap:.4rem; font-family:var(--font-mono); font-size:.66rem; color:var(--text-muted); text-transform:uppercase; letter-spacing:.05em; }
.tour-meta .icon{ width:.85rem; height:.85rem; color:var(--accent); }
.tour-body .link-arrow{ margin-top:.4rem; }

/* ---------------------------------------------------------------------- */
/* ROUTE MAP SIGNATURE SECTION                                             */
/* ---------------------------------------------------------------------- */
.route-section{ background:#071019; color:#F1ECDC; }
.route-section .eyebrow{ color:var(--accent); }
.route-section h2{ color:#FBF7EA; }
.route-section .lede{ color:#c3cac6; }
.route-map{ position:relative; margin-top:3.5rem; }
.route-svg{ width:100%; height:auto; }
.route-path{
  fill:none; stroke:var(--accent); stroke-width:2; stroke-dasharray:10 8;
  stroke-linecap:round;
  stroke-dashoffset:1400; transition:stroke-dashoffset 2.4s var(--ease);
}
.route-svg.is-visible .route-path{ stroke-dashoffset:0; }
.route-stop{ opacity:0; transform:translateY(14px); transition:opacity .6s var(--ease), transform .6s var(--ease); }
.route-svg.is-visible .route-stop{ opacity:1; transform:translateY(0); }
.route-svg.is-visible .route-stop:nth-of-type(2){ transition-delay:.25s; }
.route-svg.is-visible .route-stop:nth-of-type(3){ transition-delay:.5s; }
.route-svg.is-visible .route-stop:nth-of-type(4){ transition-delay:.75s; }
.route-svg.is-visible .route-stop:nth-of-type(5){ transition-delay:1s; }
.route-pin{ fill:var(--accent); }
.route-label{ font-family:var(--font-mono); font-size:11px; fill:#F1ECDC; letter-spacing:.05em; }
.route-label-sub{ font-family:var(--font-mono); font-size:8.5px; fill:#8f978f; letter-spacing:.04em; }

/* ---------------------------------------------------------------------- */
/* ABOUT                                                                   */
/* ---------------------------------------------------------------------- */
.about-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(2.5rem,6vw,5rem); align-items:center; }
@media(max-width:940px){ .about-grid{ grid-template-columns:1fr; } }
.about-media{ position:relative; border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow); }
.about-media img{ width:100%; height:100%; object-fit:cover; aspect-ratio:4/5; }
.about-media-tag{
  position:absolute; bottom:1.3rem; left:1.3rem; right:1.3rem;
  background:color-mix(in srgb, var(--ink) 82%, transparent); color:#F1ECDC;
  backdrop-filter:blur(8px); border-radius:var(--r-md); padding:1rem 1.2rem;
  display:flex; align-items:center; gap:.8rem;
}
.about-media-tag .icon{ width:1.3rem; height:1.3rem; color:var(--accent); flex-shrink:0; }
.about-media-tag strong{ display:block; font-family:var(--font-display); font-size:.95rem; font-weight:600; }
.about-media-tag span{ font-family:var(--font-mono); font-size:.62rem; color:#c9d0cb; text-transform:uppercase; letter-spacing:.06em; }

.stat-row{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.2rem; padding-top:2.2rem; margin-top:2.2rem; border-top:1px solid var(--border); }
@media(max-width:560px){ .stat-row{ grid-template-columns:repeat(2,1fr); } }
.stat-num{ font-family:var(--font-display); font-size:2.1rem; font-weight:600; color:var(--accent); display:block; line-height:1; }
.stat-label{ font-family:var(--font-mono); font-size:.6rem; letter-spacing:.08em; text-transform:uppercase; color:var(--text-muted); }

.feature-list{ display:flex; flex-direction:column; gap:1rem; margin-top:1.6rem; }
.feature-item{ display:flex; gap:1.1rem; padding:1.3rem; border:1px solid var(--border-soft); border-radius:var(--r-md); background:var(--surface-2); transition:border-color .3s, transform .3s var(--ease); }
.feature-item:hover{ border-color:var(--accent); transform:translateX(4px); }
.feature-icon{ width:2.6rem; height:2.6rem; border-radius:50%; background:color-mix(in srgb, var(--accent) 14%, transparent); color:var(--accent); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.feature-icon .icon{ width:1.15rem; height:1.15rem; }
.feature-item h4{ font-family:var(--font-display); font-size:.95rem; font-weight:600; margin-bottom:.3rem; }
.feature-item p{ font-size:.78rem; color:var(--text-muted); line-height:1.55; }

/* ---------------------------------------------------------------------- */
/* REVIEWS                                                                 */
/* ---------------------------------------------------------------------- */
.review-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
@media(max-width:900px){ .review-grid{ grid-template-columns:1fr; } }
.review-card{ background:var(--surface); border:1px solid var(--border-soft); border-radius:var(--r-lg); padding:1.8rem; display:flex; flex-direction:column; justify-content:space-between; gap:1.6rem; transition:transform .35s var(--ease), box-shadow .35s var(--ease); }
.review-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); }
.stars{ display:flex; gap:.2rem; color:var(--accent); }
.stars .icon{ width:.85rem; height:.85rem; }
.review-quote{ font-family:var(--font-display); font-style:italic; font-size:1.02rem; line-height:1.55; color:var(--text); }
.review-foot{ display:flex; align-items:center; gap:.8rem; padding-top:1.2rem; border-top:1px solid var(--border); }
.review-avatar{ width:2.4rem; height:2.4rem; border-radius:50%; background:color-mix(in srgb, var(--accent) 18%, transparent); color:var(--accent); display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:600; font-size:.85rem; }
.review-name{ font-size:.8rem; font-weight:600; }
.review-time{ font-family:var(--font-mono); font-size:.62rem; color:var(--text-muted); }

/* Reviews - View More */
.hidden-review {
  display: none;
}

.hidden-review.visible {
  display: block;
}

.view-more-wrap {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 6rem;
}

#viewMoreBtn {
  transition: all 0.3s ease;
}

#viewMoreBtn.loading {
  opacity: 0.7;
  pointer-events: none;
}


/* ---------------------------------------------------------------------- */
/* /* Google Review CTA */                                                                 */
/* ---------------------------------------------------------------------- */

.google-cta {
  margin-top: 4rem;
  padding: 2.5rem 3rem;
  background: var(--bg-light, #f8fafc);
  border-radius: 1.5rem;
  border: 1px solid var(--border-light, #e2e8f0);
  transition: all 0.3s ease;
}

.google-cta-content {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  justify-content: center;
  text-align: left;
}

.google-logo {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.google-cta-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
  color: var(--text-dark, #0f172a);
}

.google-cta-text {
  margin: 0;
  color: var(--text-muted, #64748b);
  max-width: 480px;
}

.google-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: var(--primary, #1a73e8);
  color: #fff;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  margin-left: auto;
}

.google-review-btn:hover {
  background: var(--primary-dark, #1557b0);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 115, 232, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .google-cta {
    padding: 1.75rem;
  }

  .google-cta-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .google-review-btn {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }

  .google-logo {
    width: 48px;
    height: 48px;
  }
}

/* ---------------------------------------------------------------------- */
/* CONTACT                                                                 */
/* ---------------------------------------------------------------------- */
.contact-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:clamp(2.5rem,5vw,4.5rem); }
@media(max-width:940px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-item{ display:flex; gap:1.1rem; padding:1.2rem 0; border-bottom:1px solid var(--border); }
.contact-item:last-child{ border-bottom:0; }
.contact-icon{ width:2.8rem; height:2.8rem; border-radius:var(--r-sm); background:var(--ink); color:var(--accent); display:flex; align-items:center; justify-content:center; flex-shrink:0; border:1px solid var(--border); }
.contact-icon .icon{ width:1.1rem; height:1.1rem; }
.contact-item h4{ font-family:var(--font-display); font-size:.95rem; font-weight:600; margin-bottom:.2rem; }
.contact-item p{ font-size:.78rem; color:var(--text-muted); margin-bottom:.3rem; }
.contact-item a.value{ font-family:var(--font-mono); font-size:.82rem; font-weight:600; color:var(--accent); }

.form-card{ background:var(--surface); border:1px solid var(--border-soft); border-radius:var(--r-lg); padding:clamp(1.6rem,3vw,2.4rem); box-shadow:var(--shadow); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
@media(max-width:520px){ .form-row{ grid-template-columns:1fr; } }
.field{ display:flex; flex-direction:column; gap:.45rem; margin-bottom:1rem; }
.field label{ font-family:var(--font-mono); font-size:.62rem; letter-spacing:.1em; text-transform:uppercase; color:var(--text-muted); }
.field input, .field select, .field textarea{
  background:var(--bg); border:1px solid var(--border); border-radius:var(--r-sm);
  padding:.85rem 1rem; font-family:var(--font-body); font-size:.88rem; color:var(--text);
  transition:border-color .3s, box-shadow .3s;
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color:var(--accent); box-shadow:0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent); outline:none;
}
.field textarea{ resize:vertical; min-height:110px; }
.field ::placeholder{ color:var(--text-muted); opacity:.7; }
.form-success{ display:none; align-items:center; gap:.8rem; background:color-mix(in srgb, var(--accent-3) 16%, transparent); border:1px solid var(--accent-3); color:var(--text); padding:1rem 1.2rem; border-radius:var(--r-sm); font-size:.82rem; margin-top:1rem; }
.form-success.is-shown{ display:flex; }
.form-success .icon{ color:var(--accent-3); width:1.1rem; height:1.1rem; flex-shrink:0; }

/* ---------------------------------------------------------------------- */
/* CONTACT MAP                                                            */
/* ---------------------------------------------------------------------- */
.map-card{ margin-top:1.6rem; border:1px solid var(--border-soft); border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow); background:var(--surface); }
.map-card iframe{ width:100%; min-height:280px; border:0; display:block; }
@media(max-width:640px){ .map-card{ margin-top:1.2rem; } .map-card iframe{ min-height:240px; } }

/* ---------------------------------------------------------------------- */
/* FOOTER                                                                  */
/* ---------------------------------------------------------------------- */
.site-footer{ background:#071019; color:#c9d0cb; padding:4.5rem 0 2rem; }
.footer-grid{ display:grid; grid-template-columns:1.3fr 1fr 1fr; gap:3rem; }
@media(max-width:800px){ .footer-grid{ grid-template-columns:1fr; gap:2.2rem; } }
.footer-brand{ display:flex; align-items:center; gap:.7rem; margin-bottom:1rem; }
.footer-brand .brand-mark{ color:#E9B36B; }
.footer-brand span{ font-family:var(--font-display); font-weight:600; color:#F1ECDC; font-size:1.05rem; }
.footer-brand span em{ font-style:italic; color:#E9B36B; }
.footer-col h5{ font-family:var(--font-mono); font-size:.65rem; letter-spacing:.12em; text-transform:uppercase; color:#F1ECDC; margin-bottom:1.1rem; }
.footer-links{ display:flex; flex-direction:column; gap:.7rem; }
.footer-links a{ font-size:.82rem; color:#c8d0c9; }
.footer-links a:hover{ color:#E9B36B; }
.footer-contact{ display:flex; flex-direction:column; gap:.7rem; font-size:.82rem; }
.footer-contact div{ display:flex; align-items:center; gap:.6rem; color:#c8d0c9; }
.footer-contact .icon{ width:.85rem; height:.85rem; color:#E9B36B; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:2.4rem; margin-top:3rem; border-top:1px solid rgba(241,236,220,.12); font-size:.72rem; color:#8a9089; flex-wrap:wrap; gap:1rem; }
.footer-bottom .legal-links{ display:flex; gap:1.5rem; }
.footer-bottom a:hover{ color:#E9B36B; }

/* ---------------------------------------------------------------------- */
/* BACK TO TOP                                                             */
/* ---------------------------------------------------------------------- */
.to-top{
  position:fixed; bottom:1.6rem; right:1.6rem; z-index:50;
  width:3rem; height:3rem; border-radius:50%;
  background:var(--accent); color:#fff9f2; display:flex; align-items:center; justify-content:center;
  box-shadow:0 14px 30px -10px rgba(0,0,0,.4);
  opacity:0; pointer-events:none; transform:translateY(10px);
  transition:opacity .4s var(--ease), transform .4s var(--ease);
}
.to-top.is-shown{ opacity:1; pointer-events:auto; transform:translateY(0); }
.to-top .icon{ width:1.1rem; height:1.1rem; }

/* ---------------------------------------------------------------------- */
/* WHATSAPP QUICK CTA                                                      */
/* ---------------------------------------------------------------------- */
.whatsapp-float{
  position:fixed; left:1.6rem; bottom:1.6rem; z-index:50;
  display:inline-flex; align-items:center; gap:.6rem;
  min-height:3rem; padding:.75rem 1.1rem; border-radius:100px;
  background:#25D366; color:#062b18;
  font-family:var(--font-mono); font-size:.68rem; font-weight:600;
  letter-spacing:.06em; text-transform:uppercase;
  box-shadow:0 14px 30px -10px rgba(0,0,0,.4);
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
}
.whatsapp-float:hover{ background:#42e37c; transform:translateY(-3px); box-shadow:0 18px 34px -10px rgba(0,0,0,.45); }
.whatsapp-float .icon{ width:1.2rem; height:1.2rem; stroke-width:1.9; }

/* ---------------------------------------------------------------------- */
/* SCROLL REVEAL                                                          */
/* ---------------------------------------------------------------------- */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible{ opacity:1; transform:translateY(0); }
.reveal-stagger > *{ opacity:0; transform:translateY(28px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-stagger.is-visible > *{ opacity:1; transform:translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1){ transition-delay:.05s; }
.reveal-stagger.is-visible > *:nth-child(2){ transition-delay:.15s; }
.reveal-stagger.is-visible > *:nth-child(3){ transition-delay:.25s; }
.reveal-stagger.is-visible > *:nth-child(4){ transition-delay:.35s; }
.reveal-stagger.is-visible > *:nth-child(5){ transition-delay:.45s; }
.reveal-stagger.is-visible > *:nth-child(6){ transition-delay:.55s; }

/* ---------------------------------------------------------------------- */
/* MISC UTIL                                                               */
/* ---------------------------------------------------------------------- */
.bg-alt{ background:var(--bg-alt); }
.text-center{ text-align:center; }
.mx-auto{ margin-left:auto; margin-right:auto; }
.mt-lg{ margin-top:clamp(2rem,5vw,3.5rem); }
.gap-sm{ gap:.6rem; }
.pill{ display:inline-flex; align-items:center; gap:.5rem; font-family:var(--font-mono); font-size:.62rem; letter-spacing:.08em; text-transform:uppercase; background:var(--surface-2); border:1px solid var(--border-soft); color:var(--text-muted); padding:.45rem .8rem; border-radius:100px; }
.pill .icon{ width:.75rem; height:.75rem; color:var(--accent); }

/* ---------------------------------------------------------------------- */
/* PAGE HERO (Tours page)                                                  */
/* ---------------------------------------------------------------------- */
.page-hero{ background:#071019; color:#F1ECDC; padding:10.5rem 0 5rem; position:relative; overflow:hidden; }
.page-hero .chart-lines{ opacity:.28; }
.page-hero .eyebrow{ color:#E9B36B; }
.page-hero h1{ color:#FBF7EA; position:relative; z-index:2; }
.page-hero .lede{ color:#c9d0cb; position:relative; z-index:2; margin-top:1.2rem; }
.breadcrumb{ position:relative; z-index:2; display:flex; align-items:center; gap:.6rem; font-family:var(--font-mono); font-size:.68rem; letter-spacing:.08em; text-transform:uppercase; color:var(--text-muted); margin-bottom:1.6rem; }
.breadcrumb a:hover{ color:var(--accent); }
.breadcrumb .icon{ width:.7rem; height:.7rem; }

/* filter tabs */
.filter-row{ display:flex; flex-wrap:wrap; gap:.7rem; margin-bottom:3rem; }
.filter-tab{
  font-family:var(--font-mono); font-size:.68rem; letter-spacing:.08em; text-transform:uppercase;
  padding:.75rem 1.3rem; border-radius:100px; border:1px solid var(--border); color:var(--text-muted);
  background:var(--surface); transition:all .3s var(--ease);
}
.filter-tab:hover{ border-color:var(--accent); color:var(--accent); }
.filter-tab.is-active{ background:var(--accent); border-color:var(--accent); color:#fff9f2; }

/* tour detail block */
.tour-detail{
  display:grid; grid-template-columns:1fr 1fr; gap:0;
  border:1px solid var(--border-soft); border-radius:var(--r-lg); overflow:hidden;
  margin-bottom:2.2rem; background:var(--surface);
}
.tour-detail:nth-of-type(even) .td-media{ order:2; }
@media(max-width:860px){ .tour-detail{ grid-template-columns:1fr; } .tour-detail:nth-of-type(even) .td-media{ order:0; } }
.td-media{ position:relative; min-height:320px; }
.td-media img{ width:100%; height:100%; object-fit:cover; position:absolute; inset:0; }
.td-media-tag{ position:absolute; top:1.2rem; left:1.2rem; z-index:2; font-family:var(--font-mono); font-size:.62rem; letter-spacing:.1em; text-transform:uppercase; background:rgba(16,32,47,.72); color:#F1ECDC; padding:.4rem .8rem; border-radius:100px; backdrop-filter:blur(6px); }
.td-body{ padding:clamp(1.8rem,3vw,2.8rem); display:flex; flex-direction:column; }
.td-route-no{ font-family:var(--font-mono); color:var(--accent); font-size:.72rem; letter-spacing:.1em; margin-bottom:.5rem; }
.td-body h3{ font-size:clamp(1.5rem,2.2vw,1.9rem); margin-bottom:.9rem; }
.td-body > p.body-sm{ margin-bottom:1.3rem; }
.td-meta-row{ display:flex; flex-wrap:wrap; gap:1.4rem; padding:1.1rem 0; border-top:1px solid var(--border); border-bottom:1px solid var(--border); margin-bottom:1.3rem; }
.td-meta-row span{ display:flex; align-items:center; gap:.5rem; font-family:var(--font-mono); font-size:.7rem; color:var(--text-muted); text-transform:uppercase; letter-spacing:.04em; }
.td-meta-row .icon{ width:.9rem; height:.9rem; color:var(--accent); }
.td-meta-row strong{ color:var(--text); font-weight:600; }

.td-columns{ display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; margin-bottom:1.5rem; }
@media(max-width:520px){ .td-columns{ grid-template-columns:1fr; } }
.check-list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:.6rem; }
.check-list li{ display:flex; align-items:flex-start; gap:.6rem; font-size:.8rem; color:var(--text-muted); }
.check-list.yes .icon{ color:var(--accent-3); }
.check-list.no .icon{ color:var(--text-muted); opacity:.6; }
.check-list .icon{ width:.95rem; height:.95rem; flex-shrink:0; margin-top:.15rem; }
.col-label{ font-family:var(--font-mono); font-size:.62rem; letter-spacing:.1em; text-transform:uppercase; color:var(--text); margin-bottom:.7rem; display:block; }

/* itinerary accordion */
.itinerary{ border-top:1px solid var(--border); margin-top:.4rem; }
.itin-step{ border-bottom:1px solid var(--border); }
.itin-trigger{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:1rem;
  background:none; border:0; padding:1.1rem 0; text-align:left; color:var(--text);
}
.itin-time{ font-family:var(--font-mono); font-size:.72rem; color:var(--accent); min-width:5.2rem; flex-shrink:0; }
.itin-title{ font-family:var(--font-display); font-weight:600; font-size:.95rem; flex:1; }
.itin-trigger .icon{ width:.85rem; height:.85rem; color:var(--text-muted); transition:transform .35s var(--ease); flex-shrink:0; }
.itin-step.is-open .itin-trigger .icon{ transform:rotate(180deg); color:var(--accent); }
.itin-panel{ max-height:0; overflow:hidden; transition:max-height .45s var(--ease); }
.itin-panel-in{ padding:0 0 1.2rem 5.2rem; font-size:.82rem; color:var(--text-muted); line-height:1.65; }
@media(max-width:480px){ .itin-panel-in{ padding-left:0; } }

.td-foot{ display:flex; align-items:center; justify-content:space-between; gap:1rem; margin-top:auto; padding-top:1.4rem; flex-wrap:wrap; }
.td-price{ font-family:var(--font-mono); }
.td-price .amt{ font-family:var(--font-display); font-size:1.3rem; font-weight:600; color:var(--text); }
.td-price .lbl{ font-size:.62rem; letter-spacing:.08em; text-transform:uppercase; color:var(--text-muted); display:block; }

/* CTA banner */
.cta-banner{
  background:linear-gradient(120deg, var(--ink), #16283c);
  color:#F1ECDC; border-radius:var(--r-lg); padding:clamp(2.5rem,5vw,4rem);
  display:flex; align-items:center; justify-content:space-between; gap:2rem; flex-wrap:wrap;
  position:relative; overflow:hidden;
}
.cta-banner h2{ color:#FBF7EA; max-width:20ch; }
.cta-banner .lede{ color:var(--text-muted); margin-top:.8rem; }

/* ---------------------------------------------------------------------- */
/* RESPONSIVE HARDENING                                                    */
/* A final fluid layer for compact phones through ultra-wide desktop.      */
/* ---------------------------------------------------------------------- */
html{ -webkit-text-size-adjust:100%; }

/* Keep every media asset and long string inside its containing column. */
.wrap, .wrap-narrow, .tour-card, .tour-detail, .form-card, .cta-banner,
.google-cta, .feature-item, .contact-item, .review-card{ min-width:0; }
.lede, .body-sm, .tour-body p, .feature-item p, .review-quote,
.contact-item a, .drawer-foot a, .check-list li{ overflow-wrap:anywhere; }

/* The global menu remains available on large screens, but avoids crowding
   the primary navigation at intermediate desktop widths. */
@media (min-width:1181px){
  #open-menu-btn{ display:none; }
}

@media (max-width:1180px){
  .nav-links{ gap:clamp(.8rem,1.8vw,1.5rem); }
  .nav-links a{ font-size:.64rem; }
}

@media (max-width:980px){
  .site-header{ padding:1rem 0; }
  .site-header.is-scrolled{ padding:.7rem 0; }
  .nav-links{ display:none; }
  .hero-inner{ padding-top:8rem; }
  .route-map{ overflow-x:auto; overscroll-behavior-x:contain; padding-bottom:.5rem; }
  .route-svg{ min-width:700px; }
}

@media (max-width:640px){
  .wrap, .wrap-narrow{ padding-left:1rem; padding-right:1rem; }
  .section-pad{ padding:4rem 0; }
  .site-header{ padding:.75rem 0; }
  .site-header.is-scrolled{ padding:.6rem 0; }
  .brand{ gap:.5rem; }
  .brand-mark{ width:2.1rem; height:2.1rem; }
  .brand-name{ font-size:.9rem; }
  .brand-sub{ font-size:.48rem; }
  .nav-actions{ gap:.45rem; }
  .icon-btn{ width:2.4rem; height:2.4rem; }

  #drawer{ width:min(100%,410px); padding:1.35rem 1.15rem; }
  .drawer-nav{ margin-top:1.25rem; }
  .drawer-nav a{ font-size:1.25rem; padding:.8rem 0; }
  .drawer-foot{ gap:.65rem; padding-top:1rem; }
  .drawer-foot a{ font-size:.68rem; }

  .hero{ min-height:100svh; min-height:100dvh; }
  .hero-inner{ padding-top:7rem; padding-bottom:5.5rem; }
  .hero h1{ max-width:12ch; }
  .hero .lede{ font-size:1rem; }
  .hero-badges{ display:grid; grid-template-columns:1fr; gap:.75rem; margin:1.65rem 0 1.8rem; }
  .hero-badges span{ font-size:.61rem; letter-spacing:.055em; }
  .hero-ctas{ display:grid; grid-template-columns:1fr; gap:.75rem; width:100%; }
  .hero-ctas .btn{ width:100%; }
  .scroll-cue{ bottom:.8rem; }
  .compass-spin{ top:5.6rem; right:.85rem; opacity:.6; }

  .marquee-item{ font-size:.67rem; padding:.85rem 1.2rem; gap:.6rem; }
  .section-head{ margin-bottom:2.25rem; }
  .eyebrow{ font-size:.6rem; letter-spacing:.18em; }
  .display-1{ font-size:clamp(2.35rem,12vw,3.35rem); }
  .display-2{ font-size:clamp(1.85rem,9vw,2.55rem); }

  .tour-body{ padding:1.25rem; }
  .tour-meta{ gap:.7rem; }
  .tour-meta span{ font-size:.6rem; }
  .tour-tag{ top:.75rem; left:.75rem; font-size:.56rem; }
  .route-map{ margin-top:2rem; margin-left:-1rem; margin-right:-1rem; padding-left:1rem; padding-right:1rem; }
  .route-svg{ min-width:620px; }

  .about-media img{ aspect-ratio:5/6; }
  .about-media-tag{ left:.8rem; right:.8rem; bottom:.8rem; padding:.8rem; }
  .stat-row{ gap:1rem .6rem; }
  .stat-num{ font-size:1.8rem; }
  .feature-item{ padding:1rem; gap:.8rem; }
  .feature-icon{ width:2.25rem; height:2.25rem; }

  .review-card{ padding:1.25rem; }
  .view-more-wrap{ margin:2.25rem 0 4rem; }
  .google-cta{ margin-top:2.5rem; border-radius:var(--r-lg); }

  .contact-item{ gap:.8rem; }
  .contact-icon{ width:2.45rem; height:2.45rem; }
  .form-card{ padding:1.15rem; border-radius:var(--r-md); }
  .field input, .field select, .field textarea{ font-size:16px; }
  .form-success{ align-items:flex-start; }

  .site-footer{ padding:3.25rem 0 1.5rem; }
  .footer-bottom{ align-items:flex-start; flex-direction:column; margin-top:2rem; padding-top:1.5rem; }
  .footer-bottom .legal-links{ gap:1rem; flex-wrap:wrap; }
  .to-top{ width:2.7rem; height:2.7rem; right:1rem; bottom:1rem; }
  .whatsapp-float{ left:1rem; bottom:1rem; min-width:2.7rem; min-height:2.7rem; padding:.7rem; justify-content:center; }
  .whatsapp-float span{ display:none; }

  .page-hero{ padding:8.5rem 0 3.5rem; }
  .breadcrumb{ font-size:.58rem; letter-spacing:.055em; gap:.35rem; margin-bottom:1.2rem; flex-wrap:wrap; }
  .filter-row{ flex-wrap:nowrap; overflow-x:auto; margin-left:-1rem; margin-right:-1rem; padding:0 1rem .75rem; scrollbar-width:thin; }
  .filter-tab{ flex:0 0 auto; font-size:.61rem; padding:.65rem 1rem; }
  .tour-detail{ margin-bottom:1.25rem; border-radius:var(--r-md); }
  .td-media{ min-height:230px; aspect-ratio:4/3; }
  .td-body{ padding:1.25rem; }
  .td-meta-row{ gap:.7rem; }
  .td-meta-row span{ font-size:.61rem; }
  .itin-trigger{ gap:.65rem; }
  .itin-time{ min-width:4.2rem; font-size:.64rem; }
  .itin-title{ font-size:.88rem; }
  .td-foot{ align-items:stretch; }
  .td-foot .btn{ width:100%; }
  .cta-banner{ padding:1.6rem; gap:1.25rem; border-radius:var(--r-md); }
  .cta-banner .btn{ width:100%; }
}

@media (max-width:380px){
  .brand-type{ display:none; }
  .hero-inner{ padding-top:6.2rem; }
  .hero-badges span{ font-size:.56rem; }
  .btn{ padding:.9rem 1rem; font-size:.64rem; letter-spacing:.09em; }
  .stat-label{ font-size:.54rem; letter-spacing:.045em; }
  .td-meta-row{ flex-direction:column; gap:.55rem; }
}

@media (min-width:1500px){
  .wrap{ max-width:1360px; }
  .wrap-narrow{ max-width:1000px; }
  .tour-grid{ gap:1.8rem; }
  .hero-inner{ padding-bottom:4.5rem; }
}
