:root {
  --bg: #f6f3ee;
  --panel: #ffffff;
  --soft: #faf7f2;
  --border: #e7ded2;
  --text: #171717;
  --muted: #6a635d;
  --dark: #1d1d1d;
  --accent: #eadfd0;
  --accent-2: #ddd6fe;
  --shadow: 0 12px 30px rgba(16, 24, 40, 0.06);
  --radius: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { width: 100%; height: 100%; object-fit: cover; display: block; }
input, button { font: inherit; }
.wrap {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}
.text-center { text-align: center; }
.section-pad-sm { padding-top: 22px; padding-bottom: 22px; }
.section-pad-bottom { padding-bottom: 42px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 243, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 18px 0 22px;
}
.icon-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.icon-label svg,
.icon,
.icon-sm,
.social-btn svg,
.star-icon svg {
  width: 18px;
  height: 18px;
  display: inline-block;
}
.icon-tiny svg { width: 15px; height: 15px; }
.header-kicker {
  color: var(--muted);
  font-size: 14px;
}
.brand-lockup { text-align: center; }
.site-brand {
  font-size: clamp(34px, 6vw, 50px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.brand-subtitle {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.chip,
.outline-btn,
.social-btn,
.search-pill,
.subscribe-pill,
.solid-btn {
  border-radius: 999px;
}
.chip,
.outline-btn {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
}
.chip {
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 600;
}
.search-social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}
.search-pill,
.subscribe-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  background: #fff;
  min-height: 52px;
  padding: 0 18px;
  box-shadow: var(--shadow);
}
.search-pill {
  width: min(580px, 100%);
}
.subscribe-pill { margin-top: 18px; }
.search-pill input,
.subscribe-pill input {
  border: 0;
  outline: none;
  background: transparent;
  width: 100%;
  min-width: 0;
  color: var(--text);
}
.search-pill input::placeholder,
.subscribe-pill input::placeholder { color: #a59d96; }
.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.social-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: #fff;
  transition: transform .18s ease, box-shadow .18s ease;
}
.social-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.hero-intro { max-width: 840px; }
.badge {
  display: inline-flex;
  padding: 10px 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.85);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero-intro h1,
.city-banner h2 {
  margin: 18px 0 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}
.hero-intro p,
.city-banner p,
.widget p,
.card-body p,
.site-footer p {
  color: var(--muted);
  line-height: 1.8;
}
.hero-intro p { font-size: 18px; max-width: 720px; margin: 18px auto 0; }
.lead-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 20px;
  align-items: start;
}
.lead-card,
.stack-card,
.panel,
.widget,
.story-card,
.city-banner {
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.lead-card-large { position: relative; min-height: 430px; }
.lead-card-large img { min-height: 430px; }
.lead-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 28px;
  color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.72));
}
.lead-overlay h2 {
  max-width: 760px;
  margin: 16px auto 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
}
.stack-grid { display: grid; gap: 20px; }
.stack-card {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
}
.stack-thumb { min-height: 224px; }
.stack-body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.stack-body h3,
.story-card h3,
.widget h3 {
  margin: 12px 0 0;
  font-size: 24px;
  line-height: 1.3;
}
.pill,
.pill-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.pill { background: #f5f3f0; color: #4a433e; }
.pill-ghost { background: rgba(255,255,255,.14); color: #fff; backdrop-filter: blur(4px); }
.panel { padding: 26px; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}
.section-copy { flex: 1; }
.eyebrow,
.light {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.eyebrow { color: #7a736c; }
.light { color: rgba(255,255,255,.65); }
.section-head h2,
.city-banner h2 { font-size: clamp(28px, 3vw, 40px); line-height: 1.2; margin: 10px 0 0; }
.outline-btn,
.solid-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.solid-btn {
  background: var(--dark);
  color: #fff;
  border: 1px solid var(--dark);
}
.inline-btn { margin-top: 16px; }
.card-grid {
  display: grid;
  gap: 18px;
}
.four-up { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.story-card {
  border: 1px solid #ece5db;
  background: var(--soft);
}
.compact-card .card-image { min-height: 196px; }
.card-image { min-height: 208px; overflow: hidden; }
.card-image.tall { min-height: 220px; }
.card-body { padding: 18px; }
.card-body h3 {
  margin-top: 12px;
  font-size: 22px;
}
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: #7a736c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.center-meta { justify-content: center; }
.content-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.82fr;
  gap: 24px;
}
.sidebar { display: grid; gap: 22px; }
.widget { padding: 28px; }
.widget-dark { background: var(--dark); color: #fff; }
.widget-dark .subscribe-pill { border-color: rgba(255,255,255,.15); }
.rank-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.rank-item {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #ece5db;
  border-radius: 20px;
  padding: 14px;
  text-align: left;
}
.rank-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f3f1ee;
  font-weight: 700;
}
.rank-text { font-weight: 600; line-height: 1.5; }
.center-gap { margin-top: 18px; }
.stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: #d69a00;
}
.star-icon { width: 16px; height: 16px; display: inline-flex; }
.city-banner {
  padding: 42px 28px;
  background: linear-gradient(135deg, #efe6da, #ddd6fe);
}
.city-banner p { max-width: 720px; margin: 18px auto 0; font-size: 17px; }
.banner-actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer {
  background: #fff;
  border-top: 1px solid var(--border);
}
.footer-wrap {
  padding: 36px 0 42px;
}
.footer-brand { font-size: 30px; }
.footer-links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}
@media (max-width: 1100px) {
  .lead-grid,
  .content-grid,
  .four-up {
    grid-template-columns: 1fr;
  }
  .two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stack-card { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .wrap { width: min(100% - 20px, 1240px); }
  .section-head { flex-direction: column; align-items: stretch; }
  .outline-btn { justify-content: center; }
  .stack-card,
  .two-up { grid-template-columns: 1fr; }
  .stack-thumb,
  .lead-card-large,
  .lead-card-large img,
  .card-image,
  .card-image.tall { min-height: 220px; }
  .panel,
  .widget,
  .city-banner { padding: 20px; }
  .site-brand { font-size: 32px; }
  .hero-intro h1,
  .city-banner h2,
  .section-head h2,
  .stack-body h3,
  .story-card h3,
  .widget h3 { font-size: 28px; }
  .hero-intro p,
  .city-banner p { font-size: 16px; }
}
