/* Get Legal Results — demo site stylesheet
   Palette: charcoal + gold. Fonts: Playfair Display (headings), Inter (body). */

:root {
  --charcoal: #15181C;
  --charcoal-deep: #0C0E11;
  --charcoal-mid: #22262C;
  --gold: #C9A227;
  --gold-light: #E3C15A;
  --gold-pale: #F4EBD0;
  --cream: #F6F3EC;
  --paper: #FFFFFF;
  --ink: #16181B;
  --muted: #5F6672;
  --line: #E5E1D8;
  --line-dark: rgba(255,255,255,.12);
  --radius: 6px;
  --shadow: 0 18px 50px rgba(12, 14, 17, .18);
  --max: 1180px;
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; color: var(--charcoal); letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1.1em; }
.container { width: min(var(--max), calc(100% - 2.5rem)); margin-inline: auto; }
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}
.eyebrow::before { content: ""; display: inline-block; width: 28px; height: 2px; background: var(--gold); vertical-align: middle; margin-right: .7rem; }
.lead { font-size: 1.18rem; color: var(--muted); }
.muted { color: var(--muted); }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .95rem 1.7rem;
  border-radius: var(--radius);
  font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  font-family: var(--font-body);
}
.btn:hover { transform: translateY(-2px); }
.btn-copper { background: var(--gold); color: #fff; }
.btn-copper:hover { background: var(--gold-light); color: #fff; }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline:hover { border-color: #fff; color: #fff; }
.btn-navy { background: var(--charcoal); color: #fff; }
.btn-navy:hover { background: var(--charcoal-mid); color: #fff; }
.btn-ghost { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-ghost:hover { background: var(--charcoal); color: #fff; }
.btn svg { width: 18px; height: 18px; }

/* Top bar */
.topbar {
  background: var(--charcoal-deep);
  color: rgba(255,255,255,.78);
  font-size: .85rem;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; min-height: 40px; gap: 1rem; }
.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: var(--gold-light); }
.topbar .badge { color: var(--gold-light); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; font-size: .74rem; }

/* Header / nav */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--charcoal);
  border-bottom: 1px solid var(--line-dark);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; min-height: 82px; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .85rem; color: #fff; }
.brand:hover { color: #fff; }
.brand-mark {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  border: 2px solid var(--gold); border-radius: 4px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--gold-light);
  letter-spacing: -.02em;
}
.brand-text { line-height: 1.05; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.32rem; display: block; letter-spacing: -.01em; }
.brand-name span { color: var(--gold-light); }
.brand-sub { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.62); display: block; margin-top: .25rem; }
.nav { display: flex; align-items: center; gap: .25rem; }
.nav a {
  color: rgba(255,255,255,.86); font-weight: 500; font-size: .95rem;
  padding: .55rem .85rem; border-radius: 4px; position: relative;
}
.nav a:hover { color: #fff; }
.nav a.active { color: #fff; }
.nav a.active::after { content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .2rem; height: 2px; background: var(--gold); }
.nav .btn { margin-left: .75rem; padding: .7rem 1.2rem; }
.nav-toggle {
  display: none; background: none; border: 0; color: #fff; cursor: pointer; padding: .5rem;
}
.nav-toggle svg { width: 28px; height: 28px; }

/* Hero (curved SVG divider at the bottom) */
.hero {
  position: relative;
  background: var(--charcoal);
  color: #fff;
  overflow: hidden;
  margin-bottom: -1px;
  padding: 5.5rem 0 9.5rem;
}
.hero__divider {
  position: absolute; left: 0; bottom: -1px; z-index: 1;
  width: 100%; height: clamp(48px, 8vw, 120px); display: block;
}
.hero-portrait { z-index: 2; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 85% 20%, rgba(201,162,39,.22), transparent 60%),
    linear-gradient(180deg, var(--charcoal-mid) 0%, var(--charcoal) 55%, var(--charcoal-deep) 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; opacity: .07;
  background-image:
    linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 2rem; align-items: center; }
.hero h1 { color: #fff; margin-bottom: 1.2rem; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero .eyebrow { color: var(--gold-light); }
.hero .eyebrow::before { background: var(--gold-light); }
.hero p.lead { color: rgba(255,255,255,.8); max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin: 2rem 0 2.2rem; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 1.6rem; font-size: .88rem; color: rgba(255,255,255,.72); }
.hero-proof span { display: inline-flex; align-items: center; gap: .5rem; }
.hero-proof svg { width: 16px; height: 16px; color: var(--gold-light); }
.hero-portrait { position: relative; align-self: end; justify-self: center; margin: 0 0 -9.5rem; display: flex; align-items: flex-end; }
.hero-portrait::before {
  content: ""; position: absolute; left: 6%; right: 6%; top: 14%; bottom: 0;
  border: 1px solid rgba(201,162,39,.4); border-bottom: 0; border-radius: 4px 4px 0 0;
}
.hero-portrait img {
  position: relative; height: clamp(520px, 66vh, 700px); width: auto; max-width: 100%;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.45));
}
.hero-portrait figcaption {
  position: absolute; left: -1.5rem; bottom: 12.5rem;
  background: var(--gold); color: #fff; padding: .7rem 1rem; border-radius: 4px;
  font-size: .82rem; line-height: 1.3; box-shadow: var(--shadow);
}
.hero-portrait figcaption strong { display: block; font-family: var(--font-head); font-size: 1.05rem; }

/* Inner-page hero */
.hero--inner { padding: 4.5rem 0 8.5rem; }
.hero--inner .container { display: block; }
.hero--inner h1 { max-width: 16ch; }
.hero--inner p.lead { max-width: 40rem; }
.crumbs { font-size: .82rem; color: rgba(255,255,255,.55); margin-bottom: 1.2rem; }
.crumbs a { color: rgba(255,255,255,.75); }
.crumbs a:hover { color: #fff; }

/* Sections */
section { padding: 5.5rem 0; }
.section-cream { background: var(--cream); }
.section-navy { background: var(--charcoal); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy .eyebrow { color: var(--gold-light); }
.section-navy .eyebrow::before { background: var(--gold-light); }
.section-navy .muted { color: rgba(255,255,255,.7); }
.section-tight { padding: 3.5rem 0; }
.section--wave-top { position: relative; padding-top: 7.5rem; }
.section--wave-top .wave-top { position: absolute; left: 0; top: -1px; width: 100%; height: clamp(32px, 5vw, 70px); display: block; }
.section-head { max-width: 46rem; margin-bottom: 3rem; }
.section-head h2 { margin-bottom: .6rem; }

/* Trust bar */
.trustbar { background: var(--cream); border-bottom: 1px solid var(--line); padding: 1.6rem 0; }
.trustbar .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.trust { display: flex; gap: .8rem; align-items: flex-start; font-size: .9rem; color: var(--muted); }
.trust svg { width: 26px; height: 26px; color: var(--gold); flex: none; margin-top: .1rem; }
.trust strong { display: block; color: var(--charcoal); font-size: .95rem; }

/* Cards / grids */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.8rem; position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card .icon {
  width: 52px; height: 52px; border-radius: 4px; display: grid; place-items: center;
  background: var(--gold-pale); color: var(--gold); margin-bottom: 1.2rem;
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .96rem; margin-bottom: 0; }
.card .more { display: inline-block; margin-top: 1rem; font-weight: 600; font-size: .9rem; }
.card .more::after { content: " →"; }
.card-num { position: absolute; top: 1.2rem; right: 1.4rem; font-family: var(--font-head); font-size: 2.2rem; color: var(--line); line-height: 1; }

/* Two-column feature */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.feature-media { position: relative; }
.feature-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.feature-media .frame {
  aspect-ratio: 4/5; border-radius: var(--radius);
  background: linear-gradient(160deg, var(--charcoal-mid), var(--charcoal-deep));
  display: grid; place-items: center; overflow: hidden; box-shadow: var(--shadow);
}
.feature-media .frame img { width: 88%; margin-top: 8%; box-shadow: none; border-radius: 0; filter: drop-shadow(0 20px 30px rgba(0,0,0,.4)); }
.stat-strip { display: flex; gap: 2.5rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.stat strong { display: block; font-family: var(--font-head); font-size: 2.2rem; color: var(--gold); line-height: 1; }
.stat span { font-size: .85rem; color: var(--muted); }
.checks { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .75rem; }
.checks li { display: flex; gap: .75rem; align-items: flex-start; }
.checks svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: .2rem; }

/* Quote / pull */
.pullquote {
  border-left: 4px solid var(--gold); padding: .4rem 0 .4rem 1.5rem; margin: 2rem 0;
  font-family: var(--font-head); font-size: 1.35rem; font-style: italic; color: var(--charcoal); line-height: 1.4;
}
.pullquote cite { display: block; font-family: var(--font-body); font-style: normal; font-size: .85rem; color: var(--muted); margin-top: .6rem; }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; counter-reset: step; }
.step { position: relative; padding-top: 1rem; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-head); font-size: 3.4rem; color: var(--gold); opacity: .35; line-height: 1; display: block; margin-bottom: .4rem;
}
.step h3 { color: #fff; }
.step p { color: rgba(255,255,255,.72); font-size: .96rem; }

/* CTA band */
.cta-band { background: var(--gold); color: #fff; padding: 4rem 0; }
.cta-band .container { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin: 0 0 .3rem; }
.cta-band p { margin: 0; color: rgba(255,255,255,.85); }
.cta-band .btn-navy { background: var(--charcoal-deep); }
.cta-band .phone { font-family: var(--font-head); font-size: 1.6rem; color: #fff; font-weight: 700; }

/* Service detail blocks */
.service-block { display: grid; grid-template-columns: 300px 1fr; gap: 3rem; padding: 3rem 0; border-top: 1px solid var(--line); }
.service-block:first-of-type { border-top: 0; }
.service-block h2 { font-size: 1.7rem; margin-bottom: .4rem; }
.service-block .tag { display: inline-block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: .6rem; }
.service-block .icon { width: 56px; height: 56px; border-radius: 4px; display: grid; place-items: center; background: var(--gold-pale); color: var(--gold); margin-bottom: 1rem; }
.service-block .icon svg { width: 28px; height: 28px; }
.service-block ul { padding-left: 1.2rem; color: var(--muted); }
.service-block ul li { margin-bottom: .35rem; }

/* Lists of credentials */
.cred-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.cred-list li { padding: .85rem 1rem; background: var(--paper); border: 1px solid var(--line); border-radius: 4px; font-size: .95rem; }
.cred-list li strong { color: var(--charcoal); }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.chip { font-size: .82rem; padding: .35rem .75rem; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); color: var(--muted); }

/* Forms */
.form { display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { font-size: .85rem; font-weight: 600; color: var(--charcoal); display: block; margin-bottom: .35rem; }
input, select, textarea {
  width: 100%; font: inherit; font-size: .98rem; padding: .85rem 1rem;
  border: 1px solid var(--line); border-radius: 4px; background: #fff; color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
textarea { min-height: 150px; resize: vertical; }
.form-note { font-size: .8rem; color: var(--muted); }
.form-success { display: none; padding: 1.5rem; background: var(--gold-pale); border-left: 4px solid var(--gold); border-radius: 4px; }
.form-success.show { display: block; }
.form.sent { display: none; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 3.5rem; align-items: start; }
.contact-card { background: var(--charcoal); color: #fff; padding: 2.4rem; border-radius: var(--radius); }
.contact-card h3 { color: #fff; }
.contact-card dl { margin: 0; display: grid; gap: 1.3rem; }
.contact-card dt { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-light); font-weight: 600; }
.contact-card dd { margin: .2rem 0 0; font-size: 1.05rem; }
.contact-card dd a { color: #fff; font-weight: 600; }
.contact-card dd a:hover { color: var(--gold-light); }
.contact-card .big { font-family: var(--font-head); font-size: 1.7rem; }
.social { display: flex; gap: .6rem; margin-top: 1.8rem; }
.social a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 4px; color: #fff; }
.social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.social svg { width: 18px; height: 18px; }

/* Newsletter */
.nl-form { display: flex; gap: .75rem; max-width: 560px; }
.nl-form input { flex: 1; }
.issue { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.issue .date { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.issue h3 { font-size: 1.2rem; margin: .5rem 0 .4rem; }
.issue p { font-size: .93rem; color: var(--muted); margin: 0; }

/* Placeholder page */
.placeholder {
  text-align: center; padding: 4rem 2rem; border: 1px dashed var(--line); border-radius: var(--radius); background: var(--cream);
}
.placeholder .icon { width: 72px; height: 72px; margin: 0 auto 1.5rem; display: grid; place-items: center; background: var(--gold-pale); color: var(--gold); border-radius: 50%; }
.placeholder .icon svg { width: 34px; height: 34px; }

/* Footer */
.site-footer { background: var(--charcoal-deep); color: rgba(255,255,255,.7); font-size: .9rem; padding: 4rem 0 2rem; }
.site-footer .cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line-dark); }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.site-footer a { color: rgba(255,255,255,.75); }
.site-footer a:hover { color: var(--gold-light); }
.site-footer .brand { margin-bottom: 1rem; }
.site-footer .disclaimer { font-size: .78rem; color: rgba(255,255,255,.5); margin: 2rem 0 1.5rem; line-height: 1.6; }
.site-footer .legal { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .8rem; color: rgba(255,255,255,.5); }

/* Responsive */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-portrait { margin-bottom: -9.5rem; }
  .hero-portrait img { height: clamp(380px, 50vh, 520px); }
  .hero-portrait figcaption { bottom: 10rem; left: 0; }
  .trustbar .container { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .feature { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; gap: 1.2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .site-footer .cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--charcoal); flex-direction: column; align-items: stretch; padding: 1rem 1.25rem 1.5rem; border-bottom: 1px solid var(--line-dark); box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .nav a { padding: .8rem .5rem; font-size: 1.05rem; }
  .nav a.active::after { display: none; }
  .nav .btn { margin: .75rem 0 0; justify-content: center; }
  .nav-toggle { display: block; }
  .topbar .container { font-size: .78rem; }
  .topbar .badge { display: none; }
}
@media (max-width: 640px) {
  .hero { padding: 3.5rem 0 6rem; }
  .hero__divider { height: 40px; }
  .hero-portrait { margin-bottom: -6rem; }
  .hero-portrait img { height: clamp(300px, 46vh, 420px); }
  .hero-portrait figcaption { bottom: 6.5rem; }
  .section--wave-top { padding-top: 5rem; }
  .section--wave-top .wave-top { height: 24px; }
  section { padding: 3.75rem 0; }
  .trustbar .container, .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stat-strip { flex-wrap: wrap; gap: 1.5rem; }
  .nl-form { flex-direction: column; }
  .site-footer .cols { grid-template-columns: 1fr; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
}
