/* ============================================================
   Hollingsworth & Vance - Attorneys at Law
   Palette : warm parchment / ink navy / muted antique gold
   Type    : EB Garamond (display) + Inter (text)
   ============================================================ */

:root {
  /* -- surface -------------------------------------------- */
  --paper:        #FBFAF7;   /* page ground, warm off-white   */
  --paper-2:      #F4F1EA;   /* recessed bands                */
  --paper-3:      #EFEBE1;   /* deepest cream                 */

  /* -- ink ------------------------------------------------ */
  --ink:          #16233B;   /* headings, deep navy           */
  --ink-body:     #4A5568;   /* body copy   (7.2:1 on paper)  */
  /* muted must clear 4.5:1 on the *deepest* band (--paper-3), not just
     --paper, or the quote citation and form help text fail AA */
  --ink-muted:    #5F6878;   /* captions (5.4 paper / 4.7 paper-3) */

  /* -- accent: antique gold ------------------------------- */
  --gold:         #7C5E24;   /* accent text (5.8:1 on paper)  */
  --gold-mid:     #A9884B;   /* marks, numerals (3.2:1)       */
  --gold-soft:    #D8C79E;   /* hairlines, non-text           */

  --line:         #E2DDD1;   /* default hairline              */
  --line-strong:  #CFC8B7;

  /* -- type ----------------------------------------------- */
  --serif: 'EB Garamond', 'Iowan Old Style', 'Palatino Linotype',
           Palatino, Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
           Roboto, Helvetica, Arial, sans-serif;

  /* -- rhythm --------------------------------------------- */
  --shell:   1180px;
  --gutter:  clamp(1.5rem, 5vw, 4rem);
  --section: clamp(6rem, 11vw, 10.5rem);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* -- reset -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, p, figure, blockquote, dl, dd, ul { margin: 0; padding: 0; }
ul { list-style: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  background: var(--paper);
  color: var(--ink-body);
  font-family: var(--sans);
  font-size: 1.0625rem;          /* 17px */
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: .003em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* -- headings ----------------------------------------------- */
h1, h2, h3 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -.005em;
}

/* The ampersand carries the accent. gold-mid clears 3:1 only at
   display sizes, so small instances step down to the darker gold. */
.amp { color: var(--gold-mid); font-style: italic; font-family: var(--serif); }
.wordmark .amp { color: var(--gold); }
.wordmark--footer .amp { color: var(--gold-soft); }

.eyebrow {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: .9rem;
}
.eyebrow::after {
  content: "";
  flex: 0 0 auto;
  width: clamp(28px, 5vw, 56px);
  height: 1px;
  background: var(--gold-soft);
}
.section__head--center .eyebrow { justify-content: center; }
.section__head--center .eyebrow::before {
  content: ""; width: clamp(28px, 5vw, 56px); height: 1px; background: var(--gold-soft);
}

/* -- links & focus ------------------------------------------ */
a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 1px;
}

.skip-link {
  position: absolute;
  left: 50%; top: 0;
  transform: translate(-50%, -120%);
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  padding: .9rem 1.6rem;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.skip-link:focus { transform: translate(-50%, 0); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: clamp(1.1rem, 2.4vw, 1.9rem);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: padding .55s var(--ease), background-color .55s var(--ease),
              border-color .55s var(--ease), backdrop-filter .55s var(--ease);
}
.site-header.is-scrolled {
  padding-block: .85rem;
  background: rgba(251, 250, 247, .88);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  min-height: 44px;
}
.wordmark__mark {
  font-family: var(--serif);
  font-size: .9rem;
  line-height: 1;
  letter-spacing: .02em;
  white-space: nowrap;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  width: 42px; height: 42px;
  /* block + line-height, not grid: grid would blockify the inner
     <span class="amp"> and stack H / & / V on three rows */
  display: block;
  line-height: 40px;
  text-align: center;
  flex: 0 0 auto;
  transition: border-color .5s var(--ease);
}
.wordmark:hover .wordmark__mark { border-color: var(--gold-soft); }
.wordmark__name {
  font-family: var(--serif);
  font-size: 1.06rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

.nav { display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 3rem); }
.nav__list { display: flex; align-items: center; gap: clamp(1.4rem, 2.6vw, 2.6rem); }
.nav__list a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-body);
  white-space: nowrap;
  position: relative;
  transition: color .4s var(--ease);
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 10px;
  width: 100%; height: 1px;
  background: var(--gold-mid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.nav__list a:hover { color: var(--ink); }
.nav__list a:hover::after { transform: scaleX(1); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 1.4rem;
  border: 1px solid var(--line-strong);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  transition: background-color .5s var(--ease), border-color .5s var(--ease),
              color .5s var(--ease);
}
.nav__cta:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }

/* hamburger ------------------------------------------------- */
.hamburger {
  display: none;
  align-items: center;
  gap: .7rem;
  min-height: 44px;
  min-width: 44px;
  padding: 0 .25rem;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--ink);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hamburger__bars { display: block; width: 22px; }
.hamburger__bars i {
  display: block;
  height: 1px;
  background: var(--ink);
  transition: transform .45s var(--ease), opacity .3s var(--ease);
}
.hamburger__bars i:first-child { margin-bottom: 6px; }
.hamburger[aria-expanded="true"] .hamburger__bars i:first-child { transform: translateY(3.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] .hamburger__bars i:last-child  { transform: translateY(-3.5px) rotate(-45deg); }

.nav-scrim {
  position: fixed; inset: 0;
  background: rgba(22, 35, 59, .34);
  z-index: 95;
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.nav-scrim.is-open { opacity: 1; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: clamp(9rem, 17vw, 13rem); }

.hero__inner {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.hero__title {
  font-size: clamp(2.9rem, 7.2vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -.018em;
  margin-bottom: 1.9rem;
}
.hero__lede {
  font-size: clamp(1.05rem, 1.35vw, 1.175rem);
  line-height: 1.8;
  max-width: 34ch;
  color: var(--ink-body);
}
.hero__actions {
  margin-top: clamp(2.2rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.1rem 2.2rem;
}

.hero__figure { position: relative; }
.hero__figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(.62) contrast(1.02);
}
.hero__figure::after {              /* thin gold frame, offset behind */
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--gold-soft);
  pointer-events: none;
  z-index: -1;
}
.hero__figure figcaption {
  margin-top: 1.1rem;
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--ink-muted);
}

/* credibility strip ----------------------------------------- */
.creds {
  margin-top: clamp(4.5rem, 9vw, 8rem);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.creds__item {
  padding: clamp(1.6rem, 2.6vw, 2.3rem) clamp(1rem, 2vw, 2rem)
           clamp(1.6rem, 2.6vw, 2.3rem) 0;
  border-right: 1px solid var(--line);
}
.creds__item:last-child { border-right: 0; }
.creds__item:not(:first-child) { padding-left: clamp(1rem, 2.4vw, 2.4rem); }
.creds dt {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.1vw, 1.75rem);
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: .35rem;
}
.creds dd {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding-block: var(--section); scroll-margin-top: 6rem; }
.section--firm { background: var(--paper-2); }
.section--contact { background: var(--paper-2); }

.section__head { max-width: 46rem; margin-bottom: clamp(3.5rem, 7vw, 5.5rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__title {
  font-size: clamp(2rem, 3.9vw, 3.05rem);
  letter-spacing: -.012em;
  margin-bottom: 1.5rem;
}
.section__lede {
  font-size: 1.075rem;
  max-width: 44ch;
  color: var(--ink-body);
}
.section__head--center .section__lede { margin-inline: auto; }

/* -- practice areas ----------------------------------------- */
.practice {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 clamp(2rem, 4vw, 4rem);
}
.practice__item {
  position: relative;
  padding: 2.1rem 0 2.6rem;
  border-top: 1px solid var(--line);
  transition: border-color .6s var(--ease);
}
.practice__item:hover { border-top-color: var(--gold-mid); }
.practice__num {
  display: block;
  font-family: var(--serif);
  font-size: .95rem;
  letter-spacing: .12em;
  color: var(--gold-mid);
  margin-bottom: 1.1rem;
}
.practice__item h3 {
  font-size: 1.5rem;
  margin-bottom: .7rem;
  letter-spacing: -.004em;
}
.practice__item p {
  font-size: .975rem;
  line-height: 1.72;
  color: var(--ink-body);
  max-width: 32ch;
}

/* -- the firm ----------------------------------------------- */
.firm {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}
.firm__figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(.55) contrast(1.03);
}
.firm__copy p + p { margin-top: 1.3rem; }
.firm__copy > p { max-width: 54ch; }

.facts { margin-top: clamp(2.5rem, 4vw, 3.5rem); }
.facts__row {
  display: grid;
  /* fixed, not minmax: each row is its own grid, so a content-sized
     term column would let the values step in and out row to row */
  grid-template-columns: 9rem 1fr;
  gap: 1rem 1.5rem;
  padding: 1.05rem 0;
  border-top: 1px solid var(--line-strong);
}
.facts__row:last-child { border-bottom: 1px solid var(--line-strong); }
.facts dt {
  font-size: .73rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: .28rem;
}
.facts dd { color: var(--ink); font-size: 1rem; }
.facts dd a {
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 1px;
  transition: border-color .45s var(--ease);
}
.facts dd a:hover { border-bottom-color: var(--gold); }

/* -- quote band --------------------------------------------- */
.quote {
  background: var(--paper-3);
  padding-block: clamp(5rem, 10vw, 8.5rem);
}
.quote__inner { max-width: 44rem; text-align: center; }
.rule-mark {
  display: block;
  width: 1px; height: 46px;
  background: var(--gold-soft);
  margin: 0 auto 2.4rem;
}
.quote blockquote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.42;
  color: var(--ink);
  letter-spacing: -.006em;
}
.quote__cite {
  margin-top: 2.1rem;
  font-size: .74rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* -- attorneys ---------------------------------------------- */
.people {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2.5rem, 4.5vw, 4rem);
  align-items: stretch;
}
/* bios differ in length; push the closing rule to the bottom so the
   three hairlines align instead of stepping */
.person { display: flex; flex-direction: column; }
.person__body { display: flex; flex-direction: column; flex: 1; }
.person__bio { margin-bottom: 1.4rem; }   /* minimum gap before the rule */
.person__meta { margin-top: auto; }
.person img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(1) contrast(1.02);
  transition: filter 1.1s var(--ease);
  margin-bottom: 1.9rem;
}
.person:hover img { filter: grayscale(.15) contrast(1.02); }
.person__name { font-size: 1.55rem; margin-bottom: .5rem; }
.person__role {
  font-size: .73rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.15rem;
}
.person__bio { font-size: .975rem; line-height: 1.74; }
.person__meta {
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  font-size: .8rem;
  letter-spacing: .05em;
  color: var(--ink-muted);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 2.3rem;
  font-size: .77rem;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .55s var(--ease), color .55s var(--ease),
              border-color .55s var(--ease);
}
.btn--line {
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn--line:hover { background: var(--ink); color: var(--paper); }
.btn--solid {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.btn--solid:hover { background: var(--gold); border-color: var(--gold); }

.link-quiet {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: .95rem;
  color: var(--ink);
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 2px;
  transition: border-color .5s var(--ease), color .5s var(--ease);
}
.link-quiet:hover { border-bottom-color: var(--gold); color: var(--gold); }

/* ============================================================
   CONTACT / FORM
   ============================================================ */
.contact {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(3rem, 7vw, 6.5rem);
  align-items: start;
}
.contact__aside > p { max-width: 40ch; }

.form { display: grid; gap: 1.9rem; }
.field { display: grid; gap: .55rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.9rem; }

.field label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
}
.field__opt { text-transform: none; letter-spacing: .04em; color: var(--ink-muted); }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: .6rem 0;
  font-family: var(--sans);
  font-size: 1rem;              /* 16px - no iOS zoom on focus */
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  transition: border-color .5s var(--ease);
}
.field textarea { resize: vertical; line-height: 1.7; }
.field input:hover,
.field select:hover,
.field textarea:hover { border-bottom-color: var(--gold-soft); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
  box-shadow: 0 1px 0 0 var(--gold);
}
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%237C5E24' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .25rem center;
}

.field__help { font-size: .82rem; color: var(--ink-muted); line-height: 1.6; }

.field--check {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: .9rem;
  padding-top: .4rem;
}
.field--check input {
  width: 22px; height: 22px;
  min-height: 22px;
  margin: 11px 0;                /* 22 + 11 + 11 = 44px tall hit area */
  accent-color: var(--gold);
  cursor: pointer;
}
.field--check label {
  text-transform: none;
  letter-spacing: .01em;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink-body);
  cursor: pointer;
  display: flex;
  align-items: center;
  min-height: 44px;              /* the label is the generous target */
}

.form .btn { justify-self: start; margin-top: .5rem; }
.form__status {
  font-size: .9rem;
  color: var(--gold);
  min-height: 1.4rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: #C9CFDB;
  padding-block: clamp(3.5rem, 6vw, 5rem);
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(216, 199, 158, .22);
}
.wordmark--footer .wordmark__name { color: #F5F2EC; font-size: 1rem; }
.footer__nav ul { display: flex; flex-wrap: wrap; gap: .5rem 2.2rem; }
.footer__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: .76rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #C9CFDB;
  transition: color .45s var(--ease);
}
.footer__nav a:hover { color: var(--gold-soft); }
.site-footer :focus-visible { outline-color: var(--gold-soft); }

.footer__bottom {
  margin-top: 2.2rem;
  display: grid;
  gap: .9rem;
  font-size: .82rem;
  line-height: 1.7;
}
.footer__legal { color: #99A2B4; max-width: 62ch; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 1; }

@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
    will-change: opacity, transform;
  }
  .js .reveal.is-in {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero__inner { grid-template-columns: 1fr; gap: clamp(2.5rem, 6vw, 4rem); }
  .hero__lede { max-width: 52ch; }
  .hero__figure { max-width: 34rem; }
  .hero__figure img { aspect-ratio: 5 / 4; }

  .practice { grid-template-columns: repeat(2, 1fr); }
  .firm { grid-template-columns: 1fr; }
  .firm__figure { max-width: 26rem; }
  .contact { grid-template-columns: 1fr; }
  .creds { grid-template-columns: repeat(2, 1fr); }
  .creds__item:nth-child(2) { border-right: 0; }
  .creds__item:nth-child(3),
  .creds__item:nth-child(4) { border-top: 1px solid var(--line); }
  .creds__item:nth-child(odd) { padding-left: 0; }
}

/* -- mobile nav --------------------------------------------- */
@media (max-width: 940px) {
  .hamburger { display: inline-flex; }

  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 96;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: calc(env(safe-area-inset-top, 0px) + 5.6rem) var(--gutter) 2.6rem;
    transform: translateY(-101%);
    visibility: hidden;
    transition: transform .6s var(--ease), visibility .6s var(--ease);
    max-height: 100dvh;
    overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); visibility: visible; }

  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list li { border-top: 1px solid var(--line); }
  .nav__list a {
    min-height: 60px;
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: .02em;
    text-transform: none;
    color: var(--ink);
  }
  .nav__list a::after { display: none; }
  .nav__cta { margin-top: 2rem; justify-content: center; min-height: 52px; }
}

@media (min-width: 941px) {
  .nav { transform: none !important; visibility: visible !important; }
}

@media (max-width: 900px) {
  .people { grid-template-columns: 1fr; gap: clamp(3rem, 7vw, 4rem); }
  .person {
    display: grid;
    grid-template-columns: minmax(0, 15rem) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
  }
  .person img { margin-bottom: 0; }
  .person__body { max-width: 38rem; }
}

@media (max-width: 620px) {
  .person { grid-template-columns: 1fr; gap: 1.8rem; }
  .person img { max-width: 20rem; }
  .practice { grid-template-columns: 1fr; }
  .creds { grid-template-columns: 1fr; }
  .creds__item { border-right: 0; padding-left: 0 !important; }
  .creds__item:not(:first-child) { border-top: 1px solid var(--line); }
  .field-row { grid-template-columns: 1fr; }
  .facts__row { grid-template-columns: 1fr; gap: .35rem; }
  .facts dt { padding-top: 0; }
  .wordmark__name { font-size: .9rem; letter-spacing: .13em; }
  .hero__figure::after { inset: 12px -12px -12px 12px; }
  .hero__actions .btn--line { width: 100%; }
}

@media (max-width: 380px) {
  .wordmark__name { display: none; }
  .hamburger__text { display: none; }
}

/* -- print -------------------------------------------------- */
@media print {
  .site-header, .nav-scrim, .hero__figure::after { display: none; }
  body { background: #fff; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
