/* ============================================
   LegalEQ Abogados — Design Tokens
   ============================================ */
:root {
  --black: #070707;
  --charcoal: #151515;
  --charcoal-2: #1e1e1e;
  --cream: #f7f4ee;
  --cream-2: #efe9de;
  --ink: #1b1a17;
  --ink-soft: #4a4842;
  --white: #ffffff;
  --gold: #c6a15b;
  --gold-bright: #e0c27a;
  --gold-deep: #8f7135;
  --gray: #b8b8b8;
  --line: rgba(198, 161, 91, 0.35);
  --line-dark: rgba(255, 255, 255, 0.14);

  --serif: "Work Sans", "Helvetica Neue", Arial, sans-serif;
  --sans: "Work Sans", "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}

p { line-height: 1.7; color: var(--ink-soft); margin: 0; font-size: 17px; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================
   Signature motif: flanking rule + tracked label
   (echoes the wordmark's "—— ABOGADOS ——" treatment)
   ============================================ */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  margin-bottom: 22px;
}
.eyebrow span {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  white-space: nowrap;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  height: 1px;
  width: 48px;
  background: var(--line);
}
.on-dark .eyebrow span { color: var(--gold-bright); }
.on-dark .eyebrow::before,
.on-dark .eyebrow::after { background: rgba(224, 190, 116, 0.45); }

.eyebrow.left {
  justify-content: flex-start;
}
.eyebrow.left::after { flex: 1; }
.eyebrow.left::before { display: none; }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 34px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 8px 24px rgba(198, 161, 91, 0.28);
}
.btn-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(198, 161, 91, 0.4);
}
.btn-outline {
  border-color: rgba(255,255,255,0.28);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.btn-outline-ink {
  border-color: rgba(27,26,23,0.25);
  color: var(--ink);
  background: transparent;
}
.btn-outline-ink:hover { border-color: var(--gold-deep); color: var(--gold-deep); }

/* ============================================
   Header / Nav
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 14px 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header.solid {
  background: rgba(11,11,12,0.94);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 1px 0 rgba(201,162,75,0.18);
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark img {
  height: 116px;
  width: auto;
  transition: height 0.35s ease;
}
.site-header.solid .brand-mark img { height: 78px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.main-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold-bright);
  transition: width 0.25s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--gold-bright); }

.nav-cta { display: flex; align-items: center; gap: 28px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 1px;
  background: var(--white);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 199;
  padding: 110px 32px 40px;
  flex-direction: column;
  gap: 30px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 18px;
}

/* ============================================
   Hero (dark)
   ============================================ */
.hero {
  background: linear-gradient(180deg, var(--black) 0%, var(--charcoal) 100%);
  color: var(--white);
  padding: 190px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,162,75,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after,
.hero-small::after,
.cta-band::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 220px;
  background-image: url("../images/skyline.svg");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.cta-band::after { opacity: 0.35; height: 180px; }
.hero-small h1, .hero-small .lede, .hero-small .eyebrow,
.cta-band h2, .cta-band p, .cta-band .hero-actions {
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-logo-feature {
  display: block;
  width: 100%;
  max-width: 460px;
  height: auto;
  margin: 0 auto 64px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.55));
}
@media (max-width: 640px) {
  .hero-logo-feature { max-width: 320px; margin-bottom: 44px; }
}
.hero h1 {
  color: var(--white);
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-bright);
}
.hero .lede {
  margin-top: 26px;
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
}
.hero-actions {
  margin-top: 42px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-panel {
  border: 1px solid var(--line-dark);
  padding: 40px 34px;
  background: rgba(255,255,255,0.02);
  position: relative;
}
.hero-panel .num {
  font-family: var(--serif);
  font-size: 46px;
  color: var(--gold-bright);
}
.hero-panel .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
}
.hero-panel .row:last-child { border-bottom: none; }
.hero-panel .row .label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero-panel .row .val {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: -0.01em;
}

/* small dark hero for inner pages */
.hero-small {
  background: linear-gradient(180deg, var(--black) 0%, var(--charcoal) 100%);
  color: var(--white);
  padding: 170px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-small h1 {
  color: var(--white);
  font-size: clamp(36px, 5.6vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.015em;
  position: relative;
}
.hero-small .lede {
  margin: 22px auto 0;
  max-width: 620px;
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  line-height: 1.6;
  position: relative;
}
.hero-small .eyebrow { position: relative; }

/* ============================================
   Sections (light)
   ============================================ */
section { padding: 110px 0; }
.section-tight { padding: 80px 0; }
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-head h2 {
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 600;
  line-height: 1.15;
}
.section-head p { margin-top: 18px; font-size: 17px; line-height: 1.65; }

.on-dark { background: var(--black); color: var(--white); }
.on-dark h2, .on-dark h3, .on-dark h4 { color: var(--white); }
.on-dark p { color: rgba(255,255,255,0.62); }
.on-charcoal { background: var(--charcoal); color: var(--white); }
.on-charcoal h2, .on-charcoal h3 { color: var(--white); }
.on-charcoal p { color: rgba(255,255,255,0.62); }
.on-cream-2 { background: var(--cream-2); }

/* ============================================
   Practice / service cards
   ============================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--line); }

.service-card {
  background: var(--cream);
  padding: 44px 36px;
  transition: background 0.3s ease;
}
.service-card:hover { background: var(--white); }
.service-card .idx {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
}
.service-card h3 {
  margin-top: 18px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.service-card p { margin-top: 14px; font-size: 15.5px; line-height: 1.6; }
.service-card .more {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ============================================
   Three-word tagline feature (Experiencia | Estrategia | Resultados)
   ============================================ */
.tagline-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.tagline-strip .item {
  padding: 46px 30px;
  text-align: center;
  border-right: 1px solid var(--line-dark);
}
.tagline-strip .item:last-child { border-right: none; }
.tagline-strip .item .word {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.tagline-strip .item p {
  margin-top: 14px;
  font-size: 14.5px;
}

/* ============================================
   Process (legitimately sequential — numbered)
   ============================================ */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
}
.process .step {
  padding: 0 28px 0 0;
  position: relative;
}
.process .step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 14px; right: 0;
  width: 40px; height: 1px;
  background: var(--line);
  transform: translateX(50%);
}
.process .step .n {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--gold-deep);
  letter-spacing: 0.06em;
}
.process .step h4 { margin-top: 16px; font-size: 18px; }
.process .step p { margin-top: 10px; font-size: 14.5px; }

/* ============================================
   People / partners
   ============================================ */
.people {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
}
.person-card { }
.person-photo {
  aspect-ratio: 4/5;
  background:
    repeating-linear-gradient(115deg, rgba(201,162,75,0.05) 0px, rgba(201,162,75,0.05) 1px, transparent 1px, transparent 34px),
    linear-gradient(160deg, var(--charcoal-2), var(--black));
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 26px;
  overflow: hidden;
}
.person-photo::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(201,162,75,0.16), transparent 60%);
}
.person-photo .initials {
  font-family: var(--serif);
  font-size: 78px;
  color: rgba(224,190,116,0.28);
  position: absolute;
  top: 24px; left: 26px;
}
.person-photo .tag {
  position: relative;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.person-card h3 { margin-top: 24px; font-size: 24px; }
.person-card .role {
  margin-top: 4px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.person-card p { margin-top: 16px; font-size: 15px; }

/* ============================================
   Blog cards
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.post-card {
  border: 1px solid rgba(27,26,23,0.1);
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.post-thumb {
  aspect-ratio: 16/10;
  background:
    repeating-linear-gradient(115deg, rgba(201,162,75,0.05) 0px, rgba(201,162,75,0.05) 1px, transparent 1px, transparent 34px),
    linear-gradient(150deg, var(--charcoal), var(--black));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-thumb::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(201,162,75,0.18), transparent 65%);
}
.post-thumb span {
  position: relative;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.post-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.post-meta {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.post-body h3 { font-size: 19.5px; font-weight: 600; line-height: 1.35; }
.post-body p { margin-top: 12px; font-size: 14.5px; flex: 1; }
.post-body .read-more {
  margin-top: 18px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

.blog-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.blog-filter button {
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid rgba(27,26,23,0.18);
  background: transparent;
  cursor: pointer;
  color: var(--ink-soft);
  transition: all 0.2s ease;
}
.blog-filter button.active,
.blog-filter button:hover {
  border-color: var(--gold-deep);
  color: var(--gold-deep);
}

/* ============================================
   Testimonials
   ============================================ */
.testimonial-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--line);
}
.testimonial {
  background: var(--cream);
  padding: 48px 44px;
  position: relative;
}
.testimonial .mark {
  font-family: var(--serif);
  font-size: 54px;
  color: var(--gold-deep);
  line-height: 1;
}
.testimonial p.quote {
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
}
.testimonial .attrib {
  margin-top: 22px;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.testimonial .attrib span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--ink-soft);
}

/* ============================================
   Scroll reveal (progressive enhancement)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.grid-3 .reveal:nth-child(2), .blog-grid .reveal:nth-child(2), .people .reveal:nth-child(2) { transition-delay: 0.1s; }
.grid-3 .reveal:nth-child(3), .blog-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.grid-3 .reveal:nth-child(4) { transition-delay: 0.3s; }
.grid-3 .reveal:nth-child(5) { transition-delay: 0.4s; }
.grid-3 .reveal:nth-child(6) { transition-delay: 0.5s; }
.process .reveal:nth-child(2) { transition-delay: 0.1s; }
.process .reveal:nth-child(3) { transition-delay: 0.2s; }
.process .reveal:nth-child(4) { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================
   CTA band
   ============================================ */
.cta-band {
  background: var(--black);
  color: var(--white);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  bottom: -50%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(201,162,75,0.16), transparent 70%);
}
.cta-band h2 { color: var(--white); font-size: clamp(28px, 3.6vw, 42px); position: relative; }
.cta-band p { margin-top: 16px; color: rgba(255,255,255,0.62); position: relative; }
.cta-band .hero-actions { justify-content: center; margin-top: 36px; position: relative; }

/* ============================================
   Contact form
   ============================================ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.form-field { margin-bottom: 24px; }
.form-field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(27,26,23,0.25);
  background: transparent;
  padding: 12px 4px;
  font-family: var(--sans);
  font-size: 15.5px;
  color: var(--ink);
  transition: border-color 0.2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold-deep);
}
.form-field textarea { resize: vertical; min-height: 110px; }

.info-list { margin-top: 30px; }
.info-item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(27,26,23,0.1);
}
.info-item .label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.info-item .val { margin-top: 8px; font-size: 16px; }

.map-plate {
  margin-top: 40px;
  aspect-ratio: 16/8;
  background: repeating-linear-gradient(135deg, var(--charcoal), var(--charcoal) 2px, var(--black) 2px, var(--black) 26px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.map-plate span {
  color: var(--gold-bright);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--black);
  padding: 10px 18px;
  border: 1px solid var(--line-dark);
}

.map-embed {
  margin-top: 40px;
  aspect-ratio: 16/9;
  border: 1px solid var(--line-dark);
  overflow: hidden;
  filter: grayscale(0.15) contrast(1.02);
}
.map-embed iframe { width: 100%; height: 100%; display: block; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  padding: 26px 0;
  border-bottom: 1px solid rgba(27,26,23,0.1);
}
.faq-item:first-child { border-top: 1px solid rgba(27,26,23,0.1); }
.faq-item h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}
.faq-item p {
  margin-top: 10px;
  font-size: 15px;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.55);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-grid img { height: 78px; margin-bottom: 18px; }
.footer-grid p { color: rgba(255,255,255,0.5); font-size: 14px; max-width: 280px; }
.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 14.5px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 13px;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 980px) {
  .main-nav, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-panel { max-width: 460px; }
  .grid-3, .grid-2, .blog-grid, .people, .testimonial-strip { grid-template-columns: 1fr; }
  .tagline-strip { grid-template-columns: 1fr; }
  .tagline-strip .item { border-right: none; border-bottom: 1px solid var(--line-dark); }
  .tagline-strip .item:last-child { border-bottom: none; }
  .process { grid-template-columns: 1fr; gap: 34px; }
  .process .step::after { display: none; }
  .contact-wrap { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  section { padding: 80px 0; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 150px 0 80px; }
  .hero-small { padding: 140px 0 70px; }
  .brand-mark img { height: 84px; }
}

/* ============================================
   WhatsApp floating button
   ============================================ */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--black);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
  z-index: 250;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  border-color: var(--gold-bright);
  box-shadow: 0 14px 32px rgba(0,0,0,0.5);
}
.whatsapp-float svg { width: 24px; height: 24px; }
.whatsapp-float svg path { fill: var(--gold-bright); }
@media (max-width: 560px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 22px; height: 22px; }
}

/* ============================================
   Breadcrumbs
   ============================================ */
.breadcrumb-nav {
  padding: 150px 0 0;
  background: var(--black);
}
.breadcrumb-nav .container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding-bottom: 18px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
}
.breadcrumb-nav a { color: rgba(255,255,255,0.6); }
.breadcrumb-nav a:hover { color: var(--gold-bright); }
.breadcrumb-nav span.sep { color: rgba(255,255,255,0.3); }
.breadcrumb-nav span.current { color: var(--gold-bright); }

/* ============================================
   Pillar / landing pages — quick facts + Q&A blocks
   ============================================ */
.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  margin: 48px 0;
}
.quick-facts .fact {
  background: var(--cream-2);
  padding: 26px 24px;
}
.quick-facts .fact .label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.quick-facts .fact .val {
  margin-top: 8px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

.answer-box {
  background: var(--cream-2);
  border-left: 3px solid var(--gold);
  padding: 22px 28px;
  margin: 32px 0 40px;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
}
.answer-box strong { color: var(--gold-deep); }

.article-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 12.5px;
  color: var(--ink-soft);
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(27,26,23,0.1);
}
.article-meta-bar strong { color: var(--ink); }

.pillar-body h2 {
  font-size: 24px;
  margin-top: 46px;
  margin-bottom: 16px;
}
.pillar-body h2:first-child { margin-top: 0; }
.pillar-body p { font-size: 16px; margin-bottom: 14px; }
.pillar-body ul, .pillar-body ol {
  margin: 0 0 20px;
  padding-left: 22px;
}
.pillar-body li {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 8px;
}
.pillar-body ol li::marker { color: var(--gold-deep); font-weight: 700; }

.sources-box {
  margin-top: 40px;
  padding: 22px 26px;
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  font-size: 13.5px;
  line-height: 1.7;
}
.sources-box h4 { color: var(--white); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; margin: 0 0 10px; }
.sources-box a { color: var(--gold-bright); }

.related-pages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.related-pages a {
  display: block;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid rgba(27,26,23,0.1);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  transition: border-color 0.2s ease;
}
.related-pages a:hover { border-color: var(--gold-deep); color: var(--gold-deep); }

@media (max-width: 900px) {
  .quick-facts { grid-template-columns: 1fr; }
  .related-pages { grid-template-columns: 1fr; }
}
