/* ==========================================================================
   Fullerton, California — Shared Stylesheet
   Heritage/vintage guidebook design system
   ========================================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&display=swap');

/* ---------- Custom Properties ---------- */
:root {
  --cream: #F5F0E8;
  --brown: #3B2A1A;
  --orange: #C45A2D;
  --green: #5B7A5E;
  --gold: #C9A959;

  --cream-dark: #EBE4D8;
  --brown-light: #5C4A3A;
  --shadow-sm: 0 1px 3px rgba(59, 42, 26, 0.1);
  --shadow-md: 0 4px 12px rgba(59, 42, 26, 0.12);
  --shadow-lg: 0 8px 24px rgba(59, 42, 26, 0.15);

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  --max-width: 1200px;
  --content-width: 800px;
  --header-height: 64px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--brown);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--orange);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--brown);
}

ul, ol {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--brown);
}

h1 { font-size: 2rem; font-weight: 800; }
h2 { font-size: 1.625rem; font-weight: 700; margin-bottom: 0.75rem; }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }

/* ---------- Site Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--brown);
  color: var(--cream);
  box-shadow: var(--shadow-md);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: var(--header-height);
}

.site-header__brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
}

.site-header__brand:hover { color: var(--gold); }

.site-header__brand span {
  color: var(--gold);
  font-weight: 400;
  font-style: italic;
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
}

/* Desktop nav */
.site-header__nav { display: none; }

.site-header__nav ul {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.site-header__nav a {
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 0.25rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

.site-header__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width var(--transition-base);
}

.site-header__nav a:hover { color: var(--gold); }
.site-header__nav a:hover::after { width: 100%; }

/* ---------- Mobile Nav ---------- */
.mobile-nav__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 110;
}

.mobile-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--cream);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
  position: relative;
}

.mobile-nav__toggle span::before,
.mobile-nav__toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--cream);
  border-radius: 2px;
  transition: transform var(--transition-base);
}

.mobile-nav__toggle span::before { top: -7px; }
.mobile-nav__toggle span::after { top: 7px; }

.mobile-nav__toggle.is-active span { background-color: transparent; }
.mobile-nav__toggle.is-active span::before { top: 0; transform: rotate(45deg); }
.mobile-nav__toggle.is-active span::after { top: 0; transform: rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--brown);
  z-index: 99;
  padding: 2rem 1.25rem;
  transform: translateX(100%);
  transition: transform var(--transition-base);
  overflow-y: auto;
}

.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav a {
  display: block;
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
  transition: color var(--transition-fast), padding-left var(--transition-base);
}

.mobile-nav a:hover {
  color: var(--gold);
  padding-left: 0.5rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.25rem;
  background-color: var(--brown);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(59, 42, 26, 0.4) 0%,
    rgba(59, 42, 26, 0.65) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 300;
  line-height: 1.6;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.hero--section {
  min-height: 45vh;
}

/* ---------- Card Grid ---------- */
.card-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* ---------- Card (image-based) ---------- */
.card {
  display: block;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: var(--brown);
  box-shadow: var(--shadow-md);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

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

.card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.card__content {
  padding: 1.25rem 1.5rem 1.5rem;
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--brown);
}

.card__teaser {
  font-size: 0.95rem;
  color: var(--brown-light);
  line-height: 1.5;
}

/* ---------- Content Block ---------- */
.content-block {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 2rem 1.25rem;
}

.content-block + .content-block { padding-top: 0; }

.content-block h2 {
  color: var(--brown);
  margin-bottom: 0.75rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.content-block h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--orange);
  border-radius: 2px;
}

.content-block p { color: var(--brown); }

.content-block ul, .content-block ol {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.content-block ul { list-style: disc; }
.content-block ol { list-style: decimal; }
.content-block li { margin-bottom: 0.35rem; line-height: 1.6; }

/* ---------- Local Tip ---------- */
.local-tip {
  max-width: var(--content-width);
  margin: 1.5rem auto;
  padding: 1.5rem;
  background-color: var(--cream);
  border: 2px dashed var(--gold);
  border-radius: 4px;
  transform: rotate(-1deg);
  position: relative;
  font-style: italic;
  line-height: 1.6;
}

.local-tip::before {
  content: 'Local Tip:';
  display: block;
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 700;
  color: var(--gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.local-tip p { margin-bottom: 0.5rem; font-size: 0.95rem; }
.local-tip p:last-child { margin-bottom: 0; }

/* ---------- Cross-Links ---------- */
.cross-links {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  text-align: center;
}

.cross-links__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.cross-links__list a {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: #fff;
  color: var(--brown);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid var(--cream-dark);
  text-decoration: none;
  transition:
    background-color var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast);
}

.cross-links__list a:hover {
  background-color: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

/* ---------- Site Footer ---------- */
.site-footer {
  text-align: center;
  padding: 2rem 1.25rem;
  background-color: var(--brown);
  color: rgba(245, 240, 232, 0.6);
  font-size: 0.85rem;
}

.site-footer p { margin-bottom: 0.25rem; }
.site-footer a { color: var(--gold); text-decoration: none; }
.site-footer a:hover { color: var(--cream); }

/* ---------- Fade-In Animation ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--transition-slow),
    transform var(--transition-slow);
}

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

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

/* ==========================================================================
   Responsive — Tablet (768px)
   ========================================================================== */
@media (min-width: 768px) {
  :root { --header-height: 72px; }

  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.875rem; }
  h3 { font-size: 1.375rem; }

  .site-header__brand { font-size: 1.375rem; }
  .site-header__brand span {
    display: inline;
    margin-left: 0.5rem;
    font-size: 0.8rem;
  }

  .hero { padding: 4rem 2rem; }
  .hero h1 { font-size: 3rem; }
  .hero p { font-size: 1.25rem; }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    padding: 3.5rem 2rem;
  }

  .card-grid > .card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }

  .content-block { padding: 2.5rem 2rem; }
  .local-tip { margin: 2rem auto; padding: 1.75rem; }
  .cross-links { padding: 2.5rem 2rem 4rem; }
}

/* ==========================================================================
   Responsive — Desktop (1024px)
   ========================================================================== */
@media (min-width: 1024px) {
  h1 { font-size: 3rem; }

  .site-header__nav { display: block; }
  .mobile-nav__toggle { display: none; }
  .mobile-nav { display: none; }

  .hero {
    min-height: 75vh;
    padding: 5rem 2rem;
  }

  .hero h1 { font-size: 3.75rem; }
  .hero p { font-size: 1.35rem; }
  .hero--section { min-height: 45vh; }

  .card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 4rem 2rem;
  }

  .card-grid > .card:last-child:nth-child(3n + 1) {
    grid-column: 2 / 3;
  }

  .content-block { padding: 3rem 2rem; }
}

/* ==========================================================================
   Editorial Homepage Layout — 2026 Design
   ========================================================================== */

/* ---------- Editorial Hero (100vh cinematic) ---------- */
.editorial-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 3rem 1.5rem;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.editorial-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(59, 42, 26, 0.1) 0%,
    rgba(59, 42, 26, 0.3) 50%,
    rgba(59, 42, 26, 0.85) 100%
  );
  z-index: 1;
}

.editorial-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
}

.editorial-hero h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  color: #fff;
  line-height: 0.95;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.editorial-hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.editorial-hero .tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  max-width: 500px;
  line-height: 1.5;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.scroll-hint::after {
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

/* ---------- Editorial Featured Section ---------- */
.editorial-featured {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.editorial-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(59, 42, 26, 0.9) 0%,
    rgba(59, 42, 26, 0.4) 60%,
    transparent 100%
  );
  z-index: 1;
}

.editorial-featured__content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 3rem 1.5rem;
  margin-left: 0;
}

.editorial-featured__label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.editorial-featured h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.editorial-featured p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--gold);
  transition: gap var(--transition-base), color var(--transition-fast);
}

.editorial-link:hover {
  gap: 0.75rem;
  color: #fff;
  border-color: #fff;
}

.editorial-link::after {
  content: "\2192";
  transition: transform var(--transition-base);
}

.editorial-link:hover::after {
  transform: translateX(4px);
}

/* ---------- Editorial Pair (image + text side by side) ---------- */
.editorial-pair {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
  overflow: hidden;
}

.editorial-pair__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.editorial-pair__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.editorial-pair:hover .editorial-pair__image img {
  transform: scale(1.03);
}

.editorial-pair__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 1.5rem;
}

.editorial-pair__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.editorial-pair__text h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.editorial-pair__text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--brown-light);
  margin-bottom: 1.5rem;
  max-width: 480px;
}

/* Dark variant */
.editorial-pair--dark {
  background-color: var(--brown);
}

.editorial-pair--dark .editorial-pair__text {
  background-color: var(--brown);
}

.editorial-pair--dark .editorial-pair__label {
  color: var(--gold);
}

.editorial-pair--dark h2 {
  color: #fff;
}

.editorial-pair--dark p {
  color: rgba(245, 240, 232, 0.75);
}

.editorial-pair--dark .editorial-link {
  color: var(--gold);
  border-color: var(--gold);
}

.editorial-pair--dark .editorial-link:hover {
  color: #fff;
  border-color: #fff;
}

/* ---------- Interstitial (dark quote band) ---------- */
.editorial-interstitial {
  background-color: var(--brown);
  padding: 4rem 1.5rem;
  text-align: center;
}

.editorial-interstitial__inner {
  max-width: 800px;
  margin: 0 auto;
}

.editorial-interstitial blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  line-height: 1.35;
  margin: 0;
}

.editorial-interstitial cite {
  display: block;
  margin-top: 1.25rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---------- Stagger Grid (bottom cards) ---------- */
.editorial-stagger {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.stagger-card {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  min-height: 300px;
  background-size: cover;
  background-position: center;
}

.stagger-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(59, 42, 26, 0.9) 0%,
    rgba(59, 42, 26, 0.2) 60%,
    transparent 100%
  );
  transition: background var(--transition-base);
}

.stagger-card:hover::before {
  background: linear-gradient(
    0deg,
    rgba(59, 42, 26, 0.95) 0%,
    rgba(59, 42, 26, 0.35) 60%,
    rgba(59, 42, 26, 0.1) 100%
  );
}

.stagger-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
}

.stagger-card__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}

.stagger-card h2 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.stagger-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

/* ---------- Scroll animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 120ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 240ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 360ms; opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Editorial Responsive — Tablet (768px)
   ========================================================================== */
@media (min-width: 768px) {
  .editorial-hero {
    padding: 4rem 2rem;
  }

  .editorial-featured__content {
    padding: 4rem 3rem;
    max-width: 550px;
  }

  .editorial-pair {
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
  }

  .editorial-pair__image {
    aspect-ratio: auto;
  }

  .editorial-pair--reverse .editorial-pair__image {
    order: 2;
  }

  .editorial-pair--reverse .editorial-pair__text {
    order: 1;
  }

  .editorial-pair__text {
    padding: 3rem 2.5rem;
  }

  .editorial-interstitial {
    padding: 5rem 2rem;
  }

  .editorial-stagger {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 4rem 2rem;
  }

  .stagger-card {
    min-height: 400px;
  }
}

/* ==========================================================================
   Editorial Responsive — Desktop (1024px)
   ========================================================================== */
@media (min-width: 1024px) {
  .editorial-hero {
    padding: 5rem 3rem;
  }

  .editorial-featured {
    min-height: 85vh;
  }

  .editorial-featured__content {
    padding: 5rem 4rem;
    max-width: 580px;
    margin-left: 5%;
  }

  .editorial-pair {
    min-height: 600px;
  }

  .editorial-pair__text {
    padding: 4rem 3.5rem;
  }

  .editorial-interstitial {
    padding: 6rem 2rem;
  }

  .editorial-stagger {
    gap: 2.5rem;
    padding: 5rem 3rem;
  }

  .stagger-card {
    min-height: 450px;
  }

  .stagger-card h2 {
    font-size: 1.75rem;
  }
}

/* ==========================================================================
   Section Page Editorial Layout
   ========================================================================== */

/* ---------- Section Hero (70vh cinematic) ---------- */
.section-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 3rem 1.5rem;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.section-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(59, 42, 26, 0.05) 0%,
    rgba(59, 42, 26, 0.25) 40%,
    rgba(59, 42, 26, 0.85) 100%
  );
  z-index: 1;
}

.section-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
}

.section-hero__kicker {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.section-hero h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  color: #fff;
  line-height: 0.95;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.section-hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  max-width: 500px;
  line-height: 1.5;
}

/* ---------- Article Layout ---------- */
.article {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.article-intro {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid rgba(59, 42, 26, 0.1);
  margin-bottom: 3rem;
}

.article-intro p {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.7;
  color: var(--brown);
  font-weight: 300;
}

.article-section {
  padding: 2.5rem 0;
}

.article-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.article-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gold);
}

.article-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(59, 42, 26, 0.8);
  margin-bottom: 1.25rem;
}

.article-section p:last-child {
  margin-bottom: 0;
}

.article-section strong {
  color: var(--brown);
  font-weight: 600;
}

.article-section ul,
.article-section ol {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

.article-section li {
  position: relative;
  padding: 0.75rem 0 0.75rem 1.75rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(59, 42, 26, 0.8);
  border-bottom: 1px solid rgba(59, 42, 26, 0.06);
}

.article-section li:last-child {
  border-bottom: none;
}

.article-section li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* ---------- Pull Quote (inline) ---------- */
.pull-quote {
  padding: 3rem 0;
  margin: 1rem 0;
  border-top: 1px solid rgba(59, 42, 26, 0.1);
  border-bottom: 1px solid rgba(59, 42, 26, 0.1);
}

.pull-quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--brown);
  line-height: 1.4;
  margin: 0;
  position: relative;
  padding-left: 2rem;
}

.pull-quote blockquote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
}

/* ---------- Local Tip (editorial) ---------- */
.tip-card {
  background: var(--brown);
  color: #fff;
  padding: 2rem 2.5rem;
  border-radius: 8px;
  margin: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.tip-card::before {
  content: 'LOCAL TIP';
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gold);
  color: var(--brown);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.4rem 1rem;
  border-radius: 0 8px 0 8px;
}

.tip-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.9);
  margin: 0;
}

/* ---------- Section Interstitial (full-bleed dark band) ---------- */
.section-interstitial {
  background: var(--brown);
  padding: 4rem 1.5rem;
  text-align: center;
  margin: 2rem 0;
}

.section-interstitial blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3.5vw, 2.25rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  line-height: 1.35;
  max-width: 700px;
  margin: 0 auto;
}

/* ---------- Cross-Links (editorial cards) ---------- */
.section-crosslinks {
  padding: 4rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-crosslinks__heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-crosslinks__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.section-crosslinks__card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 200px;
  padding: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-base);
}

.section-crosslinks__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(59,42,26,0.85) 0%, rgba(59,42,26,0.15) 100%);
  transition: background var(--transition-base);
}

.section-crosslinks__card:hover {
  transform: translateY(-4px);
}

.section-crosslinks__card:hover::before {
  background: linear-gradient(0deg, rgba(59,42,26,0.9) 0%, rgba(59,42,26,0.25) 100%);
}

.section-crosslinks__card span {
  position: relative;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}

/* ---------- Section Page Responsive — Tablet ---------- */
@media (min-width: 768px) {
  .section-hero {
    min-height: 70vh;
    padding: 4rem 2rem;
  }

  .article {
    padding: 0 2rem;
  }

  .article-intro {
    padding: 4rem 0 3rem;
    margin-bottom: 3.5rem;
  }

  .section-crosslinks__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .section-crosslinks__card {
    min-height: 240px;
  }

  .section-interstitial {
    padding: 5rem 2rem;
    margin: 3rem 0;
  }
}

/* ---------- Section Page Responsive — Desktop ---------- */
@media (min-width: 1024px) {
  .section-hero {
    min-height: 75vh;
    padding: 5rem 3rem;
  }

  .section-hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
  }

  .article {
    padding: 0;
  }

  .article-intro {
    padding: 5rem 0 3.5rem;
  }

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

  .section-crosslinks {
    padding: 5rem 2rem;
  }

  .section-crosslinks__card {
    min-height: 280px;
  }

  .section-interstitial {
    padding: 6rem 2rem;
    margin: 3.5rem 0;
  }
}
