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

:root {
  --cream: #faf7f2;
  --cream-dark: #ede8df;
  --charcoal: #1a1a1a;
  --charcoal-mid: #3a3a3a;
  --charcoal-light: #6a6a6a;
  --terracotta: #c4622d;
  --terracotta-light: #e8916a;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1200px;
  --col-width: 740px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }

/* ── Tags ── */
.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--charcoal);
  color: var(--cream);
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
}
.tag--terracotta { background: var(--terracotta); }
.tag--outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}

/* ── Nav ── */
.site-header {
  border-bottom: 1px solid var(--cream-dark);
  padding: 1.1rem 2.5rem;
  position: sticky;
  top: 0;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(8px);
  z-index: 100;
}
.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  line-height: 1;
}
.nav-links {
  display: flex;
  gap: 2.2rem;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--terracotta); }

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--cream-dark);
  padding: 2.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--charcoal-light);
  margin-top: 6rem;
  letter-spacing: 0.02em;
}

/* ── Hero ── */
.hero {
  max-width: var(--max-width);
  margin: 2.5rem auto 0;
  padding: 0 2.5rem;
}
.hero-link { display: block; position: relative; border-radius: 4px; overflow: hidden; }
.hero-image-wrap { position: relative; height: 560px; }
.hero-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-link:hover .hero-image { transform: scale(1.02); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}
.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 3rem;
  color: white;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.hero-neighborhood {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  max-width: 700px;
  margin-bottom: 0.75rem;
}
.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  opacity: 0.85;
  max-width: 540px;
  margin-bottom: 1.25rem;
}
.hero-cta {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.hero-link:hover .hero-cta { border-color: white; }

/* ── Post Grid ── */
.post-grid-section {
  max-width: var(--max-width);
  margin: 4rem auto 0;
  padding: 0 2.5rem;
}
.section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.coming-soon-text { font-size: 0.9rem; color: var(--charcoal-light); font-style: italic; margin-top: 0; }
.section-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.section-line {
  flex: 1;
  height: 1px;
  background: var(--cream-dark);
}
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

/* ── Post Card ── */
.post-card--coming-soon {
  background: var(--charcoal);
  border-radius: 3px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.post-card--coming-soon .tag {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--cream);
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-family: var(--font-display);
  font-style: italic;
}
.post-card-link { display: block; }
.post-card-image-wrap {
  height: 240px;
  overflow: hidden;
  border-radius: 3px;
  margin-bottom: 1.1rem;
}
.post-card-image {
  height: 100%;
  transition: transform 0.5s ease;
}
.post-card-link:hover .post-card-image { transform: scale(1.04); }
.post-card-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}
.post-card-neighborhood {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal-light);
}
.post-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.post-card-link:hover .post-card-title { color: var(--terracotta); }
.post-card-excerpt {
  font-size: 0.88rem;
  color: var(--charcoal-light);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.post-card-date {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--charcoal-light);
}

/* ── Listicle ── */
.listicle-header {
  border-bottom: 1px solid var(--cream-dark);
  padding: 3.5rem 2.5rem 3rem;
  text-align: center;
}
.listicle-header-inner {
  max-width: var(--col-width);
  margin: 0 auto;
}
.listicle-meta {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.listicle-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.listicle-subtitle {
  font-size: 1.15rem;
  color: var(--charcoal-mid);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 1.25rem;
  line-height: 1.6;
}
.listicle-date {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--charcoal-light);
  text-transform: uppercase;
}
.listicle-body {
  max-width: var(--col-width);
  margin: 0 auto;
  padding: 3rem 2.5rem;
}
.intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal-mid);
  border-left: 3px solid var(--terracotta);
  padding-left: 1.5rem;
  margin-bottom: 3.5rem;
}

/* ── Restaurant Card ── */
.restaurant-list { display: flex; flex-direction: column; gap: 3.5rem; }
.restaurant-card {
  position: relative;
  max-width: 580px;
  margin: 0 auto;
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  overflow: hidden;
  background: white;
}
.restaurant-rank {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  z-index: 2;
}
.restaurant-image-wrap { aspect-ratio: 1 / 1; width: 100%; position: relative; overflow: hidden; }
.restaurant-image { width: 100%; height: 100%; object-fit: cover; }
.restaurant-body { padding: 1.75rem 2rem 2rem; }
.restaurant-header { margin-bottom: 1rem; }
.restaurant-name {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.6rem;
}
.restaurant-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.vibe-tag {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--terracotta);
  font-style: italic;
}
.restaurant-description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--charcoal-mid);
  margin-bottom: 1.25rem;
}
.must-order {
  font-size: 0.85rem;
  padding: 0.75rem 1rem;
  background: var(--cream);
  border-radius: 3px;
  color: var(--charcoal-mid);
}
.must-order-label {
  font-weight: 500;
  color: var(--charcoal);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-image-wrap { height: 420px; }
  .post-grid { grid-template-columns: 1fr; gap: 2rem; }
  .listicle-body { padding: 2rem 1.25rem; }
}
