/* ═══════════════════════════════════════════════════════════
   SEYBA TRAVEL — LUXURY EXPERIENTIAL DESIGN SYSTEM
   Ultra-luxury immersive travel experience platform
   for affluent Japanese travelers booking curated Türkiye journeys.
   ═══════════════════════════════════════════════════════════ */

:root {
  /* ── Base Palette (preserved, refined) ── */
  --bg: #FAF8F4;
  --bg-soft: #F5F2ED;
  --surface: #ffffff;
  --surface-muted: #FAFAF8;
  --line: #E8E4DD;
  --line-strong: #D6D0C7;

  --text: #1A1A1A;
  --text-muted: #5C5C5C;
  --text-soft: #8A8A85;

  --primary: #0A1C2B;
  --primary-hover: #071520;
  --accent: #60788f;
  --success: #1c7d4d;
  --warning: #a06913;
  --danger: #ab3a35;

  /* ── Luxury Accent Layer ── */
  --gold: #C6A65B;
  --gold-light: #D4BA7A;
  --gold-dark: #A88B42;
  --gold-glow: rgba(198, 166, 91, 0.15);
  --midnight: #0A1C2B;
  --midnight-deep: #061320;
  --silk: #FAF8F4;
  --champagne: #F5F0E8;

  /* ── Refined Radius ── */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* ── Atmospheric Shadows ── */
  --shadow-sm: 0 4px 20px rgba(10, 28, 43, 0.04);
  --shadow-md: 0 8px 40px rgba(10, 28, 43, 0.08);
  --shadow-lg: 0 20px 60px rgba(10, 28, 43, 0.12);
  --shadow-gold: 0 4px 24px rgba(198, 166, 91, 0.12);

  /* ── Luxury Spacing (expanded) ── */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 56px;
  --space-8: 80px;
  --space-9: 120px;

  /* ── Luxury Easing ── */
  --ease-luxury: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

/* ═══════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════ */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--silk);
  color: var(--text);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.8;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ═══════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════ */

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.container-wide {
  width: min(1400px, 94vw);
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   GOLD DIVIDERS & SEPARATORS
   ═══════════════════════════════════════════════════════════ */

.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border: none;
  margin: 0;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--line) 50%, transparent 95%);
  border: none;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   TOPBAR — Subtle Authority (sub-pages only)
   ═══════════════════════════════════════════════════════════ */

.topbar {
  background: var(--midnight);
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(198, 166, 91, 0.15);
  font-size: 11px;
  letter-spacing: 0.3px;
}

.topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

/* Hide topbar on homepage */
.page-home .topbar {
  display: none;
}

/* ═══════════════════════════════════════════════════════════
   HEADER — Default (sub-pages: sticky glass)
   ═══════════════════════════════════════════════════════════ */

.main-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 248, 244, 0.85);
  border-bottom: 1px solid rgba(232, 228, 221, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background 0.5s var(--ease-smooth),
              border-color 0.5s var(--ease-smooth),
              box-shadow 0.5s var(--ease-smooth);
}

.main-header.scrolled {
  background: rgba(250, 248, 244, 0.95);
  box-shadow: 0 1px 30px rgba(10, 28, 43, 0.06);
}

.main-header-inner {
  position: relative;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 48px);
}

/* Equal-width navs for centered logo on all pages */
.main-header .nav {
  flex: 1;
}

.main-header .nav:first-child {
  justify-content: flex-end;
}

.main-header .nav:nth-child(3) {
  justify-content: flex-start;
}

/* Absolute CTA button on all pages */
.main-header .header-cta {
  position: absolute;
  right: max(3vw, 16px);
  top: 50%;
  transform: translateY(-50%);
}

/* ── HEADER — Hero variant (homepage: transparent over hero) ── */

.main-header--hero {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Logo centered (Rixos-style) */
.main-header--hero .main-header-inner {
  justify-content: center;
  gap: clamp(24px, 4vw, 64px);
  min-height: 96px;
  padding-top: 8px;
  padding-bottom: 8px;
}

/* Equal-width navs so logo stays perfectly centered */
.main-header--hero .nav {
  flex: 1;
}

.main-header--hero .nav:first-child {
  justify-content: flex-end;
}

.main-header--hero .nav:nth-child(3) {
  justify-content: flex-start;
}

/* White nav on hero */
.main-header--hero .nav a {
  color: rgba(255, 255, 255, 0.75);
}

.main-header--hero .nav a:hover {
  color: #fff;
}

.main-header--hero .nav a::after {
  background: var(--gold-light);
}

/* Gold CTA on hero header */
.main-header--hero .header-cta {
  position: absolute;
  right: max(3vw, 16px);
  top: 50%;
  transform: translateY(-50%);
  border-color: rgba(198, 166, 91, 0.5);
  color: var(--gold-light);
}

.main-header--hero .header-cta:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* When hero header becomes scrolled → match normal header exactly */
.main-header--hero.scrolled {
  position: fixed;
  background: rgba(250, 248, 244, 0.85);
  border-bottom-color: rgba(232, 228, 221, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(10, 28, 43, 0.06);
}

.main-header--hero.scrolled .main-header-inner {
  min-height: 60px;
  padding-top: 0;
  padding-bottom: 0;
  overflow: visible;
  gap: clamp(20px, 3vw, 48px);
}

.main-header--hero.scrolled .nav {
  gap: var(--space-2);
}

.main-header--hero.scrolled .nav a {
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.3px;
  padding: 8px 12px;
}

.main-header--hero.scrolled .nav a:hover {
  color: var(--text);
}

.main-header--hero.scrolled .nav a::after {
  background: var(--gold);
}

.main-header--hero.scrolled .header-cta {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.main-header--hero.scrolled .header-cta:hover {
  background: var(--gold);
  color: #fff;
}

/* ── Brand / Logo ── */

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: var(--primary);
  white-space: nowrap;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

/* White logo on hero header — same size as normal */
.main-header--hero .brand-logo {
  width: 110px;
  height: 110px;
  filter: brightness(0) invert(1);
}

/* Revert logo to original when scrolled — match normal header */
.main-header--hero.scrolled .brand-logo {
  filter: none;
  width: 110px;
  height: 110px;
}

/* ── Navigation — Refined Spacing ── */

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
  letter-spacing: 0.3px;
}

/* Wider nav spacing on hero header */
.main-header--hero .nav {
  gap: var(--space-3);
}

.main-header--hero .nav a {
  font-size: 13.5px;
  letter-spacing: 0.5px;
  padding: 10px 16px;
}

.nav a {
  color: var(--text-muted);
  border: none;
  border-radius: 0;
  padding: 8px 14px;
  position: relative;
  transition: color 0.3s var(--ease-smooth);
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-luxury);
}

.nav a:hover {
  color: var(--text);
  background: transparent;
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ── Buttons — Luxury ── */

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 24px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: all 0.4s var(--ease-luxury);
}

.btn-primary {
  background: var(--midnight);
  color: #fff;
  box-shadow: 0 4px 20px rgba(10, 28, 43, 0.2);
}

.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 8px 30px rgba(10, 28, 43, 0.28);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--gold-glow);
}

.btn-gold {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
}

.btn-gold:hover {
  background: var(--gold);
  color: #fff;
  box-shadow: var(--shadow-gold);
}

/* Header CTA */
.main-header-inner > .btn {
  border-color: var(--gold);
  color: var(--gold-dark);
  font-size: 12px;
  padding: 8px 20px;
  min-height: 38px;
}

.main-header-inner > .btn:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   HERO — Full-Bleed Cinematic (Rixos Layout)
   ═══════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--midnight);
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(10, 28, 43, 0.45) 0%,
      rgba(10, 28, 43, 0.35) 35%,
      rgba(10, 28, 43, 0.35) 65%,
      rgba(10, 28, 43, 0.6) 100%
    );
  pointer-events: none;
}

/* ── Centered Headline (Rixos-style) ── */

.hero-center {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-bottom: 100px;
}

.hero h1 {
  margin: 0 0 var(--space-5);
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.01em;
}

.hero-gold-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto var(--space-5);
}

.hero-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  letter-spacing: 0.5px;
  line-height: 1.8;
}

/* ── Bottom Search Bar (Rixos-style dark bar) ── */

.hero-search-bar {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: min(900px, 90vw);
}

.hero-search-bar-inner {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 60px;
  padding: 8px 8px 8px 28px;
  gap: 0;
  box-shadow: 0 8px 32px rgba(10, 28, 43, 0.15);
}

.hero-search-field {
  flex: 1;
  padding: 10px 16px;
  min-width: 0;
}

.hero-search-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(10, 28, 43, 0.45);
  margin-bottom: 4px;
}

.hero-search-field select,
.hero-search-field input {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  padding: 0;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.hero-search-field select option {
  background: #fff;
  color: var(--text);
}

.hero-search-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: none;
  opacity: 0.5;
}

.hero-search-divider {
  width: 1px;
  height: 32px;
  background: rgba(10, 28, 43, 0.12);
  flex-shrink: 0;
}

.btn-search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  min-height: auto;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 0;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

.btn-search:hover {
  background: var(--gold-dark);
  transform: scale(1.05);
}

.btn-search svg {
  width: 20px;
  height: 20px;
}

/* ═══════════════════════════════════════════════════════════
   FORMS — Fields, Search, Inputs
   ═══════════════════════════════════════════════════════════ */

.search-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.field {
  display: grid;
  gap: 6px;
}

.field label,
.label {
  font-size: 11px;
  color: var(--text-soft);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea,
.faq-search input,
.results-head select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 var(--space-3);
  font-size: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s var(--ease-smooth);
}

.field textarea {
  min-height: 118px;
  resize: vertical;
  padding-top: var(--space-3);
  padding-bottom: var(--space-3);
  font-family: inherit;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.faq-search input:focus,
.results-head select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.search-actions,
.dual-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.search-actions {
  margin-top: var(--space-5);
}

.search-actions .btn-primary {
  flex: 1;
}

/* ── Trust Strip / Chips / Tags ── */

.trust-strip,
.chips,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.trust-strip {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
}

.trust-item {
  color: var(--text-soft);
  font-size: 11px;
  padding: 0;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.trust-item::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.chip,
.tag {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text-soft);
  font-size: 12px;
  padding: 7px 14px;
  transition: all 0.3s var(--ease-smooth);
}

.chip:hover,
.tag:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

/* ── Hero Panel (sub-pages / legacy) ── */

.hero-panel {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(10, 28, 43, 0.15);
  padding: var(--space-6);
}

.hero-panel h3 {
  margin: 0 0 var(--space-2);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
}

.hero-panel-subtitle {
  margin: 0 0 var(--space-5);
  font-size: 12px;
  color: var(--text-soft);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-8);
  align-items: center;
}

.hero-text {
  color: #fff;
}

/* ── Hero scroll indicator ── */

.hero-scroll-indicator {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-scroll-indicator .scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(198, 166, 91, 0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.reveal-fade {
  opacity: 0;
  transition: opacity 1s var(--ease-out-expo);
}

.reveal-fade.revealed {
  opacity: 1;
}

/* Hero text animation */
.hero-text .reveal-hero {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

.hero-text .reveal-hero.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS — Luxury Spacing
   ═══════════════════════════════════════════════════════════ */

.section {
  padding: var(--space-8) 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.section-heading h2,
.page-title {
  margin: 0;
  color: var(--text);
  line-height: 1.2;
}

.section-heading h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.page-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 600;
}

.section-heading p,
.subtitle,
.muted,
.k,
.time {
  color: var(--text-muted);
}

.subtitle {
  margin: var(--space-2) 0 0;
  font-size: 14px;
  line-height: 1.7;
}

.muted {
  font-size: 13px;
}

/* ── Section Kicker (editorial micro-header) ── */

.section-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: var(--space-3);
}

.section-kicker::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  margin-right: 10px;
  vertical-align: middle;
}

/* ═══════════════════════════════════════════════════════════
   TRUST METRICS — Minimal Luxury
   ═══════════════════════════════════════════════════════════ */

.trust-metrics {
  padding: var(--space-7) 0;
}

.trust-metrics-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
}

.trust-metric {
  text-align: center;
}

.trust-metric .v {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.1;
}

.trust-metric .k {
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: 0.5px;
  margin-top: 6px;
}

.trust-metric-divider {
  width: 1px;
  height: 40px;
  background: var(--line);
}

/* ═══════════════════════════════════════════════════════════
   CARD SYSTEM — Rixos Mode
   ═══════════════════════════════════════════════════════════ */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  transition: all 0.5s var(--ease-luxury);
  position: relative;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 166, 91, 0.3);
  box-shadow: var(--shadow-lg);
}

.card-cover {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(to top, rgba(10, 28, 43, 0.5) 0%, rgba(10, 28, 43, 0.02) 50%),
    var(--card-image, url("./assets/images/ercan/fromsalih-sultan-ahmet-mosque-6604492_1920.jpg"));
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.6s var(--ease-luxury);
}

.card:hover .card-cover {
  transform: scale(1.03);
}

/* Shimmer effect on hover */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
  z-index: 1;
  transition: left 0.6s var(--ease-luxury);
  pointer-events: none;
}

.card:hover::before {
  left: 100%;
}

.card-grid .card:nth-child(6n + 1) .card-cover {
  --card-image: url("./assets/images/ercan/babelphotography-mosque-279015_1920.jpg");
}

.card-grid .card:nth-child(6n + 2) .card-cover {
  --card-image: url("./assets/images/ercan/denisdoukhan-hot-air-balloon-568422_1920.jpg");
}

.card-grid .card:nth-child(6n + 3) .card-cover {
  --card-image: url("./assets/images/ercan/neponu-pamukkale-7732424_1920.jpg");
}

.card-grid .card:nth-child(6n + 4) .card-cover {
  --card-image: url("./assets/images/ercan/fromsalih-celsus-library-2670527_1920.jpg");
}

.card-grid .card:nth-child(6n + 5) .card-cover {
  --card-image: url("./assets/images/ercan/polatdover-istanbul-4718175_1920.jpg");
}

.card-grid .card:nth-child(6n + 6) .card-cover {
  --card-image: url("./assets/images/ercan/aysegulaytoren-antalya-7729738_1920.jpg");
}

.card-body {
  padding: 22px;
  display: grid;
  gap: 12px;
}

.card-title {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--text-soft);
  font-size: 12px;
  letter-spacing: 0.2px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-muted);
  font-size: 13px;
}

.rating strong {
  color: var(--text);
}

.rating strong::before {
  content: "\2605 ";
  color: var(--gold);
}

/* ── Badges — Soft Capsule with Gold Outline ── */

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
}

.badge-blue {
  color: #2D5F8A;
  background: rgba(45, 95, 138, 0.06);
  border-color: rgba(45, 95, 138, 0.15);
}

.badge-teal {
  color: #1A7A7F;
  background: rgba(26, 122, 127, 0.06);
  border-color: rgba(26, 122, 127, 0.15);
}

.badge-sand {
  color: var(--gold-dark);
  background: var(--gold-glow);
  border-color: rgba(198, 166, 91, 0.2);
}

.price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-2);
  padding-top: 4px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
}

.price,
.price-lg,
.v,
.value,
.metric .v {
  color: var(--text);
  font-weight: 700;
  line-height: 1.2;
}

.price {
  font-size: 22px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

.price-lg {
  font-size: 30px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   WHY TÜRKIYE — Immersive Editorial Block
   ═══════════════════════════════════════════════════════════ */

.why-turkiye {
  position: relative;
  padding: var(--space-9) 0;
  background: var(--midnight);
  color: #fff;
  overflow: hidden;
}

.why-turkiye::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(198, 166, 91, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse at 70% 80%, rgba(198, 166, 91, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.why-turkiye-header {
  text-align: center;
  margin-bottom: var(--space-8);
  position: relative;
}

.why-turkiye-header .section-kicker {
  color: var(--gold-light);
}

.why-turkiye-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4.2vw, 54px);
  font-weight: 600;
  color: #fff;
  margin: var(--space-3) 0 var(--space-4);
  letter-spacing: -0.01em;
}

.why-turkiye-header p {
  max-width: 52ch;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.9;
}

.why-turkiye-mosaic {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.mosaic-item {
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.mosaic-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 28, 43, 0.5) 0%, transparent 60%);
}

.mosaic-item-main {
  grid-row: 1 / span 2;
}

.mosaic-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ── Pull quote in editorial ── */

.why-turkiye-quote {
  text-align: center;
  max-width: 48ch;
  margin: 0 auto;
  position: relative;
}

.why-turkiye-quote blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

.why-turkiye-quote .quote-gold-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: var(--space-5) auto;
}

.why-turkiye-quote cite {
  font-style: normal;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════════
   TURKEY HIGHLIGHTS — Visual Grid
   ═══════════════════════════════════════════════════════════ */

.turkey-highlights {
  padding: var(--space-8) 0;
  background: linear-gradient(180deg, var(--champagne) 0%, var(--silk) 100%);
  border-top: none;
  border-bottom: none;
}

.turkey-visual-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-template-rows: repeat(2, 220px);
  gap: var(--space-3);
}

.turkey-visual-main,
.turkey-visual-side {
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.6s var(--ease-luxury);
  overflow: hidden;
}

.turkey-visual-main:hover,
.turkey-visual-side:hover {
  transform: scale(1.02);
}

.turkey-visual-main {
  grid-row: 1 / span 2;
  background-image:
    linear-gradient(to top, rgba(10, 28, 43, 0.4), rgba(10, 28, 43, 0.05)),
    url("./assets/images/ercan/fromsalih-sultan-ahmet-mosque-6604492_1920.jpg");
}

.turkey-visual-cap {
  background-image:
    linear-gradient(to top, rgba(10, 28, 43, 0.34), rgba(10, 28, 43, 0.05)),
    url("./assets/images/ercan/denisdoukhan-hot-air-balloon-568422_1920.jpg");
}

.turkey-visual-pam {
  background-image:
    linear-gradient(to top, rgba(10, 28, 43, 0.34), rgba(10, 28, 43, 0.05)),
    url("./assets/images/ercan/neponu-pamukkale-7732424_1920.jpg");
}

.turkey-visual-eph {
  background-image:
    linear-gradient(to top, rgba(10, 28, 43, 0.34), rgba(10, 28, 43, 0.05)),
    url("./assets/images/ercan/fromsalih-celsus-library-2670527_1920.jpg");
}

.turkey-visual-bos {
  background-image:
    linear-gradient(to top, rgba(10, 28, 43, 0.34), rgba(10, 28, 43, 0.05)),
    url("./assets/images/ercan/polatdover-istanbul-4718175_1920.jpg");
}

/* ═══════════════════════════════════════════════════════════
   TWO-COLUMN LAYOUTS
   ═══════════════════════════════════════════════════════════ */

.two-col {
  display: grid;
  grid-template-columns: 286px 1fr;
  gap: var(--space-5);
}

.panel,
.review-box,
.faq-search,
.policy-card,
.support-card,
.operator-card,
.metric,
.fact,
.timeline-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.panel,
.review-box,
.policy-card,
.support-card,
.operator-card,
.metric,
.fact {
  padding: var(--space-5);
}

.panel h3,
.policy-card h3,
.support-card h3 {
  margin: 0 0 var(--space-3);
  color: var(--text);
}

.filter-group {
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--line);
}

.filter-group:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.checklist {
  display: grid;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
}

.checklist label {
  display: flex;
  align-items: center;
  gap: 8px;
}

input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--gold-dark);
}

.results-head {
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.results-head select {
  width: auto;
  min-height: 40px;
  border-radius: 999px;
  padding-right: 32px;
}

.sticky-side {
  position: sticky;
  top: 90px;
  height: fit-content;
}

/* ═══════════════════════════════════════════════════════════
   DETAIL LAYOUTS
   ═══════════════════════════════════════════════════════════ */

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-5);
  align-items: start;
}

.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-3);
}

.gallery-main,
.gallery-sub {
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-sm);
}

.gallery-main {
  min-height: 340px;
  background-image:
    linear-gradient(to top, rgba(10, 28, 43, 0.35), rgba(10, 28, 43, 0.05)),
    url("./assets/images/ercan/fromsalih-sultan-ahmet-mosque-6604492_1920.jpg");
}

.gallery-sub {
  min-height: 164px;
  background-image:
    linear-gradient(to top, rgba(10, 28, 43, 0.3), rgba(10, 28, 43, 0.05)),
    url("./assets/images/ercan/fromsalih-celsus-library-2670527_1920.jpg");
}

.gallery-sub:nth-child(2n) {
  background-image:
    linear-gradient(to top, rgba(10, 28, 43, 0.3), rgba(10, 28, 43, 0.05)),
    url("./assets/images/ercan/denisdoukhan-hot-air-balloon-568422_1920.jpg");
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.fact .label {
  color: var(--text-soft);
  font-size: 11px;
  letter-spacing: 0.3px;
}

.fact .value,
.value {
  font-size: 14px;
}

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-4);
}

summary {
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
}

.split-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.list-clean {
  margin: 0;
  padding-left: 18px;
}

.booking-card {
  position: sticky;
  top: 90px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-md);
}

.cross-sell {
  background: var(--champagne);
  border-top: none;
}

/* ═══════════════════════════════════════════════════════════
   METRICS GRID — Minimal Luxury
   ═══════════════════════════════════════════════════════════ */

.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-5);
}

.metric {
  text-align: center;
  border: none;
  box-shadow: none;
  background: transparent;
  padding: var(--space-5) var(--space-3);
}

.metric .k,
.k {
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.metric .v,
.v {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 600;
}

.metric .muted {
  font-size: 12px;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════
   TABLES
   ═══════════════════════════════════════════════════════════ */

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 14px;
}

th {
  background: var(--champagne);
  color: var(--text);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.3px;
}

tr:last-child td {
  border-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════
   STEPPER
   ═══════════════════════════════════════════════════════════ */

.stepper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
}

.step {
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text-soft);
  background: #fff;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.step.active,
.active {
  background: var(--midnight);
  color: #fff;
  border-color: var(--midnight);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

/* ═══════════════════════════════════════════════════════════
   ALERTS
   ═══════════════════════════════════════════════════════════ */

.alert {
  border: 1px solid #cfe1ee;
  border-radius: var(--radius-sm);
  background: #eef7fe;
  color: #356082;
  padding: var(--space-3) var(--space-4);
  font-size: 13px;
}

.alert.warning,
.warning {
  border-color: #eed39c;
  background: #fff7e8;
  color: var(--warning);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

/* ═══════════════════════════════════════════════════════════
   TIMELINE
   ═══════════════════════════════════════════════════════════ */

.timeline {
  display: grid;
  gap: var(--space-3);
}

.timeline-item {
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: start;
  gap: var(--space-4);
  padding: var(--space-3);
}

.timeline-item .time,
.time {
  font-size: 12px;
  font-weight: 700;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.faq-search {
  padding: var(--space-5);
}

.banner {
  background: linear-gradient(140deg, var(--silk), var(--champagne));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}

/* ═══════════════════════════════════════════════════════════
   EDITORIAL BAND / CULTURAL SECTIONS
   ═══════════════════════════════════════════════════════════ */

.editorial-band {
  background: var(--champagne);
  border-top: none;
  border-bottom: none;
}

.culture-heading h2::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  margin-bottom: 14px;
  background: var(--gold);
}

/* ── Culture Hero Variant ── */

.hero--culture {
  height: 85vh;
  height: 85svh;
}

.hero--culture .hero-scroll-indicator {
  bottom: 32px;
}

/* ── Culture Themes Mosaic ── */

.culture-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 160px);
  gap: 16px;
}

.culture-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}

.culture-tile-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-luxury);
}

.culture-tile:hover .culture-tile-bg {
  transform: scale(1.06);
}

.culture-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 28, 43, 0.82) 0%, rgba(10, 28, 43, 0.15) 55%);
  z-index: 1;
  transition: background 0.5s ease;
}

.culture-tile:hover::after {
  background: linear-gradient(to top, rgba(10, 28, 43, 0.7) 0%, rgba(10, 28, 43, 0.08) 55%);
}

.culture-tile-content {
  position: relative;
  z-index: 2;
  padding: 28px;
}

.culture-tile-kicker {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.culture-tile-content h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.culture-tile-content p {
  margin: 8px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

/* Mosaic layout: zigzag asymmetric */
.culture-tile:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }
.culture-tile:nth-child(2) { grid-column: 3; grid-row: 1; }
.culture-tile:nth-child(3) { grid-column: 3; grid-row: 2; }
.culture-tile:nth-child(4) { grid-column: 1; grid-row: 3; }
.culture-tile:nth-child(5) { grid-column: 1; grid-row: 4; }
.culture-tile:nth-child(6) { grid-column: 2 / 4; grid-row: 3 / 5; }

/* Larger text for big tiles */
.culture-tile:nth-child(1) .culture-tile-content h3,
.culture-tile:nth-child(6) .culture-tile-content h3 {
  font-size: 32px;
}

.culture-tile:nth-child(1) .culture-tile-content p,
.culture-tile:nth-child(6) .culture-tile-content p {
  font-size: 14px;
}

/* ── Culture Editorial Layout ── */

.culture-editorial {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-5);
  align-items: start;
}

.culture-editorial-feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s var(--ease-luxury);
}

.culture-editorial-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(198, 166, 91, 0.3);
}

.culture-editorial-image {
  min-height: 340px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease-luxury);
  overflow: hidden;
}

.culture-editorial-feature:hover .culture-editorial-image {
  transform: scale(1.02);
}

.culture-editorial-body {
  padding: 32px;
  display: grid;
  gap: 14px;
}

.culture-editorial-body h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}

.culture-editorial-body p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.culture-editorial-side {
  display: grid;
  gap: var(--space-5);
}

/* ── Culture CTA Banner ── */

.culture-cta-banner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.culture-cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.culture-cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 28, 43, 0.88), rgba(10, 28, 43, 0.62));
}

.culture-cta-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.culture-cta-banner-content h2 {
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  margin: 0 0 20px;
  line-height: 1.2;
}

.culture-cta-banner-content p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 36px;
  line-height: 1.8;
  font-size: 15px;
}

/* ── Story Grid — Editorial ── */

.story-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-5);
}

.story-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-grid-compact .story-image {
  min-height: 184px;
}

.story-grid-compact .story-body h3 {
  font-size: 20px;
}

.story-feature,
.story-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.5s var(--ease-luxury);
}

.story-feature:hover,
.story-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(198, 166, 91, 0.2);
}

.story-image {
  min-height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease-luxury);
}

.story-feature:hover .story-image,
.story-card:hover .story-image {
  transform: scale(1.03);
}

.story-image-food {
  background-image:
    linear-gradient(to top, rgba(10, 28, 43, 0.4), rgba(10, 28, 43, 0.05)),
    url("./assets/images/ercan/ottomanartist-umbrella-928290_1920.jpg");
}

.story-image-heritage {
  background-image:
    linear-gradient(to top, rgba(10, 28, 43, 0.4), rgba(10, 28, 43, 0.05)),
    url("./assets/images/ercan/babelphotography-mosque-279015_1920.jpg");
}

.story-image-bazaar {
  background-image:
    linear-gradient(to top, rgba(10, 28, 43, 0.4), rgba(10, 28, 43, 0.05)),
    url("./assets/images/ercan/hbelir-historical-6923503_1920.jpg");
}

.story-image-cappadocia {
  background-image:
    linear-gradient(to top, rgba(10, 28, 43, 0.4), rgba(10, 28, 43, 0.05)),
    url("./assets/images/ercan/mario555-cappadocia-277027_1920.jpg");
}

.story-image-pamukkale {
  background-image:
    linear-gradient(to top, rgba(10, 28, 43, 0.4), rgba(10, 28, 43, 0.05)),
    url("./assets/images/ercan/loggawiggler-hierapolis-14966_1920.jpg");
}

.story-image-ephesus {
  background-image:
    linear-gradient(to top, rgba(10, 28, 43, 0.4), rgba(10, 28, 43, 0.05)),
    url("./assets/images/ercan/992829-ephesus-752395_1920.jpg");
}

.story-image-antalya {
  background-image:
    linear-gradient(to top, rgba(10, 28, 43, 0.4), rgba(10, 28, 43, 0.05)),
    url("./assets/images/ercan/alihondavlat-antalya-7572191_1920.jpg");
}

.story-image-konya {
  background-image:
    linear-gradient(to top, rgba(10, 28, 43, 0.4), rgba(10, 28, 43, 0.05)),
    url("./assets/images/ercan/guenterruopp-dance-410468_1920.jpg");
}

.story-image-nemrut {
  background-image:
    linear-gradient(to top, rgba(10, 28, 43, 0.4), rgba(10, 28, 43, 0.05)),
    url("./assets/images/ercan/katja-nemrut-64210_1920.jpg");
}

.story-image-gobeklitepe {
  background-image:
    linear-gradient(to top, rgba(10, 28, 43, 0.4), rgba(10, 28, 43, 0.05)),
    url("./assets/images/ercan/site_1572_0008-1000-652-20180220154204.jpg");
}

.story-image-canakkale {
  background-image:
    linear-gradient(to top, rgba(10, 28, 43, 0.4), rgba(10, 28, 43, 0.05)),
    url("./assets/images/ercan/brianneises-trojan-horse-607574_1920.jpg");
}

.story-body {
  padding: 22px;
  display: grid;
  gap: 12px;
}

.story-body h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}

.story-card .story-body h3 {
  font-size: 20px;
}

.story-body p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.story-meta {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* (culture-promo removed — replaced by culture-cta-banner) */

/* ── Culture Article ── */

.culture-article-hero {
  padding: 56px 0 44px;
  background: linear-gradient(180deg, var(--champagne), var(--silk));
  border-bottom: none;
}

.culture-article-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--space-5);
}

.culture-article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  display: grid;
  gap: 20px;
}

.culture-article p {
  margin: 0;
  line-height: 1.9;
}

.culture-article h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
}

.article-main-image {
  min-height: 360px;
  border-radius: var(--radius-lg);
}

.culture-quote {
  border-left: 2px solid var(--gold);
  background: var(--champagne);
  padding: 18px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.culture-quote p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--text);
  font-style: italic;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIAL — Elegant Slider
   ═══════════════════════════════════════════════════════════ */

.testimonial-section {
  padding: var(--space-8) 0;
  background: var(--silk);
}

.testimonial-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-6);
}

.testimonial-card blockquote {
  margin: 0 0 var(--space-5);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--text);
  font-style: italic;
}

.testimonial-card cite {
  font-style: normal;
  font-size: 13px;
  color: var(--text-soft);
  letter-spacing: 0.3px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: var(--space-4);
}

/* ═══════════════════════════════════════════════════════════
   PARTNER TRUST — Monochrome Logos
   ═══════════════════════════════════════════════════════════ */

.partner-strip {
  padding: var(--space-6) 0;
  border-top: 1px solid var(--line);
}

.partner-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  opacity: 0.4;
  filter: grayscale(100%);
  transition: opacity 0.5s var(--ease-smooth);
}

.partner-strip-inner:hover {
  opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════ */

.center {
  text-align: center;
}

.space-top {
  margin-top: var(--space-4);
}

.space-top-lg {
  margin-top: var(--space-5);
}

/* ═══════════════════════════════════════════════════════════
   MOBILE FILTER SHEET
   ═══════════════════════════════════════════════════════════ */

.mobile-filter-button {
  display: none;
}

.filter-sheet {
  display: none;
}

.filter-sheet.open {
  display: flex;
}

.filter-sheet {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(10, 28, 43, 0.4);
  backdrop-filter: blur(4px);
  align-items: flex-end;
}

.filter-sheet-inner {
  width: 100%;
  max-height: 86vh;
  overflow: auto;
  background: #fff;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: var(--space-6);
}

.sticky-mobile-bar {
  display: none;
}

main > .section:last-child {
  padding-bottom: var(--space-5);
}

/* ═══════════════════════════════════════════════════════════
   ESSENCE SECTION — Split Image + Accordion (Rixos-style)
   ═══════════════════════════════════════════════════════════ */

.essence-section {
  padding: var(--space-9) 0;
}

.essence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.essence-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 520px;
  background-size: cover;
  background-position: center;
}

.essence-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text);
  margin: 0 0 var(--space-3);
}

.essence-content .essence-arrow {
  display: inline-block;
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: var(--space-7);
}

.essence-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.essence-list li {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  cursor: default;
  transition: color 0.3s var(--ease-smooth);
}

.essence-list li:first-child {
  border-top: 1px solid var(--line);
}

.essence-list li:hover {
  color: var(--gold-dark);
}

.essence-list li p {
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   DESTINATION CARDS — Borderless Editorial (Rixos-style)
   ═══════════════════════════════════════════════════════════ */

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.dest-card {
  display: grid;
  gap: var(--space-4);
}

/* Staggered heights like Rixos */
.dest-card:nth-child(2) {
  padding-top: 40px;
}

.dest-card-image {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease-luxury);
  overflow: hidden;
}

.dest-card:hover .dest-card-image {
  transform: scale(1.02);
}

.dest-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
}

.dest-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.dest-card-link {
  font-size: 14px;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s var(--ease-smooth);
}

.dest-card-link:hover {
  color: var(--gold-dark);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER — Light Luxury (Rixos-style)
   ═══════════════════════════════════════════════════════════ */

.footer {
  margin-top: 0;
  padding: 0;
  background: #fff;
  color: var(--text-muted);
  font-size: 13px;
  border-top: none;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}

/* ── Legal links row (top bar like Rixos) ── */

.footer-legal-bar {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  justify-content: center;
}

.footer-legal-links a {
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: color 0.3s var(--ease-smooth);
}

.footer-legal-links a:hover {
  color: var(--gold-dark);
  text-decoration: none;
}

/* ── Main footer grid (4 columns like Rixos) ── */

.footer-top {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  padding: var(--space-8) 0 var(--space-7);
}

.footer-block {
  display: grid;
  gap: var(--space-4);
  align-content: start;
}

.footer-block-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.footer-block p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-block .btn {
  justify-self: start;
}

.footer-block .footer-phone {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.footer-block .footer-hours {
  font-size: 12px;
  color: var(--text-soft);
}

/* ── Footer brand block (legacy support) ── */

.footer-brand-block {
  display: grid;
  gap: 16px;
  align-content: start;
}

.footer-logo-link {
  display: inline-flex;
  width: fit-content;
}

.footer-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.footer-copy {
  margin: 0;
  max-width: 36ch;
  color: var(--text-muted);
  line-height: 1.9;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
}

.footer-contact a {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
}

.footer-contact span {
  font-size: 12px;
  color: var(--text-soft);
}

.footer-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-trust-chip {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-muted);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ── Footer nav grid (legacy support) ── */

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col h4 {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 13px;
  transition: color 0.3s var(--ease-smooth);
}

.footer-col a:hover {
  color: var(--text);
  text-decoration: none;
}

.footer-gold-divider {
  height: 1px;
  background: var(--line);
  border: none;
  margin: 0;
}

.footer-bottom {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 24px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.footer-bottom .footer-logo-link {
  display: inline-flex;
}

.footer-bottom .footer-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.footer-copyright {
  color: var(--text-soft);
  font-size: 12px;
  letter-spacing: 0.5px;
}

.footer a:hover {
  color: var(--text);
  text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (max-width: 1080px)
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1080px) {
  .hero-grid,
  .two-col,
  .detail-layout,
  .culture-editorial,
  .culture-article-layout {
    grid-template-columns: 1fr;
  }

  .culture-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 160px);
  }
  .culture-tile:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 2; }
  .culture-tile:nth-child(2) { grid-column: 1; grid-row: 2; }
  .culture-tile:nth-child(3) { grid-column: 2; grid-row: 2; }
  .culture-tile:nth-child(4) { grid-column: 1; grid-row: 3; }
  .culture-tile:nth-child(5) { grid-column: 2; grid-row: 3; }
  .culture-tile:nth-child(6) { grid-column: 1 / 3; grid-row: 4; }

  .hero-grid {
    gap: var(--space-6);
  }

  /* Hero search bar stacks on tablet */
  .hero-search-bar-inner {
    flex-wrap: wrap;
    border-radius: var(--radius-xl);
    padding: 16px 20px;
    gap: 0;
  }

  .hero-search-field {
    flex: 1 1 40%;
    min-width: 140px;
  }

  .hero-search-divider {
    display: none;
  }

  .btn-search {
    width: 100%;
    height: 48px;
    border-radius: 999px;
    margin-top: 12px;
  }

  .main-header--hero .main-header-inner {
    gap: var(--space-4);
  }

  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-grid .story-feature {
    grid-column: 1 / -1;
  }

  .culture-editorial-image {
    min-height: 260px;
  }

  .culture-cta-banner {
    padding: 80px 0;
  }

  .sticky-side,
  .booking-card {
    position: static;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .main-header-inner .stepper {
    display: none;
  }

  .turkey-visual-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px repeat(2, 180px);
  }

  .turkey-visual-main {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .why-turkiye-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 200px 200px;
  }

  .why-turkiye-mosaic .mosaic-item-main {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .trust-metrics-inner {
    gap: var(--space-6);
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }

  .footer-nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Essence section tablet */
  .essence-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .essence-image {
    min-height: 380px;
  }

  /* Destination cards tablet */
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dest-card:nth-child(2) {
    padding-top: 0;
  }

  .dest-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 50%;
  }
}

/* ═══════════════════════════════════════════════════════════
   HAMBURGER & MOBILE NAV OVERLAY
   ═══════════════════════════════════════════════════════════ */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 51;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--text);
  border-radius: 0;
  transition: all 0.35s var(--ease-smooth);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(3.5px, 3.5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(3.5px, -3.5px);
}

/* White hamburger lines on hero header */
.main-header--hero .hamburger span {
  background: #fff;
}

.main-header--hero.scrolled .hamburger span {
  background: var(--text);
}

/* Dark lines when menu is open (overlay is light) */
.hamburger.active span {
  background: var(--text) !important;
}

/* ── Mobile Nav Overlay ── */

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(250, 248, 244, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-smooth), visibility 0.4s;
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-overlay a {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  padding: 14px 24px;
  letter-spacing: 0.3px;
  transition: color 0.3s ease, transform 0.3s ease;
  transform: translateY(8px);
  opacity: 0;
}

.mobile-nav-overlay.open a {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav-overlay.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav-overlay.open a:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav-overlay.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav-overlay.open a:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav-overlay.open a:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav-overlay.open a:nth-child(6) { transition-delay: 0.3s; }
.mobile-nav-overlay.open a:nth-child(7) { transition-delay: 0.35s; }

.mobile-nav-overlay a:hover {
  color: var(--gold-dark);
}

.mobile-nav-overlay .mobile-nav-divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 12px 0;
  opacity: 0;
  transition: opacity 0.4s ease 0.25s;
}

.mobile-nav-overlay.open .mobile-nav-divider {
  opacity: 1;
}

.mobile-nav-overlay .mobile-nav-cta {
  margin-top: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  padding: 14px 40px;
}

body.menu-open {
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (max-width: 760px)
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 760px) {
  .hamburger {
    display: flex;
  }

  .topbar-inner {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 8px 0;
  }

  .nav {
    display: none;
  }

  .main-header {
    border-bottom-color: rgba(232, 228, 221, 0.4);
  }

  .main-header-inner {
    min-height: 52px;
    justify-content: center;
  }

  .main-header-inner > .btn {
    display: none;
  }

  .brand {
    font-size: inherit;
  }

  .brand-logo {
    width: 64px;
    height: 64px;
  }

  .hero {
    height: 100vh;
    height: 100svh;
  }

  .hero h1 {
    font-size: clamp(28px, 8vw, 42px);
  }

  .hero-subtitle {
    font-size: 12px;
  }

  .hero-center {
    padding-bottom: 220px;
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Hero search bar — compact 2x2 grid on mobile */
  .hero-search-bar {
    bottom: 16px;
    width: calc(100% - 32px);
  }

  .hero-search-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius-lg);
    padding: 12px;
    gap: 2px;
  }

  .hero-search-field {
    padding: 6px 10px;
  }

  .hero-search-label {
    font-size: 9px;
    margin-bottom: 2px;
  }

  .hero-search-field select,
  .hero-search-field input {
    font-size: 13px;
  }

  .hero-search-divider {
    display: none;
  }

  .btn-search {
    grid-column: 1 / -1;
    width: 100%;
    height: 44px;
    border-radius: 999px;
    margin-top: 4px;
  }

  .hero-scroll-indicator {
    display: none;
  }

  /* Hide hero nav + CTA on mobile — hamburger + overlay handles it */
  .main-header--hero .nav {
    display: none;
  }

  .main-header--hero .header-cta {
    display: none;
  }

  .main-header--hero .main-header-inner {
    min-height: 52px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .main-header--hero .brand-logo {
    width: 64px;
    height: 64px;
  }

  .hero-panel {
    padding: var(--space-5);
  }

  .section {
    padding: var(--space-7) 0;
  }

  main > .section:last-child {
    padding-bottom: 14px;
  }

  .search-grid,
  .card-grid,
  .split-list,
  .facts,
  .form-grid-2,
  .mini-grid,
  .story-grid,
  .story-grid-compact,
  .turkey-visual-grid {
    grid-template-columns: 1fr;
  }

  .turkey-visual-grid {
    grid-template-rows: repeat(5, 200px);
  }

  .turkey-visual-main {
    grid-column: auto;
    grid-row: auto;
  }

  .story-grid .story-feature {
    grid-column: auto;
  }

  .hero--culture {
    height: 70vh;
    height: 70svh;
  }

  .culture-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 140px);
    gap: 12px;
  }
  .culture-tile:nth-child(1) { grid-column: 1; grid-row: 1; }
  .culture-tile:nth-child(2) { grid-column: 1; grid-row: 2; }
  .culture-tile:nth-child(3) { grid-column: 1; grid-row: 3; }
  .culture-tile:nth-child(4) { grid-column: 1; grid-row: 4; }
  .culture-tile:nth-child(5) { grid-column: 1; grid-row: 5; }
  .culture-tile:nth-child(6) { grid-column: 1; grid-row: 6; }
  .culture-tile:nth-child(1) .culture-tile-content h3,
  .culture-tile:nth-child(6) .culture-tile-content h3 {
    font-size: 22px;
  }
  .culture-tile-content {
    padding: 20px;
  }
  .culture-tile-content h3 {
    font-size: 20px;
  }

  .culture-editorial {
    grid-template-columns: 1fr;
  }

  .culture-editorial-image {
    min-height: 220px;
  }

  .culture-editorial-body {
    padding: 24px;
  }

  .culture-editorial-body h3 {
    font-size: 22px;
  }

  .culture-cta-banner {
    padding: 64px 0;
  }

  .culture-cta-banner-content h2 {
    font-size: 26px;
  }

  .culture-article-hero {
    padding: 40px 0 28px;
  }

  .culture-article-layout {
    gap: var(--space-4);
  }

  .culture-article {
    padding: 20px;
  }

  .culture-article h2 {
    font-size: 22px;
  }

  .article-main-image {
    min-height: 240px;
  }

  /* Trust metrics mobile */
  .trust-metrics-inner {
    flex-direction: column;
    gap: var(--space-5);
  }

  .trust-metric-divider {
    width: 32px;
    height: 1px;
  }

  /* Why Türkiye mobile */
  .why-turkiye {
    padding: var(--space-8) 0;
  }

  .why-turkiye-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
  }

  .why-turkiye-mosaic .mosaic-item-main {
    grid-column: auto;
    grid-row: auto;
  }

  .why-turkiye-quote blockquote {
    font-size: 20px;
  }

  /* Essence section mobile */
  .essence-section {
    padding: var(--space-7) 0;
  }

  .essence-image {
    min-height: 280px;
  }

  .essence-content h2 {
    font-size: 28px;
  }

  /* Destination cards mobile */
  .dest-grid {
    grid-template-columns: 1fr;
  }

  .dest-card:nth-child(2) {
    padding-top: 0;
  }

  .dest-card:nth-child(3) {
    max-width: 100%;
  }

  .dest-card-image {
    aspect-ratio: 16 / 10;
  }

  /* Footer mobile */
  .footer-top {
    grid-template-columns: 1fr;
    padding: 48px 0 32px;
    gap: 28px;
  }

  .footer-legal-bar {
    padding: 14px 0;
  }

  .footer-legal-links {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .footer-logo {
    width: 72px;
    height: 72px;
  }

  .footer-nav-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 0 24px;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-main,
  .gallery-sub {
    min-height: 220px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .mobile-filter-button {
    display: inline-flex;
  }

  .two-col .panel:first-child {
    display: none;
  }

  /* ── Tables — mobile ── */
  .table-wrap {
    -webkit-overflow-scrolling: touch;
  }

  table {
    font-size: 13px;
  }

  table th,
  table td {
    padding: 10px 12px;
    white-space: nowrap;
  }

  /* ── Buttons — minimum touch target ── */
  .btn {
    min-height: 44px;
    min-width: 44px;
  }

  .dual-cta {
    flex-direction: column;
    gap: 10px;
  }

  .dual-cta .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* ── Page title + subtitle mobile ── */
  .page-title {
    font-size: 26px;
  }

  .section-heading h2 {
    font-size: 22px;
  }

  /* ── Booking card mobile ── */
  .booking-card {
    margin-top: var(--space-5);
  }

  /* ── Price row mobile ── */
  .price-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  /* ── Gallery mobile ── */
  .gallery-main {
    min-height: 200px;
  }

  .gallery-sub {
    min-height: 140px;
  }

  /* ── Detail layout mobile ── */
  .detail-layout aside {
    margin-top: var(--space-5);
  }

  /* ── Banner mobile ── */
  .banner {
    padding: var(--space-5);
  }

  .banner .page-title {
    font-size: 22px !important;
  }

  /* ── Sticky Mobile Bar — Refined ── */

  .sticky-mobile-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    padding-bottom: calc(var(--space-3) + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(232, 228, 221, 0.6);
    background: rgba(250, 248, 244, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 -4px 24px rgba(10, 28, 43, 0.06);
  }

  .sticky-mobile-bar .btn {
    flex: 1;
    font-size: 13px;
  }

  body.with-mobile-bar {
    padding-bottom: 84px;
  }
}

/* ═══════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .reveal-fade {
    opacity: 1;
  }

  .hero-text .reveal-hero {
    opacity: 1;
    transform: none;
  }
}
