/* ============================================================
   WESTWOOD LAW CENTER — Shared Stylesheet
   Palette: Deep navy + antique gold + warm cream
   Type: Cormorant Garamond (display) + Nunito Sans (body)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,500&family=Nunito+Sans:wght@300;400;600;700&display=swap');

:root {
  --navy: #0d2340;
  --navy-deep: #081729;
  --gold: #b8922a;
  --gold-light: #d4aa4e;
  --cream: #f9f6f0;
  --text: #1a1a2e;
  --muted: #5a6070;
  --border: rgba(184,146,42,0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.65;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  letter-spacing: .04em;
  padding: 8px 5%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: var(--gold-light); text-decoration: none; font-weight: 700; }
.topbar .langs span { margin-left: 14px; }

/* ---------- Nav ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5%;
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  flex-wrap: wrap;
  gap: 12px;
}
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .02em;
  text-decoration: none;
  display: block;
}
.logo-sub {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.nav-links { list-style: none; display: flex; gap: 28px; flex-wrap: wrap; }
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .03em;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.cta-btn {
  background: var(--gold);
  color: #fff;
  border: none;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .05em;
  padding: 12px 22px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background .2s;
}
.cta-btn:hover { background: var(--gold-light); color:#fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(184,146,42,0.18), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 70%);
  color: #fff;
  padding: 90px 5% 70px;
  overflow: hidden;
}
.hero-ghost {
  position: absolute;
  right: -2%;
  top: -8%;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(160px, 26vw, 340px);
  font-weight: 700;
  color: rgba(255,255,255,0.035);
  user-select: none;
  pointer-events: none;
  line-height: 1;
}
.hero-pill {
  display: inline-block;
  border: 1px solid rgba(212,170,78,0.5);
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  padding: 7px 18px;
  margin-bottom: 26px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.12;
  max-width: 18ch;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-desc {
  max-width: 58ch;
  margin-top: 22px;
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  font-weight: 300;
}
.lang-row { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.lang-badge {
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 13px;
  padding: 7px 16px;
  color: rgba(255,255,255,0.9);
  letter-spacing: .03em;
}
.hero-btns { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }
.btn-gold {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 16px 30px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background .2s;
}
.btn-gold:hover { background: var(--gold-light); color:#fff; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 16px 30px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .04em;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  margin-top: 60px;
  max-width: 900px;
}
.hstat { background: rgba(13,35,64,0.6); padding: 22px 24px; }
.hstat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hstat-l { font-size: 12px; letter-spacing: .04em; color: rgba(255,255,255,0.7); margin-top: 8px; }

/* ---------- Sections ---------- */
section { padding: 80px 5%; }
.eyebrow {
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}
.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 18px;
}
.sec-lede { max-width: 70ch; color: var(--muted); margin-bottom: 40px; }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.card {
  background: var(--cream);
  border-top: 3px solid var(--gold);
  padding: 34px 30px;
}
.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.card p { color: var(--muted); font-size: 15px; }
.card-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .05em;
  text-decoration: none;
}
.card-link:hover { color: var(--navy); }

/* ---------- Process steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.step { position: relative; padding: 30px 26px 26px; border: 1px solid var(--border); background:#fff; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(184,146,42,0.3);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}
.step h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 20px 4px;
}
.faq summary {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 36px;
}
.faq summary::after { content: '+'; position: absolute; right: 6px; color: var(--gold); font-size: 26px; line-height: 1; }
.faq details[open] summary::after { content: '–'; }
.faq details p { color: var(--muted); margin-top: 12px; max-width: 80ch; }

/* ---------- Checklist / bullets ---------- */
.gold-list { list-style: none; }
.gold-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: var(--text);
}
.gold-list li::before {
  content: '⚖';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ---------- Split layout ---------- */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  text-align: center;
  padding: 70px 5%;
}
.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 600;
  max-width: 26ch;
  margin: 0 auto 14px;
}
.cta-band p { color: rgba(255,255,255,0.75); max-width: 60ch; margin: 0 auto 30px; }
.cta-band .phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  color: var(--gold-light);
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 24px;
}

/* ---------- Contact form ---------- */
.contact { background: var(--cream); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
label { font-size: 13px; font-weight: 700; letter-spacing: .04em; color: var(--navy); display: block; margin-bottom: 6px; }
input, select, textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d8d2c4;
  background: #fff;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 14px; }

/* ---------- Footer ---------- */
footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 56px 5% 30px;
  font-size: 14px;
}
.foot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 36px; margin-bottom: 36px; }
.foot-grid h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 14px;
}
footer a { color: var(--gold-light); text-decoration: none; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
.disclaimer {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero { padding: 70px 5% 60px; }
.page-hero .hero-desc { font-size: 18px; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.breadcrumb a { color: var(--gold-light); text-decoration: none; }

/* ---------- Highlight box ---------- */
.note-box {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 24px 28px;
  margin: 28px 0;
}
.note-box strong { color: var(--navy); }

/* ---------- Articles ---------- */
.art-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.art-card { border: 1px solid var(--border); padding: 28px 26px; background: #fff; }
.art-tag { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.art-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--navy); margin: 10px 0 8px; font-weight: 600; }
.art-card p { font-size: 14px; color: var(--muted); }

/* ---------- Attorney portrait ---------- */
.attorney-photo {
  width: 100%;
  max-width: 360px;
  height: auto;
  border: 1px solid var(--border);
  outline: 6px solid #fff;
  box-shadow: 0 18px 40px rgba(13,35,64,0.18);
  margin-bottom: 28px;
}