/* =================================================================
   VOYAGÉ — Luxury Travel Design System
   ================================================================= */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Jost:wght@300;400;500;600;700&display=swap');

:root {
  /* palette */
  --ink:        #0c1a2b;   /* midnight navy */
  --ink-2:      #11243a;
  --ink-3:      #1a3149;
  --cream:      #f6f1e7;   /* ivory */
  --cream-2:    #efe7d6;
  --sand:       #e8ddc7;
  --gold:       #c6a15b;   /* champagne gold */
  --gold-2:     #d8b878;
  --gold-deep:  #a8843f;
  --teal:       #1f6f6b;
  --teal-2:     #2c9a8f;
  --coral:      #d98b6f;
  --paper:      #fbf8f1;
  --white:      #ffffff;
  --muted:      #6b7888;
  --line:       rgba(12,26,43,.12);
  --line-2:     rgba(12,26,43,.07);
  --shadow-sm:  0 2px 10px rgba(12,26,43,.06);
  --shadow:     0 18px 50px -20px rgba(12,26,43,.28);
  --shadow-lg:  0 40px 90px -30px rgba(12,26,43,.45);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, -apple-system, sans-serif;

  --container: 1240px;
  --radius: 4px;
  --radius-lg: 18px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ---------- reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: .01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; color: var(--ink); }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; letter-spacing: -.01em; }
::selection { background: var(--gold); color: var(--ink); }

/* scrollbar */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--cream-2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 20px; border: 3px solid var(--cream-2); }

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }
.section { padding: clamp(70px, 10vw, 130px) 0; }
.section-sm { padding: clamp(48px, 7vw, 80px) 0; }
.center { text-align: center; }
.grid { display: grid; gap: 28px; }
.eyebrow {
  font-size: .72rem; letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 500; display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.eyebrow.center-line { justify-content: center; }
.eyebrow.center-line::after { content: ''; width: 28px; height: 1px; background: var(--gold); }
.section-title { font-size: clamp(2.1rem, 5vw, 3.6rem); margin: 18px 0 0; }
.section-title em { font-style: italic; color: var(--gold-deep); }
.lead { color: var(--muted); font-size: 1.08rem; max-width: 600px; }
.center .lead, .lead.center { margin-left: auto; margin-right: auto; }
.muted { color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 32px; font-family: var(--font-body); font-weight: 500;
  font-size: .82rem; letter-spacing: .18em; text-transform: uppercase;
  border-radius: 2px; cursor: pointer; transition: all .45s var(--ease);
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--cream); }
.btn-outline-light { background: transparent; border: 1px solid rgba(255,255,255,.4); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 40px; font-size: .85rem; }
.btn-sm { padding: 11px 22px; font-size: .72rem; }

/* link arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 10px; font-size: .78rem;
  letter-spacing: .2em; text-transform: uppercase; font-weight: 500; color: var(--ink);
  padding-bottom: 4px; border-bottom: 1px solid var(--gold); transition: gap .35s var(--ease);
}
.link-arrow:hover { gap: 18px; color: var(--gold-deep); }

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: all .5s var(--ease); padding: 22px 0;
}
.site-header.scrolled {
  background: rgba(251,248,241,.86); backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm); padding: 14px 0; border-bottom: 1px solid var(--line-2);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: baseline; gap: 4px; font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; letter-spacing: .04em; color: #fff; transition: color .4s; }
.scrolled .brand, .header-solid .brand { color: var(--ink); }
.brand .dot { color: var(--gold); }
.brand small { font-size: .55rem; letter-spacing: .4em; text-transform: uppercase; font-family: var(--font-body); font-weight: 500; opacity: .7; margin-left: 6px; align-self: center; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 500;
  color: rgba(255,255,255,.85); position: relative; padding: 6px 0; transition: color .35s;
}
.scrolled .nav-links a, .header-solid .nav-links a { color: var(--ink); }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--gold); transition: width .35s var(--ease); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-2); }
.scrolled .nav-links a:hover, .scrolled .nav-links a.active,
.header-solid .nav-links a:hover, .header-solid .nav-links a.active { color: var(--gold-deep); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.icon-btn {
  position: relative; width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; transition: all .35s; border: 1px solid transparent;
}
.scrolled .icon-btn, .header-solid .icon-btn { color: var(--ink); }
.icon-btn:hover { background: var(--gold); color: var(--ink); }
.icon-btn svg { width: 19px; height: 19px; }
.icon-btn .count {
  position: absolute; top: -2px; right: -2px; min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--gold); color: var(--ink); border-radius: 20px; font-size: .62rem;
  font-weight: 700; display: grid; place-items: center; font-family: var(--font-body);
}
.menu-toggle { display: none; width: 42px; height: 42px; place-items: center; }
.menu-toggle span { display: block; width: 22px; height: 1.5px; background: currentColor; position: relative; transition: .3s; }
.menu-toggle span::before, .menu-toggle span::after { content: ''; position: absolute; left: 0; width: 22px; height: 1.5px; background: currentColor; transition: .3s; }
.menu-toggle span::before { top: -7px; } .menu-toggle span::after { top: 7px; }
.menu-toggle { color: #fff; }
.scrolled .menu-toggle, .header-solid .menu-toggle { color: var(--ink); }

/* mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 300; background: var(--ink); color: var(--cream);
  display: flex; flex-direction: column; padding: 30px clamp(24px,6vw,48px);
  transform: translateX(100%); transition: transform .55s var(--ease); visibility: hidden;
}
.mobile-drawer.open { transform: translateX(0); visibility: visible; }
.mobile-drawer .md-top { display: flex; justify-content: space-between; align-items: center; }
.mobile-drawer .brand { color: var(--cream); }
.md-close { font-size: 2rem; color: var(--cream); line-height: 1; }
.mobile-drawer nav { display: flex; flex-direction: column; gap: 6px; margin-top: 40px; }
.mobile-drawer nav a {
  font-family: var(--font-display); font-size: 2rem; color: var(--cream);
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.08); transition: .3s;
}
.mobile-drawer nav a:hover { color: var(--gold); padding-left: 10px; }

/* ---------- header search overlay ---------- */
.search-overlay {
  position: fixed; inset: 0; z-index: 400; background: rgba(12,26,43,.96);
  backdrop-filter: blur(10px); display: flex; align-items: flex-start; justify-content: center;
  padding-top: 16vh; opacity: 0; visibility: hidden; transition: opacity .4s; color: var(--cream);
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-box { width: min(700px, 90vw); }
.search-box label { font-size: .72rem; letter-spacing: .4em; text-transform: uppercase; color: var(--gold); }
.search-box .search-field { display: flex; align-items: center; gap: 16px; border-bottom: 1px solid rgba(255,255,255,.25); padding: 14px 0; margin-top: 16px; }
.search-box input { flex: 1; background: none; border: none; outline: none; color: #fff; font-family: var(--font-display); font-size: clamp(1.6rem,5vw,2.6rem); }
.search-box input::placeholder { color: rgba(255,255,255,.4); }
.search-results { margin-top: 24px; max-height: 50vh; overflow-y: auto; }
.search-results a { display: flex; gap: 16px; align-items: center; padding: 14px 8px; border-radius: 8px; transition: background .25s; }
.search-results a:hover { background: rgba(255,255,255,.06); }
.search-results img { width: 64px; height: 48px; object-fit: cover; border-radius: 4px; }
.search-results .sr-name { font-family: var(--font-display); font-size: 1.3rem; }
.search-results .sr-meta { font-size: .75rem; color: rgba(255,255,255,.55); letter-spacing: .1em; }
.search-close { position: absolute; top: 30px; right: 40px; font-size: 1.6rem; color: var(--cream); }

/* ---------- HERO ---------- */
.hero { position: relative; isolation: isolate; min-height: 100vh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 120%; object-fit: cover; }
.hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,26,43,.55) 0%, rgba(12,26,43,.15) 35%, rgba(12,26,43,.85) 100%); }
.hero-inner { padding-bottom: clamp(70px, 12vh, 150px); padding-top: 140px; width: 100%; }
.hero h1 { font-size: clamp(3rem, 9vw, 7rem); font-weight: 500; line-height: .98; }
.hero h1 em { font-style: italic; color: var(--gold-2); }
.hero .hero-sub { max-width: 560px; font-size: 1.15rem; color: rgba(255,255,255,.85); margin-top: 26px; font-weight: 300; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }
.hero-scroll { position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%); font-size: .65rem; letter-spacing: .35em; text-transform: uppercase; color: rgba(255,255,255,.7); display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 5; }
.hero-scroll .line { width: 1px; height: 50px; background: rgba(255,255,255,.4); position: relative; overflow: hidden; }
.hero-scroll .line::after { content: ''; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--gold); animation: scrollLine 2s var(--ease) infinite; }
@keyframes scrollLine { 0% { top: -50%; } 100% { top: 100%; } }

/* hero search bar */
.hero-search {
  margin-top: 44px; background: rgba(255,255,255,.1); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.22); border-radius: 6px; padding: 10px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr auto; gap: 4px; max-width: 880px;
}
.hs-field { padding: 10px 18px; position: relative; }
.hs-field + .hs-field { border-left: 1px solid rgba(255,255,255,.18); }
.hs-field label { font-size: .62rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold-2); display: block; margin-bottom: 4px; }
.hs-field select, .hs-field input { width: 100%; background: none; border: none; outline: none; color: #fff; font-size: .98rem; font-weight: 400; }
.hs-field select option { color: var(--ink); }
.hs-field input::placeholder { color: rgba(255,255,255,.6); }
.hero-search .btn { border-radius: 4px; }

/* ---------- stat strip ---------- */
.stat-strip { background: var(--ink); color: var(--cream); }
.stat-strip .grid { grid-template-columns: repeat(4,1fr); gap: 0; }
.stat { text-align: center; padding: 46px 20px; border-left: 1px solid rgba(255,255,255,.08); }
.stat:first-child { border-left: none; }
.stat .num { font-family: var(--font-display); font-size: clamp(2.4rem,5vw,3.4rem); color: var(--gold-2); line-height: 1; }
.stat .lbl { font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: 12px; }

/* ---------- destination cards ---------- */
.dest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px,1fr)); gap: 30px; }
.dcard {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--ink);
  box-shadow: var(--shadow); cursor: pointer; transition: transform .6s var(--ease), box-shadow .6s var(--ease);
  display: block;
}
.dcard:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.dcard-media { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.dcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.dcard:hover .dcard-media img { transform: scale(1.08); }
.dcard-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,26,43,0) 30%, rgba(12,26,43,.9) 100%); }
.dcard-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px; color: #fff; z-index: 2; }
.dcard .country { font-size: .68rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-2); }
.dcard h3 { font-size: 2rem; margin-top: 6px; }
.dcard .dcard-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.18); opacity: 0; transform: translateY(10px); transition: .5s var(--ease); }
.dcard:hover .dcard-meta { opacity: 1; transform: translateY(0); }
.dcard .price b { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold-2); }
.dcard .price span { font-size: .7rem; color: rgba(255,255,255,.6); display: block; }
.dcard .rating { font-size: .8rem; display: flex; align-items: center; gap: 5px; }
.dcard .tag-badge { position: absolute; top: 18px; left: 18px; z-index: 3; background: rgba(12,26,43,.6); backdrop-filter: blur(6px); color: #fff; padding: 7px 14px; font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; border-radius: 30px; border: 1px solid rgba(255,255,255,.18); }
.wish-btn {
  position: absolute; top: 16px; right: 16px; z-index: 4; width: 42px; height: 42px; border-radius: 50%;
  background: rgba(12,26,43,.45); backdrop-filter: blur(6px); display: grid; place-items: center;
  color: #fff; transition: all .35s; border: 1px solid rgba(255,255,255,.2);
}
.wish-btn:hover { background: #fff; color: var(--coral); }
.wish-btn.active { background: var(--coral); color: #fff; border-color: var(--coral); }
.wish-btn svg { width: 18px; height: 18px; }

/* small variant for grids */
.dcard.compact .dcard-media { aspect-ratio: 3/4; }
.dcard.compact h3 { font-size: 1.6rem; }

/* ---------- generic card ---------- */
.card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line-2); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-media { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 26px; }

/* ---------- hotel card ---------- */
.hotel-card { display: flex; flex-direction: column; }
.hotel-card .stars { color: var(--gold); letter-spacing: 2px; font-size: .9rem; }
.hotel-card h3 { font-size: 1.5rem; margin: 6px 0 4px; }
.hotel-card .loc { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.amenities { display: flex; flex-wrap: wrap; gap: 7px; margin: 16px 0; }
.amenities span { font-size: .68rem; padding: 5px 11px; background: var(--cream); border-radius: 30px; color: var(--ink-3); letter-spacing: .04em; }
.hotel-card .price-row { display: flex; align-items: flex-end; justify-content: space-between; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line-2); }
.hotel-card .price-row .pr b { font-family: var(--font-display); font-size: 1.8rem; color: var(--ink); }
.hotel-card .price-row .pr span { font-size: .72rem; color: var(--muted); }

/* ---------- pills / filters ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.pill {
  padding: 9px 20px; border-radius: 30px; border: 1px solid var(--line); font-size: .75rem;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 500; transition: all .3s; background: var(--white); color: var(--ink);
}
.pill:hover { border-color: var(--gold); }
.pill.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.toolbar { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; margin-bottom: 36px; }
.toolbar .count-label { font-size: .8rem; letter-spacing: .1em; color: var(--muted); }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.input, .select, select.select {
  padding: 13px 16px; border: 1px solid var(--line); border-radius: 4px; background: var(--white);
  font-size: .95rem; outline: none; transition: border-color .3s; width: 100%;
}
.input:focus, .select:focus { border-color: var(--gold); }
textarea.input { resize: vertical; min-height: 130px; }

/* range slider */
input[type=range] { -webkit-appearance: none; width: 100%; height: 3px; background: var(--line); border-radius: 3px; outline: none; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--gold); cursor: pointer; border: 3px solid var(--white); box-shadow: var(--shadow-sm); }
input[type=range]::-moz-range-thumb { width: 16px; height: 16px; border-radius: 50%; background: var(--gold); cursor: pointer; border: 3px solid #fff; }

/* ---------- layout: sidebar + content ---------- */
.with-sidebar { display: grid; grid-template-columns: 280px 1fr; gap: 44px; align-items: start; }
.sidebar { position: sticky; top: 100px; background: var(--white); border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.sidebar h4 { font-size: 1.3rem; margin-bottom: 18px; }
.filter-group { padding: 18px 0; border-top: 1px solid var(--line-2); }
.filter-group:first-of-type { border-top: none; padding-top: 0; }
.filter-group .fg-title { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; font-weight: 600; }
.check { display: flex; align-items: center; gap: 10px; padding: 6px 0; cursor: pointer; font-size: .92rem; }
.check input { accent-color: var(--gold); width: 16px; height: 16px; }

/* ---------- page hero (sub pages) ---------- */
.page-hero { position: relative; isolation: isolate; padding: 180px 0 90px; color: #fff; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; z-index: -2; background: var(--ink); }
.page-hero .ph-media { position: absolute; inset: 0; z-index: -2; }
.page-hero .ph-media img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.page-hero::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(12,26,43,.4), rgba(12,26,43,.85)); }
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 5rem); }
.page-hero h1 em { font-style: italic; color: var(--gold-2); }
.page-hero .ph-sub { color: rgba(255,255,255,.8); max-width: 560px; margin-top: 18px; font-size: 1.08rem; }
.breadcrumb { display: flex; gap: 10px; align-items: center; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--gold-2); }
.breadcrumb span { color: var(--gold-2); }

/* ---------- breadcrumb (light) ---------- */
.crumb-light { display: flex; gap: 10px; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.crumb-light a:hover { color: var(--gold-deep); }

/* ---------- map ---------- */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
#map, .leaflet-map { width: 100%; height: 480px; background: var(--cream-2); z-index: 1; }
.leaflet-popup-content-wrapper { border-radius: 10px; }
.leaflet-popup-content { font-family: var(--font-body); }
.map-popup b { font-family: var(--font-display); font-size: 1.1rem; }
.map-popup .mp-price { color: var(--gold-deep); font-weight: 600; }

/* ---------- weather widget ---------- */
.weather { background: linear-gradient(160deg, var(--ink-2), var(--ink)); color: var(--cream); border-radius: var(--radius-lg); padding: 30px; }
.weather-now { display: flex; align-items: center; gap: 20px; }
.weather-now .temp { font-family: var(--font-display); font-size: 3.6rem; line-height: 1; }
.weather-now .ic { font-size: 3rem; }
.weather-now .meta { font-size: .82rem; color: rgba(255,255,255,.7); }
.weather-forecast { display: grid; grid-template-columns: repeat(7,1fr); gap: 6px; margin-top: 24px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); }
.wf-day { text-align: center; }
.wf-day .d { font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.wf-day .i { font-size: 1.3rem; margin: 8px 0; }
.wf-day .t { font-size: .82rem; }
.wf-day .t .lo { color: rgba(255,255,255,.45); }

/* ---------- reviews ---------- */
.review { padding: 26px 0; border-bottom: 1px solid var(--line-2); }
.review:last-child { border-bottom: none; }
.review-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: var(--gold-2); display: grid; place-items: center; font-family: var(--font-display); font-size: 1.2rem; flex-shrink: 0; }
.review .who { font-weight: 500; }
.review .when { font-size: .74rem; color: var(--muted); letter-spacing: .06em; }
.stars-row { color: var(--gold); letter-spacing: 2px; font-size: .85rem; }
.rating-summary { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.rating-big { text-align: center; }
.rating-big .n { font-family: var(--font-display); font-size: 4rem; line-height: 1; color: var(--ink); }
.rating-bars { flex: 1; min-width: 240px; }
.rating-bars .rb { display: flex; align-items: center; gap: 12px; margin: 5px 0; font-size: .78rem; }
.rating-bars .bar { flex: 1; height: 5px; background: var(--cream-2); border-radius: 5px; overflow: hidden; }
.rating-bars .bar span { display: block; height: 100%; background: var(--gold); }

/* ---------- gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; height: 540px; }
.gallery-grid .g-item { overflow: hidden; border-radius: 8px; cursor: pointer; position: relative; }
.gallery-grid .g-item:first-child { grid-row: 1/3; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gallery-grid .g-item:hover img { transform: scale(1.08); }
.gallery-grid .g-more { position: absolute; inset: 0; background: rgba(12,26,43,.55); display: grid; place-items: center; color: #fff; font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 500; background: rgba(12,26,43,.96); display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close { position: absolute; top: 28px; right: 36px; color: #fff; font-size: 2rem; }
.lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; display: grid; place-items: center; font-size: 1.4rem; transition: .3s; }
.lightbox .lb-nav:hover { background: var(--gold); color: var(--ink); }
.lb-prev { left: 30px; } .lb-next { right: 30px; }

/* ---------- detail layout ---------- */
.detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.booking-box { position: sticky; top: 100px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow); }
.booking-box .bb-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.booking-box .bb-price b { font-family: var(--font-display); font-size: 2.4rem; color: var(--ink); }
.booking-box .bb-price span { color: var(--muted); font-size: .85rem; }
.bb-fields { display: grid; gap: 14px; margin: 22px 0; }
.bb-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bb-summary { border-top: 1px solid var(--line-2); margin-top: 20px; padding-top: 18px; }
.bb-summary .line { display: flex; justify-content: space-between; font-size: .9rem; padding: 5px 0; color: var(--muted); }
.bb-summary .line.total { color: var(--ink); font-weight: 600; font-size: 1.05rem; border-top: 1px solid var(--line-2); margin-top: 8px; padding-top: 14px; }
.bb-summary .line.total b { font-family: var(--font-display); font-size: 1.6rem; }

/* activity list */
.activity-row { display: flex; align-items: center; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line-2); }
.activity-row .ic { width: 52px; height: 52px; border-radius: 12px; background: var(--cream); display: grid; place-items: center; font-size: 1.5rem; flex-shrink: 0; }
.activity-row .info { flex: 1; }
.activity-row .info h4 { font-size: 1.2rem; }
.activity-row .info .meta { font-size: .78rem; color: var(--muted); letter-spacing: .06em; }
.activity-row .ap { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold-deep); }

/* highlights list */
.highlights { display: grid; gap: 12px; }
.highlights li { display: flex; gap: 14px; align-items: flex-start; font-size: 1rem; }
.highlights li::before { content: '✦'; color: var(--gold); font-size: .9rem; margin-top: 3px; }

/* ---------- packages ---------- */
.pkg-card { display: grid; grid-template-columns: 1.1fr 1fr; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line-2); transition: .5s var(--ease); }
.pkg-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.pkg-card .pkg-media { position: relative; min-height: 320px; }
.pkg-card .pkg-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pkg-card .pkg-badge { position: absolute; top: 18px; left: 18px; background: var(--gold); color: var(--ink); padding: 7px 16px; font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; border-radius: 30px; }
.pkg-body { padding: 36px; display: flex; flex-direction: column; }
.pkg-body .pkg-tag { font-size: .7rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-deep); }
.pkg-body h3 { font-size: 2rem; margin: 8px 0 12px; }
.pkg-includes { display: grid; gap: 8px; margin: 18px 0; }
.pkg-includes li { font-size: .88rem; display: flex; gap: 10px; align-items: flex-start; color: var(--ink-3); }
.pkg-includes li::before { content: '✓'; color: var(--teal-2); font-weight: 700; }
.pkg-foot { display: flex; align-items: flex-end; justify-content: space-between; margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line-2); }
.pkg-foot .pf-price b { font-family: var(--font-display); font-size: 2.2rem; }
.pkg-foot .pf-price .old { text-decoration: line-through; color: var(--muted); font-size: 1rem; margin-left: 6px; }
.pkg-foot .pf-price span { display: block; font-size: .72rem; color: var(--muted); letter-spacing: .1em; }

/* ---------- steps / booking flow ---------- */
.steps { display: flex; align-items: center; justify-content: center; gap: 0; margin: 0 auto 44px; max-width: 700px; }
.step { display: flex; align-items: center; gap: 12px; flex: 1; }
.step .sc { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; font-size: .9rem; font-weight: 600; flex-shrink: 0; transition: .4s; background: var(--white); }
.step .sl { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.step .bar { flex: 1; height: 1px; background: var(--line); margin: 0 14px; }
.step.active .sc { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.step.done .sc { background: var(--teal); border-color: var(--teal); color: #fff; }
.step.active .sl, .step.done .sl { color: var(--ink); }

/* payment card visual */
.pay-card { background: linear-gradient(135deg, var(--ink-2), var(--ink)); border-radius: 16px; padding: 28px; color: var(--cream); aspect-ratio: 1.6/1; display: flex; flex-direction: column; justify-content: space-between; box-shadow: var(--shadow); position: relative; overflow: hidden; max-width: 380px; }
.pay-card::after { content: ''; position: absolute; top: -40%; right: -10%; width: 60%; height: 160%; background: radial-gradient(circle, rgba(198,161,91,.4), transparent 70%); }
.pay-card .chip { width: 44px; height: 32px; border-radius: 6px; background: linear-gradient(135deg, var(--gold-2), var(--gold-deep)); }
.pay-card .pc-num { font-size: 1.3rem; letter-spacing: .15em; font-family: var(--font-body); }
.pay-card .pc-row { display: flex; justify-content: space-between; font-size: .8rem; }
.pay-card .pc-row .lbl { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.5); }

/* ---------- dashboard ---------- */
.dash-grid { display: grid; grid-template-columns: 250px 1fr; gap: 36px; align-items: start; }
.dash-nav { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--line-2); padding: 16px; position: sticky; top: 100px; box-shadow: var(--shadow-sm); }
.dash-nav a { display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-radius: 8px; font-size: .88rem; letter-spacing: .04em; color: var(--ink-3); transition: .3s; }
.dash-nav a:hover { background: var(--cream); }
.dash-nav a.active { background: var(--ink); color: var(--cream); }
.dash-nav a svg { width: 18px; height: 18px; }
.stat-cards { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 18px; }
.stat-card { background: var(--white); border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.stat-card .sc-num { font-family: var(--font-display); font-size: 2.6rem; color: var(--ink); line-height: 1; }
.stat-card .sc-lbl { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }
.stat-card .sc-ic { font-size: 1.5rem; margin-bottom: 12px; }
.booking-list-item { display: flex; gap: 18px; align-items: center; background: var(--white); border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: 16px; box-shadow: var(--shadow-sm); transition: .4s; }
.booking-list-item:hover { box-shadow: var(--shadow); }
.booking-list-item img { width: 110px; height: 84px; object-fit: cover; border-radius: 10px; }
.badge-status { font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; padding: 5px 12px; border-radius: 30px; font-weight: 600; }
.badge-status.confirmed { background: rgba(31,111,107,.12); color: var(--teal); }
.badge-status.pending { background: rgba(198,161,91,.18); color: var(--gold-deep); }
.badge-status.completed { background: var(--cream-2); color: var(--muted); }

/* ---------- forms / auth ---------- */
.auth-wrap { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.auth-visual { position: relative; overflow: hidden; color: #fff; display: flex; align-items: flex-end; padding: 60px; }
.auth-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.auth-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,26,43,.3), rgba(12,26,43,.8)); }
.auth-visual .av-content { position: relative; z-index: 2; }
.auth-visual .av-content h2 { font-size: 2.6rem; }
.auth-form-side { display: flex; align-items: center; justify-content: center; padding: 60px 40px; }
.auth-form { width: min(420px, 100%); }
.auth-form h1 { font-size: 2.6rem; margin-bottom: 8px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.divider { display: flex; align-items: center; gap: 16px; color: var(--muted); font-size: .74rem; letter-spacing: .1em; margin: 24px 0; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--line); }

/* ---------- contact / faq ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.info-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line-2); }
.info-item .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--ink); color: var(--gold-2); display: grid; place-items: center; flex-shrink: 0; }
.info-item .ic svg { width: 20px; height: 20px; }
.info-item h4 { font-size: 1.2rem; }
.info-item p { color: var(--muted); font-size: .92rem; }

.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-q { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 26px 0; cursor: pointer; font-family: var(--font-display); font-size: 1.4rem; transition: color .3s; }
.acc-q:hover { color: var(--gold-deep); }
.acc-q .pm { font-size: 1.6rem; color: var(--gold); transition: transform .4s; flex-shrink: 0; }
.acc-item.open .acc-q .pm { transform: rotate(45deg); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.acc-a p { padding: 0 0 26px; color: var(--muted); max-width: 760px; }

/* ---------- blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(340px,1fr)); gap: 32px; }
.blog-card .bc-cat { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-deep); }
.blog-card h3 { font-size: 1.55rem; margin: 8px 0 12px; line-height: 1.15; }
.blog-card .bc-meta { font-size: .76rem; color: var(--muted); display: flex; gap: 12px; margin-top: 14px; }
.blog-featured { display: grid; grid-template-columns: 1.3fr 1fr; gap: 0; background: var(--ink); color: var(--cream); border-radius: var(--radius-lg); overflow: hidden; }
.blog-featured .bf-media { position: relative; min-height: 400px; }
.blog-featured .bf-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.blog-featured .bf-body { padding: clamp(36px,5vw,60px); display: flex; flex-direction: column; justify-content: center; }
.blog-featured h2 { font-size: clamp(2rem,4vw,3rem); margin: 16px 0; }

/* ---------- testimonial marquee ---------- */
.marquee { overflow: hidden; padding: 20px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 24px; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.testi { width: 380px; background: var(--white); border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); flex-shrink: 0; }
.testi .stars-row { margin-bottom: 12px; }
.testi p { font-family: var(--font-display); font-size: 1.25rem; line-height: 1.4; font-style: italic; }
.testi .t-who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }

/* ---------- featured split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,90px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split-media .badge-float { position: absolute; bottom: -24px; right: -24px; background: var(--ink); color: var(--cream); padding: 22px 28px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split-media .badge-float b { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold-2); display: block; line-height: 1; }
.split-media .badge-float span { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.6); }

/* ---------- value props ---------- */
.values { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 30px; }
.value { text-align: center; padding: 10px; }
.value .v-ic { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; border: 1px solid var(--gold); display: grid; place-items: center; font-size: 1.6rem; color: var(--gold-deep); }
.value h4 { font-size: 1.35rem; margin-bottom: 8px; }
.value p { color: var(--muted); font-size: .92rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; isolation: isolate; color: #fff; text-align: center; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; z-index: -2; background: var(--ink); }
.cta-band .cta-media { position: absolute; inset: 0; z-index: -2; }
.cta-band .cta-media img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.cta-band::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(rgba(12,26,43,.6), rgba(12,26,43,.8)); }
.cta-band h2 { font-size: clamp(2.4rem,5vw,4rem); }
.cta-band .lead { color: rgba(255,255,255,.8); }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.65); padding-top: 80px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.1); }
.site-footer .brand { color: #fff; font-size: 2rem; }
.footer-col h5 { color: #fff; font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 20px; font-family: var(--font-body); font-weight: 600; }
.footer-col a { display: block; padding: 7px 0; font-size: .9rem; transition: .3s; }
.footer-col a:hover { color: var(--gold-2); padding-left: 5px; }
.footer-news input { width: 100%; padding: 14px 16px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15); border-radius: 4px; color: #fff; margin: 14px 0; outline: none; }
.footer-news input::placeholder { color: rgba(255,255,255,.4); }
.social { display: flex; gap: 12px; margin-top: 20px; }
.social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; transition: .3s; }
.social a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.social svg { width: 17px; height: 17px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 28px 0; font-size: .8rem; flex-wrap: wrap; gap: 12px; }
.footer-bottom .fb-links { display: flex; gap: 24px; }

/* ---------- toast ---------- */
.toast-wrap { position: fixed; bottom: 28px; right: 28px; z-index: 600; display: flex; flex-direction: column; gap: 12px; }
.toast {
  background: var(--ink); color: var(--cream); padding: 16px 22px; border-radius: 8px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px; min-width: 280px;
  transform: translateX(120%); animation: toastIn .5s var(--ease) forwards; border-left: 3px solid var(--gold);
}
.toast.out { animation: toastOut .4s var(--ease) forwards; }
@keyframes toastIn { to { transform: translateX(0); } }
@keyframes toastOut { to { transform: translateX(120%); opacity: 0; } }
.toast .t-ic { color: var(--gold-2); font-size: 1.2rem; }
.toast .t-msg { font-size: .9rem; }

/* ---------- modal ---------- */
.modal-overlay { position: fixed; inset: 0; z-index: 550; background: rgba(12,26,43,.7); backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; padding: 24px; }
.modal-overlay.open { display: flex; }
.modal { background: var(--paper); border-radius: var(--radius-lg); max-width: 520px; width: 100%; padding: 40px; box-shadow: var(--shadow-lg); position: relative; animation: modalIn .5s var(--ease); max-height: 90vh; overflow-y: auto; }
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(.97); } }
.modal .m-close { position: absolute; top: 20px; right: 22px; font-size: 1.6rem; color: var(--muted); }
.modal h3 { font-size: 1.9rem; margin-bottom: 8px; }

/* ---------- empty state ---------- */
.empty { text-align: center; padding: 80px 20px; }
.empty .e-ic { font-size: 3.4rem; margin-bottom: 18px; }
.empty h3 { font-size: 1.8rem; margin-bottom: 10px; }

/* ---------- reveal animations ---------- */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }
[data-reveal][data-delay="4"] { transition-delay: .4s; }
[data-reveal][data-delay="5"] { transition-delay: .5s; }

/* hero text mask reveal */
.reveal-line { overflow: hidden; }
.reveal-line > * { display: inline-block; transform: translateY(110%); animation: lineUp 1.1s var(--ease-out) forwards; }
.reveal-line:nth-child(2) > * { animation-delay: .12s; }
.reveal-line:nth-child(3) > * { animation-delay: .24s; }
@keyframes lineUp { to { transform: translateY(0); } }
.fade-up-load { opacity: 0; animation: fadeUpLoad 1.1s var(--ease-out) .5s forwards; }
@keyframes fadeUpLoad { to { opacity: 1; transform: none; } }

/* counter */
.count-up { font-variant-numeric: tabular-nums; }

/* utility */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-list .t { font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; padding: 5px 12px; border: 1px solid var(--line); border-radius: 30px; color: var(--muted); }
.mb-0 { margin-bottom: 0; } .mt-1 { margin-top: 14px; } .mt-2 { margin-top: 28px; } .mt-3 { margin-top: 44px; }
.flex { display: flex; } .between { justify-content: space-between; } .items-center { align-items: center; } .gap { gap: 16px; } .wrap { flex-wrap: wrap; }
.divider-line { height: 1px; background: var(--line); margin: 40px 0; }
.price-from { font-family: var(--font-display); }
.text-gold { color: var(--gold-deep); }
.hidden { display: none !important; }

/* page transition curtain */
.curtain { position: fixed; inset: 0; z-index: 700; background: var(--ink); transform: translateY(0); pointer-events: none; }
.curtain.lift { animation: curtainLift 1s var(--ease) forwards; }
@keyframes curtainLift { to { transform: translateY(-100%); } }

/* progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--gold); z-index: 250; width: 0; transition: width .1s linear; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .detail-grid { grid-template-columns: 1fr; }
  .booking-box { position: relative; top: 0; }
  .with-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: relative; top: 0; }
  .dash-grid { grid-template-columns: 1fr; }
  .dash-nav { position: relative; top: 0; display: flex; flex-wrap: wrap; gap: 6px; }
  .dash-nav a { flex: 1; justify-content: center; min-width: 120px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .blog-featured, .pkg-card { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .menu-toggle { display: grid; }
  /* declutter mobile header: keep search + cart + hamburger, move the rest into the drawer */
  .nav-actions a[aria-label="Wishlist"], #userBtn { display: none; }
  .brand small { display: none; }
  .nav-actions { gap: 6px; }
  .hero-search { grid-template-columns: 1fr 1fr; }
  .hero-search .btn { grid-column: 1/3; }
  .stat-strip .grid { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.08); }
  .split, .split.reverse .split-media { grid-template-columns: 1fr; order: 0; }
  .split-media .badge-float { right: 16px; bottom: 16px; }
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; }
  .gallery-grid .g-item:first-child { grid-row: auto; grid-column: 1/3; aspect-ratio: 16/9; }
  .gallery-grid .g-item { aspect-ratio: 4/3; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .stat-strip .grid { grid-template-columns: 1fr 1fr; }
  .hero-search { grid-template-columns: 1fr; }
  .hero-search .btn { grid-column: 1; }
  .hs-field + .hs-field { border-left: none; border-top: 1px solid rgba(255,255,255,.18); }
  .toolbar { flex-direction: column; align-items: stretch; }
  .bb-row { grid-template-columns: 1fr; }
  .toast-wrap { left: 16px; right: 16px; bottom: 16px; }
  .toast { min-width: auto; }
  .section-title { font-size: 2rem; }
}
