:root {
  --primary-500: #C8102E;
  --primary-800: #A0001F;
  --ink:         #141414;
  --charcoal:    #1E2228;
  --text:        #1A1A1A;
  --text-muted:  #3D3D3D;
  --gray-600:    #666;
  --gray-400:    #9CA3AF;
  --border:      #DDD8D0;
  --gray-300:    #C4BDB4;
  --background:  #F9F7F3;
  --surface-100: #FDFCFA;
  --bg-deep:     #111;
  --white:       #ffffff;
  --primary-100: #f5c6ce;
  --accent-400:  #C8102E;
  --accent-500:  #A0001F;
  --box-shadow-sm: 0 1px 3px 0 rgba(34,40,42,0.1);
  --box-shadow-md: 0 4px 20px 0 rgba(33,37,41,0.05);
  --box-shadow-lg: 0 4px 20px 0 rgba(33,37,41,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { background: var(--background); }
body {
  background: var(--background);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px; line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.pg-wrap { width: 100%; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ── LOGO ── */
.logo { max-width: 120px; }
.logo a { display: flex; }

/* ── TOP BAR ── */
.top-bar { background: var(--ink); padding: 10px 24px; }
.top-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.top-bar-date {
  font-family: 'Lora', Georgia, serif; font-style: italic;
  font-size: 11.5px; color: rgba(255,255,255,0.7);
}
.top-bar-logo { display: flex; justify-content: center; }
.top-bar-logo img {
  height: 32px; width: auto;
  filter: brightness(0) invert(1); opacity: 0.88;
}
.top-bar-links { display: flex; justify-content: flex-end; }
.top-bar-links a {
  font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.7);
  padding: 0 10px; border-right: 1px solid rgba(255,255,255,0.1);
  transition: color 0.15s;
}
.top-bar-links a:last-child { padding-right: 0; border-right: none; }
.top-bar-links a:hover { color: #fff; }

/* ── SITE HEADER (NAVBAR) ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--background); border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 62px; display: flex; align-items: center; gap: 20px;
}
.header-logo { flex-shrink: 0; display: flex; align-items: center; }
.header-logo-img { height: 38px; width: auto; display: block; }
.header-nav {
  flex: 1; display: flex; align-items: center; justify-content: center;
  overflow-x: auto; scrollbar-width: none;
}
.header-nav::-webkit-scrollbar { display: none; }
.header-nav a {
  font-size: 12.5px; font-weight: 600; color: var(--gray-600);
  padding: 4px 10px; white-space: nowrap; transition: color 0.15s;
}
.header-nav a:hover { color: var(--primary-500); }
.header-nav a.active { color: var(--primary-500); }
.header-right { flex-shrink: 0; display: flex; align-items: center; }
.header-subscribe {
  font-size: 12px; font-weight: 700; color: #fff;
  background: var(--primary-500); padding: 7px 16px;
  border-radius: 3px; transition: background 0.15s; white-space: nowrap;
}
.header-subscribe:hover { background: var(--primary-800); }

/* ── TRENDING BAR ── */
.trending-bar { border-bottom: 1px solid var(--border); padding: 10px 24px; }
.trending-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 14px;
}
.tb-label {
  font-size: 9px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.6px; color: var(--gray-400);
  white-space: nowrap; flex-shrink: 0;
  display: flex; align-items: center; gap: 8px;
}
.tb-label::after { content: ''; width: 1px; height: 12px; background: var(--gray-300); }
.tb-tags { display: flex; flex-wrap: wrap; align-items: center; }
.tb-sep { color: var(--gray-300); font-size: 11px; padding: 0 6px; }
.tb-tag {
  font-size: 12px; font-weight: 500; color: var(--text-muted);
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.tb-tag:hover { color: var(--primary-500); border-bottom-color: var(--primary-500); }

/* ══════════════════════════════════
   3-COLUMN HERO
══════════════════════════════════ */
.hero-section { border-bottom: 2px solid var(--ink); }
.hero-3col {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.9fr 1fr;
}

.hero-sb { padding: 24px 0; display: flex; flex-direction: column; gap: 0; }
.hero-sb-left  { border-right: 1px solid var(--border); padding-right: 24px; }
.hero-sb-right { border-left:  1px solid var(--border); padding-left:  24px; }

.sb-art {
  display: block; padding: 16px 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.sb-art:first-child { padding-top: 0; }
.sb-art:last-child  { border-bottom: none; padding-bottom: 0; }
.sb-art:hover .sb-title { color: var(--primary-500); }
.sb-eye {
  font-size: 9px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.3px; color: var(--primary-500);
  margin-bottom: 6px; display: block;
}
.sb-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px; font-weight: 600; transition: color 0.15s;
  color: var(--ink); line-height: 1.3;
  margin-bottom: 7px; display: block;
}
.sb-excerpt {
  font-family: 'Lora', Georgia, serif; font-style: italic;
  font-size: 12.5px; color: var(--gray-600);
  line-height: 1.6; margin-bottom: 8px; display: block;
}

.hero-center { padding: 24px 32px; text-align: center; }
.hero-center-eye {
  font-size: 9.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--primary-500);
  margin-bottom: 10px; display: block;
}
.hero-center-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 46px; font-weight: 800;
  color: var(--ink); line-height: 1.08;
  letter-spacing: -1px; margin-bottom: 16px;
  display: block; transition: color 0.15s;
}
.hero-center a:hover .hero-center-title { color: var(--primary-500); }
.hero-img-wrap { aspect-ratio: 3 / 2; overflow: hidden; margin-bottom: 16px; }
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-img-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 52px;
}
.hero-center-excerpt {
  font-family: 'Lora', Georgia, serif; font-style: italic;
  font-size: 15px; color: var(--text-muted);
  line-height: 1.72; margin-bottom: 14px; text-align: center;
}
.hero-center-byline {
  font-size: 12.5px; font-weight: 700; color: var(--ink);
  display: flex; align-items: center; justify-content: center; gap: 4px;
}
.hero-center-byline .author { color: var(--primary-500); text-transform: uppercase; font-size: 11px; letter-spacing: 0.4px; }
.hero-center-byline .em { color: var(--gray-400); font-weight: 400; }
.hero-center-byline .date { color: var(--gray-400); font-size: 11px; font-weight: 500; }

/* ── MORE STRIP ── */
.more-strip { background: var(--ink); }
.more-strip-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; height: 50px;
}
.more-lbl {
  font-size: 9px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--primary-500);
  white-space: nowrap; flex-shrink: 0;
  padding-right: 18px; margin-right: 18px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.more-articles {
  display: flex; flex: 1; align-items: center;
  overflow-x: auto; scrollbar-width: none;
}
.more-articles::-webkit-scrollbar { display: none; }
.more-art {
  display: flex; align-items: center; flex-shrink: 0;
  padding: 0 18px; height: 50px;
  border-right: 1px solid rgba(255,255,255,0.1);
  gap: 7px;
}
.more-art:first-child { padding-left: 18px; }
.more-art:last-child { border-right: none; }
.more-art-eye {
  font-size: 8.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; color: rgba(255,255,255,0.72);
  white-space: nowrap; flex-shrink: 0; transition: color 0.15s;
}
.more-art-dot { color: rgba(255,255,255,0.25); font-size: 13px; flex-shrink: 0; line-height: 1; }
.more-art-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.85); line-height: 1.3;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 210px;
  transition: color 0.15s;
}
.more-art:hover { background: rgba(255,255,255,0.06); }
.more-art:hover .more-art-title { color: #fff; }
.more-art:hover .more-art-eye { color: var(--primary-500); }

/* ══════════════════════════════════
   CONTENT LAYOUT
══════════════════════════════════ */
.content-layout {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; gap: 48px; align-items: flex-start;
}
.main-col { flex: 1; min-width: 0; }
.rail-col  { width: 248px; flex-shrink: 0; }
.rail-sticky { position: sticky; top: 60px; }
.content-wide { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.content-section { padding-top: 40px; }

/* ── SECTION HEADER ── */
.sec-head { display: flex; align-items: flex-end; gap: 0; margin-bottom: 28px; }
.sec-head h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 42px; font-weight: 800;
  color: var(--ink); letter-spacing: -1px;
  line-height: 1; white-space: nowrap; margin-right: 20px;
}
.sec-head-rule { flex: 1; height: 1px; background: var(--ink); }
.sec-head-btn {
  background: var(--ink); color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 10px 16px; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
  flex-shrink: 0; transition: background 0.15s;
}
.sec-head-btn::after { content: '›'; font-size: 14px; line-height: 1; }
.sec-head-btn:hover { background: var(--primary-500); }

/* ── EYEBROW ── */
.art-eyebrow {
  font-size: 9px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.4px; color: var(--primary-500);
  margin-bottom: 6px; display: block;
}
.art-meta {
  font-size: 10px; font-weight: 700; color: var(--primary-500);
  text-transform: uppercase; letter-spacing: 0.4px;
  display: flex; align-items: center; gap: 4px;
}
.art-meta-dot { color: var(--gray-300); font-weight: 400; }
.art-meta-date { font-weight: 500; color: var(--gray-400); text-transform: none; letter-spacing: 0; font-size: 11px; }

/* ── TEXT-ONLY SECTION GRID ── */
.sec-grid-text {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 0; align-items: start;
  border-top: 1px solid var(--border);
}
.sg-feat {
  display: block; padding: 20px 28px 20px 0;
  border-right: 1px solid var(--border);
  color: var(--text);
}
.sg-feat:hover .sg-feat-title { color: var(--primary-500); }
.sg-feat-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px; font-weight: 700; transition: color 0.15s;
  color: var(--ink); line-height: 1.2;
  letter-spacing: -0.4px; margin-bottom: 12px; display: block;
}
.sg-feat-excerpt {
  font-family: 'Lora', Georgia, serif;
  font-size: 14px; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 10px; display: block;
}
.sg-stack {
  display: flex; flex-direction: column;
  border-right: 1px solid var(--border);
}
.sg-stack:last-child { border-right: none; }
.sg-item {
  display: block; padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  color: var(--text); flex: 1;
}
.sg-item:last-child { border-bottom: none; }
.sg-item:hover .sg-item-title { color: var(--primary-500); }
.sg-item-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px; font-weight: 600; transition: color 0.15s;
  color: var(--ink); line-height: 1.36;
  margin-bottom: 8px; display: block;
}
.sg-item-excerpt {
  font-family: 'Lora', Georgia, serif;
  font-size: 13px; color: var(--text-muted);
  line-height: 1.65; margin-bottom: 8px; display: block;
}

/* ── PAIRED SECTION LAYOUT ── */
.sec-pair-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.sec-pair-col { padding-right: 36px; }
.sec-pair-col + .sec-pair-col {
  padding-left: 36px; padding-right: 0;
  border-left: 1px solid var(--border);
}
.sp-feat {
  display: grid; grid-template-columns: 168px 1fr;
  gap: 18px; align-items: start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.sp-feat:hover .sp-feat-title { color: var(--primary-500); }
.sp-feat-img { aspect-ratio: 4/3; overflow: hidden; display: block; }
.sp-feat-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sp-feat-img-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 38px;
}
.sp-feat-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 21px; font-weight: 700; transition: color 0.15s;
  color: var(--ink); line-height: 1.22;
  letter-spacing: -0.3px; margin-bottom: 10px; display: block;
}
.sp-feat-excerpt {
  font-family: 'Lora', Georgia, serif; font-style: italic;
  font-size: 13px; color: var(--text-muted);
  line-height: 1.65; margin-bottom: 8px; display: block;
}
.sp-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; }
.sp-item {
  display: block; padding: 14px 14px 14px 0;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  color: var(--text); transition: opacity 0.15s;
}
.sp-item + .sp-item { padding-left: 14px; }
.sp-item:last-child { border-right: none; padding-right: 0; }
.sp-item:hover .sp-item-title { color: var(--primary-500); }
.sp-item-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 14.5px; font-weight: 700; transition: color 0.15s;
  color: var(--ink); line-height: 1.32;
  margin-bottom: 6px; display: block;
}

/* ── VISUAL CARD GRID ── */
.sec-grid-visual {
  display: grid; grid-template-columns: 1fr 1fr 1.45fr;
  gap: 0; border-top: 1px solid var(--border);
}
.sgv-col {
  display: flex; flex-direction: column;
  padding-right: 28px; border-right: 1px solid var(--border);
}
.sgv-col + .sgv-col { padding: 0 28px; }
.sgv-card {
  display: block; padding: 20px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text); flex: 1;
}
.sgv-card:last-child { border-bottom: none; }
.sgv-card:hover .sgv-card-title { color: var(--primary-500); }
.sgv-card-img { aspect-ratio: 4/3; overflow: hidden; margin-bottom: 12px; }
.sgv-card-img-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
}
.sgv-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px; font-weight: 700; transition: color 0.15s;
  color: var(--ink); line-height: 1.28;
  margin-bottom: 8px; display: block;
}
.sgv-card-excerpt {
  font-family: 'Lora', Georgia, serif; font-style: italic;
  font-size: 13px; color: var(--text-muted); line-height: 1.65; display: block;
}
.sgv-hero {
  display: block; padding: 0 0 0 28px;
  border-left: 1px solid var(--border);
  color: var(--text); transition: opacity 0.15s;
}
.sec-grid-visual.hero-left { grid-template-columns: 1.45fr 1fr 1fr; }
.sec-grid-visual.hero-left .sgv-hero {
  padding: 0 28px 0 0; border-left: none; border-right: 1px solid var(--border);
}
.sec-grid-visual.hero-left .sgv-col {
  padding: 0 28px 0 28px; border-right: 1px solid var(--border); border-left: none;
}
.sec-grid-visual.hero-left .sgv-col + .sgv-col { padding: 0 0 0 28px; border-right: none; }
.sgv-hero:hover .sgv-hero-title { color: var(--primary-500); }
.sgv-hero-img { overflow: hidden; margin-bottom: 18px; aspect-ratio: 3/2; display: block; }
.sgv-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sgv-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 34px; font-weight: 800; transition: color 0.15s;
  color: var(--ink); line-height: 1.12;
  letter-spacing: -0.8px; margin-bottom: 12px; display: block;
}
.sgv-hero-excerpt {
  font-family: 'Lora', Georgia, serif; font-style: italic;
  font-size: 14px; color: var(--text-muted); line-height: 1.7; display: block;
}

/* ── RAIL ── */
.rail-widget { padding-top: 40px; }
.rail-head {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.4px; color: var(--ink);
  border-bottom: 2px solid var(--ink); padding-bottom: 9px;
}
.rail-list { list-style: none; }
.rail-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.rail-item:last-child { border-bottom: none; }
.rail-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px; font-weight: 700; color: var(--gray-300);
  flex-shrink: 0; line-height: 1.2; min-width: 18px;
}
.rail-title {
  font-size: 12.5px; font-weight: 500; color: var(--text-muted);
  line-height: 1.48; transition: color 0.15s;
}
.rail-item:hover .rail-title { color: var(--primary-500); }
.rail-topic {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 0; border-bottom: 1px solid var(--border);
  font-size: 12.5px; font-weight: 500; color: var(--text-muted);
  transition: color 0.15s;
}
.rail-topic:last-child { border-bottom: none; }
.rail-topic:hover { color: var(--primary-500); }
.rail-about { padding: 16px 0 0; border-top: 3px solid var(--primary-500); margin-top: 32px; }
.rail-about-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 8px;
}
.rail-about-text {
  font-family: 'Lora', Georgia, serif; font-style: italic;
  font-size: 12px; color: var(--gray-600); line-height: 1.65; margin-bottom: 12px;
}
.rail-about-link { font-size: 11.5px; font-weight: 700; color: var(--primary-500); transition: color 0.15s; }
.rail-about-link:hover { color: var(--primary-800); }

.ad_code {
  background: rgba(200,16,46,0.04); border: 1px dashed var(--gray-300);
  border-radius: 3px; min-height: 90px;
  display: flex; align-items: center; justify-content: center;
  margin: 20px 0; color: var(--gray-400); font-size: 9.5px;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.ad_code::after { content: attr(id); }
#ad_rail_1 { min-height: 250px; }

/* ── NEWSLETTER ── */
.nl-strip { margin-top: 40px; background: var(--ink); padding: 36px 24px; }
.nl-strip-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.nl-left { flex: 1; min-width: 200px; }
.nl-eyebrow {
  font-size: 9.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: rgba(255,255,255,0.35); margin-bottom: 8px;
}
.nl-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px; font-weight: 700; color: #fff; line-height: 1.2;
}
.nl-sub {
  font-family: 'Lora', Georgia, serif; font-style: italic;
  font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 6px;
}
.nl-form {
  display: flex; border: 1px solid rgba(255,255,255,0.18);
  border-radius: 3px; overflow: hidden;
}
.nl-form input[type="email"] {
  padding: 11px 16px; width: 220px; font-size: 13px;
  border: none; outline: none; font-family: 'Inter', sans-serif;
  background: rgba(255,255,255,0.07); color: #fff;
}
.nl-form input[type="email"]::placeholder { color: rgba(255,255,255,0.28); }
.nl-form input[type="submit"] {
  padding: 11px 18px; font-size: 12.5px; font-weight: 700;
  background: var(--primary-500); color: #fff; border: none;
  cursor: pointer; font-family: 'Inter', sans-serif; transition: background 0.15s;
}
.nl-form input[type="submit"]:hover { background: var(--primary-800); }

/* ── SECTION DIVIDER STRIP ── */
.sec-divider { background: var(--charcoal); padding: 14px 24px; margin-top: 40px; }
.sec-divider-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.sd-label {
  font-size: 9px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.6px; color: rgba(255,255,255,0.4);
  white-space: nowrap; flex-shrink: 0;
  display: flex; align-items: center; gap: 10px;
}
.sd-label::after { content: ''; width: 1px; height: 12px; background: rgba(255,255,255,0.18); }
.sd-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.sd-tag {
  background: transparent; border: 1px solid rgba(255,255,255,0.18);
  border-radius: 2px; padding: 4px 11px;
  font-size: 11.5px; font-weight: 500; color: rgba(255,255,255,0.75);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.sd-tag:hover { border-color: var(--primary-500); background: var(--primary-500); color: #fff; }

/* ── NEIGHBORHOODS ── */
.neigh-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 0; border-top: 1px solid var(--border);
}
.neigh-featured {
  background: var(--charcoal); color: #fff;
  padding: 28px 28px 24px; display: flex; flex-direction: column;
}
.nf-eye {
  font-size: 9px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.3px; color: rgba(255,255,255,0.35);
  margin-bottom: 12px; display: block;
}
.nf-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px; font-weight: 700; color: #fff;
  line-height: 1.12; letter-spacing: -0.5px;
  margin-bottom: 12px; flex: 1;
}
.nf-desc {
  font-family: 'Lora', Georgia, serif; font-style: italic;
  font-size: 13px; color: rgba(255,255,255,0.45);
  line-height: 1.65; margin-bottom: 20px;
}
.nf-link {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.8px; color: rgba(255,255,255,0.55); transition: color 0.15s;
}
.nf-link:hover { color: #fff; }
.neigh-col { border-left: 1px solid var(--border); }
.neigh-col-head {
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  display: flex; align-items: baseline; justify-content: space-between;
}
.neigh-col-head h3 {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--gray-600);
}
.neigh-col-count { font-size: 10px; color: var(--gray-400); }
.neigh-list { list-style: none; }
.neigh-list li { border-bottom: 1px solid var(--border); }
.neigh-list li:last-child { border-bottom: none; }
.neigh-list a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px; font-size: 12.5px; font-weight: 500; color: var(--text-muted);
  transition: color 0.15s, background 0.15s;
}
.neigh-list a:hover { color: var(--primary-500); background: rgba(200,16,46,0.02); }
.neigh-list a::after { content: '›'; color: var(--gray-400); font-size: 14px; opacity: 0; transition: opacity 0.15s; }
.neigh-list a:hover::after { opacity: 1; color: var(--primary-500); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--surface-100); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 28px 24px; margin-top: 40px;
}
.stats-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 0;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  flex: 1; padding: 0 24px; text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px; font-weight: 700; color: var(--primary-500);
  letter-spacing: -1px; line-height: 1; margin-bottom: 5px;
}
.stat-label {
  font-size: 10.5px; font-weight: 600; color: var(--gray-400);
  text-transform: uppercase; letter-spacing: 1px;
}
.stat-div { width: 1px; height: 40px; background: var(--gray-300); flex-shrink: 0; }

/* ── TILES ── */
.tile-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tile {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--surface-100); border: 1px solid var(--border);
  padding: 8px 14px; border-radius: 3px;
  font-size: 12.5px; font-weight: 500; color: var(--text-muted);
  transition: border-color 0.15s, color 0.15s;
}
.tile:hover { border-color: var(--primary-500); color: var(--primary-500); }
.tile::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--gray-300); flex-shrink: 0; transition: background 0.15s;
}
.tile:hover::before { background: var(--primary-500); }

/* ── FOOTER ── */
.site-footer {
  background: var(--ink); margin-top: 60px;
  padding: 72px 24px 0; text-align: center;
}
.footer-logo-wrap {
  max-width: 1200px; margin: 0 auto 48px;
  display: flex; justify-content: center; align-items: center;
}
.footer-logo { height: 64px; width: auto; opacity: 0.92; }
.footer-nav {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.09);
  border-bottom: 1px solid rgba(255,255,255,0.09);
  padding: 20px 0;
}
.footer-nav a {
  font-size: 11px; font-weight: 700; letter-spacing: 1.6px;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  padding: 6px 20px; white-space: nowrap; transition: color 0.15s;
}
.footer-nav a:hover { color: #fff; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 20px 0 28px;
  display: flex; justify-content: center; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.footer-copy { font-size: 11.5px; color: rgba(255,255,255,0.2); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 11.5px; color: rgba(255,255,255,0.25); transition: color 0.15s; }
.footer-links a:hover { color: rgba(255,255,255,0.65); }
.site-disclaimer {
  font-size: 11px; color: rgba(255,255,255,0.2);
  padding: 12px 0 28px; max-width: 1200px; margin: 0 auto;
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-3col { grid-template-columns: 1fr 2fr; }
  .hero-sb-right { display: none; }
  .content-layout { gap: 32px; }
  .rail-col { width: 220px; }
  .footer-nav a { padding: 6px 14px; }
}

@media (max-width: 767px) {
  .top-bar { display: none; }
  .header-inner { height: 52px; padding: 0 16px; gap: 12px; }
  .header-logo-img { height: 28px; }
  .header-nav { justify-content: flex-start; }
  .header-nav a { padding: 4px 8px; font-size: 12px; }
  .sec-head { justify-content: space-between; flex-wrap: nowrap; margin-bottom: 16px; }
  .sec-head h2 { font-size: 26px; letter-spacing: -0.5px; white-space: normal; margin-right: 12px; }
  .sec-head-rule { display: none; }
  .sec-head-btn { padding: 8px 12px; font-size: 10px; letter-spacing: 0.8px; }
  .hero-3col { grid-template-columns: 1fr; padding: 0 16px; }
  .hero-sb-left { border-right: none; padding-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
  .hero-sb-right { display: none; }
  .hero-center { padding: 20px 0; }
  .hero-center-title { font-size: 26px; letter-spacing: -0.4px; }
  .more-strip { display: none; }
  .content-layout { flex-direction: column; padding: 0 16px; }
  .content-wide { padding: 0 16px; }
  .content-section { padding-top: 28px; }
  .sec-grid-text { grid-template-columns: 1fr; }
  .sg-feat { padding: 16px 0; border-right: none; border-bottom: 1px solid var(--border); }
  .sg-feat-title { font-size: 22px; }
  .sg-stack { border-right: none; flex-direction: column; }
  .sg-item { padding: 14px 0; }
  .sec-grid-visual,
  .sec-grid-visual.hero-left { grid-template-columns: 1fr; }
  .sgv-col { padding: 0; border-right: none; }
  .sgv-col + .sgv-col { padding: 0; border-left: none; }
  .sgv-card { padding: 14px 0; }
  .sgv-card-title { font-size: 16px; }
  .sgv-hero { padding: 14px 0; border-left: none; border-right: none; border-top: 1px solid var(--border); }
  .sec-grid-visual.hero-left .sgv-hero { border-right: none; border-top: none; padding: 16px 0; }
  .sec-grid-visual.hero-left .sgv-col { border-right: none; border-left: none; padding: 0; }
  .sec-grid-visual.hero-left .sgv-col + .sgv-col { padding: 0; }
  .sgv-hero-title { font-size: 24px; letter-spacing: -0.3px; }
  .sec-pair-wrap { grid-template-columns: 1fr; }
  .sec-pair-col { padding-right: 0; }
  .sec-pair-col + .sec-pair-col { padding-left: 0; border-left: none; border-top: 1px solid var(--border); padding-top: 28px; margin-top: 8px; }
  .sp-feat { grid-template-columns: 1fr; }
  .sp-feat-img { display: none; }
  .sp-feat-title { font-size: 18px; }
  .sp-row { grid-template-columns: 1fr 1fr; }
  .sp-item { padding: 10px 8px 10px 0; }
  .sp-item + .sp-item { padding-left: 8px; }
  .neigh-grid { grid-template-columns: 1fr; }
  .neigh-col { border-left: none; border-top: 1px solid var(--border); }
  .nl-strip-inner { flex-direction: column; gap: 20px; }
  .nl-form { width: 100%; }
  .nl-form input[type="email"] { flex: 1; width: auto; min-width: 0; }
  .site-footer { padding: 48px 16px 0; }
  .footer-logo { height: 44px; }
  .footer-logo-wrap { margin-bottom: 32px; }
  .footer-nav { padding: 16px 0; }
  .footer-nav a { padding: 5px 12px; font-size: 10px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* LAYOUT RESET */
.home .container.main {
  width: 100%;
  max-width: 100%;
  padding: 0;
}
.container.layout {
  max-width: 100%;
  padding: 0;
}
.container.layout .row.layout {
  margin: 0;
}
.container.layout .row.layout > .cols {
  overflow-x: hidden;
}
.home .container.layout .row.layout > .cols {
  padding: 0;
}
.pages .main-wrapper .container.main {
  padding: 24px 16px;
}

/* FONTS RESET */
.main-paragraph h1,
.main-paragraph h2 {
  font-weight: 700;
  color: var(--text);
}
.main-paragraph h1,
.main-paragraph h2,
.main-paragraph h3,
.main-paragraph p,
.main-paragraph strong {
  color: var(--text);
}
.main-paragraph h1 { font-size: 36px; line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 18px; }
.main-paragraph h2 { font-size: 30px; line-height: 1.2; letter-spacing: -0.01em; margin: 40px 0 18px; }
.main-paragraph h3 { font-size: 22px; line-height: 1.3; font-weight: 600; margin: 24px 0 10px; }
.main-paragraph p { font-size: 17px; line-height: 1.7; margin: 0 0 16px; }
.main-paragraph strong { font-weight: 700; }

@media (max-width: 768px) {
  .main-paragraph h1 { font-size: 30px; margin-bottom: 16px; }
  .main-paragraph h2 { font-size: 25px; margin: 32px 0 16px; }
  .main-paragraph h3 { font-size: 20px; margin: 22px 0 8px; }
  .main-paragraph p { font-size: 16px; line-height: 1.65; margin-bottom: 14px; }
}

/* TABLE RESET */
table { margin: 32px 0; }
table th, table td { border-color: var(--border) !important; padding: 8px 16px !important; }
table td { color: var(--text) !important; }
table th {
  background: var(--primary-500) !important;
  color: var(--white) !important;
  font-size: 13px !important;
  font-weight: bold !important;
}
table tbody tr:nth-child(even) td { background: var(--surface-100) !important; }
@media (max-width: 992px) {
  table { display: block !important; overflow-x: auto !important; border: 0 !important; }
}

/* CONTACT US FORM */
#contact-form { margin: 45px auto 0; max-width: 500px; }
#contact-form input,
#contact-form textarea {
  flex: 1; border: 2px solid var(--gray-300); border-radius: 6px;
  outline: 0; padding: 14px 18px; font-size: 14px; color: var(--text); min-width: 100%;
}
#contact-form input:active,
#contact-form input:focus,
#contact-form textarea:active,
#contact-form textarea:focus { border: 2px solid var(--primary-500); }
#contact-form input::placeholder,
#contact-form textarea::placeholder { color: var(--gray-600); }
#contact-form button {
  background: var(--primary-500); border: none; border-radius: 10px;
  cursor: pointer; padding: 16px; color: #fff; font-size: 13px; font-weight: 900;
  letter-spacing: 0.06em; text-transform: uppercase; transition: background 0.2s;
  white-space: nowrap; width: 100%;
}
#contact-form button:hover { background: var(--accent-500); }

/* ═══════════════════════════════════
           WIDGETS
═══════════════════════════════════ */
.item-current-image img { box-shadow: none !important; border-radius: 4px !important; border-color: var(--gray-300) !important; }
.item-sublist a { width: 100%; height: 100%; }
.item.item-bubbles { margin-bottom: 32px; }
.item-bubbles .row { margin: 0; }
.bubbles-chip {
  align-items: center; background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; color: var(--text); display: flex; font-weight: 500;
  height: 100%; padding: 16px 48px 16px 24px; position: relative;
  transition: padding 0.2s ease-in-out;
}
.bubbles-chip:hover { color: var(--ink); background: var(--surface-100); border-color: var(--primary-100); padding-left: 20px; }
.bubbles-chip:active,
.bubbles-chip:focus { background: var(--accent-500); color: var(--white); }
.bubbles-link { display: block; width: 100%; max-width: 100%; text-decoration: none; }
.bubbles-link .bubbles-outer { height: 100%; padding: 5px; max-width: 100%; }
.sibling.link-button .bubbles-link .bubbles-outer,
.sibling.link-button .bubbles-chip { height: auto; }
.col-gap:has(> .item-bubbles)::before { display: none !important; }
.bubbles-chip::after {
  content: url("data:image/svg+xml,%3Csvg width='13' height='12' viewBox='0 0 13 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.87771 7.01782H1.02042C0.737361 7.01782 0.496528 6.91886 0.297917 6.72094C0.0993056 6.52317 0 6.2833 0 6.00136C0 5.71942 0.0993056 5.4781 0.297917 5.2774C0.496528 5.07657 0.737361 4.97615 1.02042 4.97615H8.87771L5.66583 1.76428C5.46111 1.55955 5.35681 1.31719 5.35292 1.03719C5.34889 0.757332 5.45076 0.510249 5.65854 0.295943C5.86632 0.0948319 6.11014 -0.00377823 6.39 0.000110661C6.66986 0.00399955 6.91236 0.108583 7.1175 0.313861L12.0713 5.27407C12.1699 5.37282 12.2464 5.4856 12.3008 5.6124C12.3551 5.73935 12.3823 5.86865 12.3823 6.00032C12.3823 6.13199 12.3551 6.26122 12.3008 6.38803C12.2464 6.51497 12.1727 6.62497 12.0798 6.71803L7.10958 11.688C6.89403 11.9037 6.65368 12.0081 6.38854 12.0012C6.12354 11.9942 5.88715 11.8862 5.67938 11.6772C5.4716 11.4629 5.36771 11.2166 5.36771 10.9382C5.36771 10.6599 5.4716 10.4192 5.67938 10.2162L8.87771 7.01782Z' fill='%23C8102E'/%3E%3C/svg%3E%0A");
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%); transition: 0.2s ease-in-out;
}
.bubbles-chip:hover::after { right: 10px; }
.item-sublist:has(.sublist.card) .row > div { padding: 5px !important; }
.sublist.card { border: none; border-radius: 6px; box-shadow: var(--box-shadow-md); transition: 0.2s ease-in; }
.sublist.card:hover { box-shadow: var(--box-shadow-lg); color: var(--primary-500); transform: translateY(-4px); }
.sublist.card h5 { margin-bottom: 0; font-weight: 500; }
.sublist.card .card-body { padding: 16px; }

@media (max-width: 767.98px) {
  .row div:has(> .sublist.card) { padding: 0 !important; }
  .row:has(> div .sublist.card) { margin: 0; gap: 10px; }
  .sublist.card { display: flex; flex-direction: row; align-items: center; }
  .sublist.card .card-img-top {
    border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
    width: 120px; height: 100%; object-fit: cover; flex-shrink: 0;
  }
  .sublist.card .card-body { flex: 1; padding: 1rem; }
  .sublist.card .card-body * {
    line-clamp: 2; display: -webkit-box;
    -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden;
  }
  .sublist.card .card-body h5 { font-size: 16px; }
}
