/* Delhi Magazines — Editorial Stylesheet
   Stories from the heart of the capital */

:root {
  --saffron: #E8590C;
  --maroon: #7C2D12;
  --ivory: #FBF8F1;
  --teal: #0D7377;
  --charcoal: #1C1917;
  --teal-light: #14919a;
  --saffron-light: #ff7a33;
  --maroon-light: #a04020;
  --gray-50: #f8f7f4;
  --gray-100: #f0eee8;
  --gray-200: #e2ded4;
  --gray-300: #c9c2b3;
  --gray-400: #a39c8c;
  --gray-500: #78716c;
  --gray-600: #57534e;
  --gray-700: #3f3a36;
  --serif: 'Spectral', Georgia, 'Times New Roman', serif;
  --sans: 'Mukta', 'Segoe UI', system-ui, sans-serif;
  --max-w: 1240px;
  --max-w-narrow: 760px;
  --max-w-wide: 1400px;
  --radius: 4px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 3px rgba(28,25,23,0.08);
  --shadow-md: 0 4px 16px rgba(28,25,23,0.1);
  --shadow-lg: 0 12px 40px rgba(28,25,23,0.14);
  --transition: 0.3s cubic-bezier(0.22,0.61,0.36,1);
}

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

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

body {
  font-family: var(--serif);
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.7;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--saffron); }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--sans);
  font-weight: 700;
  line-height: 1.25;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

p { margin-bottom: 1.4rem; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--saffron); color: var(--ivory); }

/* ============ CONTAINERS ============ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--max-w-narrow); margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: var(--max-w-wide); margin: 0 auto; padding: 0 24px; }

/* ============ HEADER ============ */
.site-header {
  background: var(--ivory);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(251,248,241,0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-w-wide);
  margin: 0 auto;
  gap: 24px;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-block img {
  width: 46px;
  height: 46px;
}

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

.logo-text .brand {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 22px;
  color: var(--charcoal);
  letter-spacing: -0.03em;
}

.logo-text .tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 3px;
}

/* Nav */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.main-nav a {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--gray-700);
  padding: 6px 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--saffron);
  transition: width var(--transition);
}

.main-nav a:hover { color: var(--saffron); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--charcoal); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
  display: block;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,25,23,0.85) 0%, rgba(28,25,23,0.3) 50%, rgba(28,25,23,0.1) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px 64px;
  max-width: var(--max-w-wide);
  margin: 0 auto;
  width: 100%;
}

.hero-content .container-inner {
  max-width: 720px;
}

.hero-kicker {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--saffron-light);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(232,89,12,0.15);
  border-radius: 100px;
  border: 1px solid rgba(232,89,12,0.3);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--ivory);
  margin-bottom: 18px;
  font-weight: 800;
}

.hero .lede {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(251,248,241,0.9);
  font-style: italic;
  max-width: 580px;
  margin-bottom: 28px;
}

.hero-meta {
  display: flex;
  gap: 18px;
  align-items: center;
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(251,248,241,0.75);
}

.hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--saffron); }

/* ============ SECTION BASICS ============ */
section { padding: 72px 0; }

.section-head {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px solid var(--charcoal);
  padding-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.section-head .see-all {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--teal);
}

.kicker {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron);
  display: block;
  margin-bottom: 10px;
}

/* ============ FEATURED STORY ============ */
.featured-story { padding-top: 64px; }

.featured-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}

.featured-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3 / 2;
}

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

.featured-img:hover img { transform: scale(1.04); }

.featured-text .kicker { margin-bottom: 14px; }
.featured-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}
.featured-text .dek {
  font-size: 1.15rem;
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 22px;
}
.featured-text .byline {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 24px;
}
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--teal);
  padding-bottom: 4px;
  border-bottom: 2px solid var(--teal);
}
.btn-link:hover { color: var(--saffron); border-color: var(--saffron); }

/* ============ STORY GRID ============ */
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.story-card {
  display: flex;
  flex-direction: column;
  background: transparent;
}

.story-card .card-img {
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3 / 2;
  margin-bottom: 18px;
}

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

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

.story-card .kicker { margin-bottom: 8px; }

.story-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.story-card h3 a { color: var(--charcoal); }
.story-card h3 a:hover { color: var(--saffron); }

.story-card .excerpt {
  font-size: 0.98rem;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.story-card .card-meta {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--gray-500);
  margin-top: auto;
}

/* ============ CULTURAL CALENDAR ============ */
.calendar-section { background: var(--charcoal); color: var(--ivory); }
.calendar-section h2, .calendar-section .kicker { color: var(--ivory); }
.calendar-section .section-head { border-color: var(--gray-600); }
.calendar-section .kicker { color: var(--saffron-light); }

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cal-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.cal-item:hover { background: rgba(255,255,255,0.08); border-color: var(--saffron); }

.cal-date {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--saffron-light);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cal-item h3 { color: var(--ivory); font-size: 1.2rem; margin-bottom: 10px; }
.cal-item p { color: rgba(251,248,241,0.7); font-size: 0.95rem; margin-bottom: 0; }

/* ============ NEIGHBORHOOD SPOTLIGHT ============ */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.spotlight-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.spotlight-img img { width: 100%; height: 100%; object-fit: cover; }

.spotlight-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 18px; }
.spotlight-text .dek { font-size: 1.12rem; color: var(--gray-600); font-style: italic; margin-bottom: 24px; }

.spotlight-stats {
  display: flex;
  gap: 32px;
  margin: 28px 0;
  padding: 24px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.stat .num {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--teal);
}

.stat .label {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============ FOOD COLUMN ============ */
.food-section { background: var(--gray-50); }

.food-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.food-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  order: 2;
}

.food-img img { width: 100%; height: 100%; object-fit: cover; }

.food-text .kicker { color: var(--saffron); }
.food-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 18px; }

/* ============ LATEST STORIES ============ */
.latest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.latest-card .card-img {
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3 / 2;
  margin-bottom: 14px;
}
.latest-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.latest-card:hover .card-img img { transform: scale(1.05); }
.latest-card .kicker { margin-bottom: 6px; }
.latest-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.latest-card h3 a { color: var(--charcoal); }
.latest-card h3 a:hover { color: var(--saffron); }
.latest-card .card-meta { font-family: var(--sans); font-size: 12px; color: var(--gray-500); }

/* ============ NEWSLETTER STRIP ============ */
.newsletter {
  background: var(--maroon);
  color: var(--ivory);
  padding: 64px 0;
  text-align: center;
}

.newsletter h2 { color: var(--ivory); font-size: 2rem; margin-bottom: 12px; }
.newsletter p { color: rgba(251,248,241,0.85); max-width: 520px; margin: 0 auto 28px; }

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  font-family: var(--serif);
  font-size: 16px;
  background: var(--ivory);
  color: var(--charcoal);
  border-radius: var(--radius) 0 0 var(--radius);
}

.newsletter-form button {
  padding: 14px 28px;
  border: none;
  background: var(--saffron);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: background var(--transition);
}

.newsletter-form button:hover { background: var(--saffron-light); }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-block { margin-bottom: 20px; }
.footer-brand .brand { color: var(--ivory); }
.footer-brand p { color: rgba(251,248,241,0.7); font-size: 0.95rem; max-width: 320px; }

.footer-col h4 {
  color: var(--ivory);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: var(--sans);
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(251,248,241,0.7); font-family: var(--sans); font-size: 14px; }
.footer-col a:hover { color: var(--saffron-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(251,248,241,0.5);
}

.footer-bottom .legal-links { display: flex; gap: 20px; }
.footer-bottom .legal-links a { color: rgba(251,248,241,0.5); font-size: 13px; }

/* ============ ARTICLE PAGE ============ */
.article-hero {
  padding: 48px 0 32px;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
}

.article-hero .kicker { margin-bottom: 16px; }
.article-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  max-width: 820px;
  margin: 0 auto 20px;
}
.article-hero .dek {
  font-size: 1.2rem;
  color: var(--gray-600);
  font-style: italic;
  max-width: 640px;
  margin: 0 auto 24px;
}

.article-byline {
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--gray-500);
}

.article-byline .sep { color: var(--gray-300); }

.article-hero-img {
  margin: 40px auto;
  max-width: var(--max-w-wide);
  padding: 0 24px;
}

.article-hero-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.article-hero-img .caption {
  text-align: center;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 12px;
  font-style: italic;
}

.article-body {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 24px;
}

.article-body p { font-size: 1.12rem; line-height: 1.85; margin-bottom: 1.6rem; color: var(--gray-700); }

.article-body h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1.2rem;
  color: var(--charcoal);
}

.article-body h3 {
  font-size: 1.35rem;
  margin: 2rem 0 1rem;
}

.article-body blockquote {
  border-left: 4px solid var(--saffron);
  padding: 16px 0 16px 28px;
  margin: 2rem 0;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--maroon);
  line-height: 1.5;
}

.article-body ul, .article-body ol {
  margin: 1.5rem 0 1.5rem 1.5rem;
  font-size: 1.12rem;
  color: var(--gray-700);
}

.article-body li { margin-bottom: 0.8rem; }

.article-body .pullquote {
  font-size: 1.6rem;
  font-family: var(--sans);
  font-weight: 800;
  color: var(--teal);
  text-align: center;
  margin: 2.5rem 0;
  padding: 1.5rem;
  border-top: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
  line-height: 1.4;
}

.article-body a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--saffron); }

.article-body .first-letter::first-letter {
  font-size: 4.5rem;
  font-family: var(--sans);
  font-weight: 800;
  float: left;
  line-height: 0.85;
  margin: 6px 12px 0 0;
  color: var(--saffron);
}

.article-tags {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.article-tags .label {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
}

.tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--gray-100);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
}

/* Article sidebar / related */
.related-section { background: var(--gray-50); padding: 64px 0; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.related-card .card-img { overflow: hidden; border-radius: var(--radius-lg); aspect-ratio: 3/2; margin-bottom: 14px; }
.related-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.related-card:hover .card-img img { transform: scale(1.05); }
.related-card .kicker { margin-bottom: 6px; }
.related-card h3 { font-size: 1.15rem; }
.related-card h3 a { color: var(--charcoal); }
.related-card h3 a:hover { color: var(--saffron); }

/* ============ STORIES INDEX ============ */
.page-header {
  background: var(--maroon);
  color: var(--ivory);
  padding: 72px 0 56px;
  text-align: center;
}

.page-header .kicker { color: var(--saffron-light); }
.page-header h1 { color: var(--ivory); font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 14px; }
.page-header p { color: rgba(251,248,241,0.85); max-width: 560px; margin: 0 auto; font-style: italic; }

.filter-bar {
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 40px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 8px 18px;
  border: 1px solid var(--gray-300);
  background: transparent;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover { border-color: var(--saffron); color: var(--saffron); }
.filter-btn.active { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }

/* ============ NEIGHBORHOODS PAGE ============ */
.neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.nbh-card {
  background: var(--ivory);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.nbh-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.nbh-card .card-img { aspect-ratio: 3/2; overflow: hidden; }
.nbh-card .card-img img { width: 100%; height: 100%; object-fit: cover; }

.nbh-card .nbh-body { padding: 28px; }
.nbh-card .nbh-body .kicker { color: var(--teal); }
.nbh-card .nbh-body h3 { font-size: 1.5rem; margin-bottom: 10px; }
.nbh-card .nbh-body p { color: var(--gray-600); font-size: 0.98rem; margin-bottom: 16px; }

.nbh-card .nbh-meta {
  display: flex;
  gap: 18px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--gray-500);
}

/* ============ ABOUT PAGE ============ */
.about-hero { padding: 72px 0; text-align: center; }
.about-hero h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); margin-bottom: 20px; }
.about-hero .dek { font-size: 1.2rem; color: var(--gray-600); font-style: italic; max-width: 580px; margin: 0 auto; }

.about-body { max-width: var(--max-w-narrow); margin: 0 auto; padding: 0 24px; }
.about-body p { font-size: 1.12rem; line-height: 1.85; margin-bottom: 1.5rem; color: var(--gray-700); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 48px 0;
}

.value-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
}

.value-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--saffron);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 800;
}

.value-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.value-card p { font-size: 0.95rem; color: var(--gray-600); }

/* ============ CONTACT PAGE ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  margin-top: 48px;
}

.contact-info h3 { font-size: 1.3rem; margin-bottom: 16px; }
.contact-info p { color: var(--gray-600); margin-bottom: 24px; }

.contact-detail { margin-bottom: 20px; }
.contact-detail .label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--saffron);
  margin-bottom: 4px;
}
.contact-detail .val { font-size: 1.05rem; color: var(--charcoal); }

.contact-form { background: var(--gray-50); padding: 40px; border-radius: var(--radius-lg); }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--serif);
  font-size: 16px;
  background: var(--ivory);
  color: var(--charcoal);
  transition: border var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
}

.btn-submit {
  padding: 14px 36px;
  background: var(--charcoal);
  color: var(--ivory);
  border: none;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-submit:hover { background: var(--maroon); }

.form-note {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 12px;
}

/* ============ LEGAL PAGES ============ */
.legal-body { max-width: var(--max-w-narrow); margin: 0 auto; padding: 48px 24px; }
.legal-body h1 { font-size: 2.2rem; margin-bottom: 12px; }
.legal-body .updated { font-family: var(--sans); font-size: 14px; color: var(--gray-500); margin-bottom: 32px; }
.legal-body h2 { font-size: 1.5rem; margin: 32px 0 12px; }
.legal-body p { font-size: 1.05rem; line-height: 1.8; color: var(--gray-700); margin-bottom: 1.2rem; }
.legal-body ul { margin: 1rem 0 1.2rem 1.5rem; }
.legal-body li { margin-bottom: 0.6rem; color: var(--gray-700); }

/* ============ SITEMAP PAGE ============ */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 24px;
}

.sitemap-col h3 { font-size: 1.1rem; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--saffron); display: inline-block; }
.sitemap-col ul { list-style: none; }
.sitemap-col li { margin-bottom: 10px; }
.sitemap-col a { font-family: var(--sans); font-size: 15px; color: var(--gray-700); }
.sitemap-col a:hover { color: var(--saffron); }

/* ============ 404 PAGE ============ */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}

.error-page .error-code {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(5rem, 15vw, 10rem);
  color: var(--saffron);
  line-height: 1;
  margin-bottom: 16px;
}

.error-page h1 { font-size: 2rem; margin-bottom: 16px; }
.error-page p { color: var(--gray-600); max-width: 480px; margin: 0 auto 28px; }

/* ============ UTILITY ============ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .story-grid { grid-template-columns: repeat(2, 1fr); }
  .latest-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .values-grid { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  body { font-size: 17px; }
  section { padding: 48px 0; }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--ivory); border-bottom: 1px solid var(--gray-200); padding: 16px 24px; box-shadow: var(--shadow-md); }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 16px; padding: 8px 0; }
  .nav-toggle { display: flex; }
  .featured-grid { grid-template-columns: 1fr; gap: 32px; }
  .spotlight { grid-template-columns: 1fr; gap: 32px; }
  .food-feature { grid-template-columns: 1fr; gap: 32px; }
  .food-img { order: 0; }
  .story-grid { grid-template-columns: 1fr; }
  .calendar-grid { grid-template-columns: 1fr; }
  .latest-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .neighborhood-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .spotlight-stats { flex-wrap: wrap; gap: 20px; }
  .hero { min-height: 60vh; }
  .hero-content { padding-bottom: 40px; }
  .newsletter-form { flex-direction: column; gap: 8px; }
  .newsletter-form input { border-radius: var(--radius); }
  .newsletter-form button { border-radius: var(--radius); }
  .article-body p { font-size: 1.05rem; }
  .article-body .first-letter::first-letter { font-size: 3.5rem; }
}

@media (max-width: 480px) {
  .latest-grid { grid-template-columns: 1fr; }
  .header-inner { padding: 12px 16px; }
  .logo-block img { width: 38px; height: 38px; }
  .logo-text .brand { font-size: 18px; }
  .logo-text .tagline { font-size: 11px; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .featured-img img, .story-card .card-img img, .latest-card .card-img img, .related-card .card-img img {
    transition: none !important;
  }
  .featured-img:hover img, .story-card:hover .card-img img, .latest-card:hover .card-img img, .related-card:hover .card-img img {
    transform: none !important;
  }
}

/* ============ FADE-IN ANIMATION ============ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; }
}

