/* ============================================================
   TIZNIT.NET — Stylesheet
   The Silver Pulse of the South
   ============================================================ */

/* --- Tokens & Variables --- */
:root {
  --sand: #F4EDE4;
  --cream: #FAF7F2;
  --terracotta: #B8522A;
  --terracotta-dark: #913F1E;
  --silver: #9BA1A6;
  --silver-light: #C8CDD2;
  --charcoal: #1B1410;
  --warm-dark: #2A2118;
  --warm-mid: #3D2A1A;
  --gold-muted: #C9A96E;
  --text: #3A3228;
  --text-light: #6B5E52;
  --text-muted: #8A7E72;
  --border: #E2D9CE;
  /* Start with system fonts, JS will update when custom fonts load */
  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --container: 1280px;
  --gap: clamp(1rem, 3vw, 2rem);
}

/* When fonts are loaded */
.fonts-loaded {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
  font-family: var(--font-body), system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  font-weight: 400;
  font-size: 1rem;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input { font: inherit; border: none; outline: none; }

/* --- Utility --- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gap);
}
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--terracotta); color: #fff;
  padding: 0.5rem 1rem; z-index: 200;
  border-radius: 0 0 4px 4px; font-size: 0.875rem;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* --- Typography --- */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.eyebrow--light { color: var(--gold-muted); }
.heading-2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.heading-2--light { color: var(--cream); }
.heading-3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
}
.body-lg {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: var(--text-light);
  max-width: 640px;
}
.body-lg--light { color: var(--silver-light); }
.section-header { margin-bottom: clamp(2rem, 5vw, 4rem); }
.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  max-width: 540px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}
.btn--primary {
  background: var(--terracotta);
  color: #fff;
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
}
.btn--ghost {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--cream);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}
.nav--scrolled {
  background: rgba(27,20,16,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding-block: 0.875rem;
}
.nav__logo {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  z-index: 101;
}
.nav__toggle {
  display: flex; flex-direction: column; gap: 5px;
  z-index: 101; padding: 4px;
}
.nav__toggle-bar {
  display: block; width: 24px; height: 2px;
  background: var(--cream);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
  transform-origin: center;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__menu {
  position: fixed; inset: 0;
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
  overflow-y: auto;
}
.nav__menu.is-open {
  opacity: 1; visibility: visible;
}
.nav__menu-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  padding: 6rem 2rem 3rem;
  width: 100%;
  max-width: 900px;
}
.nav__menu-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav__link {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--silver-light);
  padding: 0.4rem 0;
  transition: color 0.2s, transform 0.2s;
}
.nav__link:hover, .nav__link:focus-visible {
  color: var(--cream);
  transform: translateX(4px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end;
  background: var(--charcoal); overflow: hidden;
  contain: layout style paint; /* Strict containment to prevent shifts */
  isolation: isolate; /* Create new stacking context */
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(145deg, #1B1410 0%, #2E1F14 25%, #3D2A1A 50%, #2A1E15 75%, #1B1410 100%);
}
.hero__pattern {
  position: absolute; inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 25% 25%, var(--gold-muted) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, var(--gold-muted) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__grain {
  position: absolute; inset: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.4'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(27,20,16,0.7) 0%, transparent 50%);
}
.hero__content {
  position: relative; z-index: 2;
  padding: 2rem var(--gap) 4rem;
  width: 100%; max-width: 1400px; margin: 0 auto;
  height: 420px; /* Fixed height to prevent any shift */
  contain: strict; /* Strictest containment */
}
.hero__subtitle {
  display: block;
  color: var(--gold-muted);
  font-size: 14px; /* Fixed size */
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
  height: 24px; /* Fixed height */
  line-height: 24px;
  overflow: hidden;
  /* No animation initially */
}
.hero__title {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 48px; /* Fixed mobile size */
  font-weight: 400;
  line-height: 46px;
  letter-spacing: -0.02em;
  display: block;
  height: 138px; /* Fixed height for mobile */
  overflow: hidden;
  contain: strict;
  /* No animation initially */
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 96px;
    line-height: 91px;
    height: 273px; /* Fixed height for desktop */
  }
  .hero__content {
    height: 450px; /* Slightly larger on desktop */
  }
}
.hero__title-line { display: block; }
.hero__title-line--accent {
  color: var(--silver-light);
  font-style: italic;
}
.hero__desc {
  display: block;
  color: var(--silver);
  font-size: 16px; /* Fixed size */
  line-height: 27px; /* Fixed line height */
  max-width: 520px;
  margin-top: 32px;
  font-weight: 300;
  height: 54px; /* Fixed height */
  overflow: hidden;
  /* No animation initially */
}
.hero__actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-top: 40px;
  height: 48px; /* Fixed height for buttons */
  align-items: center;
  overflow: hidden;
  /* No animation initially */
}
.hero__scroll {
  position: absolute; right: 2rem; bottom: 3rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  color: var(--silver); font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  width: 60px; height: 80px; /* Fixed dimensions */
  opacity: 1; /* Start visible */
  animation: fadeUp 0.8s var(--ease-out) 1.2s backwards;
  contain: layout style; /* Prevent internal changes from affecting layout */
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--silver), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
/* Animations - Only apply after fonts are loaded */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* Re-enable animations only after fonts load */
.fonts-loaded .hero__subtitle {
  animation: fadeUp 0.8s var(--ease-out) 0.2s backwards;
}
.fonts-loaded .hero__title {
  animation: fadeUp 0.8s var(--ease-out) 0.4s backwards;
}
.fonts-loaded .hero__desc {
  animation: fadeUp 0.8s var(--ease-out) 0.6s backwards;
}
.fonts-loaded .hero__actions {
  animation: fadeUp 0.8s var(--ease-out) 0.8s backwards;
}
.fonts-loaded .hero__scroll {
  animation: fadeUp 0.8s var(--ease-out) 1.2s backwards;
}

/* ============================================================
   INTRO SECTION
   ============================================================ */
.intro {
  padding: clamp(4rem, 10vw, 8rem) 0;
}
.intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 6vw, 5rem);
}
.intro__text { max-width: 680px; }
.intro__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.stat {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}
.stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat__label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (min-width: 768px) {
  .intro__grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}

/* ============================================================
   PILLARS — Heritage Cards
   ============================================================ */
.pillars {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: var(--sand);
}
.pillars__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}
.card {
  background: var(--cream);
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27,20,16,0.1);
}
.card__img-wrap {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.card__img {
  width: 100%; height: 100%;
  transition: transform 0.6s var(--ease-out);
}
.card:hover .card__img { transform: scale(1.04); }
.card__img--silver {
  background: linear-gradient(135deg, #8A8D8F 0%, #B0B3B6 30%, #6B6E71 60%, #A0A3A6 100%);
}
.card__img--ramparts {
  background: linear-gradient(135deg, #C4956A 0%, #D4A574 30%, #A67B4F 60%, #D9B88A 100%);
}
.card__img--source {
  background: linear-gradient(135deg, #4A7B8C 0%, #6BA0B0 30%, #3D6A7A 60%, #7AB5C5 100%);
}
.card__body { padding: 1.5rem; }
.card__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}
.card__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.card__title a {
  transition: color 0.2s;
}
.card__title a:hover, .card__title a:focus-visible {
  color: var(--terracotta);
}
.card__text {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .pillars__grid {
    grid-template-columns: 1fr 1fr;
  }
  .card--tall {
    grid-row: span 2;
  }
  .card--tall .card__img-wrap {
    aspect-ratio: auto;
    height: 55%;
  }
}

/* ============================================================
   FEATURED GUIDE
   ============================================================ */
.featured {
  position: relative;
  padding: clamp(5rem, 12vw, 9rem) 0;
  overflow: hidden;
}
.featured__bg {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, var(--charcoal) 0%, var(--warm-dark) 50%, var(--warm-mid) 100%);
  z-index: 0;
}
.featured__bg::after {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.03;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, var(--gold-muted) 59px, var(--gold-muted) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, var(--gold-muted) 59px, var(--gold-muted) 60px);
}
.featured .container { position: relative; z-index: 1; }
.featured__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.featured__content { max-width: 600px; }
.featured__content .btn { margin-top: 2rem; }
.featured__quote {
  border-left: 2px solid var(--gold-muted);
  padding-left: 1.5rem;
}
.featured__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: var(--silver-light);
  line-height: 1.4;
}

@media (min-width: 768px) {
  .featured__grid {
    grid-template-columns: 1.4fr 1fr;
  }
}

/* ============================================================
   EXPLORER'S GUIDE
   ============================================================ */
.explorer {
  padding: clamp(4rem, 10vw, 8rem) 0;
}
.explorer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.guide-card {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1.5rem;
  align-items: start;
  transition: background 0.3s;
}
.guide-card:last-child { border-bottom: 1px solid var(--border); }
.guide-card:hover { background: rgba(244,237,228,0.5); }
.guide-card__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  grid-row: span 3;
  padding-right: 1rem;
  transition: color 0.3s;
}
.guide-card:hover .guide-card__number { color: var(--terracotta); }
.guide-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.2;
}
.guide-card__title a { transition: color 0.2s; }
.guide-card__title a:hover { color: var(--terracotta); }
.guide-card__text {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 560px;
}
.guide-card__link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--terracotta);
  letter-spacing: 0.04em;
  transition: gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.guide-card__link::after { content: '→'; transition: transform 0.2s; }
.guide-card__link:hover::after { transform: translateX(4px); }

/* ============================================================
   MAP
   ============================================================ */
.map-section {
  padding: clamp(4rem, 10vw, 8rem) 0 0;
  background: var(--sand);
}
.map-wrap {
  margin-top: 2rem;
  border-top: 1px solid var(--border);
}
.map {
  width: 100%;
  height: 480px;
  background: #E8DFD3;
}

/* Hide Leaflet attribution */
.leaflet-control-attribution { display: none !important; }

/* Custom map markers */
.marker-icon {
  width: 28px; height: 28px;
  background: var(--terracotta);
  border: 3px solid var(--cream);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
.marker-icon:hover { transform: scale(1.2); }

.leaflet-popup-content-wrapper {
  border-radius: 3px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12) !important;
  font-family: var(--font-body) !important;
}
.leaflet-popup-content {
  margin: 12px 16px !important;
  font-size: 0.875rem !important;
  line-height: 1.5 !important;
}
.leaflet-popup-content strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  display: block;
  margin-bottom: 2px;
}
.leaflet-popup-tip {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12) !important;
}

/* ============================================================
   STORIES
   ============================================================ */
.stories {
  padding: clamp(4rem, 10vw, 8rem) 0;
}
.stories__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}
.story-card {
  background: var(--sand);
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.story-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(27,20,16,0.08);
}
.story-card__visual {
  aspect-ratio: 16 / 9;
  transition: transform 0.6s var(--ease-out);
}
.story-card:hover .story-card__visual { transform: scale(1.03); }
.story-card__visual--faces {
  background: linear-gradient(135deg, #C4956A 0%, #8B6342 50%, #D4B896 100%);
}
.story-card__visual--food {
  background: linear-gradient(135deg, #6B8E3D 0%, #A4B86A 50%, #4A6E2D 100%);
}
.story-card__visual--festival {
  background: linear-gradient(135deg, #C9A96E 0%, #8A6D3B 50%, #E0C68A 100%);
}
.story-card__body { padding: 1.5rem; }
.story-card__series {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}
.story-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.story-card__title a { transition: color 0.2s; }
.story-card__title a:hover { color: var(--terracotta); }
.story-card__text {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
}
.story-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--terracotta);
}
.story-card__link::after { content: '→'; transition: transform 0.2s; }
.story-card__link:hover::after { transform: translateX(4px); }

@media (min-width: 768px) {
  .stories__grid {
    grid-template-columns: 1.2fr 1fr;
  }
  .story-card--feature {
    grid-row: span 2;
  }
  .story-card--feature .story-card__visual {
    aspect-ratio: auto;
    height: 55%;
  }
}

/* ============================================================
   RECURRING SERIES
   ============================================================ */
.series {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: var(--sand);
}
.series__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}
.series-item {
  display: block;
  padding: 2rem;
  background: var(--cream);
  border-radius: 3px;
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.series-item:hover {
  border-color: var(--terracotta);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(27,20,16,0.06);
}
.series-item__icon {
  display: block;
  font-size: 1.5rem;
  color: var(--gold-muted);
  margin-bottom: 1rem;
}
.series-item__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.series-item__text {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
}

@media (min-width: 640px) {
  .series__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  padding: clamp(4rem, 10vw, 6rem) 0;
}
.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem;
  background: var(--charcoal);
  border-radius: 3px;
  color: var(--cream);
}
.newsletter__inner .heading-3 { color: var(--cream); }
.newsletter__inner p {
  font-size: 0.9375rem;
  color: var(--silver);
  line-height: 1.6;
  margin-top: 0.5rem;
}
.newsletter__form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.newsletter__input {
  flex: 1; min-width: 200px;
  padding: 0.875rem 1.25rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  color: var(--cream);
  font-size: 0.9375rem;
  transition: border-color 0.2s;
}
.newsletter__input::placeholder { color: var(--silver); }
.newsletter__input:focus {
  border-color: var(--gold-muted);
  outline: 2px solid var(--gold-muted);
  outline-offset: 1px;
}

@media (min-width: 768px) {
  .newsletter__inner {
    grid-template-columns: 1.2fr 1fr;
    padding: 3.5rem;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: var(--silver);
  padding: clamp(3rem, 8vw, 5rem) 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__logo {
  display: inline-block;
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.footer__tagline {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 1rem;
}
.footer__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 280px;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.footer__heading {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 1rem;
}
.footer__list li { margin-bottom: 0.5rem; }
.footer__list a {
  font-size: 0.875rem;
  color: var(--silver);
  transition: color 0.2s;
}
.footer__list a:hover { color: var(--cream); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8125rem;
}
.footer__legal {
  display: flex; gap: 1.5rem;
}
.footer__legal a {
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__legal a:hover { color: var(--cream); }

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 2fr;
  }
  .footer__nav {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible {
  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; }

/* ============================================================
   FOCUS STYLES
   ============================================================ */
*:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .nav, .hero__scroll, .newsletter, .map-section { display: none; }
  body { background: #fff; color: #000; }
  .hero { min-height: auto; background: none; padding: 2rem 0; }
  .hero__title, .hero__subtitle, .hero__desc { color: #000; }
}

/* ============================================================
   ARTICLE PAGES
   ============================================================ */
.article-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  background: var(--charcoal);
  overflow: hidden;
}
.article-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
  z-index: 1;
}
.article-hero__content {
  position: relative;
  z-index: 2;
  padding: 2rem var(--gap) 3rem;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  color: var(--silver-light);
}
.breadcrumb a {
  color: var(--silver-light);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--cream); }
.breadcrumb span { color: var(--silver); }
.article-hero__title {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.article-hero__subtitle {
  color: var(--cream);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 300;
  line-height: 1.5;
  max-width: 720px;
  opacity: 0.9;
}

.article-intro {
  padding: clamp(4rem, 10vw, 6rem) 0;
}
.article-intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.article-intro__content p {
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-light);
}
.article-intro__content p:last-child { margin-bottom: 0; }

.info-card {
  background: var(--sand);
  padding: 1.5rem;
  border-radius: 3px;
}
.info-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
}
.info-card__list dt {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-top: 0.75rem;
}
.info-card__list dt:first-child { margin-top: 0; }
.info-card__list dd {
  font-size: 1rem;
  color: var(--text);
  margin-left: 0;
}

.article-section {
  padding: clamp(4rem, 10vw, 6rem) 0;
}
.article-section--alt { background: var(--sand); }
.article-section--dark {
  background: var(--charcoal);
  color: var(--cream);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.content-block h3 {
  margin-bottom: 1rem;
}
.content-block p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
  color: var(--text-light);
}
.article-section--dark .content-block p {
  color: var(--silver-light);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.feature-content p { margin-bottom: 1.5rem; }
.styled-list {
  list-style: none;
  margin: 1.5rem 0;
}
.styled-list li {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
  line-height: 1.6;
}
.styled-list li::before {
  content: '◈';
  position: absolute;
  left: 0;
  color: var(--terracotta);
}

.pullquote {
  padding: 2rem;
  background: var(--sand);
  border-left: 3px solid var(--terracotta);
  margin: 2rem 0;
}
.pullquote p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.pullquote cite {
  font-style: normal;
  font-size: 0.875rem;
  color: var(--text-light);
}

.technique-card {
  background: var(--cream);
  padding: 1.5rem;
  border-radius: 3px;
  margin-top: 2rem;
}
.technique-card__title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
}
.technique-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
.technique-list li {
  font-size: 0.875rem;
  color: var(--text-light);
  padding-left: 1rem;
  position: relative;
}
.technique-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold-muted);
}

.souk-guide { margin-top: 2rem; }
.souk-intro { margin-bottom: 3rem; }
.souk-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.souk-card {
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.1);
}
.souk-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 1rem;
}
.souk-card__list {
  list-style: none;
}
.souk-card__list li {
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  position: relative;
  font-size: 0.9375rem;
  color: var(--silver-light);
  line-height: 1.6;
}
.souk-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold-muted);
}

.evolution-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.evolution-text p { margin-bottom: 1.5rem; }
.workshop-visit {
  background: var(--sand);
  padding: 1.5rem;
  border-radius: 3px;
}
.workshop-visit__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.workshop-visit__intro {
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}
.workshop-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.workshop-item:last-child { border-bottom: none; }
.workshop-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--charcoal);
}
.workshop-item p {
  font-size: 0.875rem;
  color: var(--text-light);
}
.workshop-note {
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--text-muted);
}

.culture-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.culture-block h3 { margin-bottom: 1rem; }
.culture-block p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.life-markers {
  list-style: none;
  margin-top: 1rem;
}
.life-markers li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.life-markers li:last-child { border-bottom: none; }
.life-markers strong { color: var(--terracotta); }

.practical-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.practical-card {
  background: var(--sand);
  padding: 1.5rem;
  border-radius: 3px;
}
.practical-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
}
.practical-card p {
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.practical-card ul {
  list-style: none;
  margin-top: 0.75rem;
}
.practical-card li {
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  position: relative;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.practical-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--terracotta);
}

.price-guide {
  background: var(--cream);
  padding: 2rem;
  border-radius: 3px;
  border: 1px solid var(--border);
}
.price-note {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin: 1rem 0 2rem;
}
.price-list {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem 2rem;
  align-items: baseline;
}
.price-list dt {
  font-size: 0.9375rem;
  color: var(--text);
}
.price-list dd {
  font-weight: 500;
  color: var(--terracotta);
  margin: 0;
}

.article-cta {
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: var(--sand);
}
.cta-box {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-box p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin: 1.5rem 0 2.5rem;
  line-height: 1.6;
}
.cta-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .article-intro__grid {
    grid-template-columns: 2fr 1fr;
  }
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-grid {
    grid-template-columns: 1.5fr 1fr;
  }
  .souk-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .evolution-content {
    grid-template-columns: 2fr 1fr;
  }
  .practical-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .culture-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Additional Article Page Styles */
.gate-feature {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.gate-feature:last-child { border-bottom: none; }
.gate-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
}
.gate-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--charcoal);
}
.gate-direction {
  font-size: 0.875rem;
  color: var(--terracotta);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.gate-content p { margin-bottom: 1rem; line-height: 1.7; }
.gate-details {
  background: var(--sand);
  padding: 1rem;
  border-radius: 3px;
  margin-top: 1rem;
  font-size: 0.9375rem;
}

.walking-guide { margin-top: 2rem; }
.walking-intro { margin-bottom: 3rem; }
.route-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 2rem;
}
.route-section {
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: 3px;
  margin-bottom: 1.5rem;
}
.route-section h4 {
  color: var(--cream);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.route-distance {
  font-size: 0.875rem;
  color: var(--gold-muted);
  margin-bottom: 1rem;
}
.route-highlights {
  list-style: none;
  margin-top: 1rem;
}
.route-highlights li {
  padding-left: 1.25rem;
  position: relative;
  color: var(--silver-light);
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}
.route-highlights li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold-muted);
}

.walking-tips { margin-top: 3rem; }
.tips-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.tips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.tip-card {
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: 3px;
}
.tip-card h4 {
  color: var(--cream);
  margin-bottom: 1rem;
}
.tip-card p, .tip-card li {
  color: var(--silver-light);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.tip-card ul {
  list-style: none;
  margin-top: 0.5rem;
}
.tip-card li {
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.5rem;
}
.tip-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold-muted);
}

.defense-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.defense-text h3 { margin: 2rem 0 1rem; }
.defense-text p { margin-bottom: 1rem; line-height: 1.7; }
.fortress-facts {
  background: var(--sand);
  padding: 1.5rem;
  border-radius: 3px;
  margin-bottom: 2rem;
}
.fortress-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.fortress-list dt {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--terracotta);
  margin-top: 0.75rem;
}
.fortress-list dd {
  font-size: 0.9375rem;
  color: var(--text);
  margin-left: 0;
}
.siege-story {
  background: var(--cream);
  padding: 1.5rem;
  border-radius: 3px;
}
.siege-story h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
}
.siege-story p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-light);
}

.modern-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.modern-block h3 { margin-bottom: 1rem; }
.modern-block p { margin-bottom: 1rem; line-height: 1.7; }

.restoration-content p { margin-bottom: 1.5rem; }
.restoration-content h3 { margin: 2rem 0 1rem; }
.threats-list {
  list-style: none;
  margin: 1rem 0 2rem;
}
.threats-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.threats-list li::before {
  content: '⚠';
  position: absolute;
  left: 0;
  color: var(--terracotta);
}

.safety-note {
  background: var(--sand);
  padding: 2rem;
  border-radius: 3px;
  margin-top: 2rem;
}
.safety-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.safety-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.safety-item strong {
  display: block;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}
.safety-item p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Source Bleue specific styles */
.legend-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.legend-text h3 {
  margin: 2rem 0 1rem;
}
.legend-variations {
  background: var(--cream);
  padding: 1.5rem;
  border-radius: 3px;
  margin-top: 2rem;
}
.legend-variations h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.today-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.ritual-list {
  list-style: none;
  margin-top: 1.5rem;
}
.ritual-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.ritual-list li:last-child { border-bottom: none; }
.ritual-list strong { color: var(--terracotta); }

.visiting-card {
  background: var(--sand);
  padding: 1.5rem;
  border-radius: 3px;
}
.visiting-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.visiting-note {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.visiting-list {
  list-style: none;
}
.visiting-list li {
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.visiting-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--terracotta);
}
.visiting-hours {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
}

.science-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.chemistry-list {
  list-style: none;
  margin: 1rem 0;
  color: var(--silver-light);
}
.chemistry-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.water-facts {
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: 3px;
}
.water-facts h3 {
  color: var(--cream);
  margin-bottom: 1rem;
}
.water-data dt {
  font-size: 0.8125rem;
  color: var(--gold-muted);
  margin-top: 0.75rem;
}
.water-data dd {
  color: var(--silver-light);
  margin-left: 0;
}
.water-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8125rem;
  color: var(--silver);
}

.pilgrimage-list {
  list-style: none;
  margin: 1rem 0;
}
.pilgrimage-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.pilgrimage-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold-muted);
}

.network-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.network-list {
  list-style: none;
  margin: 1rem 0;
}
.network-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.network-list strong { color: var(--terracotta); }
.water-route {
  background: var(--sand);
  padding: 1.5rem;
  border-radius: 3px;
}
.water-route__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.water-route__intro {
  font-size: 0.9375rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}
.water-route__steps {
  list-style: decimal;
  margin-left: 1.5rem;
}
.water-route__steps li {
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}
.water-route__steps strong {
  color: var(--charcoal);
}
.water-route__time {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.stories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.story-card {
  background: var(--sand);
  padding: 1.5rem;
  border-radius: 3px;
}
.story-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--charcoal);
}
.story-card__role {
  font-size: 0.875rem;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 1rem;
}
.story-card__quote p {
  font-size: 0.9375rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-light);
}

.conservation-content h3 { margin: 2rem 0 1rem; }
.action-card {
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: 3px;
  margin-bottom: 2rem;
}
.action-card__title {
  color: var(--cream);
  margin-bottom: 1rem;
}
.action-list {
  list-style: none;
}
.action-list li {
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--silver-light);
}
.action-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold-muted);
}
.future-card {
  background: rgba(255,255,255,0.08);
  padding: 1.5rem;
  border-radius: 3px;
}
.future-card h3 {
  color: var(--cream);
  margin-bottom: 1rem;
}
.future-card p {
  color: var(--silver-light);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}
.future-card ul {
  list-style: none;
  margin-bottom: 1rem;
}
.future-card li {
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--silver-light);
}
.future-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold-muted);
}

.visiting-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.directions-list {
  list-style: decimal;
  margin-left: 1.5rem;
}
.directions-list li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.etiquette-card {
  background: var(--sand);
  padding: 1.5rem;
  border-radius: 3px;
  margin-bottom: 2rem;
}
.etiquette-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.etiquette-list dt {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--terracotta);
  margin-top: 0.75rem;
}
.etiquette-list dd {
  font-size: 0.9375rem;
  color: var(--text);
  margin-left: 0;
}
.combine-card {
  background: var(--cream);
  padding: 1.5rem;
  border-radius: 3px;
}
.combine-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}
.combine-card ul {
  list-style: none;
  margin: 0.75rem 0;
}
.combine-card li {
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}
.combine-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--terracotta);
}

.reflection-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.reflection-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .tips-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .defense-content {
    grid-template-columns: 2fr 1fr;
  }
  .modern-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .safety-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .legend-content {
    grid-template-columns: 2fr 1fr;
  }
  .today-grid {
    grid-template-columns: 2fr 1fr;
  }
  .science-content {
    grid-template-columns: 2fr 1fr;
  }
  .network-content {
    grid-template-columns: 2fr 1fr;
  }
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .visiting-grid {
    grid-template-columns: 2fr 1fr;
  }
}

@media (min-width: 1024px) {
  .culture-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
