
/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary-500: #B5291F;
  --primary-800: #1A1A1A;
  --primary-700: #8C1F16;
  --primary-100: #F5CCC9;
  --accent-400:  #D4841E;
  --accent-500:  #5C3018;
  --text:        #1C1C1E;
  --text-muted:  #6c757d;
  --text-md:     #3D3D3D;
  --text-sm:     #666666;
  --text-xs:     #999999;
  --border:      #E5E5E5;
  --white:       #FFFFFF;
  --surface-100: #F6F3EF;
  --gray-300:    #dee2e6;
  --gray-600:    #6c757d;
  --background:  #F6F3EF;
  --display:     'Manrope', sans-serif;
  --body:        'Inter', sans-serif;
  --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);
}

/* ============================================================
   RESET & BASE — iOS Safari: NEVER overflow-x on html/body
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { width: 100%; background: #F4F4F4; }
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  background: var(--white);
  color: var(--text);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
}
.pg-wrap { width: 100%; max-width: 100%; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-1 { animation: fadeUp 0.72s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both; }
.fade-2 { animation: fadeUp 0.72s cubic-bezier(0.16, 1, 0.3, 1) 0.16s both; }
.fade-3 { animation: fadeUp 0.72s cubic-bezier(0.16, 1, 0.3, 1) 0.27s both; }
.fade-4 { animation: fadeUp 0.72s cubic-bezier(0.16, 1, 0.3, 1) 0.38s both; }
.fade-5 { animation: fadeUp 0.72s cubic-bezier(0.16, 1, 0.3, 1) 0.49s both; }

/* ============================================================
   LOGO (Lasso standard)
   ============================================================ */
.logo {
  max-width: 120px;
}
.logo a {
  display: flex;
}

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  height: 62px;
}
/* Crimson masthead stripe at top */
.site-nav::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-500) 0%, var(--accent-400) 100%);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-logo {
  flex-shrink: 0;
  margin-right: 28px;
}
.nav-cats {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-cats::-webkit-scrollbar { display: none; }
.nav-cats a {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sm);
  padding: 6px 12px;
  border-radius: 5px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-cats a:hover {
  background: #FDECEA;
  color: var(--primary-500);
}
.nav-cta {
  flex-shrink: 0;
  margin-left: 14px;
  background: var(--primary-500);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 5px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s, transform 0.12s;
}
.nav-cta:hover { background: var(--primary-800); transform: translateY(-1px); }

/* Hamburger — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 9px;
  margin-left: auto;
  flex-shrink: 0;
  background: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
}
.nav-hamburger:hover { background: #f4f4f4; }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  pointer-events: none;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
/* X animation when open */
.site-nav.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
.site-nav.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background:
    radial-gradient(ellipse 55% 55% at 78% 38%, rgba(212,132,30,0.28), transparent),
    radial-gradient(ellipse 40% 70% at 15% 85%, rgba(181,41,31,0.4), transparent),
    linear-gradient(145deg, #1A1A1A 0%, #B5291F 100%);
  padding: 68px 24px 60px;
  position: relative;
  overflow: hidden;
}
/* Dot grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,220,150,0.07) 1px, transparent 0);
  background-size: 28px 28px;
  z-index: 0;
}
/* Fade edge at bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(244,244,244,0.06));
  z-index: 0;
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}
.hero-badge::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent-400);
  flex-shrink: 0;
}
.hero-h1 {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1.0;
  margin-bottom: 20px;
}
.hero-sub {
  font-family: var(--body);
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.68;
  max-width: 420px;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-cta-primary {
  background: #fff;
  color: var(--primary-500);
  font-family: var(--body);
  font-weight: 600;
  font-size: 13.5px;
  padding: 11px 24px;
  border-radius: 5px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.hero-cta-primary:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  transform: translateY(-1px);
}
.hero-cta-secondary {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.9);
  font-family: var(--body);
  font-weight: 500;
  font-size: 13.5px;
  padding: 11px 24px;
  border-radius: 5px;
  transition: background 0.15s, transform 0.15s;
}
.hero-cta-secondary:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}

/* ============================================================
   HERO PANEL — glass editorial block
   ============================================================ */
.hero-panel {
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 16px;
  padding: 28px 28px 24px;
  position: relative;
}
.hp-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-400);
  margin-bottom: 14px;
}
.hp-tag::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--accent-400);
  flex-shrink: 0;
}
.hp-feat-title {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
  transition: color 0.15s;
}
.hp-feat-title:hover { color: var(--accent-400); }
.hp-feat-desc {
  font-family: var(--body);
  font-size: 13px;
  color: rgba(255,255,255,0.52);
  line-height: 1.62;
  margin-bottom: 18px;
}
.hp-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--primary-500);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 4px;
  transition: box-shadow 0.15s, transform 0.12s;
}
.hp-cta:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.22); transform: translateY(-1px); }
.hp-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 22px 0 16px;
}
.hp-label {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.28);
  margin-bottom: 4px;
}
.hp-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  margin: 0 -10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  transition: background 0.15s, transform 0.13s;
}
.hp-link:last-child { border-bottom: none; }
.hp-link:hover {
  background: rgba(255,255,255,0.09);
  transform: translateX(4px);
}
.hp-link-icon { font-size: 14px; flex-shrink: 0; }
.hp-link-title {
  flex: 1;
  font-family: var(--body);
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 1.35;
  transition: color 0.13s;
}
.hp-link:hover .hp-link-title { color: #fff; }
.hp-link-arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.38);
  transition: color 0.13s, transform 0.15s;
}
.hp-link:hover .hp-link-arrow { color: var(--accent-400); transform: translateX(3px); }

/* ============================================================
   TOPIC PILLS
   ============================================================ */
.topic-pills {
  max-width: 1100px;
  margin: 44px auto 0;
  position: relative;
  z-index: 1;
}
.pills-label {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.pills-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  padding: 6px 13px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  white-space: nowrap;
  transition: all 0.18s;
}
.pill:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.42);
  color: #fff;
  transform: translateY(-1px);
}

/* ============================================================
   SHARED LAYOUT
   ============================================================ */
.section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
}
.section-eyebrow {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-500);
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.section-eyebrow svg { flex-shrink: 0; }
.section-h2 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.view-all {
  font-family: var(--body);
  font-size: 12px;
  color: var(--primary-500);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 16px;
  padding: 5px 12px;
  border: 1px solid rgba(181,41,31,0.28);
  border-radius: 4px;
  transition: background 0.15s, border-color 0.15s, transform 0.12s;
}
.view-all:hover {
  background: rgba(181,41,31,0.06);
  border-color: rgba(181,41,31,0.55);
  transform: translateY(-1px);
}

/* Section spacing */
.featured-section  { padding-top: 56px; }
.article-section   { border-top: 1px solid var(--border); margin-top: 56px; padding-top: 56px; }
.popular-section   { border-top: 1px solid var(--border); margin-top: 56px; padding-top: 56px; }
.cat-pair-section  { border-top: 1px solid var(--border); margin-top: 56px; padding-top: 56px; }
.tiles-section     { border-top: 1px solid var(--border); margin-top: 56px; padding-top: 56px; }


/* ============================================================
   FEATURED GRID
   ============================================================ */
.feat-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}
.feat-main {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.22s, transform 0.18s;
  display: block;
}
.feat-main:hover {
  box-shadow: 0 8px 36px rgba(181,41,31,0.1);
  transform: translateY(-2px);
}
/* Main feature card — editorial cover style */
.feat-label-block {
  min-height: 176px;
  background:
    radial-gradient(circle at 1px 1px, rgba(255,215,80,0.12) 1px, transparent 0),
    linear-gradient(145deg, #8C1F16 0%, var(--primary-500) 55%, #6B1C10 100%);
  background-size: 20px 20px, auto;
  display: flex;
  align-items: flex-end;
  padding: 22px 26px 26px;
  position: relative;
  overflow: hidden;
}
/* Subtle radial light in top-right corner */
.feat-label-block::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(212,132,30,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.feat-label-inner { display: block; position: relative; z-index: 1; }
.feat-bg-svg {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.11;
  pointer-events: none;
  flex-shrink: 0;
}
.feat-label-eyebrow {
  display: block;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  margin-bottom: 10px;
}
.feat-label-h3 {
  display: block;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  line-height: 1.16;
  letter-spacing: -0.5px;
  transition: color 0.18s;
}
.feat-main:hover .feat-label-h3 { color: rgba(255,255,255,0.82); }
.feat-body { display: block; padding: 20px 26px 24px; }
.card-eyebrow {
  display: block;
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--primary-500);
  margin-bottom: 9px;
}
.feat-excerpt {
  display: block;
  font-family: var(--body);
  font-size: 13.5px;
  color: var(--text-sm);
  line-height: 1.68;
  margin-bottom: 20px;
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--body);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary-500);
  transition: transform 0.14s;
}
.feat-main:hover .read-more { transform: translateX(3px); }

/* Right stack */
.feat-stack { display: flex; flex-direction: column; gap: 14px; }
.stack-card {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  padding: 18px 20px;
  flex: 1;
  display: block;
  transition: box-shadow 0.2s, transform 0.15s, border-left-color 0.15s;
}
.stack-card:hover {
  box-shadow: 0 8px 30px rgba(181,41,31,0.13);
  transform: translateY(-2px);
  border-left-color: var(--primary-500);
}
.stack-h3 {
  display: block;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.stack-card:hover .stack-h3 { color: var(--primary-500); }
.stack-view {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--body);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--primary-500);
}

/* ============================================================
   POPULAR GUIDES — grid 4 columnas
   ============================================================ */
.popular-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pop-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.pop-card:hover {
  border-color: rgba(181,41,31,0.35);
  box-shadow: 0 4px 20px rgba(181,41,31,0.08);
  transform: translateY(-2px);
}
.pop-tag {
  display: inline-block;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-500);
  background: rgba(181,41,31,0.07);
  padding: 3px 8px;
  border-radius: 3px;
  align-self: flex-start;
}
.pop-title {
  display: block;
  font-family: var(--display);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.42;
  flex: 1;
  transition: color 0.13s;
}
.pop-card:hover .pop-title { color: var(--primary-500); }
.pop-arrow {
  width: 14px;
  height: 14px;
  color: var(--text-xs);
  flex-shrink: 0;
  transition: color 0.13s, transform 0.15s;
}
.pop-card:hover .pop-arrow { color: var(--primary-500); transform: translateX(3px); }

/* ============================================================
   ARTICLE LIST — 2-column card grid
   ============================================================ */
.article-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.article-row {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 22px 18px;
  transition: box-shadow 0.18s, transform 0.15s, border-color 0.15s;
}
.article-row:first-child { border-top: 1px solid var(--border); }
.article-row:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
  border-color: var(--primary-500);
}
.ar-num { display: none; }
.ar-tag {
  order: -1;
  align-self: flex-start;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-500);
  background: rgba(181,41,31,0.07);
  border-radius: 3px;
  padding: 3px 8px;
  margin-bottom: 10px;
  white-space: nowrap;
  transition: background 0.15s;
}
.article-row:hover .ar-tag { background: rgba(181,41,31,0.12); }
.ar-title {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  flex: 1;
  transition: color 0.15s;
}
.article-row:hover .ar-title { color: var(--primary-500); }
.article-row::after {
  content: 'Read guide →';
  display: block;
  margin-top: 14px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-500);
  opacity: 0.65;
  transition: opacity 0.15s;
}
.article-row:hover::after { opacity: 1; }

/* ============================================================
   CATEGORY PAIR COLUMNS — open typographic layout
   ============================================================ */
.cat-pair-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
}
.cat-col {
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}
.cat-col-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-500);
  margin-bottom: 16px;
}
.cat-col-title {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
}
.cat-col-link {
  font-family: var(--body);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--primary-500);
  white-space: nowrap;
}
.cat-col-link:hover { opacity: 0.65; }
.cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--border);
  margin-bottom: 6px;
  gap: 12px;
  color: var(--text-md);
  transition: box-shadow 0.15s, border-color 0.15s, transform 0.12s;
}
.cat-link:last-child { margin-bottom: 0; }
.cat-link:hover {
  border-color: var(--primary-500);
  box-shadow: 0 3px 14px rgba(181,41,31,0.08);
  transform: translateY(-1px);
}
.cat-link-icon { font-size: 14px; flex-shrink: 0; width: 20px; text-align: center; }
.cat-link-title {
  flex: 1;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-md);
  line-height: 1.35;
  transition: color 0.12s;
}
.cat-link:hover .cat-link-title { color: var(--primary-500); }
.cat-link-arrow {
  font-size: 13px;
  color: var(--text-xs);
  flex-shrink: 0;
  transition: color 0.12s, transform 0.12s;
}
.cat-link:hover .cat-link-arrow { color: var(--primary-500); transform: translateX(3px); }

/* ============================================================
   BROWSE BY CATEGORY
   ============================================================ */
.browse-section {
  border-top: 1px solid var(--border);
  margin-top: 56px;
  padding-top: 56px;
  padding-bottom: 64px;
}
.browse-grid { display: flex; flex-direction: column; gap: 36px; }
.browse-cat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.browse-cat-icon { font-size: 15px; line-height: 1; flex-shrink: 0; }
.browse-cat-name {
  font-family: var(--display);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}
.browse-cat-rule {
  flex: 1;
  height: 1px;
  background: var(--border);
  min-width: 20px;
}
.browse-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  color: var(--primary-500);
  white-space: nowrap;
  transition: gap 0.18s ease;
}
.browse-more:hover { gap: 9px; }
.browse-more-arrow { width: 11px; height: 11px; flex-shrink: 0; }
.browse-articles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.browse-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--white);
  font-family: var(--body);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-md);
  line-height: 1.45;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.13s;
}
.browse-item:hover {
  border-color: var(--primary-500);
  box-shadow: 0 4px 20px rgba(181,41,31,0.09);
  transform: translateY(-2px);
}
.browse-item-text { flex: 1; }
.browse-item-arrow {
  width: 12px;
  height: 12px;
  color: var(--text-xs);
  flex-shrink: 0;
  margin-top: 2px;
  transition: color 0.13s, transform 0.13s;
}
.browse-item:hover .browse-item-arrow {
  color: var(--primary-500);
  transform: translateX(2px);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.hiw-section {
  background: var(--surface-100);
  margin-top: 56px;
  padding: 64px 0 72px;
}
.hiw-kicker {
  font-family: var(--display);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-500);
  margin-bottom: 12px;
}
.hiw-heading {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 44px;
  max-width: 480px;
}
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.hiw-item {
  padding-top: 22px;
  padding-right: 44px;
  border-top: 3px solid var(--primary-500);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hiw-item:not(:first-child) {
  padding-left: 44px;
  border-left: 1px solid var(--border);
}
.hiw-item:last-child { padding-right: 0; }
.hiw-num {
  display: block;
  font-family: var(--display);
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--primary-500);
  margin-bottom: 6px;
}
.hiw-title {
  font-family: var(--display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}
.hiw-desc {
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--text-sm);
}
.hiw-section + .browse-section { border-top: none; margin-top: 0; }

/* ============================================================
   CATEGORY TILES — text-only with left-border accent
   ============================================================ */
.tiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
}
.tile {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  background: var(--surface-100);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: 6px;
  transition: border-left-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.tile:hover {
  border-left-color: var(--primary-500);
  background: #fff;
  box-shadow: 0 3px 14px rgba(181,41,31,0.09);
  transform: translateY(-1px);
}
.tile-icon { font-size: 15px; flex-shrink: 0; }
.tile-name {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-md);
  white-space: nowrap;
  transition: color 0.15s;
}
.tile:hover .tile-name { color: var(--primary-500); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #1A1A1A;
  margin-top: 0;
  padding: 56px 24px 0;
  border-top: 3px solid var(--primary-500);
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 200px;
  background: radial-gradient(ellipse 60% 100% at 30% 0%, rgba(181,41,31,0.12), transparent);
  pointer-events: none;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 48px;
  position: relative;
}
.footer-brand-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}
.footer-tagline {
  font-family: var(--body);
  font-size: 13px;
  color: rgba(255,255,255,0.44);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 360px;
}
.footer-disclaimer {
  font-family: var(--body);
  font-size: 11px;
  color: rgba(255,255,255,0.24);
  line-height: 1.75;
  max-width: 420px;
}
.footer-col-title {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.28);
  margin-bottom: 16px;
}
.footer-links-col { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  display: block;
  font-family: var(--body);
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.56);
  line-height: 1.4;
  transition: color 0.15s;
}
.footer-link:hover { color: rgba(255,255,255,0.92); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: wrap;
  position: relative;
}
.footer-copy {
  font-family: var(--body);
  font-size: 11px;
  color: rgba(255,255,255,0.24);
  flex-shrink: 0;
  line-height: 1.8;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  row-gap: 6px;
}
.footer-legal-links a {
  font-family: var(--body);
  font-size: 11px;
  color: rgba(255,255,255,0.36);
  transition: color 0.15s;
  padding: 0 10px;
  border-right: 1px solid rgba(255,255,255,0.1);
  line-height: 1.6;
}
.footer-legal-links a:first-child { padding-left: 0; }
.footer-legal-links a:last-child { border-right: none; padding-right: 0; }
.footer-legal-links a:hover { color: rgba(255,255,255,0.78); }
.site-disclaimer {
  font-family: var(--body);
  font-size: 11px;
  color: rgba(255,255,255,0.24);
  line-height: 1.75;
  max-width: 420px;
  margin-top: 12px;
}

/* ============================================================
   DIVIDER BAND + ALT-BACKGROUND SECTIONS
   ============================================================ */
.divider-band {
  background:
    radial-gradient(ellipse 50% 120% at 18% 50%, rgba(181,41,31,0.18), transparent),
    var(--primary-800);
  margin-top: 56px;
}
.divider-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.divider-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.divider-stat:last-child { border-right: none; }
.divider-num {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1;
}
.divider-label {
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.section-follows-divider {
  margin-top: 0;
  border-top: none;
  padding-top: 56px;
}
.section-bg-alt {
  background: var(--surface-100);
  padding-bottom: 72px;
}
.section-bg-alt + footer { margin-top: 0; }

/* ============================================================
   SECTION-SPECIFIC ACCENTS — visual differentiation per topic
   ============================================================ */

/* Food / Restaurants: amber accent */
.section-food .section-eyebrow { color: var(--accent-400); }
.section-food .ar-tag {
  color: #A85700;
  background: rgba(212,132,30,0.09);
}
.section-food .article-row:hover .ar-tag { background: rgba(212,132,30,0.16); }
.section-food .article-row:hover { border-color: var(--accent-400); box-shadow: 0 6px 24px rgba(212,132,30,0.1); }
.section-food .article-row:hover .ar-title { color: #A85700; }
.section-food .article-row::after { color: var(--accent-400); }

/* Living / Real-estate + Jobs: amber col-header accent */
.section-living .section-eyebrow { color: var(--accent-400); }
.section-living .cat-col-header { border-bottom-color: var(--accent-400); }
.section-living .cat-col-link { color: var(--accent-400); }
.section-living .cat-link:hover { border-color: var(--accent-400); box-shadow: 0 3px 14px rgba(212,132,30,0.09); }
.section-living .cat-link:hover .cat-link-title { color: #A85700; }
.section-living .cat-link:hover .cat-link-arrow { color: var(--accent-400); }

/* Culture / Heritage: earthy dark accent */
.section-culture .section-eyebrow { color: var(--accent-500); }
.section-culture .cat-col-header { border-bottom-color: var(--accent-500); }
.section-culture .cat-col-link { color: var(--accent-500); }
.section-culture .cat-link:hover { border-color: var(--accent-500); box-shadow: 0 3px 14px rgba(92,48,24,0.1); }
.section-culture .cat-link:hover .cat-link-title { color: var(--accent-500); }
.section-culture .cat-link:hover .cat-link-arrow { color: var(--accent-500); }

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 1023px) {
  .popular-grid { grid-template-columns: repeat(2, 1fr); }
  .browse-articles { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .article-list { grid-template-columns: 1fr; }
  .popular-grid { grid-template-columns: 1fr; }
  .hiw-grid { grid-template-columns: 1fr; gap: 0; }
  .hiw-item { padding: 20px 0 32px; border-top: 3px solid var(--primary-500); border-left: none; }
  .hiw-item:not(:first-child) { padding-left: 0; }
  .hiw-item:last-child { padding-bottom: 0; }
  .hiw-section { padding: 48px 0 56px; }
  .browse-articles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  /* Mobile nav */
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .nav-cats {
    display: none;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 3px solid var(--primary-500);
    box-shadow: 0 8px 28px rgba(0,0,0,0.10);
    padding: 4px 24px 16px;
    overflow-x: visible;
    z-index: 99;
  }
  .nav-cats a {
    padding: 13px 4px;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    white-space: normal;
  }
  .nav-cats a:last-child { border-bottom: none; }
  .site-nav.nav-open .nav-cats { display: flex; }

  .divider-inner { flex-wrap: wrap; gap: 0; }
  .divider-stat { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 12px 0; }
  .divider-stat:nth-child(3), .divider-stat:last-child { border-bottom: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-h1 { font-size: 42px; letter-spacing: -1px; }
  .hero-panel { display: none; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-stack { flex-direction: row; gap: 12px; overflow-x: auto; }
  .stack-card { min-width: 210px; flex-shrink: 0; }
  .cat-pair-grid { grid-template-columns: 1fr; gap: 40px 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
  .footer-brand-col { grid-column: 1 / -1; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; flex-direction: column; align-items: center; text-align: center; }
  .footer-links-col { align-items: center; text-align: center; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 14px; }
  .footer-legal-links { justify-content: center; }
  .section-h2 { font-size: 24px; }
}
@media (max-width: 480px) {
  .hero { padding: 52px 20px 48px; }
  .section-wrap { padding: 0 16px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand-col { grid-column: auto; padding-bottom: 0; border-bottom: none; }
  .footer-links-col { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; }
  .footer-legal-links a { font-size: 10.5px; border-right: none; padding: 0 6px; }
  .footer-legal-links a:first-child { padding-left: 0; }
  .footer-legal-links a:last-child { padding-right: 0; }
  .footer-legal-links { row-gap: 8px; }
  .tiles-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .browse-articles { grid-template-columns: 1fr; }
  .browse-grid { gap: 28px; }
}

/* ============================================================
   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
═══════════════════════════════════ */

/* IMAGE STYLE RESET */
.item-current-image img {
  box-shadow: none !important;
  border-radius: 4px !important;
  border-color: var(--gray-300) !important;
}

/* SUBLIST */
.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(--primary-800);
  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='%23B5291F'/%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;
}

/* SUBLIST CARDS */
.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;
  }
}
