/* ============================================================
   VSL Consultoria Jurídica — Boutique
   Paleta: preto, cinza, branco, dourado
============================================================ */

:root {
  --black: #0a0a0a;
  --ink: #14141a;
  --graphite: #1f1f24;
  --gray-900: #2a2a30;
  --gray-700: #4a4a52;
  --gray-500: #7a7a82;
  --gray-300: #c7c7cc;
  --gray-100: #f4f4f2;
  --white: #ffffff;
  --bone: #faf8f3;
  --gold: #c9a96a;
  --gold-bright: #d9bb7a;
  --gold-deep: #a8884e;
  --gold-soft: #ede0c5;

  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", system-ui, -apple-system, sans-serif;

  --shadow-soft: 0 30px 80px -40px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 25px 60px -30px rgba(201, 169, 106, 0.45);

  --radius-sm: 2px;
  --radius-md: 6px;
  --radius-lg: 14px;

  --container: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration: none;
  transition: color .3s ease, opacity .3s ease;
}

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.15;
  color: var(--ink);
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.6rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.7rem); }

p { color: var(--gray-700); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.gold-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 28px 0;
}

.center { text-align: center; }
.center .gold-line { margin-left: auto; margin-right: auto; }

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

section { padding: clamp(72px, 10vw, 140px) 0; }

/* ---------- header / nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 22px 0;
  background: rgba(10, 10, 10, 0.0);
  transition: background .35s ease, backdrop-filter .35s ease, padding .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(201, 169, 106, 0.18);
}
/* backdrop-filter creates a new containing block, which traps the
   fixed-position mobile menu inside the (short) header box instead of
   the full viewport once the page has been scrolled. Disable it while
   the menu is open so .nav-links can fill the screen correctly. */
.site-header.menu-open {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}
.brand-mark {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  background: rgba(0,0,0,0.35);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  color: var(--white);
}
.brand-tag {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-300);
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right .35s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  right: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 11px 22px !important;
  letter-spacing: 0.22em !important;
  font-size: 0.72rem !important;
  text-transform: uppercase;
  transition: background .3s ease, color .3s ease;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--gold);
  color: var(--black) !important;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  color: var(--gold);
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: var(--gold);
  position: relative;
  transition: transform .3s ease, opacity .3s ease, top .3s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top:  6px; }
.nav-toggle.open span                { background: transparent; }
.nav-toggle.open span::before        { transform: rotate(45deg); top: 0; }
.nav-toggle.open span::after         { transform: rotate(-45deg); top: 0; }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .45s ease, opacity .35s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a { font-size: 1rem; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 34px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--ink);
  transition: background .35s ease, color .35s ease, transform .35s ease, box-shadow .35s ease;
}
.btn:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.btn-dark { background: var(--ink); border-color: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

.btn-gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); color: var(--black); }

.btn-ghost { color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-ghost:hover { background: var(--white); color: var(--black); border-color: var(--white); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(60% 80% at 80% 20%, rgba(201,169,106,0.18) 0%, rgba(0,0,0,0) 60%),
    linear-gradient(135deg, #0a0a0a 0%, #161618 60%, #0a0a0a 100%);
  overflow: hidden;
  padding-top: 120px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(201,169,106,0.04) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 80px);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 960px) {
  .hero { padding-top: 130px; padding-bottom: 70px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 480px) {
  .hero-card { padding: 30px 24px; }
}
.hero h1 {
  color: var(--white);
  font-weight: 300;
  margin-top: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero p.lead {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--gray-300);
  max-width: 540px;
  margin-top: 28px;
}
.hero-actions { display: flex; gap: 18px; margin-top: 44px; flex-wrap: wrap; }

.hero-card {
  border: 1px solid rgba(201,169,106,0.4);
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 100%);
  padding: 42px 38px;
  position: relative;
  backdrop-filter: blur(6px);
}
.hero-card::before, .hero-card::after {
  content: "";
  position: absolute;
  width: 22px; height: 22px;
  border: 1px solid var(--gold);
}
.hero-card::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.hero-card::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.hero-card h3 { color: var(--white); margin-bottom: 10px; }
.hero-card .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--gray-300);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.hero-card .row:last-child { border-bottom: 0; }
.hero-card .row span:last-child { color: var(--gold); }

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 3;
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse-line 2.4s ease-in-out infinite;
}
@keyframes pulse-line {
  0%, 100% { opacity: .4; transform: scaleY(.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  padding: 200px 0 90px;
  background:
    radial-gradient(60% 90% at 70% 30%, rgba(201,169,106,0.15) 0%, rgba(0,0,0,0) 60%),
    linear-gradient(135deg, #0a0a0a 0%, #16161a 100%);
  color: var(--white);
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.page-hero h1 {
  color: var(--white);
  font-weight: 300;
  max-width: 820px;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p {
  color: var(--gray-300);
  max-width: 680px;
  margin-top: 24px;
  font-size: 1.05rem;
}
.crumbs {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.crumbs a { color: var(--gray-300); }
.crumbs a:hover { color: var(--white); }
.crumbs span { color: var(--gray-500); margin: 0 10px; }

/* ---------- section heading ---------- */
.section-head {
  max-width: 760px;
}
.section-head.center { margin: 0 auto 64px; text-align: center; }
.section-head h2 { margin-top: 18px; }
.section-head p { margin-top: 22px; }

/* ---------- areas grid ---------- */
.areas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.area-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 48px 38px;
  position: relative;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
  overflow: hidden;
}
.area-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s ease;
}
.area-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(201,169,106,0.4);
}
.area-card:hover::before { transform: scaleX(1); }
.area-num {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: 0.3em;
}
.area-card h3 { margin: 18px 0 16px; }
.area-card ul { list-style: none; margin-top: 18px; }
.area-card li {
  font-size: 0.9rem;
  color: var(--gray-700);
  padding: 9px 0 9px 22px;
  position: relative;
  border-bottom: 1px dashed rgba(0,0,0,0.06);
}
.area-card li:last-child { border-bottom: 0; }
.area-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 10px; height: 1px;
  background: var(--gold);
}

@media (max-width: 900px) { .areas { grid-template-columns: 1fr; } }

/* ---------- about / split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.split-even { grid-template-columns: 1fr 1fr; }
.split-12 { grid-template-columns: 1.2fr 1fr; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 50px; }
  .split-even { grid-template-columns: 1fr; }
  .split-12 { grid-template-columns: 1fr; }
}

.portrait {
  position: relative;
  aspect-ratio: 4/5;
  background:
    radial-gradient(60% 60% at 50% 35%, rgba(201,169,106,0.5) 0%, rgba(201,169,106,0) 60%),
    linear-gradient(160deg, #1a1a1d 0%, #0a0a0a 100%);
  overflow: hidden;
  border: 1px solid rgba(201,169,106,0.3);
}
.portrait::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201,169,106,0.25);
  pointer-events: none;
}
.portrait-mark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 9rem);
  letter-spacing: 0.05em;
  color: rgba(201,169,106,0.55);
  font-weight: 300;
}
.portrait-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.about-text h2 { margin-top: 18px; }
.about-text .intro {
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--ink);
  font-style: italic;
  margin: 28px 0;
}
.about-text p { margin-bottom: 18px; }

.read-more-toggle {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
}
.read-more-toggle:hover { color: var(--ink); }
.read-more-toggle .arrow {
  display: inline-block;
  transition: transform .35s ease;
}
.read-more-toggle.open .arrow { transform: rotate(180deg); }

.full-bio {
  max-height: 0;
  overflow: hidden;
  transition: max-height .6s ease;
}
.full-bio.open { max-height: 4000px; }
.full-bio .inner {
  margin-top: 32px;
  padding: 32px;
  background: var(--white);
  border-left: 2px solid var(--gold);
}
.full-bio p { margin-bottom: 16px; }

/* ---------- numbers / pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.pillar {
  text-align: center;
  padding: 36px 18px;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.pillar .n {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.pillar .l {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-top: 10px;
}
@media (max-width: 800px) { .pillars { grid-template-columns: repeat(2, 1fr); } }

/* ---------- CTA strip ---------- */
.cta-strip {
  background:
    radial-gradient(40% 80% at 80% 50%, rgba(201,169,106,0.15) 0%, rgba(0,0,0,0) 70%),
    linear-gradient(135deg, #0a0a0a 0%, #161616 100%);
  color: var(--white);
  text-align: center;
  position: relative;
}
.cta-strip h2 { color: var(--white); }
.cta-strip h2 em { font-style: italic; color: var(--gold); }
.cta-strip p { color: var(--gray-300); margin: 22px auto 0; max-width: 640px; }
.cta-strip .actions { margin-top: 38px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ---------- contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  margin-top: 60px;
}
@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-info { padding-top: 8px; }
.contact-info .item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.contact-info .label {
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.contact-info .value {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
}
.contact-info .value a:hover { color: var(--gold-deep); }

.contact-form {
  background: var(--white);
  padding: 48px;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
}
.contact-form::before, .contact-form::after {
  content: "";
  position: absolute;
  width: 28px; height: 28px;
  border: 1px solid var(--gold);
}
.contact-form::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.contact-form::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.contact-form h3 { margin-bottom: 24px; }
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.18);
  background: transparent;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  padding: 12px 0;
  outline: none;
  transition: border-color .3s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

.form-note {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 8px;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--black);
  color: var(--gray-300);
  padding: 70px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 50px;
  align-items: start;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .brand-mark { margin-bottom: 18px; }
.footer-brand p {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-top: 18px;
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; font-size: 0.92rem; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 56px;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--gray-500);
  letter-spacing: 0.06em;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: var(--white);
  display: grid;
  place-items: center;
  z-index: 60;
  box-shadow: 0 14px 40px -10px rgba(37, 211, 102, 0.6);
  transition: transform .3s ease, box-shadow .3s ease;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 18px 50px -10px rgba(37, 211, 102, 0.7); }
.wa-float svg { width: 28px; height: 28px; fill: currentColor; }
.wa-float::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(37, 211, 102, 0.5);
  animation: wa-ring 2.4s ease-out infinite;
}
@keyframes wa-ring {
  0% { transform: scale(.9); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- timeline (Rides) ---------- */
.timeline {
  position: relative;
  margin-top: 40px;
  padding-left: 28px;
  border-left: 1px solid rgba(201,169,106,0.4);
}
.timeline-item {
  position: relative;
  padding: 14px 0 14px 18px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 22px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,169,106,0.18);
}
.timeline-item h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 6px;
  font-weight: 500;
}
.timeline-item p { font-size: 0.95rem; color: var(--ink); }

/* ---------- credential list ---------- */
.creds {
  list-style: none;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}
.creds li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.92rem;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  line-height: 1.55;
}
.creds li::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 4px;
}
@media (max-width: 760px) { .creds { grid-template-columns: 1fr; } }

/* ---------- light strip ---------- */
.light-strip {
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* ---------- helpers ---------- */
.bg-bone { background: var(--bone); }
.bg-white { background: var(--white); }
.bg-dark {
  background: linear-gradient(135deg, #0a0a0a 0%, #16161a 100%);
  color: var(--white);
}
.bg-dark h2, .bg-dark h3, .bg-dark .section-head h2 { color: var(--white); }
.bg-dark p { color: var(--gray-300); }

.text-gold { color: var(--gold) !important; }
.italic { font-style: italic; }
