/* ==========================================================================
   Jay Hutch Law — design system
   Single stylesheet. No build step, no framework, no runtime injection.
   Sections: 1 tokens · 2 reset · 3 typography · 4 buttons · 5 layout
             6 header · 7 hero · 8 components · 9 forms · 10 footer
             11 legacy page support · 12 responsive · 13 motion/print
   ========================================================================== */

/* --- 1. Tokens ----------------------------------------------------------- */
:root{
  /* Brand */
  --navy:#0e2947;
  --navy-deep:#061a30;
  --navy-soft:#163a61;
  --ink:#112844;
  --ivory:#faf8f3;
  --paper:#f4f0e8;

  /* Gold: --gold is decorative only (rules, numerals, icons).
     --gold-deep is the accessible variant for text and CTA fills.
     #b38a4d on white is 3.4:1 — fails WCAG AA for body text. Do not use it
     for anything a visitor has to read. */
  --gold:#b38a4d;
  --gold-deep:#8c6626;
  --gold-bright:#c9a165;

  --muted:#5a6a82;
  --muted-light:#616d80;   /* 5.2:1 on white, 4.6:1 on paper — AA at small sizes */
  --line:#ddd6c9;
  --line-cool:#dfe4ec;

  /* Type */
  --serif:"Libre Baskerville",Georgia,"Times New Roman",serif;
  --sans:"DM Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;

  /* Fluid type scale */
  --fs-display:clamp(2.75rem,1.6rem + 4.6vw,5rem);
  --fs-h1:clamp(2.4rem,1.5rem + 3.6vw,4.1rem);
  --fs-h2:clamp(2rem,1.35rem + 2.6vw,3.3rem);
  --fs-h3:clamp(1.3rem,1.15rem + .6vw,1.6rem);
  --fs-lede:clamp(1.05rem,1rem + .35vw,1.25rem);
  --fs-body:1rem;
  --fs-small:.875rem;
  --fs-eyebrow:.72rem;

  /* Spacing scale */
  --s-1:.5rem;  --s-2:.875rem; --s-3:1.25rem; --s-4:1.75rem;
  --s-5:2.5rem; --s-6:3.5rem;  --s-7:5rem;    --s-8:7rem;

  /* Section rhythm — one knob for vertical page tempo */
  --section-y:clamp(3.5rem,2rem + 6vw,6.5rem);

  --shell:1320px;
  --gutter:clamp(1.25rem,4vw,2.5rem);
  --radius:2px;
  --shadow-sm:0 2px 14px rgba(14,41,71,.06);
  --shadow-md:0 12px 34px rgba(16,45,75,.10);
  --shadow-lg:0 22px 55px rgba(5,22,44,.28);
  --ease:cubic-bezier(.4,.14,.3,1);
  --header-h:88px;
}

/* --- 2. Reset ------------------------------------------------------------ */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;
  background:var(--ivory);
  color:var(--ink);
  font:var(--fs-body)/1.6 var(--sans);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit}

/* Visible, branded focus ring — never remove without a replacement. */
:focus-visible{outline:3px solid var(--gold-deep);outline-offset:2px}

.sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0;
}
.skip-link{
  position:absolute;left:var(--s-3);top:-100px;z-index:100;
  background:var(--navy);color:#fff;padding:var(--s-2) var(--s-3);
  transition:top .2s var(--ease);
}
.skip-link:focus{top:var(--s-3)}

/* --- 3. Typography ------------------------------------------------------- */
@font-face{
  font-family:"DM Sans";
  src:url("../assets/fonts/dm-sans-400.woff2") format("woff2");
  font-weight:100 900;font-style:normal;font-display:swap;
}
@font-face{
  font-family:"Libre Baskerville";
  src:url("../assets/fonts/libre-baskerville-400.woff2") format("woff2");
  font-weight:400 700;font-style:normal;font-display:swap;
}

h1,h2,h3,h4{font-family:var(--serif);font-weight:400;line-height:1.14;letter-spacing:-.02em;margin:0}
h1{font-size:var(--fs-h1)}
h2{font-size:var(--fs-h2)}
h3{font-size:var(--fs-h3);line-height:1.25}
p{margin:0 0 var(--s-3)}
p:last-child{margin-bottom:0}

.display{font-size:var(--fs-display);letter-spacing:-.04em}

.eyebrow{
  text-transform:uppercase;letter-spacing:.2em;
  font-size:var(--fs-eyebrow);font-weight:700;
  color:var(--gold-deep);margin:0 0 var(--s-3);
}
.eyebrow-light{color:var(--gold-bright)}

.lede{font-size:var(--fs-lede);color:var(--muted);max-width:62ch}
.lede-light{color:#d5dee9}

.text-link{
  font-weight:600;color:var(--gold-deep);
  border-bottom:1px solid currentColor;padding-bottom:2px;
  transition:opacity .2s var(--ease);
}
.text-link:hover{opacity:.7}

/* --- 4. Buttons ---------------------------------------------------------- */
/* One accent reserved for CTAs. Nothing decorative may use --gold-deep as a
   fill, or the calls to action stop reading as the priority on the page. */
.button{
  display:inline-flex;align-items:center;justify-content:center;gap:.6em;
  min-height:54px;padding:1rem 1.9rem;
  font:600 .95rem/1 var(--sans);letter-spacing:.01em;
  border:1.5px solid transparent;border-radius:var(--radius);
  cursor:pointer;text-align:center;
  transition:transform .18s var(--ease),box-shadow .18s var(--ease),background .18s var(--ease),color .18s var(--ease);
}
.button:hover{transform:translateY(-2px)}
.button:active{transform:translateY(0)}

.button-gold{background:var(--gold-deep);color:#fff;box-shadow:0 4px 16px rgba(140,102,38,.28)}
.button-gold:hover{background:#7a5920;box-shadow:0 10px 26px rgba(140,102,38,.34)}

.button-navy{background:var(--navy);color:#fff}
.button-navy:hover{background:var(--navy-soft)}

.button-outline{border-color:var(--gold-deep);color:var(--gold-deep);background:transparent}
.button-outline:hover{background:var(--gold-deep);color:#fff}

.button-outline.light,.button-ghost{border-color:rgba(255,255,255,.55);color:#fff;background:transparent}
.button-outline.light:hover,.button-ghost:hover{background:#fff;color:var(--navy);border-color:#fff}

.button-lg{min-height:60px;padding:1.1rem 2.4rem;font-size:1rem}
.button.full{width:100%}
.button[disabled]{opacity:.6;pointer-events:none}

.button-row{display:flex;flex-wrap:wrap;gap:var(--s-3)}

/* --- 5. Layout ----------------------------------------------------------- */
.shell{width:min(var(--shell),calc(100% - var(--gutter) * 2));margin-inline:auto}
.section{padding-block:var(--section-y)}
.section-tight{padding-block:calc(var(--section-y) * .62)}
.paper{background:var(--paper)}
.navy{background:var(--navy);color:#fff}

.section-head{max-width:70ch;margin-bottom:var(--s-6)}
.section-kicker{
  display:flex;align-items:flex-end;justify-content:space-between;
  gap:var(--s-4);flex-wrap:wrap;margin-bottom:var(--s-5);
}

/* --- 6. Header ----------------------------------------------------------- */
.site-header{
  position:sticky;top:0;z-index:50;
  height:var(--header-h);background:#fff;
  border-bottom:1px solid var(--line-cool);box-shadow:var(--shadow-sm);
}
.nav-wrap{height:100%;display:flex;align-items:center;gap:var(--s-4)}

/* The firm's mark. It is a light silver-blue, which sits well on the white
   header and on the navy footer. Logotypes are exempt from WCAG 1.4.3, so the
   low contrast against white is acceptable here — do not reuse these colours
   for text. */
.brand{display:flex;align-items:center;flex-shrink:0}
.brand img{display:block;height:54px;width:auto}
.site-footer .brand img{height:60px}

.site-nav{display:flex;gap:var(--s-4);margin-left:auto;font-size:.94rem;font-weight:500}
.site-nav a{position:relative;padding:.4rem 0;color:var(--ink)}
.site-nav a::after{
  content:"";position:absolute;left:0;right:0;bottom:-.35rem;height:2px;
  background:var(--gold-deep);transform:scaleX(0);transform-origin:left;
  transition:transform .22s var(--ease);
}
.site-nav a:hover::after,.site-nav a[aria-current="page"]::after,.site-nav a.active::after{transform:scaleX(1)}

.nav-actions{display:flex;align-items:center;gap:var(--s-3)}
.phone{color:var(--gold-deep);font-weight:700;white-space:nowrap;font-size:.95rem}
.phone:hover{text-decoration:underline}

.menu-toggle{
  display:none;flex-direction:column;gap:5px;
  border:0;background:transparent;padding:.6rem;margin-left:auto;cursor:pointer;
}
.menu-toggle i{width:24px;height:1.5px;background:var(--ink);transition:transform .25s var(--ease),opacity .2s}
.menu-toggle[aria-expanded="true"] i:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
.menu-toggle[aria-expanded="true"] i:nth-child(2){opacity:0}
.menu-toggle[aria-expanded="true"] i:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}

/* --- 7. Hero ------------------------------------------------------------- */
.home-hero{
  position:relative;display:flex;align-items:center;
  min-height:min(88vh,700px);color:#fff;
  background:
    linear-gradient(92deg,rgba(5,22,45,.93) 0%,rgba(5,22,45,.74) 48%,rgba(5,22,45,.42) 100%),
    url("../assets/hero-atlanta.jpg") center/cover no-repeat;
}
/* 376 KB desktop hero -> 128 KB on phones, where it matters most. */
@media (max-width:900px){
  .home-hero{
    background-image:
      linear-gradient(92deg,rgba(5,22,45,.93) 0%,rgba(5,22,45,.74) 48%,rgba(5,22,45,.42) 100%),
      url("../assets/hero-atlanta-mobile.jpg");
  }
}
.hero-layout{
  display:grid;grid-template-columns:1.12fr .78fr;
  gap:clamp(2.5rem,5vw,5.5rem);align-items:center;
  padding-block:clamp(3rem,7vw,5rem);
}
.hero-copy h1{font-size:var(--fs-display);letter-spacing:-.045em}
.hero-copy .lede{margin:var(--s-4) 0 var(--s-5);color:#dbe4ef;max-width:54ch}

/* Trust strip under the hero CTAs — credibility without inventing claims. */
.hero-trust{
  display:flex;flex-wrap:wrap;gap:var(--s-2) var(--s-5);
  margin-top:var(--s-5);padding-top:var(--s-4);
  border-top:1px solid rgba(255,255,255,.18);
  font-size:var(--fs-small);color:#c2cfdd;
}
.hero-trust span{display:flex;align-items:center;gap:.5rem}
.hero-trust span::before{content:"◆";color:var(--gold-bright);font-size:.6em}

/* Citation capture card — the highest-intent conversion path on the page. */
.citation-card{
  background:#fff;color:var(--ink);padding:clamp(1.75rem,3vw,2.5rem);
  box-shadow:var(--shadow-lg);border-top:3px solid var(--gold);
  max-width:420px;justify-self:end;width:100%;
}
.citation-card h2{font-size:clamp(1.6rem,1.2rem + 1.2vw,2.05rem);margin-bottom:var(--s-3)}
.citation-card ul{list-style:none;padding:0;margin:0 0 var(--s-4)}
.citation-card li{
  position:relative;padding:.5rem 0 .5rem 1.75rem;
  color:var(--muted);font-size:.95rem;
}
.citation-card li::before{
  content:"";position:absolute;left:0;top:1.05rem;
  width:9px;height:5px;border-left:2px solid var(--gold-deep);
  border-bottom:2px solid var(--gold-deep);transform:rotate(-45deg);
}

/* --- 8. Components ------------------------------------------------------- */
.card-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--s-3)}

.practice-card{
  position:relative;display:flex;flex-direction:column;
  min-height:238px;padding:var(--s-4);
  background:#fff;border:1px solid var(--line);
  transition:transform .22s var(--ease),box-shadow .22s var(--ease),border-color .22s var(--ease);
}
.practice-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);border-color:var(--gold)}
.practice-card span{color:var(--gold-deep);font-size:.75rem;font-weight:700;letter-spacing:.16em}
.practice-card h3{margin:var(--s-4) 0 var(--s-1)}
.practice-card p{color:var(--muted);font-size:.95rem;margin:0;max-width:34ch}
.practice-card b{
  margin-top:auto;padding-top:var(--s-3);
  color:var(--gold-deep);font-size:.85rem;font-weight:700;letter-spacing:.06em;
}
.practice-card:hover b{text-decoration:underline}

/* Three-step intake explainer */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--s-5);counter-reset:step}
.step{display:grid;grid-template-columns:56px 1fr;gap:var(--s-3);align-items:start}
.step-number{
  display:grid;place-items:center;width:54px;height:54px;border-radius:50%;
  background:var(--gold-deep);color:#fff;font:1.25rem var(--serif);
}
.step h3{margin-bottom:.35rem}
.step p{color:var(--muted);font-size:.95rem;margin:0}

.values{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--s-3)}
.value{text-align:center;padding:var(--s-4) var(--s-3);border-right:1px solid var(--line)}
.value:last-child{border-right:0}
.value b{font-size:1.9rem;color:var(--gold-deep);display:block;margin-bottom:var(--s-2)}
.value h2,.value h3{font-size:1.4rem;margin-bottom:var(--s-1)}
.value p{color:var(--muted);margin:0;font-size:.95rem}

.split{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,6vw,5.5rem);align-items:center}

/* FAQ — also the source for FAQPage structured data. Keep Q&A text in sync
   with the JSON-LD block in the page head. */
.faq{max-width:min(880px,100%);margin-inline:auto}
.faq details{border-bottom:1px solid var(--line);padding:var(--s-3) 0}
.faq summary{
  display:flex;justify-content:space-between;align-items:center;gap:var(--s-3);
  cursor:pointer;list-style:none;font-family:var(--serif);font-size:1.12rem;
  padding:var(--s-2) 0;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+";color:var(--gold-deep);font-size:1.5rem;font-family:var(--sans);line-height:1}
.faq details[open] summary::after{content:"–"}
.faq details p{color:var(--muted);padding:var(--s-1) 0 var(--s-2);max-width:72ch}

.cta-band{background:var(--navy);color:#fff;text-align:center;padding-block:clamp(3rem,5vw,4.75rem)}
.cta-band h2{margin-bottom:var(--s-4);max-width:22ch;margin-inline:auto}
.cta-band .button-row{justify-content:center}

/* Mobile sticky action bar — hidden on desktop, shown under 900px.
   On a law firm site most traffic is mobile; this is the single biggest
   conversion surface on the page. */
.action-bar{
  display:none;position:fixed;left:0;right:0;bottom:0;z-index:60;
  background:var(--navy-deep);box-shadow:0 -4px 20px rgba(0,0,0,.3);
  padding-bottom:env(safe-area-inset-bottom);
}
.action-bar a{
  flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;
  padding:.7rem .4rem;color:#fff;font-size:.72rem;font-weight:600;
  letter-spacing:.06em;text-transform:uppercase;
}
.action-bar a + a{border-left:1px solid rgba(255,255,255,.14)}
.action-bar a.primary{background:var(--gold-deep)}
.action-bar svg{width:19px;height:19px;fill:none;stroke:currentColor;stroke-width:1.9}

/* --- 9. Forms ------------------------------------------------------------ */
.form-card{background:#fff;padding:clamp(1.5rem,3vw,2.5rem);box-shadow:var(--shadow-md);border-top:3px solid var(--gold)}
.contact-form{display:grid;grid-template-columns:1fr 1fr;gap:var(--s-3)}
.field{display:grid;gap:.4rem}
.field.full,.full{grid-column:1/-1}
.field label,.field > span{font-size:.82rem;font-weight:700;color:#3e4f66;letter-spacing:.02em}
.field .req{color:#b3261e}
.field input,.field select,.field textarea{
  width:100%;padding:.85rem .9rem;font:inherit;color:var(--ink);
  background:#fff;border:1px solid #c2cbd6;border-radius:var(--radius);
  transition:border-color .18s var(--ease),box-shadow .18s var(--ease);
}
.field textarea{resize:vertical;min-height:120px}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none;border-color:var(--gold-deep);
  box-shadow:0 0 0 3px rgba(140,102,38,.16);
}
.field input[aria-invalid="true"],.field textarea[aria-invalid="true"]{border-color:#b3261e}
.field-error{font-size:.78rem;color:#b3261e;min-height:1em}

.consent{display:flex;gap:.7rem;align-items:flex-start;font-size:.82rem;color:var(--muted)}
.consent input{width:18px;height:18px;margin-top:.15rem;flex-shrink:0;accent-color:var(--gold-deep)}
.consent a{color:var(--gold-deep);text-decoration:underline}

/* Honeypot — must stay visually hidden but not display:none, so bots fill it. */
.hp-field{position:absolute!important;left:-9999px;opacity:0;pointer-events:none}

.upload-box{
  position:relative;display:grid;place-items:center;text-align:center;
  min-height:150px;padding:var(--s-4);cursor:pointer;
  background:#fbfaf7;border:1.5px dashed #a9b6c5;border-radius:var(--radius);
  transition:border-color .2s var(--ease),background .2s var(--ease);
}
.upload-box:hover,.upload-box.dragover{border-color:var(--gold-deep);background:#f6f1e7}
.upload-box input{position:absolute;inset:0;opacity:0;cursor:pointer}
.upload-box strong{display:block;font:1.25rem var(--serif);margin:.4rem 0 .2rem}
.upload-box p{margin:0;color:var(--muted);font-size:.85rem}
.upload-list{font-size:.85rem;color:var(--muted);margin-top:var(--s-2)}

.form-note{font-size:.78rem;color:var(--muted-light);line-height:1.5;margin:0}
.form-status{padding:.9rem 1rem;border-radius:var(--radius);font-size:.9rem;display:none}
.form-status.show{display:block}
.form-status.is-error{background:#fdecea;color:#8c1d18;border:1px solid #f2b8b5}
.form-status.is-success{background:#e6f0e8;color:#1e4a2b;border:1px solid #b7d4bf}

/* --- 10. Footer ---------------------------------------------------------- */
footer.site-footer{background:var(--navy-deep);color:#c9d4e0;padding-block:var(--s-6) var(--s-4);font-size:.87rem}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:var(--s-5);margin-bottom:var(--s-5)}
.footer-grid h3{font-size:.78rem;text-transform:uppercase;letter-spacing:.16em;color:var(--gold-bright);font-family:var(--sans);font-weight:700;margin-bottom:var(--s-3)}
.footer-grid a{display:block;margin-bottom:.55rem;color:#c9d4e0;transition:color .18s var(--ease)}
.footer-grid a:hover{color:#fff}
/* Scoped under .footer-grid so the 44px mobile link rule below does not
   turn these into full-width flex rows. */
.footer-grid .footer-social{display:flex;gap:.6rem;margin-top:1.1rem}
.footer-grid .footer-social a{
  display:grid;place-items:center;width:44px;height:44px;margin:0;
  border:1px solid rgba(255,255,255,.22);border-radius:2px;color:#c9d4e0;
  transition:background .18s var(--ease),color .18s var(--ease),border-color .18s var(--ease);
}
.footer-grid .footer-social a:hover{background:rgba(255,255,255,.1);color:#fff;border-color:rgba(255,255,255,.5)}
.footer-social svg{
  width:19px;height:19px;fill:none;stroke:currentColor;
  stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.13);padding-top:var(--s-4);
  display:flex;justify-content:space-between;gap:var(--s-4);flex-wrap:wrap;
  color:#93a3b6;font-size:.79rem;
}
.footer-bottom p{max-width:74ch;margin:0}
.footer-legal{display:flex;gap:var(--s-3);flex-wrap:wrap}

/* --- 10b. Sub-page (practice area) layout --------------------------------- */
.breadcrumb{background:#fff;border-bottom:1px solid var(--line-cool);font-size:.8rem}
.breadcrumb ol{display:flex;flex-wrap:wrap;gap:.5rem;list-style:none;margin:0;padding:.85rem 0;color:var(--muted)}
.breadcrumb li+li::before{content:"/";margin-right:.5rem;color:var(--line)}
.breadcrumb a{color:var(--gold-deep)}
.breadcrumb a:hover{text-decoration:underline}
.breadcrumb [aria-current]{color:var(--muted)}

/* Light hero: sub-pages carry the reading, so they stay out of the way. */
.page-hero-light{background:var(--paper);padding-block:clamp(2.5rem,5vw,4rem);border-bottom:1px solid var(--line)}
.page-hero-light h1{font-size:var(--fs-h1);max-width:18ch}
.page-hero-light .lede{margin-top:var(--s-3)}
.hub-hero{display:grid;grid-template-columns:1.25fr .75fr;gap:clamp(2rem,5vw,4.5rem);align-items:end}
.hub-hero .lede{border-left:1px solid var(--gold);padding-left:clamp(1.5rem,3vw,3rem);margin:0}

.page-layout{display:grid;grid-template-columns:minmax(0,1fr) 380px;gap:clamp(2rem,5vw,4.5rem);align-items:start}

.page-body{max-width:72ch}
.page-body h2{font-size:clamp(1.6rem,1.3rem + 1.1vw,2.15rem);margin:var(--s-6) 0 var(--s-3)}
.page-body h2:first-child{margin-top:0}
.page-body p{color:#31405a;font-size:1.035rem;line-height:1.72}
.page-body strong{color:var(--ink);font-weight:700}
.page-body .faq{margin-top:var(--s-3)}

/* Time-sensitive warning — used where a deadline can cost someone their case. */
.notice{background:#fdf4e3;border-left:3px solid var(--gold-deep);padding:var(--s-3) var(--s-4);margin-bottom:var(--s-5)}
.notice p{margin:0;font-size:.97rem;color:#5c4715}
.notice a{color:var(--gold-deep);font-weight:700;text-decoration:underline}

.checklist{background:var(--paper);padding:var(--s-4) var(--s-5);margin:var(--s-6) 0;border-top:3px solid var(--gold)}
.checklist h3{margin-bottom:var(--s-3)}
.checklist ul{list-style:none;margin:0;padding:0}
.checklist li{position:relative;padding:.45rem 0 .45rem 1.85rem;color:var(--muted);font-size:.97rem}
.checklist li::before{content:"";position:absolute;left:0;top:1rem;width:9px;height:5px;border-left:2px solid var(--gold-deep);border-bottom:2px solid var(--gold-deep);transform:rotate(-45deg)}

.disclaimer-note{margin-top:var(--s-6);padding-top:var(--s-4);border-top:1px solid var(--line);font-size:.83rem;color:var(--muted-light);line-height:1.6}

/* Sticky conversion column. */
.page-aside{position:sticky;top:calc(var(--header-h) + 1.25rem);display:grid;gap:var(--s-3)}
.aside-card{background:#fff;border:1px solid var(--line);border-top:3px solid var(--gold);padding:var(--s-4)}
.aside-card h2{font-size:1.35rem;margin-bottom:var(--s-3)}
.aside-call{text-align:center;background:var(--paper);border-top-color:var(--gold-deep)}
.aside-phone{display:block;font:1.7rem var(--serif);color:var(--gold-deep);margin-bottom:var(--s-2)}
.aside-phone:hover{text-decoration:underline}
.contact-form.stacked{grid-template-columns:1fr;gap:var(--s-2)}

@media (max-width:1080px){
  .page-layout{grid-template-columns:1fr}
  .page-aside{position:static;max-width:560px}
  .hub-hero{grid-template-columns:1fr;align-items:start}
  .hub-hero .lede{border-left:0;padding-left:0}
}

/* --- 10c. Attorney page -------------------------------------------------- */
.attorney-intro{display:grid;grid-template-columns:1.15fr .85fr;gap:clamp(2rem,5vw,4.5rem);align-items:start}
.attorney-intro h1{font-size:clamp(2.2rem,1.6rem + 2.4vw,3.4rem)}
.attorney-name{font:1.5rem var(--serif);color:var(--ink);margin:var(--s-4) 0 .15rem}
.attorney-name span{color:var(--gold-deep);font-size:.75em}
.attorney-role{text-transform:uppercase;letter-spacing:.16em;font-size:.75rem;font-weight:700;color:var(--muted);margin-bottom:var(--s-4)}
.attorney-intro p{color:#31405a;line-height:1.72}
@media (max-width:900px){.attorney-intro{grid-template-columns:1fr}.portrait{max-width:420px;margin-inline:auto}}

/* --- 10d. Resource guides ------------------------------------------------ */
.guide-card{min-height:auto}
.guide-card p{max-width:44ch}

.download-card{border:1px solid var(--line);border-top:3px solid var(--gold-deep);background:#fff;margin:var(--s-6) 0}
.download-head{padding:var(--s-4) var(--s-4) 0}
.download-head h2{margin:0;font-size:1.5rem}
.download-body{padding:var(--s-3) var(--s-4) var(--s-4)}
.takeaway{list-style:none;margin:0 0 var(--s-4);padding:0}
.takeaway li{position:relative;padding:.45rem 0 .45rem 1.85rem;color:#31405a;font-size:.97rem}
.takeaway li::before{content:"";position:absolute;left:0;top:1rem;width:9px;height:5px;border-left:2px solid var(--gold-deep);border-bottom:2px solid var(--gold-deep);transform:rotate(-45deg)}

/* Only present when GATE_ENABLED is true in js/resources.js. */
.gate{padding:var(--s-3) var(--s-4) var(--s-4);background:var(--paper);border-top:1px solid var(--line)}
.gate-intro{font-size:.92rem;color:var(--muted);margin-bottom:var(--s-3)}
.gate .contact-form{max-width:420px}

@media print{
  .breadcrumb,.page-aside,.download-card .button-row,.notice a{display:none}
  .page-layout{display:block}
  .page-body{max-width:none}
  .download-card{border:1px solid #999;break-inside:avoid}
  .faq details{break-inside:avoid}
  .faq details p{display:block}
}

/* --- 11. Shared odds and ends ------------------------------------------- */
/* What survived the retirement of the pre-redesign pages: still used by
   /attorney/ (portrait, detail-list) and the citation/consult callouts. */
.portrait{
  width:100%;height:auto;display:block;
  border:5px solid #fff;box-shadow:var(--shadow-md);
}
.detail-list{
  display:grid;grid-template-columns:repeat(3,1fr);gap:var(--s-3);
  border-top:1px solid var(--line);padding-top:var(--s-3);margin-top:var(--s-4);
  font-size:.85rem;font-weight:600;
}
.detail-list b{color:var(--gold-deep);font-size:1.3rem;display:block}
.callout{margin-top:var(--s-4);background:var(--paper);padding:var(--s-4)}
.callout p{margin:0;color:var(--gold-deep);font-size:.72rem;font-weight:700;letter-spacing:.16em}
.callout a{font:1.55rem var(--serif);color:var(--gold-deep)}
.callout a:hover{text-decoration:underline}

/* --- 12. Responsive ------------------------------------------------------ */
@media (max-width:1080px){
  .hero-layout{grid-template-columns:1fr;gap:var(--s-5)}
  .citation-card{max-width:none;justify-self:stretch}
  .footer-grid{grid-template-columns:1fr 1fr;gap:var(--s-4)}
}

@media (max-width:900px){
  :root{--header-h:68px}
  .brand img{height:44px}
  .menu-toggle{display:flex}
  .site-nav{
    display:none;position:absolute;top:var(--header-h);left:0;right:0;
    flex-direction:column;align-items:stretch;gap:0;
    background:#fff;padding:var(--s-3) var(--gutter) var(--s-4);
    border-bottom:1px solid var(--line);box-shadow:var(--shadow-md);
  }
  .site-nav.open{display:flex}
  .site-nav a{padding:.85rem 0;border-bottom:1px solid var(--line-cool);font-size:1.02rem}
  .site-nav a::after{display:none}
  .nav-actions .button{display:none}
  .phone span{display:none}

  .card-grid,.steps,.values{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .value{border-right:0;border-bottom:1px solid var(--line);text-align:left}
  .value:last-child{border-bottom:0}

  /* Sticky bar appears; pad the page so it never covers the footer. */
  .action-bar{display:flex}
  body{padding-bottom:64px}
  .home-hero{min-height:0}
}

@media (max-width:900px){
  /* Comfortable touch targets for the actions people actually use on a phone. */
  .phone{display:inline-flex;align-items:center;min-height:44px;padding:0 .5rem}
  .footer-grid a{padding:.45rem 0;min-height:44px;display:flex;align-items:center}
  .footer-legal a{min-height:44px;display:inline-flex;align-items:center}
  .breadcrumb a{padding:.35rem 0;display:inline-block}
}

@media (max-width:560px){
  /* <picture> swaps to the wreath mark alone below 560px */
  .brand img{height:42px}
  .contact-form{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .button-row{display:grid}
  .hero-trust{gap:var(--s-1) var(--s-3);font-size:.8rem}
  .step{grid-template-columns:44px 1fr}
  .step-number{width:44px;height:44px;font-size:1.05rem}
}

/* --- 13. Motion & print -------------------------------------------------- */
.reveal{opacity:0;transform:translateY(18px);transition:opacity .6s var(--ease),transform .6s var(--ease)}
.reveal.in{opacity:1;transform:none}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important}
  .reveal{opacity:1;transform:none}
  .button:hover,.practice-card:hover{transform:none}
}

@media print{
  .site-header,.action-bar,.cta-band,.upload-box{display:none}
  body{background:#fff;color:#000}
  .home-hero{background:none;color:#000;min-height:0}
}
