/* ==========================================================================
   Ellsworth & Kane Deposition Services
   Core stylesheet
   ========================================================================== */

:root {
  --ink:        #0E1B2C;
  --ink-2:      #16293F;
  --ink-3:      #1F3A57;
  --brass:      #A8823C;
  --brass-lt:   #C9A461;
  --parchment:  #F7F5F1;
  --paper:      #FFFFFF;
  --rule:       #DCD6CC;
  --rule-dk:    #2A3E56;
  --body:       #3B4754;
  --body-lt:    #5C6875;
  --shadow:     0 1px 2px rgba(14,27,44,.06), 0 8px 24px rgba(14,27,44,.06);

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --sans:  "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1180px;
  --gut: 28px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.68;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--ink-3); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brass); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 .55em;
}

h1 { font-size: clamp(2.1rem, 4.4vw, 3.35rem); }
h2 { font-size: clamp(1.6rem, 2.9vw, 2.3rem); }
h3 { font-size: 1.22rem; }
h4 { font-size: 1.02rem; font-family: var(--sans); font-weight: 700; letter-spacing: .01em; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut); }
.narrow { max-width: 780px; }

/* Long form prose, used on the policy pages */
.narrow h2 { margin-top: 2.1em; }
.narrow > .lede + h2 { margin-top: 1.5em; }
.narrow .ticks { margin-bottom: 1.5em; }

.eyebrow {
  font-size: .735rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brass);
  margin: 0 0 1.05em;
}
.eyebrow.on-dark { color: var(--brass-lt); }

.lede { font-size: 1.16rem; line-height: 1.62; color: var(--body-lt); }

.rule-top { border-top: 1px solid var(--rule); }

/* ------------------------------ Buttons ---------------------------------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .045em;
  text-transform: uppercase;
  padding: 15px 30px;
  border: 1px solid transparent;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.btn-primary { background: var(--brass); color: #fff; border-color: var(--brass); }
.btn-primary:hover { background: #916f31; border-color: #916f31; color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); background: var(--parchment); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.42); }
.btn-ghost-light:hover { background: rgba(255,255,255,.1); color: #fff; border-color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* ------------------------------ Header ----------------------------------- */

.utility {
  background: var(--ink);
  color: rgba(255,255,255,.76);
  font-size: .795rem;
  letter-spacing: .03em;
}
.utility .wrap { display: flex; justify-content: space-between; align-items: center; gap: 20px; min-height: 42px; }
.utility a { color: rgba(255,255,255,.86); text-decoration: none; }
.utility a:hover { color: var(--brass-lt); }
.utility-left { display: flex; gap: 26px; flex-wrap: wrap; }
.utility-right { display: flex; gap: 22px; align-items: center; }

.masthead {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 60;
}
.masthead .wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; min-height: 88px; }

.brand { display: flex; align-items: center; text-decoration: none; gap: 14px; flex-shrink: 0; }
.brand img { height: 46px; width: auto; }

nav.primary ul { display: flex; list-style: none; margin: 0; padding: 0; gap: 4px; align-items: center; }
nav.primary a {
  display: block;
  padding: 11px 15px;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .035em;
  color: var(--ink);
  text-decoration: none;
  border-radius: 2px;
}
nav.primary a:hover { color: var(--brass); background: var(--parchment); }
nav.primary a[aria-current="page"] { color: var(--brass); box-shadow: inset 0 -2px 0 var(--brass); }
nav.primary .nav-cta { margin-left: 12px; }
nav.primary .nav-cta a {
  background: var(--ink); color: #fff; padding: 13px 24px; text-transform: uppercase; font-size: .8rem;
}
nav.primary .nav-cta a:hover { background: var(--brass); color: #fff; }
/* The active state on the call to action reads better as a fill than a rule */
nav.primary .nav-cta a[aria-current="page"] { background: var(--brass); color: #fff; box-shadow: none; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--rule); border-radius: 2px;
  padding: 10px 13px; cursor: pointer; color: var(--ink); font-size: .85rem; font-weight: 600;
}

/* ------------------------------ Hero ------------------------------------- */

.hero {
  background: linear-gradient(150deg, var(--ink) 0%, var(--ink-2) 52%, var(--ink-3) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("../img/pattern-record.svg");
  background-size: 620px auto; background-position: right -60px center; background-repeat: no-repeat;
  opacity: .16; pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; padding-top: 92px; padding-bottom: 92px; }
.hero h1 { color: #fff; max-width: 15ch; }
.hero .lede { color: rgba(255,255,255,.82); max-width: 56ch; font-size: 1.2rem; }

/* Fixed column counts rather than auto-fit, so the strip never leaves an
   orphan cell stretched across a half empty row at tablet widths. */
.hero-figures {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.14); margin-top: 58px;
}
@media (max-width: 900px) { .hero-figures { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .hero-figures { grid-template-columns: 1fr; } }
.hero-figures div { background: rgba(14,27,44,.55); padding: 26px 24px; }
.hero-figures dt { font-family: var(--serif); font-size: 1.42rem; color: #fff; margin-bottom: 5px; }
.hero-figures dd {
  margin: 0; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.66);
}

/* ------------------------------ Page head -------------------------------- */

.pagehead {
  background: var(--ink);
  color: #fff;
  padding: 74px 0 66px;
  position: relative;
  overflow: hidden;
}
.pagehead::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("../img/pattern-record.svg");
  background-size: 500px auto; background-position: right -80px top -40px; background-repeat: no-repeat;
  opacity: .12;
}
.pagehead .wrap { position: relative; z-index: 2; }
.pagehead h1 { color: #fff; margin-bottom: .3em; }
.pagehead p { color: rgba(255,255,255,.8); max-width: 62ch; font-size: 1.1rem; margin: 0; }

.crumbs { font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; margin-bottom: 22px; color: rgba(255,255,255,.55); }
.crumbs a { color: rgba(255,255,255,.75); text-decoration: none; }
.crumbs a:hover { color: var(--brass-lt); }
.crumbs span { padding: 0 8px; opacity: .5; }

/* ------------------------------ Sections --------------------------------- */

section { padding: 84px 0; }
section.tight { padding: 60px 0; }
section.alt { background: var(--parchment); }
section.dark { background: var(--ink); color: rgba(255,255,255,.82); }
section.dark h2, section.dark h3 { color: #fff; }

.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ------------------------------ Grids ------------------------------------ */

.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.split.narrow-gap { gap: 46px; }

/* ------------------------------ Cards ------------------------------------ */

.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 34px 32px;
  transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}
.card:hover { box-shadow: var(--shadow); border-color: #C6BDB0; transform: translateY(-2px); }
/* Cards that are themselves links must not inherit the underlined link style */
a.card, a.card:hover { text-decoration: none; display: block; color: inherit; }
a.card:hover h3 { color: var(--brass); }
.card h3 { margin-bottom: .45em; }
.card p { font-size: .96rem; color: var(--body-lt); }
.card .icon { width: 42px; height: 42px; margin-bottom: 22px; }
.card .more {
  display: inline-block; margin-top: 18px; font-size: .82rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; color: var(--brass); text-decoration: none;
}
.card .more:hover { color: #916f31; text-decoration: underline; }

.card-flat { border: 0; border-top: 3px solid var(--brass); padding: 28px 0 0; background: none; }
.card-flat:hover { box-shadow: none; transform: none; }

/* Numbered process */
.steps {
  counter-reset: step; display: grid; gap: 1px;
  background: var(--rule); border: 1px solid var(--rule);
  margin: 0; padding: 0; list-style: none;
}
.steps > li { background: var(--paper); padding: 32px 34px 34px; list-style: none; position: relative; }
.steps > li::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--serif); font-size: .95rem; color: var(--brass); letter-spacing: .08em;
  display: block; margin-bottom: 14px;
}
.steps h3 { font-size: 1.08rem; margin-bottom: .4em; }
.steps p { font-size: .94rem; margin: 0; color: var(--body-lt); }

/* ------------------------------ Lists ------------------------------------ */

.ticks { list-style: none; margin: 0; padding: 0; }
.ticks li { position: relative; padding-left: 30px; margin-bottom: 13px; font-size: .98rem; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 13px; height: 8px; border-left: 2px solid var(--brass); border-bottom: 2px solid var(--brass);
  transform: rotate(-45deg);
}
.ticks.on-dark li::before { border-color: var(--brass-lt); }

.plain { list-style: none; margin: 0; padding: 0; }
.plain li { padding: 13px 0; border-bottom: 1px solid var(--rule); font-size: .97rem; }
.plain li:last-child { border-bottom: 0; }

/* ------------------------------ Definition rows -------------------------- */

.deflist { margin: 0; }
.deflist > div { display: grid; grid-template-columns: 240px 1fr; gap: 28px; padding: 24px 0; border-bottom: 1px solid var(--rule); }
.deflist > div:first-child { border-top: 1px solid var(--rule); }
.deflist dt { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); }
.deflist dd { margin: 0; font-size: .97rem; color: var(--body-lt); }

/* ------------------------------ Pull quote ------------------------------- */

.pull {
  border-left: 3px solid var(--brass);
  padding: 6px 0 6px 30px;
  font-family: var(--serif);
  font-size: 1.32rem;
  line-height: 1.5;
  color: var(--ink);
}
section.dark .pull { color: #fff; border-color: var(--brass-lt); }

/* ------------------------------ CTA band --------------------------------- */

.cta-band { background: var(--parchment); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 44px; padding-top: 58px; padding-bottom: 58px; flex-wrap: wrap; }
.cta-band h2 { margin-bottom: .3em; }
.cta-band p { margin: 0; color: var(--body-lt); max-width: 58ch; }
.cta-band .btn-row { margin-top: 0; flex-shrink: 0; }

/* ------------------------------ Forms ------------------------------------ */

.form-card { background: var(--paper); border: 1px solid var(--rule); border-radius: 3px; padding: 44px; box-shadow: var(--shadow); }

.field { margin-bottom: 22px; }
.field label { display: block; font-size: .84rem; font-weight: 700; letter-spacing: .04em; color: var(--ink); margin-bottom: 7px; }
.field .hint { font-weight: 400; color: var(--body-lt); letter-spacing: 0; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font-family: var(--sans); font-size: .97rem; color: var(--ink);
  background: var(--paper); border: 1px solid #C9C1B5; border-radius: 2px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--brass); outline-offset: 0; border-color: var(--brass);
}
.field textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

fieldset { border: 0; padding: 0; margin: 0 0 30px; }
legend {
  font-family: var(--serif); font-size: 1.16rem; color: var(--ink); padding: 0 0 16px;
  margin-bottom: 20px; border-bottom: 1px solid var(--rule); width: 100%;
}
.checkline { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 11px; font-size: .95rem; }
.checkline input { width: auto; margin-top: 5px; flex-shrink: 0; }

.form-note { font-size: .86rem; color: var(--body-lt); margin-top: 22px; }

.submit-note {
  display: none; margin-top: 20px; padding: 15px 18px;
  background: #EEF4EF; border-left: 3px solid #4A7C59;
  font-size: .92rem; color: #2E4A38; border-radius: 2px;
}

/* ------------------------------ FAQ -------------------------------------- */

details.faq { border-bottom: 1px solid var(--rule); padding: 6px 0; }
details.faq summary {
  cursor: pointer; list-style: none; padding: 20px 40px 20px 0; position: relative;
  font-family: var(--serif); font-size: 1.1rem; color: var(--ink);
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--brass); font-family: var(--sans); line-height: 1;
}
details.faq[open] summary::after { content: "\2013"; }
details.faq .answer { padding: 0 44px 24px 0; font-size: .97rem; color: var(--body-lt); }

/* ------------------------------ Notice box ------------------------------- */

.notice {
  background: var(--parchment); border: 1px solid var(--rule); border-left: 3px solid var(--brass);
  padding: 24px 28px; border-radius: 2px; font-size: .93rem; color: var(--body-lt);
}
.notice strong { color: var(--ink); }

/* Editable placeholder marker (visible so nothing untrue ships by accident) */
.tbd {
  background: #FFF4D6; border-bottom: 1px dashed #C9A461; padding: 0 3px; color: #6B5518;
  font-family: var(--sans); font-size: .95em; font-weight: 600;
}

/* ------------------------------ Photography ------------------------------ */

/* Full bleed slideshow behind the hero. The scrim is what keeps the headline
   legible no matter which frame is showing. */
.hero-slides { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 45%;
  opacity: 0; transition: opacity 1.8s ease-in-out;
  transform: scale(1.04);
}
.hero-slide.is-active { opacity: 1; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(14,27,44,.93) 0%, rgba(14,27,44,.80) 38%, rgba(14,27,44,.34) 100%),
    linear-gradient(180deg, rgba(14,27,44,.34) 0%, rgba(14,27,44,.08) 42%, rgba(14,27,44,.60) 100%);
}
.hero.has-slideshow::after { display: none; }

.slide-dots {
  position: absolute; left: 0; right: 0; bottom: 26px; z-index: 3;
  display: flex; gap: 10px; justify-content: center;
}
.slide-dots button {
  width: 30px; height: 3px; padding: 0; border: 0; cursor: pointer;
  background: rgba(255,255,255,.32); transition: background .25s ease;
}
.slide-dots button[aria-current="true"] { background: var(--brass-lt); }
.slide-dots button:hover { background: rgba(255,255,255,.6); }
.slide-dots button:focus-visible { outline: 2px solid var(--brass-lt); outline-offset: 3px; }

/* In page photograph with an optional caption */
figure.plate { margin: 0; }
figure.plate img {
  width: 100%; border-radius: 2px; border: 1px solid var(--rule);
  box-shadow: var(--shadow);
}
figure.plate figcaption {
  margin-top: 14px; font-size: .84rem; color: var(--body-lt);
  padding-left: 14px; border-left: 2px solid var(--brass);
}
section.dark figure.plate figcaption { color: rgba(255,255,255,.62); }
section.dark figure.plate img { border-color: var(--rule-dk); }

/* Full bleed image band used to break up long pages */
.band {
  position: relative; overflow: hidden;
  background: var(--ink); color: #fff; padding: 96px 0;
}
/* Note: --band-img must use an absolute path. A url() inside a custom property
   resolves against this stylesheet, not the page that sets the property. */
.band::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--band-img);
  background-size: cover; background-position: center 45%;
  opacity: .72;
}
.band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(14,27,44,.90) 0%, rgba(14,27,44,.62) 55%, rgba(14,27,44,.28) 100%);
}
.band .wrap { position: relative; z-index: 2; }
.band h2 { color: #fff; }
.band p { color: rgba(255,255,255,.84); }

/* Captioned rotating gallery */
.gallery { position: relative; }
.gallery-stage {
  position: relative; aspect-ratio: 3 / 2; overflow: hidden;
  border: 1px solid var(--rule); border-radius: 2px; background: var(--ink);
}
.gallery-item {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease;
}
.gallery-item.is-active { opacity: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 46px 30px 24px;
  background: linear-gradient(180deg, rgba(14,27,44,0) 0%, rgba(14,27,44,.88) 70%);
  color: #fff;
}
.gallery-caption strong { display: block; font-family: var(--serif); font-size: 1.12rem; margin-bottom: 4px; }
.gallery-caption span { font-size: .88rem; color: rgba(255,255,255,.76); }
.gallery-nav { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.gallery-nav button {
  flex: 1 1 0; min-width: 90px; padding: 11px 10px; cursor: pointer;
  background: none; border: 1px solid var(--rule); border-radius: 2px;
  font-family: var(--sans); font-size: .74rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--body-lt);
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.gallery-nav button:hover { border-color: var(--ink); color: var(--ink); }
.gallery-nav button[aria-current="true"] {
  background: var(--ink); border-color: var(--ink); color: #fff;
}

/* Small paired images */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.duo img { width: 100%; border-radius: 2px; border: 1px solid var(--rule); }

@media (prefers-reduced-motion: reduce) {
  .hero-slide, .gallery-item { transition: none; }
}

/* ------------------------------ Coverage --------------------------------- */

.region { border-top: 1px solid var(--rule); padding: 30px 0; display: grid; grid-template-columns: 260px 1fr; gap: 34px; }
.region h3 { margin: 0; font-size: 1.14rem; }
.region ul { columns: 2; column-gap: 34px; list-style: none; margin: 0; padding: 0; }
.region li { font-size: .95rem; padding: 5px 0; color: var(--body-lt); break-inside: avoid; }

/* ------------------------------ Footer ----------------------------------- */

footer.site {
  background: var(--ink);
  color: rgba(255,255,255,.68);
  font-size: .92rem;
  padding: 72px 0 0;
}
footer.site .cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 46px; padding-bottom: 56px; }
footer.site img.fmark { height: 52px; margin-bottom: 22px; }
footer.site h4 {
  color: #fff; font-size: .78rem; letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: 20px; font-family: var(--sans);
}
footer.site ul { list-style: none; margin: 0; padding: 0; }
footer.site li { margin-bottom: 11px; }
footer.site a { color: rgba(255,255,255,.72); text-decoration: none; }
footer.site a:hover { color: var(--brass-lt); }
footer.site p { line-height: 1.62; }

.compliance {
  border-top: 1px solid var(--rule-dk); padding: 30px 0;
  font-size: .84rem; color: rgba(255,255,255,.52); line-height: 1.65;
}
.legal-bar {
  border-top: 1px solid var(--rule-dk); padding: 22px 0 32px;
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  font-size: .82rem; color: rgba(255,255,255,.48);
}
.legal-bar ul { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.legal-bar li { margin: 0; }

/* ------------------------------ Utilities -------------------------------- */

.skip {
  position: absolute; left: -9999px; top: 0; background: var(--brass); color: #fff;
  padding: 12px 20px; z-index: 200; text-decoration: none;
}
.skip:focus { left: 12px; top: 12px; }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.center { text-align: center; }

/* ------------------------------ Responsive ------------------------------- */

@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; gap: 44px; }
  footer.site .cols { grid-template-columns: 1fr 1fr; gap: 40px; }
  .deflist > div { grid-template-columns: 1fr; gap: 8px; }
  .region { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  nav.primary {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--rule); box-shadow: var(--shadow);
    padding: 14px var(--gut) 24px;
  }
  nav.primary.open { display: block; }
  nav.primary ul { flex-direction: column; align-items: stretch; gap: 0; }
  nav.primary a { padding: 15px 4px; border-bottom: 1px solid var(--rule); }
  nav.primary a[aria-current="page"] { box-shadow: none; }
  nav.primary .nav-cta { margin: 18px 0 0; }
  nav.primary .nav-cta a { text-align: center; border-bottom: 0; }
  .masthead .wrap { position: relative; min-height: 74px; }
  .utility .wrap { justify-content: center; }
  .utility-left { display: none; }
  section { padding: 62px 0; }
  .hero .wrap { padding-top: 66px; padding-bottom: 86px; }
  .form-card { padding: 30px 24px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .region ul { columns: 1; }
  .band { padding: 64px 0; }
  .duo { grid-template-columns: 1fr; }
  .gallery-nav button { flex: 1 1 40%; }
  .hero-scrim {
    background: linear-gradient(180deg, rgba(14,27,44,.86) 0%, rgba(14,27,44,.78) 45%, rgba(14,27,44,.92) 100%);
  }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  :root { --gut: 20px; }
  footer.site .cols { grid-template-columns: 1fr; }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
  .hero::after, .pagehead::after { opacity: .08; }
}

@media print {
  .utility, nav.primary, .nav-toggle, .cta-band, .btn-row { display: none; }
  body { font-size: 11pt; color: #000; }
  .hero, .pagehead, footer.site { background: #fff; color: #000; }
  .hero h1, .pagehead h1 { color: #000; }
}
