/* ========================================
   Trvacay — Turkey Travel Guide
   Design System & Global Styles
   ======================================== */

:root {
  /* Brand colors */
  --ottoman-red: #C8102E;
  --ottoman-red-dark: #A00D25;
  --ottoman-red-light: #E83050;
  --bosphorus-blue: #003DA5;
  --bosphorus-blue-dark: #002A73;
  --bosphorus-blue-light: #1A5BC9;
  --anatolian-gold: #D4AF37;
  --anatolian-gold-dark: #B8952A;
  --anatolian-gold-light: #E8C54A;

  /* Neutrals — warm cream palette */
  --cream: #FAF6F0;
  --cream-dark: #F0E9DC;
  --cream-deep: #E6DDCC;
  --warm-white: #FFFEFB;
  --text-dark: #1F1A14;
  --text-body: #3A342C;
  --text-muted: #6B6257;
  --text-light: #8A8075;

  /* Typography */
  --font-display: 'Playfair Display', 'Times New Roman', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

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

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(31, 26, 20, 0.08), 0 1px 2px rgba(31, 26, 20, 0.06);
  --shadow-md: 0 4px 12px rgba(31, 26, 20, 0.10), 0 2px 4px rgba(31, 26, 20, 0.06);
  --shadow-lg: 0 12px 32px rgba(31, 26, 20, 0.12), 0 4px 12px rgba(31, 26, 20, 0.08);
  --shadow-xl: 0 24px 64px rgba(31, 26, 20, 0.16), 0 8px 24px rgba(31, 26, 20, 0.10);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 150ms;
  --dur-med: 250ms;
  --dur-slow: 400ms;

  /* Layout */
  --container-max: 1240px;
  --header-height: 76px;
}

/* ========================================
   Reset & Base
   ======================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-wrap: pretty;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--bosphorus-blue);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}

a:hover {
  color: var(--ottoman-red);
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 700;
}

h4 {
  font-size: 1.25rem;
  font-weight: 700;
}

h5 {
  font-size: 1.125rem;
  font-weight: 700;
}

h6 {
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p {
  margin-bottom: var(--space-5);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ottoman-red);
  margin-bottom: var(--space-3);
  display: inline-block;
}

.eyebrow--gold {
  color: var(--anatolian-gold-dark);
}

.eyebrow--blue {
  color: var(--bosphorus-blue);
}

.lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 400;
}

/* ========================================
   Layout
   ======================================== */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

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

.section--cream {
  background-color: var(--cream);
}

.section--white {
  background-color: var(--warm-white);
}

.section--dark {
  background-color: var(--bosphorus-blue-dark);
  color: var(--cream);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--warm-white);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-8);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-header .eyebrow {
  margin-bottom: var(--space-4);
}

.section-header h2 {
  margin-bottom: var(--space-4);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin: 0;
}

.section--dark .section-header p {
  color: rgba(250, 246, 240, 0.7);
}

/* ========================================
   Header & Navigation
   ======================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 254, 251, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--cream-deep);
  height: var(--header-height);
  transition: box-shadow var(--dur-med) var(--ease-out);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
}

.site-header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-5);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--text-dark);
  flex-shrink: 0;
}

.site-logo__mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.site-logo__text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  line-height: 1;
}

.site-logo__text span {
  color: var(--ottoman-red);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  list-style: none;
}

.site-nav__item {
  position: relative;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-3) var(--space-4);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}

.site-nav__link:hover,
.site-nav__item:hover > .site-nav__link {
  color: var(--ottoman-red);
  background-color: rgba(200, 16, 46, 0.06);
}

.site-nav__link.is-active {
  color: var(--ottoman-red);
  font-weight: 600;
}

.site-nav__chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--dur-fast) var(--ease-out);
  flex-shrink: 0;
}

.site-nav__item:hover .site-nav__chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.site-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  padding: var(--space-3);
  background-color: var(--warm-white);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--dur-med) var(--ease-out);
  list-style: none;
}

.site-nav__item:hover .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav__dropdown--wide {
  min-width: 320px;
  max-height: 480px;
  overflow-y: auto;
}

.site-nav__dropdown-item a {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: 0.9375rem;
  color: var(--text-body);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--dur-fast) var(--ease-out);
}

.site-nav__dropdown-item a:hover {
  background-color: var(--cream);
  color: var(--ottoman-red);
}

.site-nav__dropdown-item a:active {
  background-color: var(--cream-dark);
}

/* CTA Button in nav */
.site-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  background: linear-gradient(135deg, var(--ottoman-red), var(--ottoman-red-dark));
  color: var(--warm-white) !important;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--dur-fast) var(--ease-out);
  box-shadow: 0 2px 8px rgba(200, 16, 46, 0.25);
  white-space: nowrap;
}

.site-nav__cta:hover {
  background: linear-gradient(135deg, var(--ottoman-red-light), var(--ottoman-red));
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 16, 46, 0.3);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-md);
  color: var(--text-dark);
  transition: background-color var(--dur-fast) var(--ease-out);
}

.mobile-menu-toggle:hover {
  background-color: var(--cream-dark);
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
  white-space: nowrap;
  line-height: 1.3;
}

.btn--primary {
  background: linear-gradient(135deg, var(--ottoman-red), var(--ottoman-red-dark));
  color: var(--warm-white);
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.25);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--ottoman-red-light), var(--ottoman-red));
  color: var(--warm-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 16, 46, 0.3);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background-color: var(--warm-white);
  color: var(--bosphorus-blue);
  border: 2px solid var(--bosphorus-blue);
}

.btn--secondary:hover {
  background-color: var(--bosphorus-blue);
  color: var(--warm-white);
  transform: translateY(-2px);
}

.btn--gold {
  background: linear-gradient(135deg, var(--anatolian-gold), var(--anatolian-gold-dark));
  color: var(--text-dark);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn--gold:hover {
  background: linear-gradient(135deg, var(--anatolian-gold-light), var(--anatolian-gold));
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--warm-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--warm-white);
  color: var(--warm-white);
}

.btn--block {
  width: 100%;
}

.btn--lg {
  padding: var(--space-5) var(--space-7);
  font-size: 1.0625rem;
  border-radius: var(--radius-lg);
}

.btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: 0.875rem;
}

.btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
  position: relative;
  padding: var(--space-10) 0 var(--space-9);
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
  overflow: hidden;
}

.hero--destination {
  padding: var(--space-9) 0 var(--space-8);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.hero__content {
  max-width: 640px;
}

.hero .eyebrow {
  margin-bottom: var(--space-4);
}

.hero h1 {
  margin-bottom: var(--space-5);
}

.hero h1 .accent {
  color: var(--ottoman-red);
  font-style: italic;
}

.hero__lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: var(--space-7);
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: var(--space-7);
  margin-top: var(--space-7);
  padding-top: var(--space-6);
  border-top: 1px solid var(--cream-deep);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.hero-stat__number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.hero-stat__label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero__visual {
  position: relative;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__visual-svg {
  width: 100%;
  height: 100%;
}

/* Hero decorative blobs */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 61, 165, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ========================================
   Cards
   ======================================== */

.card {
  background-color: var(--warm-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-deep);
  overflow: hidden;
  transition: all var(--dur-med) var(--ease-out);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cream-dark);
}

.card__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-dark);
}

.card__visual svg {
  width: 100%;
  height: 100%;
  transition: transform var(--dur-slow) var(--ease-out);
}

.card:hover .card__visual svg {
  transform: scale(1.05);
}

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

.card__tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background-color: rgba(200, 16, 46, 0.08);
  color: var(--ottoman-red);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-3);
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.card__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ottoman-red);
  text-decoration: none;
}

.card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--dur-fast) var(--ease-out);
}

.card__link:hover svg {
  transform: translateX(3px);
}

/* Destination card grid */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-6);
}

/* Guide cards */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-6);
}

.guide-card {
  background-color: var(--warm-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-deep);
  padding: var(--space-7);
  transition: all var(--dur-med) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.guide-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ottoman-red), var(--anatolian-gold));
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.guide-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: var(--space-5);
  padding: 12px;
  background-color: rgba(200, 16, 46, 0.08);
  border-radius: var(--radius-lg);
  color: var(--ottoman-red);
}

.guide-card h3 {
  margin-bottom: var(--space-3);
  font-size: 1.375rem;
}

.guide-card p {
  color: var(--text-muted);
  margin-bottom: var(--space-4);
  font-size: 1rem;
}

/* ========================================
   Travel Tips
   ======================================== */

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
}

.tip-card {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5);
  background-color: var(--warm-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-deep);
  transition: all var(--dur-fast) var(--ease-out);
}

.tip-card:hover {
  border-color: var(--anatolian-gold);
  box-shadow: var(--shadow-md);
}

.tip-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  padding: 10px;
  background-color: rgba(212, 175, 55, 0.12);
  border-radius: var(--radius-md);
  color: var(--anatolian-gold-dark);
}

.tip-card__content h4 {
  font-size: 1rem;
  margin-bottom: var(--space-2);
  font-family: var(--font-body);
  font-weight: 700;
}

.tip-card__content p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

/* ========================================
   Why Book Section
   ======================================== */

.why-book {
  background: linear-gradient(135deg, var(--bosphorus-blue) 0%, var(--bosphorus-blue-dark) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.why-book::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.why-book h2,
.why-book h3 {
  color: var(--warm-white);
}

.why-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.why-feature {
  text-align: center;
  padding: var(--space-6) var(--space-5);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all var(--dur-med) var(--ease-out);
}

.why-feature:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
}

.why-feature__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-4);
  padding: 12px;
  background-color: rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-lg);
  color: var(--anatolian-gold);
}

.why-feature h4 {
  margin-bottom: var(--space-2);
  color: var(--warm-white);
  font-size: 1.125rem;
}

.why-feature p {
  font-size: 0.9375rem;
  color: rgba(250, 246, 240, 0.7);
  margin: 0;
}

.why-cta {
  text-align: center;
}

/* ========================================
   FAQ
   ======================================== */

.faq-grid {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background-color: var(--warm-white);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--dur-fast) var(--ease-out);
}

.faq-item:hover {
  border-color: var(--cream-dark);
}

.faq-item.is-open {
  border-color: var(--ottoman-red);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all var(--dur-fast) var(--ease-out);
}

.faq-question:hover {
  background-color: var(--cream);
}

.faq-question__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--ottoman-red);
  transition: transform var(--dur-fast) var(--ease-out);
}

.faq-item.is-open .faq-question__icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-med) var(--ease-out);
}

.faq-item.is-open .faq-answer {
  max-height: 500px;
}

.faq-answer__inner {
  padding: 0 var(--space-6) var(--space-5);
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ========================================
   Footer
   ======================================== */

.site-footer {
  background-color: var(--text-dark);
  color: var(--cream);
  padding: var(--space-9) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(250, 246, 240, 0.1);
}

.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer-brand__logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--warm-white);
}

.footer-brand__logo-text span {
  color: var(--ottoman-red);
}

.footer-brand p {
  font-size: 0.9375rem;
  color: rgba(250, 246, 240, 0.6);
  line-height: 1.6;
  margin-bottom: var(--space-5);
  max-width: 340px;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--warm-white);
  margin-bottom: var(--space-5);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-col a {
  color: rgba(250, 246, 240, 0.6);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color var(--dur-fast) var(--ease-out);
}

.footer-col a:hover {
  color: var(--anatolian-gold);
}

.footer-disclosure {
  padding: var(--space-6) 0;
  border-bottom: 1px solid rgba(250, 246, 240, 0.1);
}

.footer-disclosure p {
  font-size: 0.8125rem;
  color: rgba(250, 246, 240, 0.5);
  line-height: 1.6;
  margin: 0;
}

.footer-bottom {
  padding: var(--space-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(250, 246, 240, 0.5);
  margin: 0;
}

.footer-bottom__links {
  display: flex;
  gap: var(--space-5);
  list-style: none;
}

.footer-bottom__links a {
  font-size: 0.875rem;
  color: rgba(250, 246, 240, 0.5);
}

.footer-bottom__links a:hover {
  color: var(--anatolian-gold);
}

/* ========================================
   Destination Page — Sections
   ======================================== */

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

.dest-section--alt {
  background-color: var(--warm-white);
}

/* Introduction */
.dest-intro {
  max-width: 800px;
}

.dest-intro p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: var(--space-5);
}

.dest-intro p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  float: left;
  line-height: 0.9;
  padding-right: var(--space-3);
  padding-top: 6px;
  color: var(--ottoman-red);
}

/* Attractions */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-6);
}

.attraction-card {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5);
  background-color: var(--warm-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-deep);
  transition: all var(--dur-med) var(--ease-out);
}

.attraction-card:hover {
  border-color: var(--bosphorus-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.attraction-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  padding: 10px;
  background-color: rgba(0, 61, 165, 0.08);
  border-radius: var(--radius-md);
  color: var(--bosphorus-blue);
}

.attraction-card__content h4 {
  font-size: 1.0625rem;
  margin-bottom: var(--space-2);
  font-family: var(--font-display);
  font-weight: 700;
}

.attraction-card__content p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Food Section */
.food-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-7);
}

.food-card {
  text-align: center;
  padding: var(--space-6) var(--space-5);
  background-color: var(--warm-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-deep);
  transition: all var(--dur-fast) var(--ease-out);
}

.food-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--anatolian-gold);
}

.food-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
  padding: 14px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(200, 16, 46, 0.08));
  border-radius: 50%;
  color: var(--ottoman-red);
}

.food-card h4 {
  font-size: 1.0625rem;
  margin-bottom: var(--space-2);
}

.food-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

.dining-tip {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  padding: var(--space-6);
  background-color: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
}

.dining-tip__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  padding: 10px;
  background-color: var(--anatolian-gold);
  border-radius: var(--radius-md);
  color: var(--text-dark);
}

.dining-tip h4 {
  font-size: 1.125rem;
  margin-bottom: var(--space-2);
  color: var(--text-dark);
}

.dining-tip p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9375rem;
}

/* Itinerary */
.itinerary-section {
  background-color: var(--warm-white);
}

.itinerary-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-7);
  padding: 4px;
  background-color: var(--cream-dark);
  border-radius: var(--radius-lg);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.itinerary-tab {
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
}

.itinerary-tab.is-active {
  background-color: var(--warm-white);
  color: var(--ottoman-red);
  box-shadow: var(--shadow-sm);
}

.itinerary-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 32px;
}

.itinerary-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--ottoman-red), var(--anatolian-gold));
  border-radius: 2px;
}

.timeline-day {
  position: relative;
  margin-bottom: var(--space-6);
}

.timeline-day:last-child {
  margin-bottom: 0;
}

.timeline-day__marker {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 16px;
  height: 16px;
  background-color: var(--warm-white);
  border: 3px solid var(--ottoman-red);
  border-radius: 50%;
  z-index: 1;
}

.timeline-day__content {
  background-color: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  border: 1px solid var(--cream-deep);
}

.timeline-day__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-3);
}

.timeline-day__title span {
  color: var(--ottoman-red);
  font-size: 0.9375rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-right: var(--space-3);
}

.timeline-day__items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.timeline-day__items li {
  position: relative;
  padding-left: var(--space-5);
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.5;
}

.timeline-day__items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: var(--anatolian-gold);
  border-radius: 50%;
}

/* Hotels */
.hotels-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}

.hotel-card {
  background-color: var(--warm-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-deep);
  overflow: hidden;
  transition: all var(--dur-med) var(--ease-out);
  display: flex;
  flex-direction: column;
}

.hotel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cream-dark);
}

.hotel-card__visual {
  aspect-ratio: 16 / 10;
  background: var(--cream-dark);
  overflow: hidden;
}

.hotel-card__visual svg {
  width: 100%;
  height: 100%;
  transition: transform var(--dur-slow) var(--ease-out);
}

.hotel-card:hover .hotel-card__visual svg {
  transform: scale(1.05);
}

.hotel-card__body {
  padding: var(--space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hotel-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-2);
  color: var(--anatolian-gold);
}

.hotel-card__stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.hotel-card__name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.hotel-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-4);
  flex: 1;
}

.hotel-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  border-top: 1px solid var(--cream-deep);
}

.hotel-card__price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hotel-card__price-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hotel-card__price-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ottoman-red);
}

.hotel-card__price-value span {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-muted);
  font-family: var(--font-body);
}

/* Practical Info */
.practical-section {
  background-color: var(--warm-white);
}

.practical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
}

.practical-card {
  padding: var(--space-6);
  background-color: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-deep);
  transition: all var(--dur-fast) var(--ease-out);
}

.practical-card:hover {
  box-shadow: var(--shadow-md);
}

.practical-card__icon {
  width: 44px;
  height: 44px;
  padding: 10px;
  margin-bottom: var(--space-4);
  background-color: var(--bosphorus-blue);
  border-radius: var(--radius-md);
  color: var(--warm-white);
}

.practical-card:nth-child(2) .practical-card__icon {
  background-color: var(--ottoman-red);
}

.practical-card:nth-child(3) .practical-card__icon {
  background-color: var(--anatolian-gold-dark);
}

.practical-card:nth-child(4) .practical-card__icon {
  background-color: #2D7A4A;
}

.practical-card h4 {
  font-size: 1.0625rem;
  margin-bottom: var(--space-3);
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.practical-card p {
  font-size: 0.9375rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}

/* Weather Card */
.weather-card {
  padding: var(--space-6);
  background: linear-gradient(135deg, var(--bosphorus-blue) 0%, var(--bosphorus-blue-dark) 100%);
  border-radius: var(--radius-lg);
  color: var(--warm-white);
}

.weather-card h3 {
  color: var(--warm-white);
  margin-bottom: var(--space-5);
  font-size: 1.5rem;
}

.weather-months {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.weather-month {
  text-align: center;
  padding: var(--space-3) var(--space-2);
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: background-color var(--dur-fast) var(--ease-out);
}

.weather-month:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.weather-month__name {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-2);
  opacity: 0.8;
}

.weather-month__temp {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.weather-month__temp span {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.7;
}

.weather-info {
  display: flex;
  gap: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.weather-info__item {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.weather-info__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.6;
}

.weather-info__value {
  font-size: 0.9375rem;
  font-weight: 600;
}

/* Related Destinations */
.related-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

/* Back to top/home */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: var(--space-5);
  transition: all var(--dur-fast) var(--ease-out);
}

.back-link:hover {
  color: var(--ottoman-red);
}

.back-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--dur-fast) var(--ease-out);
}

.back-link:hover svg {
  transform: translateX(-3px);
}

/* ========================================
   Content Pages (Guide/About)
   ======================================== */

.content-page {
  padding: var(--space-9) 0;
}

.content-page__inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--space-8);
  align-items: start;
}

.content-article {
  max-width: 780px;
}

.content-article .eyebrow {
  margin-bottom: var(--space-4);
}

.content-article h1 {
  margin-bottom: var(--space-5);
}

.content-article__lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: var(--space-7);
}

.content-article h2 {
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
  padding-top: var(--space-4);
}

.content-article h3 {
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
  font-size: 1.375rem;
}

.content-article p {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: var(--space-5);
}

.content-article ul,
.content-article ol {
  margin-bottom: var(--space-5);
  padding-left: var(--space-6);
}

.content-article li {
  margin-bottom: var(--space-3);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.content-article blockquote {
  margin: var(--space-6) 0;
  padding: var(--space-5) var(--space-6);
  background-color: rgba(212, 175, 55, 0.08);
  border-left: 4px solid var(--anatolian-gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--text-body);
  font-size: 1.125rem;
}

/* Table of contents sidebar */
.toc-sidebar {
  position: sticky;
  top: calc(var(--header-height) + var(--space-6));
}

.toc {
  padding: var(--space-5);
  background-color: var(--warm-white);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius-lg);
}

.toc__title {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}

.toc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.toc a {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: 0.875rem;
  color: var(--text-body);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--dur-fast) var(--ease-out);
  border-left: 2px solid transparent;
  padding-left: var(--space-3);
}

.toc a:hover {
  color: var(--ottoman-red);
  background-color: rgba(200, 16, 46, 0.04);
  border-left-color: var(--ottoman-red);
}

/* Itinerary route cards */
.route-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-7);
  margin: var(--space-7) 0;
}

.route-card {
  padding: var(--space-7);
  background-color: var(--warm-white);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.route-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--ottoman-red), var(--anatolian-gold), var(--bosphorus-blue));
}

.route-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
}

.route-card__header h3 {
  margin-bottom: var(--space-2);
  font-size: 1.75rem;
}

.route-card__meta {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.route-card__meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.route-card__meta-item svg {
  width: 18px;
  height: 18px;
  color: var(--bosphorus-blue);
}

.route-card__badge {
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background-color: rgba(200, 16, 46, 0.08);
  color: var(--ottoman-red);
  border-radius: var(--radius-sm);
}

.route-days {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-5);
}

.route-day {
  padding: var(--space-4) var(--space-5);
  background-color: var(--cream);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--anatolian-gold);
}

.route-day__num {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ottoman-red);
  margin-bottom: var(--space-2);
}

.route-day__place {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--space-1);
  font-size: 0.9375rem;
}

.route-day__desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Dish cards for food guide */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-5);
  margin: var(--space-6) 0;
}

.dish-item {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5);
  background-color: var(--warm-white);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius-lg);
  transition: all var(--dur-fast) var(--ease-out);
}

.dish-item:hover {
  border-color: var(--anatolian-gold);
  box-shadow: var(--shadow-md);
}

.dish-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  padding: 10px;
  background-color: rgba(200, 16, 46, 0.08);
  border-radius: 50%;
  color: var(--ottoman-red);
}

.dish-item h4 {
  font-size: 1rem;
  margin-bottom: var(--space-2);
  font-family: var(--font-display);
}

.dish-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

/* Culture timeline */
.culture-timeline {
  position: relative;
  margin: var(--space-7) 0;
  padding-left: 32px;
}

.culture-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--ottoman-red), var(--bosphorus-blue));
}

.culture-era {
  position: relative;
  margin-bottom: var(--space-6);
}

.culture-era:last-child {
  margin-bottom: 0;
}

.culture-era__marker {
  position: absolute;
  left: -32px;
  top: 6px;
  width: 16px;
  height: 16px;
  background-color: var(--warm-white);
  border: 3px solid var(--ottoman-red);
  border-radius: 50%;
}

.culture-era__content {
  padding: var(--space-5) var(--space-6);
  background-color: var(--warm-white);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius-lg);
}

.culture-era h4 {
  font-size: 1.125rem;
  margin-bottom: var(--space-2);
  color: var(--ottoman-red);
}

.culture-era__years {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--anatolian-gold-dark);
  margin-bottom: var(--space-2);
}

.culture-era p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ========================================
   Scroll Animations
   ======================================== */

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

/* ========================================
   Breadcrumb
   ======================================== */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  font-size: 0.875rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}

.breadcrumb a:hover {
  color: var(--ottoman-red);
}

.breadcrumb__sep {
  width: 14px;
  height: 14px;
  opacity: 0.4;
}

.breadcrumb__current {
  color: var(--text-body);
  font-weight: 500;
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }

  .hero__visual {
    height: 320px;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .content-page__inner {
    grid-template-columns: 1fr;
  }

  .toc-sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

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

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

  .site-nav__list,
  .site-nav__cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  /* Mobile menu */
  .site-nav.mobile-open {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--warm-white);
    z-index: 99;
    display: flex;
    flex-direction: column;
    padding: var(--space-5);
    overflow-y: auto;
  }

  .site-nav.mobile-open .site-nav__list {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: var(--space-2);
  }

  .site-nav.mobile-open .site-nav__item {
    width: 100%;
  }

  .site-nav.mobile-open .site-nav__link {
    width: 100%;
    justify-content: space-between;
    padding: var(--space-4);
    font-size: 1rem;
  }

  .site-nav.mobile-open .site-nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 var(--space-4) var(--space-2);
    background-color: transparent;
    display: none;
  }

  .site-nav.mobile-open .site-nav__dropdown-item a {
    padding: var(--space-3) var(--space-4);
  }

  .site-nav.mobile-open .site-nav__item.is-open .site-nav__dropdown {
    display: block;
  }

  .site-nav.mobile-open .site-nav__cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-top: var(--space-5);
  }

  .hero__stats {
    flex-wrap: wrap;
    gap: var(--space-5);
  }

  .hero-stat__number {
    font-size: 1.5rem;
  }

  .dest-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--space-5);
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .weather-months {
    grid-template-columns: repeat(4, 1fr);
  }

  .route-card {
    padding: var(--space-5);
  }

  .itinerary-timeline {
    padding-left: 24px;
  }

  .timeline-day__marker {
    left: -24px;
  }
}

@media (max-width: 480px) {
  .weather-months {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }
}

@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;
  }
}
