/* ============================================================
   Washington DC Travel Guide — Main Stylesheet
   Domain: washingtondc.in
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
  /* Brand Palette */
  --clr-white:       #ffffff;
  --clr-off-white:   #f8f6f3;
  --clr-cream:       #f2ede6;
  --clr-sand:        #e8dfd0;
  --clr-stone:       #c9bfb0;
  --clr-taupe:       #9e8e7e;
  --clr-brown:       #6b5744;
  --clr-dark-brown:  #3d2b1f;
  --clr-charcoal:    #2a2520;

  /* Accent */
  --clr-gold:        #c9a84c;
  --clr-gold-light:  #e6c97a;
  --clr-gold-dark:   #a07830;
  --clr-blue:        #1a3a5c;
  --clr-blue-light:  #2d5f8a;
  --clr-red:         #9b2335;

  /* Typography */
  --font-serif:      'Georgia', 'Times New Roman', serif;
  --font-sans:       'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-display:    'Georgia', serif;

  /* Sizing */
  --max-width:       1280px;
  --nav-height:      72px;

  /* Shadows */
  --shadow-sm:       0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:       0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:       0 12px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.08);
  --shadow-xl:       0 24px 60px rgba(0,0,0,.18);

  /* Transitions */
  --ease:            cubic-bezier(.4,0,.2,1);
  --transition:      all .25s var(--ease);
}

/* ── Dark Mode Variables ── */
[data-theme="dark"] {
  --clr-white:       #1a1714;
  --clr-off-white:   #201d1a;
  --clr-cream:       #252119;
  --clr-sand:        #2e2a24;
  --clr-stone:       #3d372f;
  --clr-taupe:       #8a7d6e;
  --clr-brown:       #b09880;
  --clr-dark-brown:  #d4c4b0;
  --clr-charcoal:    #f0ebe4;
  --clr-gold:        #d4a840;
  --clr-gold-light:  #c49028;
  --clr-blue:        #4a90d4;
  --clr-blue-light:  #6aaee8;
  --shadow-sm:       0 1px 3px rgba(0,0,0,.3);
  --shadow-md:       0 4px 16px rgba(0,0,0,.4);
  --shadow-lg:       0 12px 40px rgba(0,0,0,.5);
}

/* ── CSS Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--clr-off-white);
  color: var(--clr-charcoal);
  line-height: 1.7;
  min-height: 100vh;
  transition: background-color .3s var(--ease), color .3s var(--ease);
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── Typography Scale ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--clr-dark-brown);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 600; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ── Layout Utilities ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--lg {
  padding: 7rem 0;
}

.section--sm {
  padding: 3rem 0;
}

.section-label {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--clr-gold);
  display: block;
  margin-bottom: .75rem;
}

.section-title {
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--clr-taupe);
  max-width: 640px;
  line-height: 1.8;
}

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

.text-center .section-subtitle {
  margin: 0 auto;
}

/* ── Grid System ── */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }

/* ── ─────────────────────────────── ──
   NAVIGATION
── ─────────────────────────────── ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--transition), border-color .3s;
}

[data-theme="dark"] .site-nav {
  background: rgba(26,23,20,.92);
}

.site-nav.scrolled {
  border-color: var(--clr-sand);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--clr-blue) 0%, var(--clr-blue-light) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-logo-text strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-dark-brown);
  letter-spacing: -.01em;
}

.nav-logo-text span {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-gold);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--clr-dark-brown);
  padding: .5rem .8rem;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-gold);
  background: var(--clr-cream);
}

/* Nav Controls */
.nav-controls {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.btn-dark-toggle,
.btn-menu {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-dark-brown);
  background: var(--clr-cream);
  border: 1px solid var(--clr-sand);
  transition: var(--transition);
  font-size: 1rem;
}

.btn-dark-toggle:hover,
.btn-menu:hover {
  background: var(--clr-sand);
  color: var(--clr-gold);
}

.btn-menu {
  display: none;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--clr-off-white);
  padding: calc(var(--nav-height) + 1.5rem) 1.5rem 2rem;
  overflow-y: auto;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
  transform: translateX(100%);
  opacity: 0;
}

.mobile-menu.open {
  display: block;
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu a {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--clr-dark-brown);
  padding: 1rem 0;
  border-bottom: 1px solid var(--clr-sand);
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--clr-gold);
  padding-left: .5rem;
}

/* ── ─────────────────────────────── ──
   HERO SECTION
── ─────────────────────────────── ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--clr-dark-brown);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .75;
  transition: transform 8s ease;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,23,20,.65) 0%,
    rgba(26,58,92,.35) 60%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  padding-top: var(--nav-height);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,168,76,.2);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--clr-gold-light);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  max-width: 700px;
}

.hero-title em {
  font-style: normal;
  color: var(--clr-gold-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.82);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── ─────────────────────────────── ──
   BUTTONS
── ─────────────────────────────── ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 600;
  padding: .8rem 1.75rem;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--clr-gold);
  color: var(--clr-dark-brown);
  border-color: var(--clr-gold);
}

.btn-primary:hover {
  background: var(--clr-gold-dark);
  border-color: var(--clr-gold-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.35);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: white;
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--clr-cream);
  color: var(--clr-dark-brown);
  border-color: var(--clr-sand);
}

.btn-secondary:hover {
  background: var(--clr-sand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-dark {
  background: var(--clr-dark-brown);
  color: white;
  border-color: var(--clr-dark-brown);
}

.btn-dark:hover {
  background: var(--clr-charcoal);
  border-color: var(--clr-charcoal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  font-size: .8rem;
  padding: .5rem 1.1rem;
}

.btn-lg {
  font-size: 1rem;
  padding: 1rem 2.25rem;
}

/* ── ─────────────────────────────── ──
   CARDS
── ─────────────────────────────── ── */
.card {
  background: var(--clr-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--clr-sand);
}

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

.card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.card:hover .card-img img {
  transform: scale(1.06);
}

.card-badge {
  position: absolute;
  top: .85rem;
  left: .85rem;
  background: var(--clr-gold);
  color: var(--clr-dark-brown);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 100px;
}

.card-body {
  padding: 1.5rem;
}

.card-body h3 {
  font-size: 1.15rem;
  margin-bottom: .5rem;
  color: var(--clr-dark-brown);
}

.card-body p {
  font-size: .9rem;
  color: var(--clr-taupe);
  line-height: 1.7;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--clr-sand);
  font-size: .8rem;
  color: var(--clr-taupe);
}

.card-meta span {
  display: flex;
  align-items: center;
  gap: .3rem;
}

/* ── ─────────────────────────────── ──
   STATS BAR
── ─────────────────────────────── ── */
.stats-bar {
  background: var(--clr-blue);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  color: white;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--clr-gold-light);
  display: block;
  line-height: 1;
  margin-bottom: .4rem;
}

.stat-label {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .8;
}

/* ── ─────────────────────────────── ──
   FEATURE BLOCKS
── ─────────────────────────────── ── */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.feature-block.reverse {
  direction: rtl;
}

.feature-block.reverse > * {
  direction: ltr;
}

.feature-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.feature-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: white;
  border-radius: 12px;
  padding: .9rem 1.2rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: .75rem;
}

.feature-image-badge-icon {
  width: 42px;
  height: 42px;
  background: var(--clr-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-image-badge-text strong {
  display: block;
  font-size: .95rem;
  color: var(--clr-dark-brown);
}

.feature-image-badge-text span {
  font-size: .75rem;
  color: var(--clr-taupe);
}

.feature-content .section-title {
  margin-bottom: 1.25rem;
}

.feature-list {
  margin: 1.5rem 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .6rem 0;
  font-size: .95rem;
  color: var(--clr-taupe);
  border-bottom: 1px solid var(--clr-sand);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: '✦';
  color: var(--clr-gold);
  flex-shrink: 0;
  margin-top: .1em;
  font-size: .75rem;
}

/* ── ─────────────────────────────── ──
   SEASON CARDS
── ─────────────────────────────── ── */
.season-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-md);
}

.season-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.season-card:hover img {
  transform: scale(1.08);
}

.season-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  color: white;
}

.season-card-tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-gold-light);
  margin-bottom: .4rem;
}

.season-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
  margin-bottom: .4rem;
}

.season-card-desc {
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}

/* ── ─────────────────────────────── ──
   TIP / ALERT BOX
── ─────────────────────────────── ── */
.tip-box {
  background: var(--clr-cream);
  border-left: 4px solid var(--clr-gold);
  border-radius: 0 12px 12px 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.tip-box.info {
  border-left-color: var(--clr-blue-light);
  background: rgba(45,95,138,.06);
}

.tip-box.warning {
  border-left-color: var(--clr-red);
  background: rgba(155,35,53,.06);
}

.tip-box-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
}

.tip-box-body strong {
  display: block;
  color: var(--clr-dark-brown);
  margin-bottom: .3rem;
  font-size: .95rem;
}

.tip-box-body p {
  font-size: .9rem;
  color: var(--clr-taupe);
  margin: 0;
}

/* ── ─────────────────────────────── ──
   PAGE HERO (inner pages)
── ─────────────────────────────── ── */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + 4rem) 0 5rem;
  overflow: hidden;
  background: var(--clr-sand);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .4;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(248,246,243,.97) 40%,
    rgba(248,246,243,.6) 100%
  );
}

[data-theme="dark"] .page-hero-bg::after {
  background: linear-gradient(
    to right,
    rgba(26,23,20,.97) 40%,
    rgba(26,23,20,.6) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero-content .section-label {
  margin-bottom: .6rem;
}

.page-hero-content h1 {
  margin-bottom: 1rem;
  max-width: 640px;
}

.page-hero-content .lead {
  font-size: 1.15rem;
  color: var(--clr-taupe);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: var(--clr-taupe);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--clr-gold);
  transition: var(--transition);
}

.breadcrumb a:hover { color: var(--clr-gold-dark); }

.breadcrumb-sep {
  color: var(--clr-stone);
}

/* ── ─────────────────────────────── ──
   FILTER BAR
── ─────────────────────────────── ── */
.filter-bar {
  background: var(--clr-white);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-sand);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-taupe);
  white-space: nowrap;
}

.filter-tags {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--clr-brown);
  background: var(--clr-cream);
  border: 1px solid var(--clr-sand);
  border-radius: 100px;
  padding: .35rem .85rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-tag:hover,
.filter-tag.active {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-dark-brown);
  font-weight: 600;
}

/* ── ─────────────────────────────── ──
   TABLE
── ─────────────────────────────── ── */
.table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--clr-sand);
  box-shadow: var(--shadow-sm);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  background: var(--clr-white);
}

thead {
  background: var(--clr-cream);
}

th {
  padding: .9rem 1.25rem;
  text-align: left;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-taupe);
  white-space: nowrap;
  border-bottom: 2px solid var(--clr-sand);
}

td {
  padding: .85rem 1.25rem;
  border-bottom: 1px solid var(--clr-sand);
  color: var(--clr-charcoal);
  vertical-align: top;
}

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

tbody tr:hover {
  background: var(--clr-off-white);
}

/* ── ─────────────────────────────── ──
   BADGE / PILL
── ─────────────────────────────── ── */
.badge {
  display: inline-flex;
  align-items: center;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 100px;
}

.badge-green { background: #d4edda; color: #1a7235; }
.badge-gold  { background: rgba(201,168,76,.15); color: var(--clr-gold-dark); }
.badge-blue  { background: rgba(26,58,92,.1); color: var(--clr-blue); }
.badge-red   { background: rgba(155,35,53,.1); color: var(--clr-red); }
.badge-grey  { background: var(--clr-cream); color: var(--clr-taupe); }

/* ── ─────────────────────────────── ──
   ACCORDION
── ─────────────────────────────── ── */
.accordion {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--clr-sand);
  box-shadow: var(--shadow-sm);
}

.accordion-item {
  border-bottom: 1px solid var(--clr-sand);
  background: var(--clr-white);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  font-size: .975rem;
  font-weight: 600;
  color: var(--clr-dark-brown);
  background: none;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
  gap: 1rem;
}

.accordion-header:hover {
  background: var(--clr-off-white);
  color: var(--clr-gold);
}

.accordion-header.open {
  color: var(--clr-gold);
  background: var(--clr-cream);
}

.accordion-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--clr-cream);
  border: 1px solid var(--clr-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}

.accordion-header.open .accordion-icon {
  transform: rotate(45deg);
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: white;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}

.accordion-body-inner {
  padding: 1.25rem 1.5rem 1.5rem;
  font-size: .9rem;
  color: var(--clr-taupe);
  line-height: 1.8;
}

/* ── ─────────────────────────────── ──
   NEWSLETTER
── ─────────────────────────────── ── */
.newsletter {
  background: linear-gradient(135deg, var(--clr-blue) 0%, var(--clr-blue-light) 100%);
  padding: 5rem 0;
  text-align: center;
}

.newsletter h2 {
  color: white;
  margin-bottom: .75rem;
}

.newsletter p {
  color: rgba(255,255,255,.75);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  min-width: 240px;
  padding: .85rem 1.25rem;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.12);
  color: white;
  font-family: var(--font-sans);
  font-size: .95rem;
  transition: var(--transition);
  outline: none;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,.55); }

.newsletter-form input:focus {
  border-color: var(--clr-gold-light);
  background: rgba(255,255,255,.18);
}

/* ── ─────────────────────────────── ──
   FOOTER
── ─────────────────────────────── ── */
#site-footer {
  background: var(--clr-charcoal);
  color: var(--clr-stone);
}

[data-theme="dark"] #site-footer {
  background: #111009;
}

.footer-top {
  padding: 5rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
}

.footer-brand .nav-logo {
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: .88rem;
  color: var(--clr-taupe);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 0;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: .6rem;
}

.footer-col ul li a {
  font-size: .88rem;
  color: var(--clr-taupe);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--clr-gold-light);
  padding-left: 4px;
}

/* Cookie Notice */
.footer-cookies {
  background: rgba(201,168,76,.08);
  border-top: 1px solid rgba(201,168,76,.15);
  padding: .9rem 0;
}

.footer-cookies p {
  font-size: .78rem;
  color: var(--clr-taupe);
  text-align: center;
  margin: 0;
}

.footer-cookies a {
  color: var(--clr-gold);
  transition: var(--transition);
}

.footer-cookies a:hover { color: var(--clr-gold-light); }

/* Footer Bottom */
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}

.footer-copyright {
  font-size: .82rem;
  color: var(--clr-taupe);
}

.footer-copyright a {
  color: var(--clr-gold);
  font-weight: 600;
  transition: var(--transition);
}

.footer-copyright a:hover { color: var(--clr-gold-light); }

.footer-social {
  display: flex;
  gap: .5rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-taupe);
  font-size: .85rem;
  transition: var(--transition);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-dark-brown);
}

/* ── ─────────────────────────────── ──
   ITINERARY DAY CARD
── ─────────────────────────────── ── */
.day-card {
  background: var(--clr-white);
  border-radius: 16px;
  border: 1px solid var(--clr-sand);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.day-card-header {
  background: linear-gradient(135deg, var(--clr-blue) 0%, var(--clr-blue-light) 100%);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.day-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255,255,255,.25);
  line-height: 1;
  flex-shrink: 0;
}

.day-card-header-text h3 {
  color: white;
  font-size: 1.15rem;
  margin-bottom: .2rem;
}

.day-card-header-text span {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
}

.day-card-body {
  padding: 1.75rem;
}

.timeline {
  position: relative;
  padding-left: 2.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: .75rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--clr-sand);
}

.timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -1.75rem;
  top: .2rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--clr-gold);
  border: 3px solid var(--clr-white);
  box-shadow: 0 0 0 2px var(--clr-gold);
}

.timeline-time {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: .25rem;
}

.timeline-item h4 {
  font-size: .975rem;
  color: var(--clr-dark-brown);
  margin-bottom: .3rem;
}

.timeline-item p {
  font-size: .875rem;
  color: var(--clr-taupe);
  margin: 0;
  line-height: 1.65;
}

/* ── ─────────────────────────────── ──
   UNIVERSITY CARD
── ─────────────────────────────── ── */
.uni-card {
  background: var(--clr-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--clr-sand);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.uni-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.uni-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.uni-card:hover .uni-card-img img {
  transform: scale(1.05);
}

.uni-card-body {
  padding: 1.5rem;
}

.uni-card-type {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: .4rem;
}

.uni-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
}

.uni-card-body p {
  font-size: .875rem;
  color: var(--clr-taupe);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.uni-stats {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: .75rem;
  padding-top: .75rem;
  border-top: 1px solid var(--clr-sand);
}

.uni-stat {
  display: flex;
  flex-direction: column;
}

.uni-stat-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-dark-brown);
}

.uni-stat-label {
  font-size: .7rem;
  color: var(--clr-taupe);
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ── ─────────────────────────────── ──
   SEARCH BAR
── ─────────────────────────────── ── */
.search-wrap {
  position: relative;
  max-width: 640px;
  margin: 2rem auto 0;
}

.search-wrap input {
  width: 100%;
  padding: 1rem 1.25rem 1rem 3.25rem;
  border-radius: 12px;
  border: 2px solid var(--clr-sand);
  background: var(--clr-white);
  font-family: var(--font-sans);
  font-size: .975rem;
  color: var(--clr-charcoal);
  outline: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.search-wrap input:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,.12), var(--shadow-sm);
}

.search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--clr-taupe);
  font-size: 1rem;
  pointer-events: none;
}

/* ── ─────────────────────────────── ──
   COOKIE BANNER
── ─────────────────────────────── ── */
#cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(96%, 680px);
  background: var(--clr-white);
  border: 1px solid var(--clr-sand);
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  padding: 1.5rem 2rem;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  transition: transform .4s var(--ease), opacity .4s var(--ease);
}

#cookie-banner.hide {
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  pointer-events: none;
}

.cookie-text {
  flex: 1;
  font-size: .875rem;
  color: var(--clr-taupe);
  min-width: 200px;
  margin: 0;
}

.cookie-text a {
  color: var(--clr-gold);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: .6rem;
  flex-shrink: 0;
}

/* ── ─────────────────────────────── ──
   BACK TO TOP
── ─────────────────────────────── ── */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--clr-dark-brown);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  z-index: 900;
}

#back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--clr-gold);
  color: var(--clr-dark-brown);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ── ─────────────────────────────── ──
   METRO GUIDE SPECIFICS
── ─────────────────────────────── ── */
.metro-line-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .9rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 700;
  color: white;
  letter-spacing: .04em;
  margin: .2rem;
}

.metro-red    { background: #bf0000; }
.metro-blue   { background: #005695; }
.metro-orange { background: #e77600; }
.metro-green  { background: #00843d; }
.metro-yellow { background: #f2bb00; color: var(--clr-dark-brown); }
.metro-silver { background: #919d9d; }

.fare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.fare-card {
  background: var(--clr-white);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--clr-sand);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.fare-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-blue);
  margin-bottom: .3rem;
}

.fare-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--clr-taupe);
  margin-bottom: .5rem;
}

.fare-desc {
  font-size: .82rem;
  color: var(--clr-taupe);
  line-height: 1.65;
}

/* ── ─────────────────────────────── ──
   BLOG CARDS
── ─────────────────────────────── ── */
.blog-card {
  background: var(--clr-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--clr-sand);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-category {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: .5rem;
}

.blog-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: .5rem;
  line-height: 1.4;
}

.blog-card-body p {
  font-size: .875rem;
  color: var(--clr-taupe);
  flex: 1;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--clr-taupe);
  padding-top: 1rem;
  border-top: 1px solid var(--clr-sand);
}

/* ── ─────────────────────────────── ──
   PRINT STYLES
── ─────────────────────────────── ── */
@media print {
  .site-nav, #site-footer, #cookie-banner, #back-to-top,
  .btn, .newsletter, .filter-bar { display: none !important; }
  body { background: white; color: black; font-size: 12pt; }
  h1, h2, h3, h4 { color: black; page-break-after: avoid; }
  .page-hero { padding-top: 1rem; }
  .page-hero-bg { display: none; }
  a[href]::after { content: " (" attr(href) ")"; font-size: .8em; color: #666; }
}

/* ── ─────────────────────────────── ──
   RESPONSIVE
── ─────────────────────────────── ── */
@media (max-width: 1024px) {
  .feature-block {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .feature-block.reverse {
    direction: ltr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  :root { --nav-height: 60px; }

  .nav-links { display: none; }
  .btn-menu { display: flex; }

  .hero { max-height: 700px; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }

  .section { padding: 3.5rem 0; }
  .section--lg { padding: 5rem 0; }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .season-card {
    aspect-ratio: 4/3;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .day-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }

  .day-number {
    font-size: 1.8rem;
  }

  .filter-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  #cookie-banner {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-ctas { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { min-width: unset; width: 100%; }
}

/* ── Utility ── */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-1 { gap: .5rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.w-100 { width: 100%; }
