/* ============================================================
   SONIA HILL LEGAL CONSULTING — Design System
   Brand: deep navy (#0D1B3E), gold (#C9A96E), charcoal (#1A1A2E)
   Typography: Cormorant Garamond (serif) + Lato (sans)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Lato:wght@300;400;700&display=swap');

/* ── CSS Variables ── */
:root {
  --sh-gold:      #C9A96E;
  --sh-gold-dk:   #A8854A;
  --sh-navy:      #0D1B3E;
  --sh-navy-lt:   #162447;
  --sh-charcoal:  #1A1A2E;
  --sh-cream:     #F8F5F0;
  --sh-tan:       #E8D5B7;
  --sh-white:     #FFFFFF;
  --sh-text:      #2C2C2C;
  --sh-muted:     #6B6B6B;
  --nav-h:        72px;
  --radius:       4px;
  --shadow:       0 4px 24px rgba(13,27,62,.10);
  --shadow-lg:    0 8px 40px rgba(13,27,62,.16);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: var(--sh-text);
  background: var(--sh-white);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--sh-muted); }

.section-label {
  font-family: 'Lato', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sh-gold);
  display: block;
  margin-bottom: .75rem;
}
.section-title { margin-bottom: 1rem; }
.section-sub   { max-width: 600px; margin: 0 auto 2.5rem; text-align: center; }

/* ── Layout ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.section   { padding: 5rem 0; }
.section-alt { background: var(--sh-cream); }
.text-center { text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: .75rem 2rem;
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background .2s, transform .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  background: var(--sh-gold);
  color: var(--sh-navy);
}
.btn-gold:hover { background: var(--sh-gold-dk); }
.btn-navy {
  background: var(--sh-navy);
  color: var(--sh-white);
}
.btn-navy:hover { background: var(--sh-navy-lt); }
.btn-outline {
  background: transparent;
  color: var(--sh-gold);
  border: 2px solid var(--sh-gold);
}
.btn-outline:hover { background: var(--sh-gold); color: var(--sh-navy); }
.btn-full { display: block; width: 100%; text-align: center; }

/* ── Navigation ── */
.sh-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--sh-navy);
  z-index: 1000;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.sh-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.sh-nav-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.sh-nav-brand-text { display: flex; flex-direction: column; }
.sh-nav-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--sh-white);
  line-height: 1.1;
}
.sh-nav-brand-sub {
  font-family: 'Lato', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sh-gold);
}
.sh-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.sh-nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  transition: color .2s;
}
.sh-nav-links a:hover,
.sh-nav-links a.active { color: var(--sh-gold); }
.sh-nav-cta {
  background: var(--sh-gold);
  color: var(--sh-navy) !important;
  padding: .45rem 1.25rem;
  border-radius: var(--radius);
}
.sh-nav-cta:hover { background: var(--sh-gold-dk); color: var(--sh-navy) !important; }
.sh-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.sh-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sh-white);
  border-radius: 2px;
  transition: all .3s;
}

/* ── Hero ── */
.sh-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--sh-navy);
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.sh-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,62,.95) 0%, rgba(26,26,46,.85) 100%);
  z-index: 1;
}
.sh-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/soniahill-headshot.webp');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}
.sh-hero .container { position: relative; z-index: 2; }
.sh-hero-content { max-width: 640px; }
.sh-hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sh-gold);
  margin-bottom: 1rem;
}
.sh-hero h1 { color: var(--sh-white); margin-bottom: 1.25rem; }
.sh-hero p  { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 2rem; }
.sh-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Page Hero (inner pages) ── */
.sh-page-hero {
  background: var(--sh-navy);
  padding: calc(var(--nav-h) + 3rem) 0 3rem;
  text-align: center;
}
.sh-page-hero h1 { color: var(--sh-white); margin-bottom: .75rem; }
.sh-page-hero p  { color: rgba(255,255,255,.7); max-width: 560px; margin: 0 auto; }
.sh-breadcrumb {
  font-family: 'Lato', sans-serif;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.sh-breadcrumb a { color: var(--sh-gold); }

/* ── Stats Bar ── */
.sh-stats {
  background: var(--sh-charcoal);
  padding: 2.5rem 0;
}
.sh-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}
.sh-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: var(--sh-gold);
  line-height: 1;
  margin-bottom: .25rem;
}
.sh-stat-label {
  font-family: 'Lato', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

/* ── Service Cards ── */
.sh-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.sh-service-card {
  background: var(--sh-white);
  border: 1px solid var(--sh-tan);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
}
.sh-service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.sh-service-icon {
  width: 48px;
  height: 48px;
  background: var(--sh-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}
.sh-service-card h3 {
  font-size: 1.2rem;
  color: var(--sh-navy);
  margin-bottom: .5rem;
}
.sh-service-card p { font-size: .9rem; }
.sh-service-price {
  display: inline-block;
  margin-top: 1rem;
  font-family: 'Lato', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--sh-gold-dk);
  background: var(--sh-cream);
  padding: .3rem .75rem;
  border-radius: 20px;
}

/* ── How It Works ── */
.sh-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.sh-step {
  text-align: center;
  padding: 2rem 1.5rem;
}
.sh-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sh-gold);
  color: var(--sh-navy);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.sh-step h3 { color: var(--sh-navy); margin-bottom: .5rem; }

/* ── Testimonials ── */
.sh-testimonials { background: var(--sh-navy); }
.sh-testimonials .section-label { color: var(--sh-gold); }
.sh-testimonials h2 { color: var(--sh-white); }
.sh-test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.sh-test-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(201,169,110,.25);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.sh-test-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,.85);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.sh-test-name {
  font-family: 'Lato', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--sh-gold);
}
.sh-test-role {
  font-family: 'Lato', sans-serif;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}

/* ── FAQ ── */
.sh-faq-list { margin-top: 2.5rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.sh-faq-item {
  border-bottom: 1px solid var(--sh-tan);
  padding: 1.25rem 0;
}
.sh-faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--sh-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.sh-faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--sh-gold);
  flex-shrink: 0;
  transition: transform .2s;
}
.sh-faq-item.open .sh-faq-q::after { transform: rotate(45deg); }
.sh-faq-a {
  display: none;
  padding-top: .75rem;
  font-size: .95rem;
  color: var(--sh-muted);
}
.sh-faq-item.open .sh-faq-a { display: block; }

/* ── CTA Banner ── */
.sh-cta-banner {
  background: linear-gradient(135deg, var(--sh-navy) 0%, var(--sh-charcoal) 100%);
  padding: 5rem 0;
  text-align: center;
}
.sh-cta-banner h2 { color: var(--sh-white); margin-bottom: 1rem; }
.sh-cta-banner p  { color: rgba(255,255,255,.7); margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ── About Grid ── */
.sh-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.sh-about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.sh-about-img img { width: 100%; height: 520px; object-fit: cover; object-position: top; }

/* ── Contact Grid ── */
.sh-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.sh-contact-info h2 { color: var(--sh-navy); margin-bottom: 1rem; }
.sh-contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.sh-contact-item-icon {
  width: 40px;
  height: 40px;
  background: var(--sh-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.sh-contact-item-text strong {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sh-navy);
  margin-bottom: .2rem;
}
.sh-contact-item-text span { font-size: .9rem; color: var(--sh-muted); }
.sh-contact-item-text a { color: var(--sh-gold-dk); }

/* ── Form ── */
.sh-form-card {
  background: var(--sh-white);
  border: 1px solid var(--sh-tan);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.sh-form-card h3 { color: var(--sh-navy); margin-bottom: .5rem; }
.form-sub { font-size: .85rem; margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sh-navy);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .65rem .9rem;
  border: 1px solid var(--sh-tan);
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: .9rem;
  color: var(--sh-text);
  background: var(--sh-white);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sh-gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,.15);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.req { color: #C0392B; }
.form-check {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: .75rem;
  background: var(--sh-cream);
  border-radius: var(--radius);
  border: 1px solid var(--sh-tan);
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: .15rem;
  accent-color: var(--sh-navy);
  cursor: pointer;
}
.form-check label {
  font-size: .82rem;
  color: var(--sh-muted);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.form-check label a { color: var(--sh-gold-dk); text-decoration: underline; }
.form-disclaimer {
  font-size: .78rem;
  color: var(--sh-muted);
  background: var(--sh-cream);
  border-left: 3px solid var(--sh-gold);
  padding: .75rem 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 1rem;
  line-height: 1.6;
}
.form-disclaimer a { color: var(--sh-gold-dk); text-decoration: underline; }
.form-links {
  text-align: center;
  font-size: .78rem;
  color: var(--sh-muted);
}
.form-links a { color: var(--sh-gold-dk); text-decoration: underline; }

/* ── Footer ── */
.sh-footer {
  background: var(--sh-charcoal);
  padding: 4rem 0 2rem;
  color: rgba(255,255,255,.7);
}
.sh-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.sh-footer-brand-name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--sh-white);
  margin-bottom: .25rem;
}
.sh-footer-brand-sub {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sh-gold);
  margin-bottom: 1rem;
}
.sh-footer p { font-size: .88rem; color: rgba(255,255,255,.55); margin-bottom: .5rem; }
.sh-footer h4 {
  font-family: 'Lato', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sh-gold);
  margin-bottom: 1rem;
}
.sh-footer ul li { margin-bottom: .5rem; }
.sh-footer ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.sh-footer ul li a:hover { color: var(--sh-gold); }
.sh-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}
.sh-footer-bottom a { color: rgba(255,255,255,.5); }
.sh-footer-bottom a:hover { color: var(--sh-gold); }
.sh-sms-quick {
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  margin-top: .75rem;
}

/* ── Legal Pages ── */
.sh-legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 0;
}
.sh-legal-content h2 {
  font-size: 1.5rem;
  color: var(--sh-navy);
  margin: 2rem 0 .75rem;
}
.sh-legal-content h3 {
  font-size: 1.1rem;
  color: var(--sh-navy);
  margin: 1.5rem 0 .5rem;
}
.sh-legal-content p { margin-bottom: 1rem; }
.sh-legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.sh-legal-content ul li { color: var(--sh-muted); font-size: .95rem; margin-bottom: .4rem; }
.sh-legal-content a { color: var(--sh-gold-dk); text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .sh-about-grid,
  .sh-contact-grid { grid-template-columns: 1fr; }
  .sh-footer-grid  { grid-template-columns: 1fr 1fr; }
  .sh-about-img img { height: 340px; }
}
@media (max-width: 768px) {
  .sh-nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--sh-navy); padding: 1.5rem; gap: 1rem; }
  .sh-nav-links.open { display: flex; }
  .sh-nav-toggle { display: flex; }
  .sh-nav { position: fixed; }
  .form-row { grid-template-columns: 1fr; }
  .sh-hero-btns { flex-direction: column; }
  .sh-footer-grid { grid-template-columns: 1fr; }
  .sh-footer-bottom { flex-direction: column; text-align: center; }
}
