/* ==========================================================================
   Woodside Law & Legal PLLC — lawfirm.bestdealwebdesign.com
   A restrained, authoritative palette: deep navy, warm ivory, brass hairlines.
   Self-contained by design — no external font or asset requests (validate.mjs
   fails the build on any). System serif carries the display voice.
   ========================================================================== */

:root {
  --ink:        #0b1626;
  --navy:       #12243b;
  --navy-2:     #1b3252;
  --brass:      #a8842f;
  --brass-lt:   #cfae63;
  --brass-dim:  rgba(168,132,47,.28);
  --ivory:      #f8f5ef;
  --ivory-2:    #efe9de;
  --paper:      #ffffff;
  --stone:      #6b665c;
  --stone-lt:   #918b7f;
  --line:       rgba(11,22,38,.13);
  --line-soft:  rgba(11,22,38,.07);
  --line-dark:  rgba(248,245,239,.16);

  --serif: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", "Times New Roman", serif;
  --sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;

  --wrap: 1200px;
  --wrap-narrow: 780px;
  --pad: clamp(1.15rem, 4vw, 2.5rem);
  --gap: clamp(1.5rem, 3vw, 2.5rem);
  --sec: clamp(3.75rem, 8vw, 7rem);

  --shadow-sm: 0 1px 2px rgba(11,22,38,.06), 0 6px 18px rgba(11,22,38,.05);
  --shadow-md: 0 2px 6px rgba(11,22,38,.07), 0 18px 44px rgba(11,22,38,.09);
  --shadow-lg: 0 30px 80px rgba(11,22,38,.16);
}

/* ------------------------------------------------------------------ reset */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -.012em;
  margin: 0 0 .55em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.3rem, 5.6vw, 3.9rem); }
h2 { font-size: clamp(1.85rem, 3.9vw, 2.85rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
h4 { font-size: 1.08rem; }
p  { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--ivory);
  padding: .8rem 1.3rem; font-size: .9rem;
}
.skip:focus { left: .5rem; top: .5rem; }

/* ------------------------------------------------------------- primitives */

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.narrow { max-width: var(--wrap-narrow); }
.section { padding-block: var(--sec); }
.section--tint { background: var(--ivory); }
.section--ink { background: var(--ink); color: var(--ivory); }
.section--ink h2, .section--ink h3 { color: var(--ivory); }

.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 1.05rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.eyebrow::after {
  content: ""; flex: 0 0 34px; height: 1px; background: currentColor; opacity: .5;
}
.section--ink .eyebrow { color: var(--brass-lt); }

.lead {
  font-size: clamp(1.06rem, 1.6vw, 1.2rem);
  line-height: 1.7;
  color: var(--stone);
}
.section--ink .lead { color: rgba(248,245,239,.76); }

.head { max-width: 46rem; margin-bottom: clamp(2.4rem, 4.5vw, 3.5rem); }
.head--center { margin-inline: auto; text-align: center; }
.head--center .eyebrow { justify-content: center; }
.head--center .eyebrow::before {
  content: ""; flex: 0 0 34px; height: 1px; background: currentColor; opacity: .5; order: -1;
}

/* ---------------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.75rem;
  font-size: .85rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: background-color .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}
.btn--primary { background: var(--brass); color: #fff; }
.btn--primary:hover { background: #8f6f26; }
.btn--ghost { border-color: currentColor; color: inherit; background: transparent; }
.btn--ghost:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.section--ink .btn--ghost:hover, .hero .btn--ghost:hover, .cta-band .btn--ghost:hover { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.btn--ink { background: var(--ink); color: var(--ivory); }
.btn--ink:hover { background: var(--navy-2); }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }

.link-more {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase;
  color: var(--brass); text-decoration: none;
}
.link-more svg { transition: transform .22s ease; }
.link-more:hover svg { transform: translateX(4px); }

/* ----------------------------------------------------------- utility bar */

.topbar {
  background: var(--ink); color: rgba(248,245,239,.82);
  font-size: .8rem;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 44px; }
.topbar ul { list-style: none; display: flex; align-items: center; gap: 1.6rem; margin: 0; padding: 0; }
.topbar li { display: flex; align-items: center; gap: .5rem; }
.topbar a { color: inherit; text-decoration: none; }
.topbar a:hover { color: var(--brass-lt); }
.topbar svg { flex: none; color: var(--brass-lt); }
.topbar-note { color: var(--brass-lt); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; font-size: .7rem; }
@media (max-width: 900px) { .topbar-left li:not(:first-child), .topbar-note { display: none; } }

/* --------------------------------------------------------------- header */

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(1.6) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: var(--gap); min-height: 82px; }

.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; color: var(--ink); flex: none; }
.brand-mark { flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--serif); font-size: 1.18rem; }
.brand-sub {
  font-size: .6rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--stone-lt); margin-top: .28rem;
}

.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.9rem); }
.nav a {
  text-decoration: none; font-size: .88rem; color: var(--ink);
  padding-block: .4rem; position: relative; white-space: nowrap;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--brass); transform: scaleX(0); transform-origin: left; transition: transform .24s ease;
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--brass); }

.nav-drop { position: relative; }
.nav-drop > button {
  display: inline-flex; align-items: center; gap: .4rem;
  background: none; border: 0; padding: .4rem 0; cursor: pointer;
  font-size: .88rem; color: var(--ink); font-family: var(--sans);
}
.nav-drop > button svg { transition: transform .22s ease; }
.nav-drop[data-open="true"] > button svg { transform: rotate(180deg); }
.nav-panel {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(-6px);
  width: min(660px, 88vw);
  background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-md);
  padding: 1.6rem; display: grid; grid-template-columns: 1fr 1fr; gap: .2rem 1.6rem;
  opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.nav-drop[data-open="true"] .nav-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-panel a {
  display: block; padding: .62rem .7rem; font-size: .9rem;
  border-left: 2px solid transparent; transition: background-color .18s ease, border-color .18s ease;
}
.nav-panel a::after { display: none; }
.nav-panel a:hover { background: var(--ivory); border-left-color: var(--brass); }
.nav-panel-foot {
  grid-column: 1 / -1; margin-top: .9rem; padding-top: 1rem; border-top: 1px solid var(--line-soft);
}

.header-cta { display: flex; align-items: center; gap: 1rem; flex: none; }
.header-cta .btn { padding: .8rem 1.35rem; font-size: .76rem; }

.burger {
  display: none; background: none; border: 1px solid var(--line);
  width: 46px; height: 46px; align-items: center; justify-content: center; cursor: pointer;
}

@media (max-width: 1080px) {
  .nav, .header-cta .btn--ghost { display: none; }
  .burger { display: inline-flex; }
}
@media (max-width: 560px) { .header-cta .btn { display: none; } }

/* --------------------------------------------------------- mobile drawer */

.drawer { position: fixed; inset: 0; z-index: 90; visibility: hidden; }
.drawer[data-open="true"] { visibility: visible; }
.drawer-veil {
  position: absolute; inset: 0; background: rgba(11,22,38,.55);
  opacity: 0; transition: opacity .28s ease;
}
.drawer[data-open="true"] .drawer-veil { opacity: 1; }
.drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(400px, 88vw);
  background: var(--paper); box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; overflow-y: auto;
}
.drawer[data-open="true"] .drawer-panel { transform: translateX(0); }
.drawer-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.4rem; border-bottom: 1px solid var(--line-soft);
}
.drawer-close { background: none; border: 0; cursor: pointer; padding: .5rem; color: var(--ink); }
.drawer nav { padding: 1rem 1.4rem 2rem; }
.drawer nav a {
  display: block; padding: .82rem 0; text-decoration: none;
  font-family: var(--serif); font-size: 1.15rem; border-bottom: 1px solid var(--line-soft);
}
.drawer nav a.sub { font-family: var(--sans); font-size: .95rem; padding: .6rem 0; }
.drawer-sub {
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--brass); margin: 1.7rem 0 .3rem; font-weight: 600;
}
.drawer-foot { margin-top: auto; padding: 1.4rem; background: var(--ivory); }

/* ------------------------------------------------------------------ hero */

.hero { position: relative; background: var(--ink); color: var(--ivory); overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(11,22,38,.94) 0%, rgba(11,22,38,.82) 42%, rgba(11,22,38,.44) 100%),
    linear-gradient(to top, rgba(11,22,38,.7), transparent 55%);
}
.hero .wrap { position: relative; padding-block: clamp(4.5rem, 12vw, 9rem); }
.hero-inner { max-width: 43rem; }
.hero h1 { color: var(--ivory); margin-bottom: .5em; }
.hero h1 em { font-style: italic; color: var(--brass-lt); }
.hero .lead { color: rgba(248,245,239,.8); max-width: 36rem; }
.hero .btn-row { margin-top: 2.2rem; }

.hero-marks {
  display: flex; flex-wrap: wrap; gap: 1.4rem 2.6rem;
  margin-top: clamp(2.6rem, 5vw, 4rem); padding-top: 1.9rem;
  border-top: 1px solid var(--line-dark);
}
.hero-mark { display: flex; align-items: baseline; gap: .65rem; }
.hero-mark b { font-family: var(--serif); font-size: 1.75rem; color: var(--brass-lt); font-weight: 400; }
.hero-mark span { font-size: .78rem; letter-spacing: .07em; color: rgba(248,245,239,.66); max-width: 12rem; line-height: 1.4; }

/* -------------------------------------------------------------- pagehead */

.pagehead { background: var(--ink); color: var(--ivory); position: relative; overflow: hidden; }
.pagehead-media { position: absolute; inset: 0; }
.pagehead-media img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.pagehead-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(11,22,38,.95), rgba(11,22,38,.66));
}
.pagehead .wrap { position: relative; padding-block: clamp(3rem, 7vw, 5.4rem); }
.pagehead h1 { color: var(--ivory); max-width: 20ch; margin-bottom: .35em; }
.pagehead .lead { max-width: 44rem; color: rgba(248,245,239,.78); }

.crumbs { font-size: .78rem; color: rgba(248,245,239,.6); margin-bottom: 1.5rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; }
.crumbs a { color: inherit; text-decoration: none; }
.crumbs a:hover { color: var(--brass-lt); }
.crumbs li + li::before { content: "/"; margin-right: .5rem; opacity: .5; }

/* ----------------------------------------------------------------- cards */

.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(295px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); }

.card {
  background: var(--paper); border: 1px solid var(--line-soft);
  display: flex; flex-direction: column; height: 100%;
  transition: box-shadow .28s ease, transform .28s ease, border-color .28s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--line); }
.card-media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; background: var(--ivory-2); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.6,.2,1); }
.card:hover .card-media img { transform: scale(1.045); }
.card-body { padding: 1.6rem 1.6rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: .5rem; }
.card-body p { font-size: .95rem; color: var(--stone); }
.card-body .link-more { margin-top: auto; padding-top: 1.1rem; }
.card-num {
  font-family: var(--serif); font-size: .8rem; color: var(--brass);
  letter-spacing: .16em; margin-bottom: .7rem;
}

.plist { display: grid; gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.plist a {
  background: var(--paper); padding: 1.5rem 1.6rem; text-decoration: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
  transition: background-color .22s ease;
}
.plist a:hover { background: var(--ivory); }
.plist h3 { font-size: 1.15rem; margin: 0 0 .25rem; }
.plist p { font-size: .88rem; color: var(--stone); margin: 0; }
.plist svg { flex: none; color: var(--brass); }

/* ------------------------------------------------------------- attorneys */

.atty { display: flex; flex-direction: column; height: 100%; }
.atty-photo { aspect-ratio: 1; overflow: hidden; background: var(--ivory-2); }
.atty-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.24) contrast(1.02); transition: filter .45s ease, transform .6s cubic-bezier(.2,.6,.2,1); }
.atty:hover .atty-photo img { filter: grayscale(0); transform: scale(1.03); }
.atty-body { padding-top: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.atty-body h3 { font-size: 1.22rem; margin-bottom: .2rem; }
.atty-role {
  font-size: .72rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  color: var(--brass); margin-bottom: .85rem;
}
.atty-body p { font-size: .92rem; color: var(--stone); margin-bottom: .9rem; }
.atty-meta {
  margin-top: auto; padding-top: .95rem; border-top: 1px solid var(--line-soft);
  font-size: .8rem; color: var(--stone-lt); line-height: 1.6;
}
.atty-meta dt {
  font-weight: 600; color: var(--ink); letter-spacing: .1em; text-transform: uppercase;
  font-size: .66rem; margin-top: .6rem;
}
.atty-meta dt:first-child { margin-top: 0; }
.atty-meta dd { margin: .1rem 0 0; }
.tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .9rem; }
.tag {
  font-size: .7rem; letter-spacing: .07em; text-transform: uppercase;
  padding: .3rem .6rem; border: 1px solid var(--brass-dim); color: var(--brass);
}

/* ----------------------------------------------------------------- split */

.split { display: grid; gap: clamp(2.2rem, 5vw, 4.5rem); align-items: center; }
/* Centering is right for image + prose. Two columns of CONTENT of unequal
   height read as misaligned when centered — top-align those instead. */
.split--top { align-items: start; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-left { grid-template-columns: 1.15fr 1fr; }
  .split--wide-right { grid-template-columns: 1fr 1.15fr; }
  .split--flip .split-media { order: 2; }
}
.split-media { position: relative; }
.split-media img { width: 100%; object-fit: cover; box-shadow: var(--shadow-md); }
.split-copy > .btn-row { margin-top: 1.9rem; }

/* ----------------------------------------------------------------- stats */

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1px; background: var(--line-dark); }
.stat { background: var(--ink); padding: 2.2rem 1.5rem; text-align: center; }
.stat b { display: block; font-family: var(--serif); font-size: clamp(2.3rem, 4.4vw, 3.2rem); color: var(--brass-lt); font-weight: 400; line-height: 1; }
.stat span { display: block; margin-top: .7rem; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(248,245,239,.62); }

/* ------------------------------------------------------------- rich text */

.prose h2 { margin-top: 2.6rem; }
.prose h3 { margin-top: 2rem; font-size: 1.28rem; }
.prose > *:first-child { margin-top: 0; }
.prose ul, .prose ol { margin: 0 0 1.3em; padding-left: 1.3rem; }
.prose li { margin-bottom: .55em; }
.prose li::marker { color: var(--brass); }
.prose strong { font-weight: 600; }

.checks { list-style: none; padding: 0; margin: 0 0 1.4em; display: grid; gap: .75rem; }
.checks li { display: flex; gap: .8rem; align-items: flex-start; font-size: .96rem; }
.checks svg { flex: none; color: var(--brass); margin-top: .32rem; }

.callout {
  border-left: 2px solid var(--brass); background: var(--ivory);
  padding: 1.5rem 1.7rem; margin: 2rem 0;
}
.callout p { font-size: .96rem; margin-bottom: .7rem; }
.callout p:last-child { margin-bottom: 0; }
.callout strong { font-family: var(--serif); font-size: 1.05rem; font-weight: 400; }

/* ------------------------------------------------------------------- faq */

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.5rem 3rem 1.5rem 0; position: relative;
  font-family: var(--serif); font-size: clamp(1.05rem, 1.7vw, 1.22rem); line-height: 1.4;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: .6rem; top: 50%; width: 12px; height: 12px;
  border-right: 1.5px solid var(--brass); border-bottom: 1.5px solid var(--brass);
  transform: translateY(-70%) rotate(45deg); transition: transform .25s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-body { padding: 0 3rem 1.7rem 0; color: var(--stone); font-size: .97rem; }
.faq-body p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------- testimonials */

.quote { background: var(--paper); border: 1px solid var(--line-soft); padding: 2rem 1.9rem; height: 100%; display: flex; flex-direction: column; }
.quote-mark { font-family: var(--serif); font-size: 3rem; line-height: .7; color: var(--brass-dim); margin-bottom: .7rem; }
.quote blockquote { margin: 0 0 1.3rem; font-family: var(--serif); font-size: 1.08rem; line-height: 1.62; }
.quote figcaption { margin-top: auto; font-size: .82rem; color: var(--stone-lt); }
.quote figcaption b { display: block; color: var(--ink); font-weight: 600; font-size: .88rem; }

/* ------------------------------------------------------------------ form */

.form-shell { background: var(--paper); border: 1px solid var(--line); padding: clamp(1.6rem, 3.5vw, 2.6rem); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.15rem; }
.field label {
  display: block; font-size: .74rem; font-weight: 600; letter-spacing: .13em;
  text-transform: uppercase; color: var(--ink); margin-bottom: .5rem;
}
/* Say what it is NOT — an enumerated type list always misses one, and the one
   it misses renders at browser-default width beside a full-width sibling. */
.field input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.field select,
.field textarea {
  width: 100%; padding: .85rem .95rem; font: inherit; font-size: .96rem;
  color: var(--ink); background: var(--paper);
  border: 1px solid var(--line); border-radius: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 155px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(168,132,47,.13);
}
.field-row { display: grid; gap: 1.15rem; }
@media (min-width: 620px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field-hint { font-size: .8rem; color: var(--stone-lt); margin-top: .4rem; }
.field-check { display: flex; gap: .7rem; align-items: flex-start; font-size: .88rem; color: var(--stone); }
.field-check input { margin-top: .3rem; flex: none; accent-color: var(--brass); }
/* The consent notice is a paragraph of legal text living inside a <label>, so
   it inherits `.field label`'s uppercase + .13em letter-spacing and renders as
   four lines of spaced capitals. Nobody reads that, which is the exact opposite
   of what a consent notice is for. Undo the label styling for the text itself;
   the checkbox and the short field labels keep it. */
.field-check span {
  text-transform: none; letter-spacing: normal; font-weight: 400;
  font-size: .88rem; line-height: 1.6; color: var(--stone);
}
.form-shell button[type="submit"] {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brass); color: #fff; border: 1px solid var(--brass);
  padding: .95rem 2rem; font-size: .85rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; cursor: pointer;
  transition: background-color .22s ease;
}
.form-shell button[type="submit"]:hover { background: #8f6f26; }

/* ------------------------------------------------------------ info panel */

.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { display: flex; gap: 1rem; padding: 1.15rem 0; border-bottom: 1px solid var(--line-soft); }
.info-list li:last-child { border-bottom: 0; }
.info-list svg { flex: none; color: var(--brass); margin-top: .3rem; }
.info-list b { display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--stone-lt); margin-bottom: .28rem; font-weight: 600; }
.info-list a { text-decoration: none; }
.info-list a:hover { color: var(--brass); }

/* ------------------------------------------------------------- cta band */

.cta-band { background: var(--navy); color: var(--ivory); position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 380px at 78% 12%, rgba(168,132,47,.2), transparent 62%);
}
.cta-band .wrap { position: relative; padding-block: clamp(3.2rem, 7vw, 5.2rem); }
.cta-band h2 { color: var(--ivory); }
.cta-band .lead { color: rgba(248,245,239,.78); }
.cta-inner { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 940px) { .cta-inner { grid-template-columns: 1.5fr auto; } }

/* ---------------------------------------------------------------- footer */

.site-footer { background: var(--ink); color: rgba(248,245,239,.68); font-size: .9rem; }
.site-footer .wrap { padding-block: clamp(3rem, 6vw, 4.5rem); }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 780px)  { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
@media (min-width: 1060px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.1fr; } }
.site-footer h4 {
  color: var(--ivory); font-family: var(--sans); font-size: .72rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1.15rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .62rem; }
.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { color: var(--brass-lt); }
.footer-brand .brand { color: var(--ivory); margin-bottom: 1.15rem; }
.footer-brand .brand-sub { color: rgba(248,245,239,.5); }
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 30rem; }
.footer-bar {
  border-top: 1px solid var(--line-dark); margin-top: 3rem; padding-top: 1.9rem;
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between;
  font-size: .8rem; color: rgba(248,245,239,.5);
}
.footer-bar ul { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer-bar li { margin: 0; }
.footer-disclaimer {
  margin-top: 1.6rem; padding-top: 1.5rem; border-top: 1px solid var(--line-dark);
  font-size: .77rem; line-height: 1.65; color: rgba(248,245,239,.44); max-width: 62rem;
}
.footer-disclaimer strong { color: rgba(248,245,239,.7); font-weight: 600; }

/* ------------------------------------------------------------------- 404 */

.err { text-align: center; padding-block: clamp(4.5rem, 12vw, 8rem); }
.err .code { font-family: var(--serif); font-size: clamp(5rem, 16vw, 9rem); line-height: .9; color: var(--brass-dim); }

/* ----------------------------------------------------------------- misc */

.hr { border: 0; border-top: 1px solid var(--line); margin: 0; }
.center { text-align: center; }
.mt-lg { margin-top: clamp(2.4rem, 4.5vw, 3.4rem); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
