/* ============================================================
   Your Family Lawyer — parentalalienation.yourfamilylawyer.net
   Parental Alienation — Collin County
   Brand: Navy #1B2A4A | Slate Blue #3E5C8A | Gold #C9A227
          Cream #F7F4EE | Charcoal #2B2B2B
   Design direction: Restrained, empathetic, prose-first
   Fonts: Merriweather (headings) | Inter (body) — self-hosted
   ============================================================ */

/* ---- Font faces ----------------------------------------- */
@font-face {
  font-family: 'Merriweather';
  src: url('../fonts/merriweather-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Merriweather';
  src: url('../fonts/merriweather-400i.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Merriweather';
  src: url('../fonts/merriweather-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ---- Variables ------------------------------------------ */
:root {
  --navy:       #1B2A4A;
  --slate:      #3E5C8A;
  --gold:       #C9A227;
  --cream:      #F7F4EE;
  --coal:       #2B2B2B;
  --white:      #FFFFFF;
  --border:     #DDD8CC;
  --muted:      #6B7B99;
  --cream-dark: #EDE9DF;

  --font-head: 'Merriweather', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --max-w:      1100px;
  --read-w:     720px;
  --section-pad: 5rem 1.5rem;
  --radius:     4px;
  --shadow:     0 1px 12px rgba(27,42,74,.07);
}

/* ---- Reset ---------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--coal);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--slate); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--navy); }
ul { list-style: none; }

/* ---- Typography ----------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
}
/* Quieter scale — this is a reading site, not a marketing site */
h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h2 { font-size: clamp(1.3rem, 2.8vw, 1.9rem); }
h3 { font-size: clamp(1.05rem, 2.2vw, 1.25rem); }
h4 { font-size: 1rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Layout helpers ------------------------------------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: var(--section-pad); }
.section--alt   { background: var(--cream); }
.section--white { background: var(--white); }
.section--navy  { background: var(--navy); color: var(--white); }
.section--navy h2,
.section--navy h3 { color: var(--white); }
.section--navy p  { color: rgba(255,255,255,.82); }

/* ---- Buttons -------------------------------------------- */
.btn {
  display: inline-block;
  padding: .8rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .02em;
  cursor: pointer;
  transition: opacity .15s, transform .12s;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { opacity: .88; transform: translateY(-1px); text-decoration: none; }
.btn--gold    { background: var(--gold); color: var(--navy); }
.btn--navy    { background: var(--navy); color: var(--white); }
.btn--outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.55);
  color: var(--white);
}
.btn--outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.8); }
.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ---- Navigation ----------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 10px rgba(0,0,0,.2);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
  flex-shrink: 0;
}
.site-logo:hover { text-decoration: none; opacity: .9; }
.logo-main {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .01em;
}
.logo-main span { color: var(--gold); }
.logo-sub {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav-links a {
  color: rgba(255,255,255,.75);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .15s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); text-decoration: none; }
.nav-links .btn {
  padding: .45rem 1rem;
  font-size: .78rem;
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .2s;
}

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 66px;
    left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 0 1.5rem;
    border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .6rem 1.5rem; font-size: .88rem; }
  .nav-links .btn { margin: .75rem 1.5rem 0; text-align: center; }
}

/* ---- Hero — QUIET (left-aligned, prose-first) ----------- */
.hero-quiet {
  background: var(--navy);
  padding: 5.5rem 1.5rem 4.5rem;
}
.hero-quiet .container {
  max-width: 700px;
  /* Deliberately NOT centering — left-aligned for quiet, intimate feel */
}
.hero-quiet h1 {
  color: var(--white);
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.hero-quiet .hero-sub {
  color: rgba(255,255,255,.78);
  font-size: 1.08rem;
  line-height: 1.85;
  max-width: 620px;
  margin-bottom: 0;
}
.hero-quiet .hero-sub p { margin-bottom: 1rem; }
.hero-quiet .hero-sub p:last-child { margin-bottom: 0; }

/* Interior page hero — slimmer, still quiet */
.hero--page {
  background: var(--navy);
  padding: 3.25rem 1.5rem 2.75rem;
}
.hero--page .container { max-width: var(--read-w); }
.hero--page h1 {
  color: var(--white);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.3;
  margin-bottom: .75rem;
}
.hero--page .hero-lead {
  color: rgba(255,255,255,.72);
  font-size: .97rem;
  line-height: 1.75;
  max-width: 600px;
}

/* ---- Trust strip --------------------------------------- */
.trust-strip {
  background: var(--slate);
  padding: 1rem 1.5rem;
}
.trust-strip .container {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .45rem;
}
.trust-item::before { content: '✦'; color: var(--gold); font-size: .65rem; }

/* ---- Reading layout ------------------------------------- */
/* Single-column prose with generous breathing room */
.reading-layout {
  max-width: var(--read-w);
  margin: 0 auto;
}

.reading-layout p {
  line-height: 1.85;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}
.reading-layout p:last-child { margin-bottom: 0; }

.reading-layout h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-top: .25rem;
  border-top: 1px solid var(--border);
}
.reading-layout h2:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}
.reading-layout h3 {
  margin-top: 2rem;
  margin-bottom: .65rem;
  color: var(--slate);
}
.reading-layout h4 {
  margin-top: 1.5rem;
  margin-bottom: .5rem;
}

.reading-layout ul,
.reading-layout ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.reading-layout ul li { list-style: disc; }
.reading-layout ol li { list-style: decimal; }
.reading-layout li {
  line-height: 1.85;
  margin-bottom: .6rem;
}

.reading-layout strong { color: var(--navy); font-weight: 600; }

/* ---- Text block (simple bordered block, no hover) ------- */
.text-block {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.text-block h3 {
  margin-bottom: .4rem;
  font-size: 1.05rem;
}
.text-block h3 a {
  color: var(--navy);
  text-decoration: none;
}
.text-block h3 a:hover {
  color: var(--slate);
  text-decoration: underline;
}
.text-block p {
  font-size: .95rem;
  line-height: 1.75;
  color: #4A5568;
  margin-bottom: 0;
}

/* Nav card grid — for home page section links */
.nav-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

/* ---- Insight callout (slate left-bar) ------------------- */
.insight {
  border-left: 3px solid var(--slate);
  padding: .75rem 1rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--slate);
  font-size: .97rem;
  line-height: 1.8;
}
.insight p { margin-bottom: 0; }

/* ---- Nuance note (cream, subtle) ----------------------- */
.nuance-note {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.nuance-note h4 {
  color: var(--navy);
  margin-bottom: .5rem;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.nuance-note p {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--coal);
  margin-bottom: 0;
}

/* ---- Behavioral indicator list ------------------------- */
.indicator-list {
  padding-left: 0;
  margin: 1.5rem 0;
}
.indicator-list li {
  padding: 1rem 1.25rem 1rem 1rem;
  border-bottom: 1px solid var(--border);
  line-height: 1.75;
  font-size: .97rem;
}
.indicator-list li:first-child { border-top: 1px solid var(--border); }
.indicator-list li strong {
  display: block;
  color: var(--navy);
  margin-bottom: .2rem;
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}

/* ---- Section headings ---------------------------------- */
.section-head { margin-bottom: 2.5rem; }
.section-head h2 { margin-bottom: .65rem; }
.section-head p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

/* ---- Integrated approach callout ----------------------- */
.approach-callout {
  background: var(--navy);
  padding: 3rem 2rem;
  border-radius: var(--radius);
}
.approach-callout h2 { color: var(--white); margin-bottom: 1rem; }
.approach-callout p { color: rgba(255,255,255,.82); line-height: 1.85; }
.approach-callout .gold-line {
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

/* ---- Breadcrumb ---------------------------------------- */
.breadcrumb {
  padding: .75rem 1.5rem;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  font-size: .8rem;
  color: var(--muted);
}
.breadcrumb .container { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; max-width: var(--read-w); }
.breadcrumb a { color: var(--muted); transition: color .15s; }
.breadcrumb a:hover { color: var(--slate); text-decoration: none; }
.breadcrumb span { color: var(--coal); }
.breadcrumb span::before { content: '/'; margin-right: .5rem; color: var(--border); }

/* ---- FAQ ----------------------------------------------- */
.faq-list { max-width: var(--read-w); }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.35rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .98rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  padding: 0;
  line-height: 1.45;
}
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--slate);
  flex-shrink: 0;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1;
  margin-top: .1rem;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  display: none;
  padding-top: .9rem;
  font-size: .96rem;
  line-height: 1.85;
  color: var(--coal);
}
.faq-item.open .faq-a { display: block; }

/* ---- CTA band ------------------------------------------ */
.cta-band {
  background: var(--cream);
  border-top: 2px solid var(--gold);
  padding: 4rem 1.5rem;
  text-align: center;
}
.cta-band .container { max-width: 600px; }
.cta-band h2 { color: var(--navy); margin-bottom: .75rem; font-size: clamp(1.25rem, 2.5vw, 1.65rem); }
.cta-band p {
  color: var(--coal);
  opacity: .85;
  margin: 0 auto 2rem;
  font-size: 1rem;
  line-height: 1.8;
}
.cta-band .btn { margin: .35rem; }

/* CTA band navy variant */
.cta-band--navy {
  background: var(--navy);
  border-top: none;
}
.cta-band--navy h2 { color: var(--white); }
.cta-band--navy p { color: rgba(255,255,255,.78); }

/* ---- Attorney bio -------------------------------------- */
.bio-photo {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 360px;
}
.bio-meta {
  margin-top: 1.25rem;
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.65;
}
.bio-meta strong {
  display: block;
  font-size: .97rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: .2rem;
}

/* ---- Two-column layout --------------------------------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.two-col--60-40 { grid-template-columns: 3fr 2fr; }
.two-col--40-60 { grid-template-columns: 2fr 3fr; }
@media (max-width: 720px) {
  .two-col,
  .two-col--60-40,
  .two-col--40-60 { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ---- Contact sidebar ----------------------------------- */
.contact-sidebar {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.contact-sidebar h3 {
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
  font-size: 1.05rem;
}
.contact-sidebar .contact-item {
  margin-bottom: 1rem;
  font-size: .92rem;
  line-height: 1.65;
}
.contact-sidebar .contact-item strong {
  display: block;
  font-size: .78rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .2rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.contact-sidebar a { color: var(--slate); }
.contact-sidebar a:hover { color: var(--navy); }

/* ---- Serving section ----------------------------------- */
.serving-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.25rem;
}
.serving-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .4rem .85rem;
  font-size: .83rem;
  color: var(--navy);
  font-weight: 500;
}

/* ---- Footer -------------------------------------------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.68);
  padding: 3.5rem 1.5rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.footer-logo-line {
  font-family: var(--font-head);
  font-size: .97rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .25rem;
}
.footer-logo-line span { color: var(--gold); }
.footer-tagline {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .85rem;
}
.footer-brand p {
  font-size: .82rem;
  line-height: 1.65;
  color: rgba(255,255,255,.55);
}
.footer-brand a { color: var(--gold); }

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul a {
  color: rgba(255,255,255,.58);
  font-size: .84rem;
  transition: color .15s;
}
.footer-col ul a:hover { color: var(--white); text-decoration: none; }

.footer-contact p { font-size: .86rem; margin-bottom: .5rem; color: rgba(255,255,255,.6); }
.footer-contact a { color: var(--gold); font-weight: 600; }
.footer-contact a:hover { color: #f0c84a; text-decoration: none; }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-bottom: 1.75rem;
}
.footer-compliance {
  font-size: .73rem;
  line-height: 1.7;
  color: rgba(255,255,255,.38);
  max-width: 900px;
}

/* ---- Contact form -------------------------------------- */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .72rem .95rem;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--coal);
  background: var(--white);
  transition: border-color .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--slate);
  box-shadow: 0 0 0 3px rgba(62,92,138,.1);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-note {
  font-size: .77rem;
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.65;
}

/* ---- Utility ------------------------------------------- */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-slate  { color: var(--slate); }
.text-muted  { color: var(--muted); }
.mt-1  { margin-top: 1rem; }
.mt-2  { margin-top: 2rem; }
.mt-3  { margin-top: 3rem; }
.mb-0  { margin-bottom: 0; }
.mb-1  { margin-bottom: 1rem; }
.mb-2  { margin-bottom: 2rem; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ---- Responsive ---------------------------------------- */
@media (max-width: 600px) {
  :root { --section-pad: 3.5rem 1.25rem; }
  .hero-quiet { padding: 3.5rem 1.25rem 3rem; }
  .hero--page { padding: 2.5rem 1.25rem 2.25rem; }
  .trust-strip .container { gap: 1rem; flex-direction: column; align-items: flex-start; }
  .nav-card-grid { grid-template-columns: 1fr; }
  .approach-callout { padding: 2rem 1.5rem; }
  .cta-band { padding: 3rem 1.25rem; }
  .contact-form { padding: 1.75rem 1.25rem; }
}
