/* ============================================================
   Holl Law & Mediation — shared stylesheet
   Static responsive site (no WordPress, no backend)
   ============================================================ */

:root {
  --navy: #2b3843;
  --navy-dark: #202b34;
  --gold: #e6a23c;
  --gold-light: #f6c98a;
  --ink: #33383d;
  --muted: #6f767c;
  --line: #e4e4e0;
  --bg: #ffffff;
  --bg-alt: #f4f4f2;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  --maxw: 1160px;
  --shadow: 0 18px 40px rgba(32, 43, 52, 0.10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1.1em; }

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

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

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

.section { padding: 84px 0; }
.section--alt { background: var(--bg-alt); }

.eyebrow {
  display: block;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title {
  text-align: center;
  font-size: 2.1rem;
  margin-bottom: 12px;
}

.section-title::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  background: var(--gold);
  margin: 18px auto 0;
}

.lead {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--muted);
  font-size: 1.08rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  padding: 14px 30px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid var(--gold);
}
.btn--solid { background: var(--gold); color: #fff; }
.btn--solid:hover { background: #d9902c; border-color: #d9902c; text-decoration: none; }
.btn--ghost { background: transparent; color: var(--gold); }
.btn--ghost:hover { background: var(--gold); color: #fff; text-decoration: none; }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn--ghost-light:hover { background: #fff; color: var(--navy); text-decoration: none; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--navy);
  font-weight: 600;
}
.brand:hover { text-decoration: none; }
.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.4px;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); text-decoration: none; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 26px;
  color: var(--gold);
  cursor: pointer;
}

/* ---------- Hero / page headers ---------- */
.hero, .page-header {
  background:
    linear-gradient(rgba(30,40,48,0.72), rgba(30,40,48,0.82)),
    linear-gradient(135deg, #3a4a57 0%, #232f38 55%, #cf8f3e 190%);
  color: #fff;
  text-align: center;
}
.hero { padding: 150px 0; }
.hero h1 { color: #fff; font-size: 3.2rem; margin-bottom: 14px; }
.hero .tagline {
  letter-spacing: 6px;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--gold-light);
  margin-bottom: 30px;
}
.page-header { padding: 96px 0; }
.page-header h1 { color: #fff; font-size: 2.8rem; margin: 0; }
.page-header p { color: rgba(255,255,255,0.85); margin: 14px 0 0; }

/* ---------- Intro split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split .accent-card {
  background: var(--navy);
  color: #fff;
  padding: 48px;
  border-radius: 4px;
  box-shadow: var(--shadow);
}
.split .accent-card h3 { color: #fff; }
.split .accent-card p { color: rgba(255,255,255,0.82); }

/* ---------- Cards grid ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .icon {
  width: 60px; height: 60px;
  margin: 0 auto 20px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.card .icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.98rem; margin-bottom: 0; }

/* ---------- Practice detail ---------- */
.practice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 64px;
}
.practice h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.practice h3::after {
  content: "";
  display: block;
  width: 48px; height: 3px;
  background: var(--gold);
  margin: 12px 0 22px;
}
.practice p { color: var(--muted); }

/* ---------- Why choose / list ---------- */
.feature-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
}
.feature-list li {
  padding-left: 34px;
  position: relative;
  font-weight: 600;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 16px; height: 16px;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

/* ---------- Philosophy steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; margin-top: 30px; }
.step .num {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}
.step h4 { margin: 10px 0 6px; font-size: 1.2rem; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 56px; margin-top: 44px; }
.quote .stars { color: var(--gold); letter-spacing: 3px; font-size: 18px; margin-bottom: 12px; }
.quote p { font-style: italic; color: var(--ink); }
.quote .who { font-weight: 700; font-style: normal; color: var(--navy); font-size: 0.95rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    linear-gradient(rgba(30,40,48,0.85), rgba(30,40,48,0.9)),
    linear-gradient(135deg, #3a4a57, #232f38);
  color: #fff;
  text-align: center;
  padding: 72px 0;
}
.cta-band h2 { color: #fff; font-size: 2.2rem; margin-bottom: 24px; }

/* ---------- Contact cards ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}
.contact-card .icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.contact-card .icon svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 1.15rem; letter-spacing: 1px; text-transform: uppercase; font-family: var(--sans); font-weight: 700; }
.contact-card p { color: var(--muted); margin-bottom: 0; }
.contact-card a { color: var(--gold); }

/* ---------- Disclaimer ---------- */
.disclaimer {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
  font-size: 0.97rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  text-align: center;
  padding: 34px 0;
  font-size: 13px;
}
.site-footer a { color: rgba(255,255,255,0.8); }
.site-footer .footer-links { margin-bottom: 10px; }
.site-footer .footer-links a { margin: 0 12px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 74px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-top: 1px solid var(--line); }
  .nav-links a { display: block; padding: 14px 24px; }

  .split, .practice-grid, .grid-3, .quotes,
  .steps, .contact-cards, .feature-list { grid-template-columns: 1fr; }
  .split { gap: 32px; }

  .hero { padding: 100px 0; }
  .hero h1 { font-size: 2.3rem; }
  .page-header h1 { font-size: 2rem; }
  .section { padding: 60px 0; }
  .split .accent-card { padding: 34px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .hero h1 { font-size: 2rem; }
  .btn { padding: 12px 22px; }
}
