/*
Theme Name: Clara Sousa Advocacia Criminal
Theme URI: https://clsousaadvocaciacriminal.com.br
Author: Clara Sousa Advocacia Criminal
Description: Tema personalizado para o site da Dra. Clara Sousa, advogada criminalista em Belo Horizonte. Desenvolvido sob medida, sem dependência de plugins de construção de página.
Version: 1.0.0
License: Uso exclusivo do cliente (proprietário)
Text Domain: clara-sousa
*/


/* ═══════════════════════════════════════════
   DESIGN SYSTEM — CLARA SOUSA ADVOCACIA CRIMINAL
   Light Mode (default) + Dark Mode
   Paleta extraída do manual de marca real
   ═══════════════════════════════════════════ */

/* ── Light Mode Tokens ── */
:root {
  --bordeaux:       #6B1020;
  --bordeaux-deep:  #520D18;
  --bordeaux-mid:   #7E1525;
  --gold:           #C9A96E;
  --gold-light:     #D4B882;
  --gold-dark:      #A8884A;
  --cream:          #EDE5D8;
  --cream-light:    #F5F0E8;
  --cream-dark:     #D8CCBB;

  /* Semantic tokens — Light */
  --bg-primary:     #F5F0E8;
  --bg-secondary:   #EDE5D8;
  --bg-tertiary:    #FFFFFF;
  --bg-inverse:     #520D18;
  --bg-inverse-mid: #6B1020;
  --text-primary:   #1A0A0D;
  --text-secondary: #4A3035;
  --text-muted:     #7A6065;
  --text-inverse:   #F5F0E8;
  --border-light:   #D8CCBB;
  --border-medium:  #C4B5A0;
  --shadow-sm:      0 1px 4px rgba(107,16,32,0.06);
  --shadow-md:      0 4px 20px rgba(107,16,32,0.08);
  --shadow-lg:      0 8px 40px rgba(107,16,32,0.12);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --max-w: 1200px;
  --section-pad: 100px 24px;
  --section-pad-sm: 64px 24px;

  /* Transition */
  --transition: 0.3s ease;
}

/* ── Dark Mode Tokens ── */
[data-theme="dark"] {
  --bg-primary:     #110608;
  --bg-secondary:   #1A0B0E;
  --bg-tertiary:    #221014;
  --bg-inverse:     #2C1519;
  --bg-inverse-mid: #3A1C22;
  --text-primary:   #EDE5D8;
  --text-secondary: #C8BAB0;
  --text-muted:     #8A7870;
  --text-inverse:   #EDE5D8;
  --border-light:   #3A2028;
  --border-medium:  #4A2830;
  --shadow-sm:      0 1px 4px rgba(0,0,0,0.3);
  --shadow-md:      0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg:      0 8px 40px rgba(0,0,0,0.5);
  --gold:           #C9A96E;
  --gold-light:     #D4B882;
  --gold-dark:      #A8884A;
  --bordeaux:       #8B2030;
  --bordeaux-deep:  #6B1020;
  --bordeaux-mid:   #9B2535;
  --cream:          #2A1418;
  --cream-light:    #1A0B0E;
  --cream-dark:     #3A1C22;
}

/* ── OS-level preference ── */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg-primary:     #110608;
    --bg-secondary:   #1A0B0E;
    --bg-tertiary:    #221014;
    --bg-inverse:     #2C1519;
    --bg-inverse-mid: #3A1C22;
    --text-primary:   #EDE5D8;
    --text-secondary: #C8BAB0;
    --text-muted:     #8A7870;
    --text-inverse:   #EDE5D8;
    --border-light:   #3A2028;
    --border-medium:  #4A2830;
    --shadow-sm:      0 1px 4px rgba(0,0,0,0.3);
    --shadow-md:      0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg:      0 8px 40px rgba(0,0,0,0.5);
    --bordeaux:       #8B2030;
    --bordeaux-deep:  #6B1020;
    --bordeaux-mid:   #9B2535;
    --cream:          #2A1418;
    --cream-light:    #1A0B0E;
    --cream-dark:     #3A1C22;
  }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background var(--transition), color var(--transition);
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--gold-light); }
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--bordeaux);
  margin-bottom: 18px;
}
[data-theme="dark"] .section-title { color: var(--gold-light); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .section-title { color: var(--gold-light); }
}
.section-title-light { color: var(--text-inverse); }
.section-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.75;
}
.section-sub-light { color: rgba(237,229,216,0.8); }

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 0;
  min-height: 48px;
}
.btn-primary {
  background: var(--bordeaux);
  color: var(--gold-light);
  border: 1px solid var(--bordeaux);
}
.btn-primary:hover { background: var(--bordeaux-deep); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--text-inverse);
  border: 1px solid rgba(201,169,110,0.5);
}
.btn-outline:hover { background: rgba(201,169,110,0.1); border-color: var(--gold); color: var(--gold-light); }
.btn-gold {
  background: var(--gold);
  color: var(--bordeaux-deep);
  border: 1px solid var(--gold);
  font-weight: 700;
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* ── Divider ── */
.divider { width: 48px; height: 1px; background: var(--gold); margin: 20px 0; }
.divider-center { margin: 20px auto; }
.divider-light { background: rgba(201,169,110,0.4); }

/* ── Section Header (padronizado — substitui inline styles avulsos) ── */
.section-header-center {
  text-align: center;
  margin-bottom: 52px;
}
.section-header-center .section-sub { margin: 0 auto; }
.u-mb-0 { margin-bottom: 0; }
.u-mt-md { margin-top: 32px; }
.u-mt-lg { margin-top: 52px; }
.u-mb-lg { margin-bottom: 52px; }
.u-text-center { text-align: center; }

/* ── Dark Mode Toggle Button ── */
#theme-toggle {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 998;
  width: 44px;
  height: 44px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-medium);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  color: var(--text-secondary);
}
#theme-toggle:hover { border-color: var(--gold); color: var(--gold-dark); }
#theme-toggle svg { width: 18px; height: 18px; }
.icon-sun { display: none; }
.icon-moon { display: block; }
[data-theme="dark"] .icon-sun { display: block; }
[data-theme="dark"] .icon-moon { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .icon-sun { display: block; }
  :root:not([data-theme="light"]) .icon-moon { display: none; }
}

/* ════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.4s ease;
  background: transparent;
}
#navbar.scrolled {
  background: var(--bg-primary);
  box-shadow: 0 1px 0 var(--border-light);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}
.nav-logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(245,240,232,0.95);
  letter-spacing: 0.04em;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: color var(--transition);
  white-space: nowrap;
}
#navbar.scrolled .nav-logo-name { color: var(--bordeaux); }
#navbar.scrolled .nav-logo-sub { color: var(--gold-dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(237,229,216,0.82);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--gold-light); }
#navbar.scrolled .nav-links a { color: var(--text-secondary); }
#navbar.scrolled .nav-links a:hover { color: var(--bordeaux); }
.nav-links a.nav-active { color: var(--gold-light); }
.nav-links a.nav-active::after { transform: scaleX(1); }
#navbar.scrolled .nav-links a.nav-active { color: var(--bordeaux); }

.nav-cta {
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--bordeaux);
  color: var(--gold-light);
  text-decoration: none;
  border: 1px solid var(--bordeaux-mid);
  transition: all var(--transition);
  white-space: nowrap;
  min-height: 40px;
  display: flex;
  align-items: center;
}
.nav-cta:hover { background: var(--bordeaux-deep); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
.hamburger span {
  width: 22px;
  height: 1.5px;
  background: rgba(237,229,216,0.9);
  transition: all var(--transition);
  display: block;
}
#navbar.scrolled .hamburger span { background: var(--bordeaux); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--bg-primary);
  padding: 16px 20px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  border-top: 1px solid var(--border-light);
  max-height: calc(100vh - 68px);
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu li { border-bottom: 1px solid var(--border-light); }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bordeaux);
  text-decoration: none;
  min-height: 48px;
  display: flex;
  align-items: center;
}
[data-theme="dark"] .mobile-menu a,
[data-theme="dark"] #navbar.scrolled .nav-links a { color: var(--gold-light); }
.mobile-menu .mob-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 14px 24px;
  background: var(--bordeaux);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  min-height: 48px;
}

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bordeaux-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 65% 50%, rgba(107,16,32,0.5) 0%, transparent 60%),
    linear-gradient(135deg, #520D18 0%, #6B1020 40%, #7E1525 100%);
}
.hero-watermark {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  width: 52%;
  opacity: 0.05;
  pointer-events: none;
}
.hero-watermark img { width: 100%; height: auto; }
.hero-photo-wrap {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 44%;
  overflow: hidden;
}
.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(10%) contrast(1.04);
  mask-image:
    linear-gradient(to right, transparent 0%, rgba(0,0,0,0.15) 10%, black 32%),
    linear-gradient(to top, transparent 0%, black 8%);
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, rgba(0,0,0,0.15) 10%, black 32%),
    linear-gradient(to top, transparent 0%, black 8%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}
.hero-inner { max-width: 560px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  border: 1px solid rgba(201,169,110,0.3);
  margin-bottom: 32px;
}
.hero-badge span {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero-badge::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: rgba(245,240,232,0.97);
  line-height: 1.08;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.hero-h1 em {
  font-style: normal;
  color: var(--gold-light);
  font-weight: 400;
}
.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 300;
  font-style: normal;
  color: rgba(237,229,216,0.65);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}
.hero-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(237,229,216,0.72);
  margin-bottom: 40px;
  max-width: 460px;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 48px;
}
.hero-oab {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(201,169,110,0.18);
}
.hero-oab-item { display: flex; flex-direction: column; }
.hero-oab-label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.65);
}
.hero-oab-value {
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(245,240,232,0.9);
  font-weight: 400;
}
.hero-sep { width: 1px; height: 28px; background: rgba(201,169,110,0.18); }

/* ════════════════════════════════════════
   CREDIBILITY STRIP
   ════════════════════════════════════════ */
#strip {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 28px 24px;
}
.strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.strip-item { display: flex; align-items: center; gap: 12px; }
.strip-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bordeaux);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.strip-icon svg { width: 16px; height: 16px; fill: var(--gold-light); }
.strip-text { display: flex; flex-direction: column; }
.strip-num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--bordeaux);
  line-height: 1;
}
[data-theme="dark"] .strip-num { color: var(--gold-light); }
.strip-label {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════════
   SOBRE
   ════════════════════════════════════════ */
#sobre { background: var(--bg-primary); }
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.sobre-img-frame {
  position: relative;
  padding-bottom: 118%;
  overflow: hidden;
  background: var(--bg-secondary);
}
.sobre-img-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.sobre-img-accent {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 100px; height: 100px;
  border: 1px solid var(--gold);
  z-index: -1;
}
.sobre-quote {
  position: absolute;
  bottom: 20px; left: -20px;
  background: var(--bordeaux);
  padding: 18px 20px;
  max-width: 240px;
}
.sobre-quote p {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: normal;
  color: var(--gold-light);
  line-height: 1.5;
}
.sobre-img-wrap { position: relative; }
.sobre-content p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 18px;
}
.sobre-content p strong { color: var(--text-primary); }
.sobre-credentials {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border-left: 2px solid var(--gold);
}
.cred-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
}
.cred-text { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5; }
.cred-text strong { color: var(--text-primary); font-weight: 600; }

/* ════════════════════════════════════════
   AREAS DE ATUACAO
   ════════════════════════════════════════ */
#areas { background: var(--bg-inverse); }
[data-theme="dark"] #areas { background: var(--bg-secondary); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,169,110,0.12);
}
.area-card {
  background: var(--bg-inverse);
  padding: 32px 26px;
  text-decoration: none;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
  display: block;
}
[data-theme="dark"] .area-card { background: var(--bg-secondary); }
.area-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.area-card:hover { background: var(--bg-inverse-mid); }
[data-theme="dark"] .area-card:hover { background: var(--bg-tertiary); }
.area-card:hover::before { transform: scaleX(1); }
.area-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: rgba(201,169,110,0.18);
  line-height: 1;
  margin-bottom: 10px;
}
.area-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: rgba(245,240,232,0.95);
  margin-bottom: 10px;
  font-weight: 400;
}
.area-desc {
  font-size: 0.83rem;
  line-height: 1.65;
  color: rgba(237,229,216,0.58);
}
.area-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap var(--transition);
}
.area-card:hover .area-link { gap: 10px; }

/* ════════════════════════════════════════
   DIFERENCIAIS
   ════════════════════════════════════════ */
#diferenciais { background: var(--bg-primary); }
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.dif-card {
  padding: 32px 28px;
  border: 1px solid var(--border-light);
  background: var(--bg-tertiary);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] .dif-card { background: var(--bg-secondary); border-color: var(--border-medium); }
.dif-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--bordeaux);
  transform: scaleY(0);
  transition: transform 0.4s;
  transform-origin: top;
}
.dif-card:hover { box-shadow: var(--shadow-md); }
.dif-card:hover::after { transform: scaleY(1); }
.dif-icon {
  width: 48px; height: 48px;
  background: rgba(107,16,32,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
[data-theme="dark"] .dif-icon { background: rgba(139,32,48,0.15); }
.dif-icon svg { width: 24px; height: 24px; color: var(--bordeaux); }
[data-theme="dark"] .dif-icon svg { color: var(--gold); }
.dif-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--bordeaux);
  margin-bottom: 10px;
}
[data-theme="dark"] .dif-title { color: var(--gold-light); }
.dif-desc { font-size: 0.88rem; line-height: 1.75; color: var(--text-secondary); }

/* ════════════════════════════════════════
   COMO FUNCIONA
   ════════════════════════════════════════ */
#como-funciona { background: var(--bg-secondary); }
.processo-timeline {
  display: flex;
  flex-direction: column;
  max-width: 720px;
  margin: 0 auto;
}
.processo-step {
  display: flex;
  gap: 28px;
  position: relative;
  padding-bottom: 36px;
}
.processo-step:last-child { padding-bottom: 0; }
.processo-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.processo-num {
  width: 48px; height: 48px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold-dark);
  flex-shrink: 0;
  background: var(--bg-secondary);
  position: relative;
  z-index: 1;
}
.processo-line {
  width: 1px;
  flex: 1;
  background: rgba(201,169,110,0.25);
  margin-top: 0;
  min-height: 24px;
}
.processo-step:last-child .processo-line { display: none; }
.processo-body { padding-top: 10px; }
.processo-step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--bordeaux);
  margin-bottom: 6px;
}
[data-theme="dark"] .processo-step-title { color: var(--gold-light); }
.processo-step-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.75; }

/* ════════════════════════════════════════
   MISSAO VISAO VALORES
   ════════════════════════════════════════ */
#mvv { background: var(--bordeaux-deep); padding: var(--section-pad); }
[data-theme="dark"] #mvv { background: var(--bg-inverse); }
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,169,110,0.1);
}
.mvv-card { background: var(--bordeaux-deep); padding: 44px 32px; text-align: center; }
[data-theme="dark"] .mvv-card { background: var(--bg-inverse); }
.mvv-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold-light);
}
.mvv-icon svg { width: 36px; height: 36px; stroke: var(--gold-light); }
.mvv-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.mvv-desc { font-size: 0.88rem; color: rgba(237,229,216,0.68); line-height: 1.8; }

/* ════════════════════════════════════════
   DEPOIMENTOS
   ════════════════════════════════════════ */
#depoimentos { background: var(--bg-primary); }
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dep-card {
  background: var(--bg-tertiary);
  padding: 32px 24px;
  border: 1px solid var(--border-light);
}
[data-theme="dark"] .dep-card { background: var(--bg-secondary); border-color: var(--border-medium); }
.dep-rating { margin-bottom: 20px; }
.dep-rating-bar {
  display: block;
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, var(--gold) 0%, var(--gold-light) 100%);
}
.dep-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: normal;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 22px;
  position: relative;
  padding-left: 18px;
}
.dep-text::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 2px; height: calc(100% - 4px);
  background: var(--gold);
  opacity: 0.5;
}
.dep-author { font-size: 0.78rem; color: var(--text-muted); }
.dep-author strong { display: block; color: var(--bordeaux); font-size: 0.88rem; font-weight: 500; margin-bottom: 2px; }
[data-theme="dark"] .dep-author strong { color: var(--gold-light); }
.dep-notice {
  margin-top: 36px;
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-muted);
  font-style: normal;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  background: var(--bg-secondary);
}

/* ════════════════════════════════════════
   FAQ
   ════════════════════════════════════════ */
#faq { background: var(--bg-secondary); }
.faq-wrap { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  min-height: 60px;
}
.faq-q-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--bordeaux);
  font-weight: 400;
  line-height: 1.4;
}
[data-theme="dark"] .faq-q-text { color: var(--gold-light); }
.faq-icon {
  width: 26px; height: 26px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-dark);
  font-size: 1rem;
  transition: transform var(--transition);
  margin-top: 2px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 0 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.faq-item.open .faq-a { display: block; }

/* ════════════════════════════════════════
   BLOG
   ════════════════════════════════════════ */
#blog { background: var(--bg-primary); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}
[data-theme="dark"] .blog-grid { background: var(--border-medium); border-color: var(--border-medium); }
.blog-card {
  background: var(--bg-tertiary);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  padding: 36px 32px 28px;
  position: relative;
  transition: background var(--transition);
}
[data-theme="dark"] .blog-card { background: var(--bg-secondary); }
.blog-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--bordeaux);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.blog-card:hover { background: var(--bg-primary); }
[data-theme="dark"] .blog-card:hover { background: var(--bg-tertiary); }
.blog-card:hover::after { transform: scaleX(1); }
.blog-cat {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
  width: 100%;
}
[data-theme="dark"] .blog-cat { color: var(--gold); border-color: var(--border-medium); }
.blog-body { flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  font-size: 0.64rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.blog-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 14px;
  flex: 1;
  font-weight: 400;
  transition: color var(--transition);
}
.blog-card:hover .blog-title { color: var(--bordeaux); }
[data-theme="dark"] .blog-card:hover .blog-title { color: var(--gold-light); }
.blog-excerpt { font-size: 0.83rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }
.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}
[data-theme="dark"] .blog-footer { border-color: var(--border-medium); }
.blog-read {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bordeaux);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.blog-card:hover .blog-read { gap: 10px; }
[data-theme="dark"] .blog-read { color: var(--gold); }
.blog-time { font-size: 0.66rem; color: var(--text-muted); }

/* ════════════════════════════════════════
   CONTATO
   ════════════════════════════════════════ */
#contato { background: var(--bordeaux); }
[data-theme="dark"] #contato { background: var(--bg-inverse); }
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contato-info { color: rgba(237,229,216,0.85); }
.contato-wpp {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.25);
  margin: 24px 0;
  text-decoration: none;
  transition: background var(--transition);
  min-height: 64px;
}
.contato-wpp:hover { background: rgba(201,169,110,0.15); }
.wpp-icon {
  width: 40px; height: 40px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contato-wpp-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.contato-wpp-text strong {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(245,240,232,0.95);
  letter-spacing: 0.02em;
}
.contato-dados { display: flex; flex-direction: column; gap: 18px; }
.contato-dado { display: flex; gap: 12px; align-items: flex-start; }
.contato-dado-icon { color: var(--gold); margin-top: 2px; flex-shrink: 0; display: flex; }
.contato-dado-text { font-size: 0.88rem; color: rgba(237,229,216,0.72); line-height: 1.5; }
.contato-dado-text strong { color: rgba(245,240,232,0.95); display: block; margin-bottom: 2px; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 12px 14px;
  color: rgba(245,240,232,0.9);
  font-family: var(--font-body);
  font-size: 0.9rem;
  width: 100%;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
  min-height: 46px;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23C9A96E' stroke-width='1.6'%3E%3Cpath d='M5 7.5l5 5 5-5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 40px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: rgba(201,169,110,0.6); }
.form-field select option { background: #520D18; color: rgba(245,240,232,0.9); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(237,229,216,0.3); }
.form-lgpd {
  font-size: 0.72rem;
  color: rgba(237,229,216,0.45);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
#footer {
  background: var(--bordeaux-deep);
  border-top: 1px solid rgba(201,169,110,0.12);
  padding: 56px 24px 28px;
}
[data-theme="dark"] #footer { background: var(--bg-secondary); }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(201,169,110,0.1);
}
.footer-brand-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand-logo img { width: 40px; flex-shrink: 0; }
.footer-brand-name { font-family: var(--font-display); font-size: 1.05rem; color: rgba(245,240,232,0.9); }
.footer-brand-sub { font-size: 0.58rem; color: var(--gold-light); letter-spacing: 0.14em; text-transform: uppercase; }
.footer-desc { font-size: 0.83rem; color: rgba(237,229,216,0.62); line-height: 1.8; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  text-decoration: none;
  transition: all var(--transition);
}
.footer-social a svg { width: 17px; height: 17px; display: block; }
.footer-social a:hover { border-color: var(--gold); background: rgba(201,169,110,0.12); transform: translateY(-2px); }
a:focus-visible,
button:focus-visible,
.area-card:focus-visible,
.blog-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 1px;
}
.footer-social a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.footer-col-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.83rem; color: rgba(237,229,216,0.65); text-decoration: none; transition: color var(--transition); }
.footer-links a:hover { color: rgba(237,229,216,0.9); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy { font-size: 0.72rem; color: rgba(237,229,216,0.62); }
.footer-oab { font-size: 0.7rem; color: rgba(201,169,110,0.85); letter-spacing: 0.06em; }

/* ════════════════════════════════════════
   FLOATING WHATSAPP
   ════════════════════════════════════════ */
#whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 997;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wpp-float-label {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  padding: 7px 12px;
  font-size: 0.76rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  border-radius: 2px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--transition);
  pointer-events: none;
  border: 1px solid var(--border-light);
}
#whatsapp-float:hover .wpp-float-label { opacity: 1; transform: translateX(0); }
.wpp-float-btn {
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
}
.wpp-float-btn:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
.wpp-float-btn svg { width: 26px; height: 26px; fill: white; }

/* ════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════
   RESPONSIVE — MOBILE FIRST
   ════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  /* Nav: o menu desktop (6 links + CTA) não cabe entre 769–999px e
     quebrava em duas linhas, sobrepondo o botão "Falar com a Dra. Clara".
     Usamos o menu hamburguer (já testado em mobile) em toda a faixa de tablet. */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .sobre-grid { grid-template-columns: 1fr; gap: 44px; }
  .sobre-img-wrap { max-width: 440px; }
  .sobre-quote { left: -12px; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .depoimentos-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-photo-wrap { opacity: 0.25; }
  .mvv-grid { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-pad: 56px 20px;
    --section-pad-sm: 40px 20px;
  }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { height: 60px; }
  .mobile-menu { top: 60px; }
  .nav-logo-name { font-size: 0.95rem; }

  /* Hero */
  .hero-photo-wrap { display: none; }
  .hero-h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-inner { max-width: 100%; }
  .hero-content { padding: 90px 20px 60px; }
  .hero-oab { flex-wrap: wrap; gap: 12px; }
  .hero-sep { display: none; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }

  /* Strip */
  .strip-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .strip-item:not(:first-child):not(:nth-child(2)):not(:nth-child(3)) { display: none; }

  /* Sobre */
  .sobre-img-wrap { max-width: 100%; }
  .sobre-quote { left: 0; bottom: 0; max-width: 200px; }
  .sobre-img-accent { display: none; }

  /* Areas */
  .areas-grid { grid-template-columns: 1fr; }

  /* Diferenciais */
  .diferenciais-grid { grid-template-columns: 1fr; gap: 16px; }

  /* MVV */
  .mvv-grid { grid-template-columns: 1fr; }
  .mvv-card { padding: 32px 24px; }

  /* Depoimentos */
  .depoimentos-grid { grid-template-columns: 1fr; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }

  /* Contato */
  .contato-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Theme toggle + float adjustment */
  #theme-toggle { bottom: 88px; right: 20px; }
  #whatsapp-float { bottom: 20px; right: 20px; }
  .wpp-float-btn { width: 48px; height: 48px; }

  /* Typography */
  .section-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .hero-h1 { line-height: 1.1; }

  /* Forms */
  .form-field input,
  .form-field select,
  .form-field textarea { font-size: 16px; }

  /* Processo */
  .processo-step { gap: 18px; }
  .processo-num { width: 40px; height: 40px; font-size: 0.9rem; }
}

/* Small mobile */
@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .hero-content { padding: 80px 16px 48px; }
  .hero-h1 { font-size: 2rem; }
  .area-card { padding: 24px 20px; }
  .btn { padding: 13px 22px; font-size: 0.74rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════
   ARTIGO INDIVIDUAL (single.php) — novo no WordPress,
   não existia no site estático original.
   ═══════════════════════════════════════════ */
.article-hero {
  background: linear-gradient(135deg, var(--bordeaux-deep) 0%, var(--bordeaux) 100%);
  padding: 140px 24px 60px;
  text-align: center;
}
.article-hero .article-cat {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.article-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-inverse);
  max-width: 800px;
  margin: 0 auto 16px;
  line-height: 1.25;
}
.article-hero .article-meta {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(237,229,216,0.7);
}
.article-cover {
  max-width: 880px;
  margin: -40px auto 0;
  padding: 0 24px;
}
.article-cover img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 40px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-secondary);
}
.article-body h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--text-primary);
  margin: 44px 0 18px;
}
.article-body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--text-primary);
  margin: 36px 0 14px;
}
.article-body p { margin-bottom: 22px; }
.article-body ul, .article-body ol { margin: 0 0 22px 22px; }
.article-body li { margin-bottom: 8px; }
.article-body a { color: var(--bordeaux); text-decoration: underline; }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 4px 24px;
  margin: 28px 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-primary);
}
.article-cta {
  max-width: 720px;
  margin: 0 auto 80px;
  padding: 0 24px;
}
.article-cta-box {
  background: var(--bg-inverse);
  border-radius: 4px;
  padding: 36px;
  text-align: center;
}
.article-cta-box p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-inverse);
  margin-bottom: 20px;
}
.article-back {
  display: block;
  max-width: 720px;
  margin: 0 auto 24px;
  padding: 0 24px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
}
.article-back:hover { color: var(--bordeaux); }

/* ═══════════════════════════════════════════
   LISTAGEM DE ARTIGOS (template-blog.php)
   ═══════════════════════════════════════════ */
.blog-listing-hero {
  background: linear-gradient(135deg, var(--bordeaux-deep) 0%, var(--bordeaux) 100%);
  padding: 140px 24px 60px;
  text-align: center;
}
.blog-listing-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--text-inverse);
}
.blog-listing-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-pagination {
  max-width: var(--max-w);
  margin: 0 auto 80px;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.blog-pagination a, .blog-pagination span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 10px 18px;
  border: 1px solid var(--border-medium);
  border-radius: 2px;
  color: var(--text-secondary);
  text-decoration: none;
}
.blog-pagination .current { background: var(--bordeaux); color: #fff; border-color: var(--bordeaux); }
.blog-empty {
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
  font-family: var(--font-body);
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .blog-listing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-listing-grid { grid-template-columns: 1fr; }
  .article-hero { padding: 120px 20px 48px; }
  .article-cover { margin-top: -24px; }
}
