/* ============================================================
   HIRANI LAW FIRM — Design System v2
   Cormorant Garamond (headings) + Inter (body)
   Palette: white · off-white · near-black · warm gold
   ============================================================ */

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

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; }

/* ── Tokens ── */
:root {
  --black:   #111111;
  --ink:     #1e1e1e;
  --muted:   #6a6a6a;
  --light:   #a8a8a8;
  --gold:    #b8943f;
  --gold-lt: #cca84d;
  --cream:   #f7f4ee;
  --surface: #faf8f4;
  --white:   #ffffff;
  --border:  #e5ddd0;
  --border-dk: rgba(255,255,255,0.12);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;

  --r: 0px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
}

/* ── Base ── */
body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(38px, 5.5vw, 58px); }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: clamp(20px, 2.5vw, 26px); }
h4 { font-size: 18px; }
p  { color: var(--muted); line-height: 1.8; }

.eyebrow {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.lead {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
}

.section-lead {
  font-size: 16px;
  color: var(--muted);
  margin-top: 10px;
  max-width: 680px;
  line-height: 1.8;
}

/* ── Layout ── */
.wrap { width: min(1160px, 92vw); margin: 0 auto; }
section { padding: 72px 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 26px;
  min-height: 46px;
  border: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-primary  { background: var(--gold);  color: var(--white); }
.btn-primary:hover  { background: var(--gold-lt); }
.btn-dark     { background: var(--black); color: var(--white); }
.btn-dark:hover     { background: #2a2a2a; }
.btn-outline  { background: transparent; border: 1px solid rgba(255,255,255,0.45); color: var(--white); }
.btn-outline:hover  { background: var(--white); color: var(--black); }
.btn-ghost    { background: transparent; border: 1px solid var(--border); color: var(--ink); }
.btn-ghost:hover    { border-color: var(--gold); color: var(--gold); }

/* ── Top bar ── */
.topbar {
  background: var(--black);
  color: #999;
  font-size: 11.5px;
  padding: 7px 0;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.topbar a { color: var(--gold-lt); }

/* ── Header ── */
.site-header {
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0;
  min-height: 68px;
}
.logo-image-link { display: flex; align-items: center; }
.logo-image-link img {
  height: 42px;
  width: auto;
  filter: brightness(1.05);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  color: #d4d4d4;
  letter-spacing: 0.01em;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--gold-lt); }

.header-language {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: #999;
}
.header-language select {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: #ccc;
  font-size: 11.5px;
  padding: 5px 8px;
  outline: none;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 12px;
  padding: 8px 14px;
}

/* ── Hero ── */
.hero {
  position: relative;
  background:
    linear-gradient(100deg, rgba(10,10,10,0.93) 0%, rgba(10,10,10,0.72) 52%, rgba(10,10,10,0.28) 100%),
    url('../Hero image (2).jpeg') center center / cover no-repeat,
    var(--black);
  color: var(--white);
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  padding: 52px 0 52px;
  align-items: center;
}
.hero-copy { padding-top: 12px; }
.hero h1 { color: var(--white); margin: 12px 0 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* Evaluation card */
.evaluation-card {
  background: var(--white);
  border-top: 4px solid var(--gold);
  padding: 28px 26px;
  align-self: start;
}
.evaluation-card .eyebrow { color: var(--gold); }
.evaluation-card h2 { font-size: 24px; margin-bottom: 6px; color: var(--ink); }
.evaluation-card > p { font-size: 13px; margin-bottom: 16px; }

.mini-form, .contact-form { display: grid; gap: 16px; }
.mini-form input, .mini-form select, .mini-form textarea,
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink);
  font: inherit;
  font-size: 13.5px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.15s;
}
.mini-form input:focus, .mini-form select:focus, .mini-form textarea:focus,
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--gold);
}
.mini-form textarea, .contact-form textarea { min-height: 96px; resize: vertical; }
.mini-form .btn, .contact-form .btn { width: 100%; margin-top: 4px; }

/* ── WPForms override — nuclear reset to match site form styling ── */

/* Strip all WPForms container chrome */
.wpforms-container,
.wpforms-container .wpforms-form { margin: 0 !important; padding: 0 !important; font-family: inherit !important; }

/* Stack fields with even spacing */
.wpforms-container .wpforms-form { display: block !important; }
.wpforms-container .wpforms-field-container { display: grid !important; gap: 20px !important; }
.wpforms-container .wpforms-field { padding: 0 !important; margin: 0 !important; }

/* Hide top-level field labels (we use sublabels only) */
.wpforms-container .wpforms-field-label { display: none !important; }

/* Sublabels sit above input: use flex-column + order so label renders first */
.wpforms-container .wpforms-field-row-block,
.wpforms-container .wpforms-field-row > div {
  display: flex !important;
  flex-direction: column !important;
}
.wpforms-container .wpforms-field-sublabel {
  display: none !important;
}

/* First / Last name row — side by side */
.wpforms-container .wpforms-field-row {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 14px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
.wpforms-container .wpforms-field-row-block,
.wpforms-container .wpforms-field-row > div {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  width: auto !important;
  max-width: none !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

/* Neutralise WPForms' own size-class width constraints */
.wpforms-container .wpforms-field-medium,
.wpforms-container .wpforms-field-large,
.wpforms-container .wpforms-field-small,
.wpforms-container .wpforms-one-half,
.wpforms-container .wpforms-one-third,
.wpforms-container .wpforms-two-thirds { max-width: 100% !important; }

/* Input / select / textarea styling */
.wpforms-container input[type="text"],
.wpforms-container input[type="email"],
.wpforms-container input[type="tel"],
.wpforms-container input[type="number"],
.wpforms-container input[type="url"],
.wpforms-container select,
.wpforms-container textarea {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: block !important;
  width: 100% !important;
  background: var(--surface) !important;
  border: 1.5px solid #c8bfaf !important;
  color: var(--ink) !important;
  font-family: inherit !important;
  font-size: 13.5px !important;
  line-height: 1.4 !important;
  padding: 11px 14px !important;
  outline: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: border-color 0.15s !important;
}
.wpforms-container input[type="text"]:focus,
.wpforms-container input[type="email"]:focus,
.wpforms-container input[type="tel"]:focus,
.wpforms-container input[type="url"]:focus,
.wpforms-container select:focus,
.wpforms-container textarea:focus { border-color: var(--gold) !important; outline: none !important; box-shadow: none !important; }

.wpforms-container input::placeholder,
.wpforms-container textarea::placeholder { color: var(--muted) !important; opacity: 1 !important; }
.wpforms-container textarea { min-height: 96px !important; resize: vertical !important; }

/* Submit button */
.wpforms-container .wpforms-submit-container { margin: 4px 0 0 !important; padding: 0 !important; }
.wpforms-container button[type="submit"],
.wpforms-container input[type="submit"] {
  display: block !important;
  width: 100% !important;
  background: var(--black) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 0 !important;
  font-family: inherit !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  padding: 14px 20px !important;
  cursor: pointer !important;
  transition: opacity 0.15s !important;
  box-shadow: none !important;
}
.wpforms-container button[type="submit"]:hover,
.wpforms-container input[type="submit"]:hover { opacity: 0.85 !important; background: var(--black) !important; }

/* Error & helper text */
.wpforms-container .wpforms-error { font-size: 11.5px !important; color: #c0392b !important; margin-top: 3px !important; }
.wpforms-container .wpforms-field-description { font-size: 11.5px !important; }

/* Spinner / loading state */
.wpforms-container .wpforms-submit-spinner { display: inline-block; }

/* Thank-you / confirmation box */
.wpforms-container .wpforms-confirmation-container-full {
  background: var(--surface) !important;
  border: 1px solid var(--gold) !important;
  color: var(--ink) !important;
  padding: 24px 20px !important;
  text-align: center !important;
  border-radius: 0 !important;
}

.form-thank-you {
  background: var(--surface);
  border: 1px solid var(--gold);
  color: var(--ink);
  padding: 28px 20px;
  text-align: center;
}
.form-thank-you h3 {
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--ink);
}
.form-thank-you p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
}

.form-thank-you {
  background: var(--surface);
  border: 1px solid var(--gold);
  color: var(--ink);
  padding: 28px 20px;
  text-align: center;
}
.form-thank-you h3 {
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--ink);
}
.form-thank-you p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
}

/* ── Proof bar ── */
.hero-proof {
  background: #0d0d0d;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide: horizontal;
}
.proof-item {
  padding: 26px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}
.proof-item:last-child { border-right: none; }
.proof-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  color: var(--gold-lt);
  line-height: 1;
}
.proof-item span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  margin-top: 8px;
}

/* ── Bands ── */
.band-cream { background: var(--cream); }
.band-white { background: var(--white); }

/* ── Practice overview ── */
.practice-overview .wrap { display: grid; grid-template-columns: 360px 1fr; gap: 64px; align-items: start; }
.practice-overview-copy h2 { margin-bottom: 12px; }
.practice-overview-copy .btn { margin-top: 24px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

.practice-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
  text-decoration: none;
}
.practice-card:hover { border-color: var(--gold); }
.practice-card-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.practice-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.practice-card:hover .practice-card-image img { transform: scale(1.04); }
.practice-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(10,10,10,0.82) 100%);
}
.practice-card .icon {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 36px; height: 36px;
  line-height: 36px;
  text-align: center;
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}
.practice-card h3 {
  position: relative; z-index: 1;
  color: var(--white);
  font-size: 26px;
  margin-bottom: 8px;
}
.practice-card p {
  position: relative; z-index: 1;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
}
.card-link {
  position: relative; z-index: 1;
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-lt);
}
.featured-practice { /* keeps same treatment */ }

/* ── Attorney panel ── */
.attorney-panel {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
}
.attorney-panel img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.attorney-panel > div { padding: 52px 48px; }
.attorney-panel h2 { margin-bottom: 20px; }
.attorney-panel p { margin-bottom: 14px; font-size: 14.5px; }

.badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 28px; }
.badges span {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border: 1px solid var(--border);
  color: var(--muted);
  text-transform: uppercase;
}

/* ── Credentials logo strip ── */
.credentials-logo-section { background: #080808; padding: 36px 0; }
.credentials-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.07);
}
.credential-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  min-height: 120px;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.credential-logo-box:last-child { border-right: none; }
.credential-logo-box:hover { background: rgba(255,255,255,0.04); }
.credential-logo-box img {
  max-height: 72px;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.2s;
}
.credential-logo-box:hover img { opacity: 0.9; }

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px;
}
.card h3 { margin-bottom: 10px; }
.card p { font-size: 14px; }

/* ── Why grid ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 36px;
}
.why-card {
  background: var(--white);
  padding: 28px 22px;
}
.why-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--cream);
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 14px;
}
.why-card h3 { font-size: 18px; margin-bottom: 8px; }
.why-card p  { font-size: 13px; }

/* ── Client feedback / strengths ── */
.client-feedback-section { background: var(--cream); }
.strengths-section { background: var(--cream); }

.strengths-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.client-feedback-section .strengths-layout { grid-template-columns: 1fr; }

.strengths-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  padding: 36px;
}
.strengths-card h2 { margin-bottom: 12px; }
.strengths-card p  { margin-bottom: 24px; }

.strength-bars { display: grid; gap: 16px; }
.strength-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 6px;
}
.strength-label span { color: var(--gold); }
.strength-track { height: 4px; background: var(--border); overflow: hidden; }
.strength-fill {
  height: 100%;
  width: 0;
  background: var(--gold);
  transition: width 1.2s ease;
}
.is-visible .strength-fill { width: var(--bar); }

/* ── Google-style review cards ── */
.google-reviews-section {
  background: var(--black);
  padding: 72px 0;
  text-align: center;
}
.google-reviews-section h2 {
  color: var(--gold);
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 800;
  font-family: var(--sans, 'Inter', sans-serif);
  margin-bottom: 40px;
}
.google-reviews-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 16px;
  -webkit-overflow-scrolling: touch;
}
.google-reviews-track::-webkit-scrollbar { height: 6px; }
.google-reviews-track::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 4px; }
.grc {
  scroll-snap-align: start;
  flex: 0 0 320px;
  background: var(--white);
  border-radius: 16px;
  padding: 22px 22px 20px;
  text-align: left;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.grc-top { display: flex; align-items: center; gap: 12px; }
.grc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.grc-id { flex: 1; min-width: 0; }
.grc-name { font-weight: 700; font-size: 14.5px; color: var(--ink); }
.grc-time { font-size: 12px; color: var(--muted); }
.grc-google {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.grc-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 12px 0 10px;
}
.grc-stars .grc-star-row { display: flex; gap: 2px; color: #F4B400; }
.grc-verified { color: #1A73E8; width: 15px; height: 15px; }
.grc-text {
  font-size: 13.5px;
  line-height: 1.65;
  color: #3c4043;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.grc-text.is-expanded {
  display: block;
  -webkit-line-clamp: unset;
}
.grc-readmore {
  display: inline-block;
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--muted);
  cursor: pointer;
  text-decoration: none;
}
.grc-readmore:hover { color: var(--ink); }
.google-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.google-reviews-grid .grc { flex: none; }
@media (max-width: 860px) {
  .google-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .google-reviews-grid { grid-template-columns: 1fr; }
}

.strengths-reviews { margin-top: 36px; padding-top: 36px; border-top: 1px solid var(--border); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.review {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 24px;
}
.stars {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
}
.review blockquote {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.4;
  color: var(--ink);
  font-style: italic;
}
.review cite {
  display: block;
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
  color: var(--light);
  margin-top: 14px;
  letter-spacing: 0.03em;
}
.feedback-cta { display: flex; justify-content: center; margin-top: 28px; }

/* ── Tools strip ── */
.tools-strip { background: var(--surface); }
.tools-head { max-width: 640px; margin-bottom: 28px; }
.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.tools-grid--single {
  grid-template-columns: 1fr;
  max-width: 460px;
  background: none;
  border: none;
}
.tool {
  background: var(--white);
  padding: 22px 20px;
  transition: background 0.15s;
}
.tool:hover { background: var(--surface); }
.tool b { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.tool span { font-size: 12.5px; color: var(--muted); line-height: 1.65; }

.tool--resource {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.tool--resource:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.10);
  border-color: var(--gold);
}
.tool--resource .tool-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  margin-bottom: 6px;
}
.tool--resource b {
  font-family: var(--serif, 'Cormorant Garamond', serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}
.tool--resource span { font-size: 13px; }
.tool--resource .tool-meta {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ── Service area ── */
.service-area-map { background: var(--cream); }
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 28px;
}
.area {
  background: var(--white);
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

/* ── Contact section ── */
.contact-section { background: var(--surface); }
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  padding: 48px;
}
.contact-card h2 { margin-bottom: 12px; }
.contact-card .section-lead { margin-bottom: 28px; }
.detail { padding: 14px 0; border-top: 1px solid var(--border); }
.detail b { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.detail a { color: var(--ink); font-size: 15px; }

/* ── Chat widget ── */
.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 200; }
.chat-toggle {
  background: var(--black);
  border: 1px solid var(--gold);
  border-radius: 0;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 12px 20px;
  text-transform: uppercase;
}
.chat-panel {
  display: none;
  position: absolute;
  bottom: 52px;
  right: 0;
  width: 300px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  padding: 22px;
}
.chat-panel.open { display: block; }
.chat-panel h3 { font-size: 20px; margin-bottom: 8px; }
.chat-panel p  { font-size: 13px; margin-bottom: 14px; }
.quick-links { display: grid; gap: 6px; }
.quick-links a {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  transition: border-color 0.15s;
}
.quick-links a:hover { border-color: var(--gold); color: var(--gold); }

/* ── Footer ── */
footer {
  background: #0a0a0a;
  color: #888;
  padding: 56px 0 0;
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
footer h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 18px;
}
footer a {
  display: block;
  color: #777;
  margin-bottom: 8px;
  font-size: 13px;
  transition: color 0.15s;
}
footer a:hover { color: var(--gold-lt); }
footer p { color: #666; font-size: 13px; line-height: 1.75; }
.disclaimer {
  padding: 18px 0;
  color: #444;
  font-size: 11.5px;
  line-height: 1.7;
}

/* ── Inner page: hero ── */
.page-hero {
  background: var(--black);
  padding: 64px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.page-hero h1 { color: var(--white); margin: 8px 0 14px; }
.page-hero p  { color: rgba(255,255,255,0.6); font-size: 15px; max-width: 600px; }
.breadcrumb {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ── Inner page: content ── */
.content-page {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}

.content-block { padding: 0; }
.legal-copy { font-size: 15px; line-height: 1.85; color: var(--muted); }
.legal-copy h2 {
  font-size: 30px;
  color: var(--ink);
  margin: 36px 0 12px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.legal-copy h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-copy h3 { font-size: 20px; color: var(--ink); margin: 28px 0 10px; }
.legal-copy p  { color: var(--muted); margin-bottom: 14px; font-size: 15px; }
.legal-copy p + p { margin-top: 0; }
.legal-copy ul { margin: 12px 0 18px 20px; color: var(--muted); }
.legal-copy li { margin-bottom: 6px; }
.two-column-list { columns: 2; list-style-position: inside; margin-top: 14px; }

/* Sidebar on inner pages */
.page-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-contact {
  background: var(--black);
  color: var(--white);
  padding: 28px;
  border-top: 4px solid var(--gold);
}
.sidebar-contact .eyebrow { color: var(--gold); margin-bottom: 10px; }
.sidebar-contact h3 { color: var(--white); font-size: 22px; margin-bottom: 12px; }
.sidebar-contact p  { color: #aaa; font-size: 13px; margin-bottom: 18px; }
.sidebar-contact .btn { width: 100%; text-align: center; margin-bottom: 10px; }
.sidebar-phone {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold-lt);
  display: block;
  text-align: center;
  margin-top: 8px;
}

.sidebar-links { border: 1px solid var(--border); }
.sidebar-links h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
.sidebar-links a {
  display: block;
  padding: 11px 16px;
  font-size: 13px;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
  transition: color 0.15s, background 0.15s;
}
.sidebar-links a:last-child { border-bottom: none; }
.sidebar-links a:hover { background: var(--surface); color: var(--gold); }

/* FAQ on inner pages */
.faq { border-top: 1px solid var(--border); padding: 22px 0; }
.faq h3 { font-size: 18px; margin-bottom: 8px; color: var(--ink); }
.faq p  { font-size: 14px; }

/* ── Practice cards (check list variant) ── */
.check-list { list-style: none; margin-top: 12px; }
.check-list li {
  padding: 8px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13.5px;
}
.check-list li:before { content: '+'; color: var(--gold); font-weight: 700; margin-right: 10px; }

.service-link-list a {
  color: var(--ink);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}

/* ── Results / credentials (dark sections) ── */
.results {
  background: var(--black);
  color: var(--white);
  text-align: center;
}
.results h2, .results p { color: var(--white); }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08); margin-top: 36px; }
.result-item { background: var(--black); padding: 36px 24px; }
.result-item strong { display: block; font-family: var(--serif); font-size: 44px; font-weight: 500; color: var(--gold-lt); line-height: 1; }
.result-item span { display: block; font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: #888; margin-top: 8px; }

.credentials { background: #060606; }
.credential-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 28px; }
.credential { border: 1px solid rgba(255,255,255,0.08); padding: 20px; }
.credential b { display: block; color: var(--gold-lt); font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; }
.credential span { display: block; color: #777; font-size: 13px; margin-top: 6px; }

/* ── Scroll reveal ── */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
.reveal-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.reveal-on-scroll:nth-child(3) { transition-delay: 0.2s; }

/* ── Reviews full page ── */
.reviews-grid-full .review blockquote { min-height: 80px; }

/* ── Responsive ── */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .site-header.mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #111;
    padding: 4px 5vw 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
    gap: 0;
    max-height: 60vh;
    overflow-y: auto;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  }
  .site-header.mobile-open .nav-links > a,
  .site-header.mobile-open .nav-dropdown-wrap {
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .site-header.mobile-open .nav-links > a {
    padding: 11px 0;
    font-size: 13px;
  }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .credential-grid { grid-template-columns: repeat(3, 1fr); }
  .credentials-logo-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .hero .wrap,
  .practice-overview .wrap,
  .attorney-panel,
  .contact-card,
  .content-page { grid-template-columns: 1fr; }
  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.55) 50%, rgba(10,10,10,0.80) 100%),
      url('../Hero image (2).jpeg') center top / cover no-repeat,
      var(--black);
  }
  .hero .wrap { padding: 56px 0; }
  .attorney-panel img { min-height: 320px; max-height: 420px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2, .grid-3, .results-grid, .reviews-grid, .area-grid, .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .strengths-layout { grid-template-columns: 1fr; }
  .contact-card { padding: 32px; }
  .page-sidebar { position: static; }
}

@media (max-width: 560px) {
  section { padding: 52px 0; }
  h1 { font-size: 34px; }
  .proof-grid, .grid-3, .results-grid, .reviews-grid, .area-grid, .tools-grid, .why-grid, .footer-grid { grid-template-columns: 1fr; }
  .credentials-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .hero .wrap { padding: 44px 0; }
  .contact-card { padding: 24px; gap: 32px; }
  .attorney-panel > div { padding: 28px; }
  .topbar .wrap span:not(:first-child) { display: none; }
  .topbar .wrap { justify-content: center; }
  .chat-widget { bottom: 14px; right: 14px; }
}

/* ============================================================
   PREMIUM COMPONENTS — About · Attorney · Inner Pages
   ============================================================ */

/* ── Page hero variants ── */
.page-hero {
  position: relative;
  background:
    linear-gradient(110deg, rgba(5,5,5,0.96) 0%, rgba(10,10,10,0.80) 55%, rgba(10,10,10,0.50) 100%),
    url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1600&q=80') center / cover no-repeat,
    #0d0d0d;
  padding: 80px 0 72px;
}
.page-hero--about {
  background:
    linear-gradient(110deg, rgba(5,5,5,0.95) 0%, rgba(10,10,10,0.75) 55%, rgba(10,10,10,0.40) 100%),
    url('../Team photo 2.jpeg') center / cover no-repeat,
    #0d0d0d;
}
.page-hero h1 {
  color: #fff;
  max-width: 780px;
  line-height: 1.08;
  margin-bottom: 16px;
}
.page-hero .lead {
  font-size: 16px;
  color: rgba(255,255,255,0.68);
  max-width: 600px;
  font-weight: 300;
  line-height: 1.8;
}

/* ── About page ── */
.about-intro { padding: 80px 0; }
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-split-img { position: relative; }
.about-split-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.img-caption {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 14px;
}
.about-split-copy h2 { margin-bottom: 18px; }
.about-split-copy p  { margin-bottom: 14px; font-size: 15px; }
.about-since {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.since-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.since-item span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light);
  margin-top: 6px;
}

/* Full-width image break */
.about-img-break {
  position: relative;
  height: 340px;
  overflow: hidden;
}
.about-img-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: brightness(0.45);
}
.img-break-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6vw;
}
.pull-quote {
  font-family: var(--serif);
  font-size: clamp(20px, 2.8vw, 32px);
  font-style: italic;
  font-weight: 400;
  color: #fff;
  text-align: center;
  max-width: 820px;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

/* Values */
.about-values { padding: 80px 0; }
.about-values h2 { margin-bottom: 40px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.value-card {
  background: var(--white);
  padding: 36px 28px;
  transition: background 0.2s;
}
.value-card:hover { background: #fdfbf7; }
.value-num {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  color: var(--border);
  line-height: 1;
  margin-bottom: 18px;
  transition: color 0.3s;
}
.value-card:hover .value-num { color: var(--gold); }
.value-card h3 { font-size: 18px; margin-bottom: 10px; }
.value-card p  { font-size: 13.5px; line-height: 1.75; }

/* Attorney feature on about page */
.about-attorney { padding: 80px 0; }
.about-attorney-grid {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 0;
  border: 1px solid var(--border);
}
.about-attorney-photo { position: relative; overflow: hidden; }
.about-attorney-photo img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}
.about-attorney-grid:hover .about-attorney-photo img { transform: scale(1.03); }
.attorney-card-badges {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 32px 20px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.attorney-card-badges span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 4px 10px;
}
.about-attorney-copy { padding: 52px 48px; }
.about-attorney-copy h2 { margin-bottom: 20px; }
.about-attorney-copy p  { font-size: 14.5px; margin-bottom: 14px; }
.about-attorney-copy .btn { margin-top: 10px; }

/* Expect grid */
.about-expect { padding: 80px 0; }
.about-expect h2 { margin-bottom: 40px; }
.expect-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.expect-item {
  background: var(--white);
  transition: background 0.2s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.expect-item:hover { background: var(--surface); }

/* Image variant */
.expect-item--img .expect-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.expect-item--img .expect-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.expect-item--img:hover .expect-img img { transform: scale(1.04); }
.expect-item--img .expect-text {
  padding: 28px 28px 32px;
  flex: 1;
}
.expect-item--img .expect-text h3 { font-size: 18px; margin-bottom: 10px; }
.expect-item--img .expect-text p  { font-size: 13.5px; line-height: 1.75; color: var(--muted); }

/* Legacy icon variant (hidden now, kept for safety) */
.expect-icon { display: none; }
.expect-item:not(.expect-item--img) { padding: 32px 28px; }
.expect-item h3 { font-size: 17px; margin-bottom: 8px; }
.expect-item p  { font-size: 13.5px; line-height: 1.75; }

/* ── Attorney profile page ── */
.atty-hero {
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0;
}
.atty-hero-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 0;
  align-items: stretch;
}
.atty-hero-photo {
  overflow: hidden;
  max-height: 580px;
}
.atty-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.atty-hero-copy {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.atty-hero-copy h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 10px 0 8px;
}
.atty-title {
  font-size: 13px;
  font-weight: 400;
  color: var(--gold-lt);
  letter-spacing: 0.05em;
  line-height: 1.7;
  margin-bottom: 20px;
}
.atty-intro {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 24px;
}
.atty-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.cred-pill {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 5px 12px;
}

/* Attorney bio layout */
.atty-bio-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
  padding-top: 64px;
  padding-bottom: 64px;
}
.atty-bio-main { display: flex; flex-direction: column; gap: 0; }
.bio-section { margin-bottom: 40px; }
.bio-section h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.bio-section p { font-size: 15px; line-height: 1.85; margin-bottom: 12px; }

.bio-pullquote {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 32px 36px;
  margin-bottom: 40px;
}
.bio-pullquote blockquote {
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 24px);
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
}
.bio-pullquote cite {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-top: 14px;
  text-transform: uppercase;
  font-style: normal;
}

.bio-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 40px;
}
.bio-img-item { position: relative; overflow: hidden; }
.bio-img-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.bio-img-item:hover img { transform: scale(1.04); }
.bio-img-item span {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: rgba(255,255,255,0.85);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 20px 14px 12px;
}

.bio-credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 8px;
}
.bio-cred-item {
  background: var(--surface);
  padding: 22px 18px;
}
.bio-cred-item strong {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.bio-cred-item span {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.9;
}

/* Sidebar additions */
.atty-bio-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 16px; }
.sidebar-reviews {
  border: 1px solid var(--border);
  padding: 20px;
}
.sidebar-reviews h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.mini-review { padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--border); }
.mini-review:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.mini-stars { color: var(--gold); font-size: 12px; margin-bottom: 6px; }
.mini-review p  { font-size: 12.5px; font-style: italic; line-height: 1.6; color: var(--ink); }
.mini-review cite { display: block; font-size: 11px; color: var(--light); margin-top: 6px; font-style: normal; }

/* ── Inner page hero polish ── */
.page-hero .breadcrumb { margin-bottom: 14px; }

/* ── Practice area inner pages — richer ── */
.legal-copy h3 {
  font-size: 22px;
  color: var(--ink);
  margin: 32px 0 10px;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
}

/* ── Homepage: hero image refinement ── */
.hero {
  background:
    linear-gradient(100deg, rgba(5,5,5,0.94) 0%, rgba(8,8,8,0.72) 52%, rgba(8,8,8,0.22) 100%),
    url('../Hero image (2).jpeg') center center / cover no-repeat,
    var(--black);
}

/* ── Smooth image hover across site ── */
img { transition: transform 0.5s ease; }
a img:hover { transform: scale(1.02); }

/* ── Section heading refinement ── */
section h2 { letter-spacing: -0.02em; }
section .eyebrow + h2 { margin-top: 0; }

/* ── Premium footer ── */
footer { border-top: 4px solid var(--gold); }

/* ── Responsive additions ── */
@media (max-width: 1000px) {
  .atty-hero-grid,
  .about-attorney-grid { grid-template-columns: 1fr; }
  .atty-hero-copy { padding: 40px 32px; }
  .atty-hero-photo { max-height: 400px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .expect-grid { grid-template-columns: 1fr; }
  .bio-credentials-grid { grid-template-columns: repeat(2, 1fr); }
  .atty-bio-grid { grid-template-columns: 1fr; }
  .atty-bio-sidebar { position: static; }
}
@media (max-width: 700px) {
  .about-split { grid-template-columns: 1fr; gap: 36px; }
  .about-split-img img { height: 300px; }
  .about-img-break { height: 240px; }
  .pull-quote { font-size: 18px; }
  .values-grid,
  .expect-grid { grid-template-columns: 1fr; }
  .bio-img-row { grid-template-columns: 1fr; }
  .bio-credentials-grid { grid-template-columns: 1fr 1fr; }
  .about-since { gap: 20px; }
  .about-attorney-copy { padding: 32px 24px; }
}
/* ── Contact page ── */
.page-hero--contact {
  background:
    linear-gradient(110deg, rgba(5,5,5,0.97) 0%, rgba(8,8,8,0.82) 60%, rgba(8,8,8,0.60) 100%),
    url('../hirani law firm team.jpg') center 45% / cover no-repeat,
    #0d0d0d;
  padding: 64px 0 56px;
}

.contact-page-section { padding: 72px 0; }
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

.contact-form-col h2 { margin-bottom: 4px; }
.contact-form-lg { display: grid; gap: 12px; margin-top: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-privacy {
  font-size: 11.5px;
  color: var(--light);
  text-align: center;
  margin-top: 4px;
}

.contact-details-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
}
.contact-detail-block {
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
}
.contact-detail-block:last-child { border-bottom: none; }
.contact-detail-block .eyebrow { margin-bottom: 8px; font-size: 10px; }

.contact-big-link {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  display: block;
  transition: color 0.15s;
}
.contact-big-link:hover { color: var(--gold); }
.contact-big-link--sm { font-size: 17px; word-break: break-all; }

address {
  font-style: normal;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
}
.map-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-transform: uppercase;
}

.hours-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.hours-table td { padding: 5px 0; color: var(--muted); }
.hours-table td:last-child { text-align: right; color: var(--ink); font-weight: 500; }

.social-links { display: flex; flex-wrap: wrap; gap: 8px; }
.social-links a {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 5px 12px;
  transition: color 0.15s, border-color 0.15s;
}
.social-links a:hover { color: var(--gold); border-color: var(--gold); }

.contact-map { line-height: 0; }
.contact-map iframe { filter: grayscale(20%); }

@media (max-width: 860px) {
  .contact-page-grid { grid-template-columns: 1fr; }
  .contact-details-col { order: -1; }
  .form-row { grid-template-columns: 1fr; }
}
/* ── About page — mission / story / team / CTA ── */
.about-mission { padding: 80px 0; }
.about-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-mission-copy h2 { margin-bottom: 16px; }
.about-mission-copy p  { font-size: 15px; line-height: 1.85; }
.mission-pillars { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.mission-pillar {
  background: var(--white);
  padding: 28px 24px;
  transition: background 0.2s;
}
.mission-pillar:hover { background: #fdfbf7; }
.pillar-icon {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.mission-pillar h3 { font-size: 18px; margin-bottom: 8px; }
.mission-pillar p  { font-size: 13.5px; line-height: 1.75; }
.mission-pillar a  { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

.about-values-section { padding: 80px 0; }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-story-copy h2 { margin-bottom: 16px; }
.about-story-copy p  { font-size: 15px; line-height: 1.85; }
.about-story-copy a  { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.values-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* Team */
.about-team { padding: 80px 0; }
.about-team h2 { margin-bottom: 8px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 40px;
}
.team-card { background: var(--white); display: flex; flex-direction: column; }
.team-photo { overflow: hidden; height: 280px; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.5s ease; }
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-photo--placeholder {
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo--placeholder span {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.5;
}
.team-info { padding: 28px 24px; flex: 1; display: flex; flex-direction: column; }
.team-role {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.team-info h3 { font-size: 22px; margin-bottom: 10px; }
.team-info h3 a { color: var(--ink); }
.team-info h3 a:hover { color: var(--gold); }
.team-info p { font-size: 13.5px; line-height: 1.75; flex: 1; }
.team-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.team-link:hover { text-decoration: underline; }

/* Expect grid links */
.expect-item a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* About CTA band */
.about-cta-band {
  background: var(--black);
  padding: 72px 0;
  border-top: 4px solid var(--gold);
}
.about-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.about-cta-band .eyebrow { color: var(--gold); margin-bottom: 12px; }
.about-cta-band h2 { color: #fff; max-width: 560px; line-height: 1.2; }
.about-cta-actions { display: flex; flex-direction: column; gap: 10px; min-width: 240px; }
.about-cta-actions .btn { text-align: center; justify-content: center; }

/* Inline content links site-wide */
.legal-copy a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.legal-copy a:hover { color: var(--gold-lt); }

/* Responsive */
@media (max-width: 900px) {
  .about-mission-grid,
  .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .values-grid--3 { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .about-cta-inner { grid-template-columns: 1fr; gap: 28px; }
  .about-cta-actions { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 560px) {
  .values-grid--3,
  .team-grid { grid-template-columns: 1fr; }
  .about-cta-actions { flex-direction: column; }
}
/* ============================================================
   PRACTICE AREA PAGES — Premium UI
   ============================================================ */

/* Hero variants */
.page-hero--practice {
  background:
    linear-gradient(110deg, rgba(5,5,5,0.96) 0%, rgba(8,8,8,0.78) 55%, rgba(8,8,8,0.45) 100%),
    url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1600&q=80') center / cover no-repeat,
    #0d0d0d;
}
.page-hero--fl {
  background:
    linear-gradient(110deg, rgba(5,5,5,0.96) 0%, rgba(8,8,8,0.75) 52%, rgba(8,8,8,0.35) 100%),
    url('../family law.jpg') right center / cover no-repeat,
    #0d0d0d;
}
.page-hero--pi {
  background:
    linear-gradient(110deg, rgba(5,5,5,0.96) 0%, rgba(8,8,8,0.78) 52%, rgba(8,8,8,0.40) 100%),
    url('../personal injury.jpg') center / cover no-repeat,
    #0d0d0d;
}

/* Category hero cards (practice areas index) */
.pa-categories { background: var(--black); padding: 0; }
.pa-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #222;
}
.pa-cat-card {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  cursor: pointer;
}
.pa-cat-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
  pointer-events: none;
}
.pa-cat-card:hover .pa-cat-bg { transform: scale(1.06); }
.pa-cat-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  transition: background 0.4s;
  pointer-events: none;
}
.pa-cat-card:hover .pa-cat-overlay {
  background: rgba(0,0,0,0.65);
}
.pa-cat-body {
  position: relative;
  z-index: 2;
  padding: 32px 36px 36px;
  width: 100%;
}
.pa-cat-num {
  position: absolute;
  top: 24px;
  left: 28px;
  z-index: 3;
  background: var(--gold);
  color: var(--white);
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}
.pa-cat-body h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.1;
}
.pa-cat-body p {
  font-size: 14px;
  color: rgba(255,255,255,0.92);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 22px;
  font-weight: 400;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.pa-cat-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-lt);
  border-bottom: 1px solid rgba(184,148,63,0.4);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.pa-cat-card:hover .pa-cat-cta {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

/* Section header row */
.pa-section { padding: 72px 0; }
.pa-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 36px;
}
.pa-section-head h2 { margin-bottom: 4px; }

/* Sub-practice card grid */
.pa-sub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.pa-sub-grid--6 { grid-template-columns: repeat(3, 1fr); }
.pa-sub-grid--pi { grid-template-columns: repeat(3, 1fr); }

.pa-sub-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  overflow: hidden;
  transition: box-shadow 0.25s;
  position: relative;
  cursor: pointer;
}
.pa-sub-card:hover { z-index: 2; box-shadow: 0 8px 40px rgba(0,0,0,0.14); }
.pa-sub-img { overflow: hidden; height: 160px; flex-shrink: 0; }
.pa-sub-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.92);
}
.pa-sub-card:hover .pa-sub-img img { transform: scale(1.07); filter: brightness(1); }
.pa-sub-body {
  padding: 20px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 2px solid transparent;
  transition: border-color 0.25s;
}
.pa-sub-card:hover .pa-sub-body { border-top-color: var(--gold); }
.pa-sub-body h3 {
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 7px;
  line-height: 1.2;
}
.pa-sub-body p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}
.pa-arrow {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  color: var(--gold);
  transition: transform 0.2s;
}
.pa-sub-card:hover .pa-arrow { transform: translateX(4px); }

/* Large card variant (2-col span) */
.pa-sub-card--lg { grid-column: span 1; }
.pa-sub-grid--pi .pa-sub-card--lg { grid-column: span 1; }
.pa-sub-grid--pi .pa-sub-card--lg .pa-sub-img { height: 220px; }

/* CTA card */
.pa-sub-card--cta {
  background: var(--black);
  min-height: 200px;
  cursor: pointer;
}
.pa-sub-card--cta:hover { box-shadow: none; }
.pa-sub-cta-inner {
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 12px;
}
.pa-sub-cta-inner .eyebrow { color: var(--gold); margin-bottom: 0; }
.pa-sub-cta-inner h3 {
  font-size: 18px;
  color: #fff;
  line-height: 1.25;
}
.pa-sub-cta-inner .btn { align-self: flex-start; margin-top: 4px; }

/* Intro split on category index pages */
.pa-intro-section { padding: 72px 0; }
.pa-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.pa-intro-copy h2 { margin-bottom: 16px; }
.pa-intro-copy p { font-size: 15px; line-height: 1.85; margin-bottom: 14px; }
.pa-intro-copy a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.pa-intro-img { overflow: hidden; }
.pa-intro-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}
.pa-intro-stats {
  display: flex;
  gap: 0;
  margin-top: 32px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
}
.pa-stat {
  flex: 1;
  padding: 18px 16px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.pa-stat:last-child { border-right: none; }
.pa-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.pa-stat span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--light);
  margin-top: 6px;
}

/* Attorney strip on PA pages */
.pa-attorney-strip {
  background: var(--black);
  border-top: 4px solid var(--gold);
  padding: 64px 0;
}
.pa-attorney-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: center;
}
.pa-attorney-inner img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.pa-attorney-inner .eyebrow { color: var(--gold); }
.pa-attorney-inner h2 { color: #fff; margin-bottom: 14px; }
.pa-attorney-inner p { color: rgba(255,255,255,0.65); font-size: 14.5px; line-height: 1.8; margin-bottom: 22px; font-weight: 300; }

/* ── Inner practice area page hero variants ── */
.page-hero--inner-divorce  { background: linear-gradient(110deg,rgba(5,5,5,.96) 0%,rgba(8,8,8,.72) 55%,rgba(8,8,8,.35) 100%), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat, #0d0d0d; }
.page-hero--inner-custody  { background: linear-gradient(110deg,rgba(5,5,5,.96) 0%,rgba(8,8,8,.72) 55%,rgba(8,8,8,.35) 100%), url('https://images.unsplash.com/photo-1536640712-4d4c36ff0e4e?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat, #0d0d0d; }
.page-hero--inner-auto     { background: linear-gradient(110deg,rgba(5,5,5,.96) 0%,rgba(8,8,8,.72) 55%,rgba(8,8,8,.35) 100%), url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat, #0d0d0d; }

/* ── Responsive ── */
@media (max-width: 1060px) {
  .pa-sub-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .pa-cat-grid { grid-template-columns: 1fr; }
  .pa-cat-card { min-height: 340px; }
  .pa-sub-grid,
  .pa-sub-grid--6,
  .pa-sub-grid--pi { grid-template-columns: repeat(2, 1fr); }
  .pa-intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .pa-intro-img img { height: 300px; }
  .pa-section-head { flex-direction: column; align-items: flex-start; }
  .pa-attorney-inner { grid-template-columns: 1fr; }
  .pa-attorney-inner img { height: 260px; max-width: 340px; }
}
@media (max-width: 560px) {
  .pa-sub-grid,
  .pa-sub-grid--6,
  .pa-sub-grid--pi { grid-template-columns: 1fr; }
  .pa-cat-body { padding: 28px 20px; }
}
/* Contact page — first step section */
.contact-first-step { padding: 72px 0; }
.contact-first-step-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-pull-quote {
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 24px);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.55;
  border-left: 4px solid var(--gold);
  padding-left: 20px;
  margin: 0 0 20px;
}
.contact-first-step-copy p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 24px;
}
.contact-first-step-details .contact-detail-block {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.contact-first-step-details .contact-detail-block:first-child { padding-top: 0; }
.contact-first-step-details .contact-detail-block p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin: 6px 0 0;
}
.contact-first-step-details address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
  margin-top: 6px;
}
.contact-first-step-details a {
  font-size: 14px;
  color: var(--gold);
  text-decoration: none;
}
@media (max-width: 760px) {
  .contact-first-step-inner { grid-template-columns: 1fr; gap: 36px; }
}
/* ============================================================
   FAQ PAGE
   ============================================================ */

.page-hero--faq {
  background:
    linear-gradient(110deg, rgba(5,5,5,0.96) 0%, rgba(8,8,8,0.78) 55%, rgba(8,8,8,0.40) 100%),
    url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1600&q=80') center / cover no-repeat,
    #0d0d0d;
}

.faq-section { padding: 64px 0 80px; }

.faq-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: start;
}

/* ── Left nav ── */
.faq-nav {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
}

.faq-nav-group { border-bottom: 1px solid var(--border); }
.faq-nav-group:last-of-type { border-bottom: none; }

.faq-nav-label {
  background: var(--black);
  color: var(--gold);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 16px;
}

.faq-nav-link {
  display: block;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--ink);
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
  text-decoration: none;
}
.faq-nav-link:last-child { border-bottom: none; }
.faq-nav-link:hover,
.faq-nav-link.active {
  background: var(--cream);
  color: var(--gold);
  padding-left: 22px;
}

.faq-nav-cta {
  padding: 20px 16px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border);
}
.faq-nav-cta p {
  font-size: 12px;
  line-height: 1.65;
  color: var(--muted);
}
.faq-nav-cta .btn { width: 100%; font-size: 11px; }
.faq-phone {
  display: block;
  text-align: center;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ── FAQ content area ── */
.faq-content { display: flex; flex-direction: column; gap: 48px; }

.faq-group {}

.faq-group-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 0;
}
.faq-group-tag {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.faq-group-header h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.15;
  margin: 0;
}

/* ── Accordion items ── */
.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: none; }

.faq-q {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 4px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  user-select: none;
  transition: color 0.15s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s;
}
.faq-item[open] > .faq-q { color: var(--gold); }
.faq-item[open] > .faq-q::after {
  content: '−';
  transform: none;
}

.faq-a {
  padding: 0 4px 20px;
  animation: faqReveal 0.2s ease;
}
.faq-a p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
  margin: 0;
}

@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* PI divider */
.faq-category-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  color: var(--muted);
}
.faq-category-divider::before,
.faq-category-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.faq-category-divider span {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light);
  white-space: nowrap;
}

/* Bottom CTA block */
.faq-bottom-cta {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 28px 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-bottom-cta p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-nav {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .faq-nav-cta { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .faq-nav { grid-template-columns: 1fr; }
}
/* Contact page — live site content section */
.contact-about-section { padding: 72px 0; }
.contact-about-inner {
  display: flex;
  flex-direction: column;
  gap: 52px;
  max-width: 820px;
}
.contact-about-block h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.contact-about-block p {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 14px;
}
.contact-about-block p:last-child { margin-bottom: 0; }
.contact-about-list {
  list-style: none;
  padding: 0;
  margin: 14px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-about-list li {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  padding-left: 16px;
  border-left: 2px solid var(--gold);
}
.contact-about-list li strong { color: var(--ink); }
/* ============================================================
   SERVICE AREA PAGE
   ============================================================ */

.page-hero--sa {
  background:
    linear-gradient(110deg, rgba(5,5,5,0.96) 0%, rgba(8,8,8,0.78) 55%, rgba(8,8,8,0.40) 100%),
    url('https://images.unsplash.com/photo-1501854140801-50d01698950b?auto=format&fit=crop&w=1600&q=80') center / cover no-repeat,
    #0d0d0d;
}

/* Intro split */
.sa-intro { padding: 72px 0; }
.sa-intro-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}
.sa-intro-copy h2 { margin-bottom: 18px; }
.sa-intro-copy p { font-size: 14.5px; line-height: 1.85; margin-bottom: 14px; }

.sa-practice-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.sa-pill {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 5px 12px;
  white-space: nowrap;
}

/* Contact sidebar */
.sa-intro-contact {
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sa-intro-contact > .eyebrow { margin-bottom: 0; }
.sa-contact-block { border-bottom: 1px solid var(--border); padding-bottom: 14px; }
.sa-contact-block:last-of-type { border-bottom: none; padding-bottom: 0; }
.sa-contact-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.sa-contact-value {
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.6;
  text-decoration: none;
  font-style: normal;
  display: block;
}
.sa-contact-phone {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
}
.sa-intro-contact .btn { width: 100%; }

/* County cards */
.sa-counties { padding: 72px 0; }
.sa-counties > .wrap > .eyebrow { display: block; margin-bottom: 10px; }
.sa-counties > .wrap > h2 { margin-bottom: 40px; }
.sa-county-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.sa-county-card {
  background: var(--white);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sa-county-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sa-county-name {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}
.sa-county-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 3px 8px;
  white-space: nowrap;
}
.sa-county-card p {
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
  flex: 1;
}
.sa-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}
.sa-cities span {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--muted);
  background: var(--cream);
  padding: 3px 10px;
}

/* Map */
.sa-map { line-height: 0; }

/* Practice section */
.sa-practice-section { padding: 72px 0; }
.sa-practice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.sa-practice-grid > div > h3 {
  font-size: 20px;
  margin: 10px 0 18px;
}
.sa-practice-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
}
.sa-practice-list li {
  border-bottom: 1px solid var(--border);
}
.sa-practice-list li a {
  display: block;
  padding: 11px 0 11px 14px;
  font-size: 13.5px;
  color: var(--ink);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s, padding-left 0.15s;
}
.sa-practice-list li a:hover {
  color: var(--gold);
  border-left-color: var(--gold);
  padding-left: 20px;
}
.sa-cta-col {
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sa-cta-col h3 { font-size: 20px; line-height: 1.25; }
.sa-cta-col p { font-size: 13.5px; color: var(--muted); margin: 0; }
.sa-cta-col .btn { width: 100%; }

/* Responsive */
@media (max-width: 900px) {
  .sa-intro-grid { grid-template-columns: 1fr; }
  .sa-county-grid { grid-template-columns: 1fr; }
  .sa-practice-grid { grid-template-columns: 1fr; }
}
/* Service area — 7-county grid */
.sa-county-grid--7 {
  grid-template-columns: repeat(3, 1fr);
}
.sa-county-card--tx {
  border-top: 3px solid var(--gold);
  background: var(--cream);
}
.sa-county-card--tx .sa-cities--tx span {
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 10.5px;
  padding: 5px 14px;
}

/* Cities all strip */
.sa-cities-all {
  margin-top: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sa-cities-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.sa-cities-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.sa-cities-wrap span {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  background: var(--cream);
  padding: 4px 12px;
  border: 1px solid var(--border);
}

@media (max-width: 860px) {
  .sa-county-grid--7 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .sa-county-grid--7 { grid-template-columns: 1fr; }
}
/* Service area — county list with individual maps */
.sa-county-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
  border: 1px solid var(--border);
}
.sa-county-row {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 32px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px 32px;
}
.sa-county-row:last-child { border-bottom: none; }
.sa-county-row--pi {
  background: var(--cream);
  border-top: 3px solid var(--gold);
}
.sa-county-text { grid-column: 1; grid-row: 1; }
.sa-county-text h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
}
.sa-county-text p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
  margin: 0;
}
.sa-county-map { grid-column: 2; grid-row: 1 / 3; }
.sa-county-map iframe { display: block; }
.sa-city-links {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.sa-city-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  margin-right: 18px;
  transition: color 0.15s;
}
.sa-city-links a:hover { color: var(--gold-lt); text-decoration: underline; }
.sa-city-links--pi a { color: var(--ink); }
.sa-city-links--pi a:hover { color: var(--gold); }

@media (max-width: 760px) {
  .sa-county-row {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .sa-county-map { grid-column: 1; grid-row: 2; }
  .sa-city-links { grid-column: 1; grid-row: 3; }
}
/* ============================================================
   OUR TEAM PAGE
   ============================================================ */

.page-hero--team {
  background:
    linear-gradient(110deg, rgba(5,5,5,0.96) 0%, rgba(8,8,8,0.78) 55%, rgba(8,8,8,0.40) 100%),
    url('../hirani law firm team.jpg') center 45% / cover no-repeat,
    #0d0d0d;
}

/* Photo grid — top */
.team-page-section { padding: 72px 0 56px; }
.team-page-section > .wrap > .eyebrow { display: block; margin-bottom: 32px; }
.team-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-page-card {
  display: flex;
  flex-direction: column;
  background: var(--black);
  overflow: hidden;
}
.team-page-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.team-page-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s ease;
}
.team-page-card:hover .team-page-photo img { transform: scale(1.04); }
.team-page-info {
  padding: 16px 18px 18px;
  background: var(--black);
  border-top: 2px solid var(--gold);
  text-align: center;
}
.team-page-info h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}
.team-page-role {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Bio section */
.team-bios-section { padding: 72px 0; }
.team-bios-grid {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.team-bio-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: center;
}
.team-bio-card--rev {
  grid-template-columns: 1fr 260px;
}
.team-bio-card--rev .team-bio-photo { order: 2; }
.team-bio-card--rev .team-bio-copy  { order: 1; }
.team-bio-photo {
  width: 260px;
  height: 320px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.team-bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.team-bio-copy h2 { margin: 8px 0 16px; }
.team-bio-copy p {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 24px;
}

@media (max-width: 860px) {
  .team-page-grid { grid-template-columns: 1fr 1fr; }
  .team-bio-card { grid-template-columns: 1fr; gap: 24px; }
  .team-bio-card--rev .team-bio-photo { order: 0; }
  .team-bio-card--rev .team-bio-copy  { order: 0; }
  .team-bio-photo { aspect-ratio: 4 / 3; }
}
@media (max-width: 520px) {
  .team-page-grid { grid-template-columns: 1fr; }
}
/* ============================================================
   HOMEPAGE — Practice area cards (Family Law / Personal Injury)
   ============================================================ */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.practice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 480px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}
.practice-card-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.practice-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.practice-card:hover .practice-card-image img { transform: scale(1.05); }

/* Dark overlay — uniform so all text is always readable */
.practice-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,0.58);
  transition: background 0.4s;
  pointer-events: none;
}
.practice-card:hover::after { background: rgba(0,0,0,0.68); }

/* Card text sits on top of overlay */
.practice-card .icon,
.practice-card h3,
.practice-card p,
.practice-card .card-link {
  position: relative;
  z-index: 2;
}
.practice-card .icon { display: none; }
.practice-card h3 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin: 0 32px 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.practice-card p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.90);
  line-height: 1.75;
  margin: 0 32px 22px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.practice-card .card-link {
  display: inline-block;
  margin: 0 32px 36px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-lt);
  border-bottom: 1px solid rgba(184,148,63,0.5);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.practice-card:hover .card-link { color: #fff; border-color: rgba(255,255,255,0.5); }

@media (max-width: 640px) {
  .grid-2 { grid-template-columns: 1fr; }
  .practice-card { min-height: 360px; }
}
/* Homepage — practice overview section */
.practice-overview .wrap.split {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}
.practice-overview .wrap.split > div:first-child {
  position: sticky;
  top: 100px;
  padding: 8px 0;
}
.practice-overview .wrap.split h2 { margin-bottom: 12px; }
.practice-overview .wrap.split .section-lead { margin-top: 10px; }

@media (max-width: 860px) {
  .practice-overview .wrap.split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .practice-overview .wrap.split > div:first-child { position: static; }
}
/* ── Nav dropdowns ── */
.nav-links { align-items: stretch; }
.nav-links > a { display: flex; align-items: center; }
.nav-dropdown-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: default;
  white-space: nowrap;
}
.nav-caret {
  font-size: 9px;
  opacity: 0.7;
  transition: transform 0.2s;
  line-height: 1;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #111;
  min-width: 190px;
  border-top: 2px solid var(--gold);
  display: none;
  flex-direction: column;
  z-index: 200;
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
  padding: 4px 0;
}
.nav-dropdown-wrap:hover .nav-dropdown-menu { display: flex; }
.nav-dropdown-wrap:hover .nav-caret { transform: rotate(180deg); }
.nav-dropdown-menu a {
  padding: 11px 20px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.05); color: var(--gold-lt); }

/* Mobile dropdown */
@media (max-width: 1080px) {
  .nav-dropdown-wrap {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .nav-dropdown-trigger {
    padding: 11px 0;
    width: 100%;
    justify-content: space-between;
    font-size: 13px;
    color: #d4d4d4;
    border-bottom: none;
  }
  /* Override desktop hover — use JS toggle class instead */
  .nav-dropdown-wrap:hover .nav-dropdown-menu { display: none; }
  .nav-dropdown-wrap.open .nav-dropdown-menu { display: flex; }
  .nav-dropdown-wrap.open .nav-caret { transform: rotate(180deg); }
  .nav-dropdown-menu {
    position: static !important;
    display: none;
    flex-direction: column;
    width: 100%;
    min-width: 0 !important;
    background: transparent;
    box-shadow: none;
    border-top: none;
    padding: 0 0 4px 16px;
  }
  .nav-dropdown-menu a {
    padding: 8px 0;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    border-bottom: none;
    white-space: normal;
  }
  .nav-dropdown-menu a:hover { background: transparent; color: var(--gold-lt); }
}

/* ── Service area hero override ── */
.page-hero--sa {
  background:
    linear-gradient(110deg, rgba(5,5,5,0.92) 0%, rgba(8,8,8,0.70) 55%, rgba(8,8,8,0.35) 100%),
    url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1600&q=80') center / cover no-repeat,
    #0d0d0d;
}

/* ── Language switcher ── */
.lang-switch {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 10px;
  transition: color 0.15s, border-color 0.15s;
}
.lang-switch:hover { color: var(--gold-lt); border-color: var(--gold-lt); }
