/* ============================================================
   Erick Lopez Home Improvement
   Palette pulled from his own materials: the navy of his
   General Contractor flyer + the red clay of the brick he
   restores. Bricolage Grotesque / Chivo.
   ============================================================ */

/* === defensive base — injected by harden_css.py; do not hand-edit === */
*, *::before, *::after { box-sizing: border-box; min-width: 0; }
html { scroll-padding-top: calc(var(--nav-h, 72px) + 1rem); }
img, svg, video, iframe, canvas, table { display: block; max-width: 100%; }
p, li, h1, h2, h3, h4, blockquote, td, dd, dt { overflow-wrap: anywhere; }
form[style*="min-height"] { align-content: center; }
/* === end defensive base === */

:root{
  --ink:      #0E1830;
  --ink-2:    #14213C;
  --ink-3:    #1C2B4A;
  --ink-line: #26375A;

  --bone:     #F3EEE4;
  --bone-2:   #CFC7B8;
  --steel:    #8C97AE;

  --clay:     #B4482A;
  --clay-2:   #D2603A;
  --clay-dim: #7E3020;
  --brass:    #C8952F;

  --nav-h: 66px;

  --font-display: "Bricolage Grotesque", "Chivo", sans-serif;
  --font-body: "Chivo", "Helvetica Neue", sans-serif;

  --wrap: 1240px;
  --r: 3px;
}

*{ box-sizing: border-box; }

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

body{
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3{
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
}

p{ margin: 0; }
ul{ margin: 0; padding: 0; list-style: none; }
img{ display: block; }

a{ color: inherit; text-decoration: none; }

.wrap{
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2.5rem);
}

.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;
}

/* film grain — atmosphere, keeps the flat navy from looking digital */
.grain{
  position: fixed; inset: 0; z-index: 100;
  pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── buttons ─────────────────────────────────────────────── */
.btn{
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .005em;
  padding: .95em 1.6em;
  border-radius: var(--r);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background-color .22s ease, border-color .22s ease, color .22s ease, transform .22s ease;
}
.btn--clay{
  background: var(--clay);
  color: #FFF6F1;
  border-color: var(--clay);
  box-shadow: 0 10px 26px -14px rgba(180,72,42,.9);
}
.btn--clay:hover{ background: var(--clay-2); border-color: var(--clay-2); transform: translateY(-2px); }
.btn--ghost{
  border-color: var(--ink-line);
  color: var(--bone);
  background: rgba(255,255,255,.015);
}
.btn--ghost:hover{ border-color: var(--bone-2); transform: translateY(-2px); }
.btn--ghost-light{
  border-color: rgba(255,255,255,.35);
  color: #FFF6F1;
}
.btn--ghost-light:hover{ border-color: #FFF6F1; transform: translateY(-2px); }
.btn--sm{ padding: .68em 1.15em; font-size: .85rem; }
.btn--lg{ padding: 1.08em 2rem; font-size: 1.02rem; }

/* ── nav ─────────────────────────────────────────────────── */
.nav{
  position: sticky; top: 0; z-index: 50;
  height: var(--nav-h);
  background: rgba(14,24,48,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ink-line);
}
.nav__inner{
  height: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2.5rem);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.brand{ display: flex; align-items: center; gap: .7rem; }
.brand__mark{
  display: grid; place-items: center;
  width: 38px; height: 38px;
  background: var(--clay);
  color: #FFF6F1;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: -.03em;
  border-radius: var(--r);
  flex: 0 0 auto;
}
.brand__text{ display: flex; flex-direction: column; line-height: 1.12; }
.brand__text strong{
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.02rem; letter-spacing: -.02em;
}
.brand__text em{
  font-style: normal;
  font-size: .655rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--steel);
}

.nav__links{ display: none; align-items: center; gap: 1.7rem; }
.nav__links a{
  font-size: .875rem;
  font-weight: 500;
  color: var(--bone-2);
  transition: color .2s ease;
}
.nav__links a:hover{ color: var(--bone); }
.nav__links .btn{ color: #FFF6F1; }

.nav__toggle{
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 38px;
  padding: 0 9px;
  background: none; border: 1px solid var(--ink-line);
  border-radius: var(--r);
  cursor: pointer;
}
.nav__toggle span{
  display: block; height: 1.5px; width: 100%;
  background: var(--bone);
  transition: transform .25s ease, opacity .25s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }

/* mobile drawer — hidden by default, class (not [hidden]) drives it */
.nav__links.open{
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: .25rem;
  position: absolute;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--ink-2);
  border-bottom: 1px solid var(--ink-line);
  padding: 1rem clamp(1.15rem, 4vw, 2.5rem) 1.4rem;
}
.nav__links.open a{ padding: .72rem 0; border-bottom: 1px solid var(--ink-line); font-size: .98rem; }
.nav__links.open .btn{ margin-top: .8rem; border-bottom: none; }

/* ── hero ────────────────────────────────────────────────── */
.hero{
  position: relative;
  container-type: inline-size;   /* children size in cqi → cannot clip on a phone */
  min-height: calc(100svh - var(--nav-h));
  display: flex; align-items: center;
  padding-block: clamp(1.5rem, 4cqi, 3.5rem);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 82% 8%, rgba(180,72,42,.16), transparent 58%),
    radial-gradient(90% 70% at 8% 100%, rgba(28,43,74,.9), transparent 62%),
    var(--ink);
}
/* faint blueprint rule grid */
.hero__grid{
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .38;
  background-image:
    linear-gradient(var(--ink-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--ink-line) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(75% 60% at 30% 40%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(75% 60% at 30% 40%, #000 0%, transparent 78%);
}
.hero__inner{
  position: relative;
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2.5rem);
  display: grid;
  gap: clamp(1.5rem, 4cqi, 3rem);
}
.hero__copy{
  display: flex; flex-direction: column;
  gap: clamp(.85rem, 2.1cqi, 1.5rem);
  min-width: 0;
}

.eyebrow{
  display: flex; align-items: center; gap: .55rem;
  font-size: clamp(.6rem, 1.15cqi, .72rem);
  letter-spacing: .17em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--steel);
}
.eyebrow__dot{
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--clay-2);
  flex: 0 0 auto;
  box-shadow: 0 0 0 4px rgba(210,96,58,.18);
}

.hero__title{
  font-size: clamp(2rem, 8.4cqi, 4.35rem);
  max-width: 15ch;
}
.hero__title-accent{
  color: var(--clay-2);
  font-style: italic;
}
.hero__sub{
  font-size: clamp(.94rem, 1.6cqi, 1.1rem);
  color: var(--bone-2);
  max-width: 52ch;
  line-height: 1.6;
}
.hero__cta{ display: flex; flex-wrap: wrap; gap: .7rem; }

.proof{
  display: flex; flex-wrap: wrap;
  gap: .45rem 1.35rem;
  font-size: clamp(.74rem, 1.25cqi, .84rem);
  color: var(--steel);
  font-weight: 500;
  padding-top: .35rem;
  border-top: 1px solid var(--ink-line);
}
.proof li{ display: flex; align-items: center; gap: .4rem; }
.proof li:first-child{ color: var(--bone); }
.proof__seal{
  display: grid; place-items: center;
  width: 17px; height: 17px; border-radius: 50%;
  background: rgba(200,149,47,.16);
  color: var(--brass);
  font-size: .62rem;
  flex: 0 0 auto;
}

.hero__media{ display: none; margin: 0; min-width: 0; }
.hero__media img{
  width: 100%; height: auto;
  border-radius: var(--r);
  border: 1px solid var(--ink-line);
  box-shadow: 0 34px 70px -30px rgba(0,0,0,.85);
}
.hero__media figcaption{
  margin-top: .7rem;
  font-size: .74rem;
  letter-spacing: .04em;
  color: var(--steel);
}
.hero__media figcaption span{ color: var(--bone-2); font-weight: 600; }

/* phone: photo becomes the hero backdrop — costs zero vertical space */
@media (max-width: 899px){
  .hero{
    background:
      linear-gradient(178deg, rgba(14,24,48,.93) 8%, rgba(14,24,48,.82) 46%, rgba(14,24,48,.97) 92%),
      radial-gradient(110% 70% at 80% 4%, rgba(180,72,42,.2), transparent 60%),
      url("assets/gallery/photo-01-sm.webp") center/cover no-repeat,
      var(--ink);
  }
  .hero__grid{ opacity: .18; }
}

@media (min-width: 900px){
  .nav__links{ display: flex; }
  .nav__toggle{ display: none; }
  .hero__inner{
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    align-items: center;
  }
  .hero__media{ display: block; }
}

/* ── trust strip ─────────────────────────────────────────── */
.strip{
  background: var(--ink-2);
  border-block: 1px solid var(--ink-line);
}
/* 4 items: 2x2 on tablet, one row on desktop — auto-fit strands the 4th at 768 */
.strip__inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem 2rem;
  padding-block: 2.3rem;
}
@media (min-width: 560px){ .strip__inner{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px){ .strip__inner{ grid-template-columns: repeat(4, 1fr); } }
.strip__item{ display: flex; flex-direction: column; gap: .18rem; min-width: 0; }
.strip__item strong{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: -.01em;
}
.strip__item span{ font-size: .82rem; color: var(--steel); line-height: 1.5; }

/* ── section shell ───────────────────────────────────────── */
.section{ padding-block: clamp(4rem, 9vw, 7.5rem); }
.section--alt{ background: var(--ink-2); border-block: 1px solid var(--ink-line); }

.sect-head{ max-width: 720px; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.kicker{
  font-size: .705rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--clay-2);
  margin-bottom: .95rem;
}
.kicker--light{ color: #F0A78C; }
.sect-title{ font-size: clamp(1.75rem, 4.4vw, 2.95rem); }
.sect-lede{
  margin-top: 1.05rem;
  color: var(--bone-2);
  font-size: 1.02rem;
  max-width: 56ch;
}

/* ── service cards ───────────────────────────────────────── */
/* explicit counts, never auto-fit: 6 cards must divide evenly or the container
   background shows through as a big empty cell */
.cards{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--ink-line);
  border: 1px solid var(--ink-line);
  border-radius: var(--r);
  overflow: hidden;
}
.card{
  background: var(--ink);
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  min-width: 0;
  transition: background-color .3s ease;
}
.section--alt .card{ background: var(--ink-2); }
.card:hover{ background: var(--ink-3); }
.card__n{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .74rem;
  letter-spacing: .12em;
  color: var(--clay);
  margin-bottom: 1.15rem;
}
.card h3{ font-size: 1.32rem; margin-bottom: .6rem; }
.card__d{
  font-size: .9rem;
  color: var(--steel);
  line-height: 1.6;
  margin-bottom: 1.15rem;
}
.card__list{
  display: flex; flex-direction: column; gap: .42rem;
  padding-top: 1.05rem;
  border-top: 1px solid var(--ink-line);
}
.card__list li{
  font-size: .875rem;
  color: var(--bone-2);
  display: flex; align-items: baseline; gap: .55rem;
}
.card__list li::before{
  content: "";
  width: 5px; height: 5px;
  background: var(--clay);
  flex: 0 0 auto;
  transform: translateY(-2px);
}

@media (min-width: 620px){ .cards{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px){ .cards{ grid-template-columns: repeat(3, 1fr); } }

.quote-note{
  margin-top: clamp(1.8rem, 3.5vw, 2.6rem);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  border: 1px solid var(--ink-line);
  border-left: 3px solid var(--clay);
  border-radius: var(--r);
  background: linear-gradient(100deg, rgba(180,72,42,.09), transparent 58%);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.4rem;
}
.quote-note p{ font-size: 1rem; color: var(--bone-2); max-width: 62ch; min-width: 0; }
.quote-note strong{ color: var(--bone); font-weight: 600; }

/* ── gallery ─────────────────────────────────────────────── */
.gal{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.1rem, 2.4vw, 1.8rem);
  align-items: start;          /* never stretch a row → no letterboxed images */
}
.gal__item{
  margin: 0;
  min-width: 0;
  border: 1px solid var(--ink-line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--ink);
}
.gal__item picture{ display: block; }
.gal__item img{
  width: 100%;
  height: auto;
  transition: transform .7s cubic-bezier(.2,.7,.3,1);
}
.gal__item:hover img{ transform: scale(1.028); }
.gal__item figcaption{
  padding: .95rem 1.15rem 1.05rem;
  font-size: .85rem;
  color: var(--bone-2);
  display: flex; flex-wrap: wrap; align-items: center; gap: .6rem;
  border-top: 1px solid var(--ink-line);
}
.tag{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .655rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--clay-2);
  border: 1px solid rgba(210,96,58,.42);
  background: rgba(180,72,42,.12);
  padding: .28em .6em;
  border-radius: 2px;
  flex: 0 0 auto;
}

/* masonry: portrait and landscape shots differ ~300px in height, so equal grid
   rows leave holes. Columns pack them tight and self-balance. */
@media (min-width: 860px){
  .gal{
    display: block;
    columns: 2;
    column-gap: clamp(1.1rem, 2.4vw, 1.8rem);
  }
  .gal__item{
    break-inside: avoid;
    margin-bottom: clamp(1.1rem, 2.4vw, 1.8rem);
  }
}

/* ── junk removal ────────────────────────────────────────── */
.junk{
  background:
    radial-gradient(95% 120% at 88% 8%, rgba(180,72,42,.36), transparent 62%),
    linear-gradient(168deg, #2A1410 0%, #1A0F14 52%, #14213C 100%);
  border-block: 1px solid var(--ink-line);
}
.junk__inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.2rem, 5vw, 4rem);
  align-items: start;
}
.junk__copy{ min-width: 0; }
.junk .sect-lede{ color: #E4D6CE; }
.junk__cta{ display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.8rem; }

.junk__list{
  display: grid;
  grid-template-columns: 1fr;
  gap: .1rem 1.5rem;
  min-width: 0;
}
/* 2 columns max — a 3rd column wraps the longer labels and ragged-edges the rules */
@media (min-width: 560px){ .junk__list{ grid-template-columns: repeat(2, 1fr); } }
.junk__list li{
  padding: .72rem 0;
  border-bottom: 1px solid rgba(243,238,228,.13);
  font-size: .9rem;
  color: #EFE3DC;
  display: flex; align-items: baseline; gap: .6rem;
}
.junk__list li::before{
  content: "";
  width: 6px; height: 1.5px;
  background: var(--clay-2);
  flex: 0 0 auto;
  transform: translateY(-3px);
}

@media (min-width: 900px){
  .junk__inner{ grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; }
}

/* ── closer ──────────────────────────────────────────────── */
.closer{
  background:
    radial-gradient(80% 130% at 50% 0%, rgba(180,72,42,.15), transparent 60%),
    var(--ink);
}
.closer__inner{ text-align: center; display: flex; flex-direction: column; align-items: center; }
.closer .kicker{ margin-bottom: 1rem; }
.closer__title{
  font-size: clamp(2rem, 6vw, 3.9rem);
  max-width: 16ch;
}
.closer__sub{
  margin-top: 1.15rem;
  color: var(--bone-2);
  font-size: 1.05rem;
  max-width: 46ch;
}
.closer__cta{
  display: flex; flex-wrap: wrap; gap: .8rem;
  justify-content: center;
  margin-top: 2.1rem;
}
.closer__fine{
  margin-top: 1.8rem;
  font-size: .78rem;
  letter-spacing: .05em;
  color: var(--steel);
}

/* ── footer ──────────────────────────────────────────────── */
.foot{
  background: var(--ink-2);
  border-top: 1px solid var(--ink-line);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}
.foot__inner{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 215px), 1fr));
  gap: 2.4rem;
  padding-bottom: 3rem;
}
.foot__brand{ display: flex; flex-direction: column; gap: .95rem; min-width: 0; }
.foot__brand p{ font-size: .87rem; color: var(--steel); line-height: 1.6; }
.foot__brand strong{
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.02rem; color: var(--bone);
  letter-spacing: -.01em;
}
.foot__col{ min-width: 0; }
.foot__col h3{
  font-size: .69rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clay-2);
  font-weight: 700;
  margin-bottom: 1rem;
}
.foot__col p{ font-size: .87rem; color: var(--bone-2); line-height: 1.75; }
.foot__col a{ transition: color .2s ease; }
.foot__col a:hover{ color: var(--clay-2); }
.foot__base{
  border-top: 1px solid var(--ink-line);
  padding-block: 1.5rem 1.9rem;
}
.foot__base p{ font-size: .78rem; color: var(--steel); }

/* ── contact page ────────────────────────────────────────── */
.contact-page{
  padding-block: clamp(2.6rem, 6vw, 4.75rem) clamp(4rem, 8vw, 6.5rem);
  background:
    radial-gradient(75% 55% at 88% 0%, rgba(180,72,42,.14), transparent 62%),
    var(--ink);
  min-height: calc(100svh - var(--nav-h));
}
.contact-head{ max-width: 640px; margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }
.contact-head .sect-title{ font-size: clamp(1.9rem, 5vw, 3.1rem); }

.contact-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.6rem, 3.5vw, 2.8rem);
  align-items: start;
}
@media (min-width: 940px){
  .contact-grid{ grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); }
}

.form-card{
  background: var(--ink-2);
  border: 1px solid var(--ink-line);
  border-radius: var(--r);
  padding: clamp(1.4rem, 3.2vw, 2.4rem);
  min-width: 0;
}
.form-fields{
  display: flex; flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.6rem;
}
/* a class that sets display beats the UA [hidden] rule — restate it */
.form-fields[hidden]{ display: none; }
.field{ display: flex; flex-direction: column; gap: .48rem; min-width: 0; }
.field label{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .87rem;
  letter-spacing: -.005em;
  color: var(--bone);
}
.field input,
.field textarea{
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--bone);
  background: var(--ink);
  border: 1px solid var(--ink-line);
  border-radius: var(--r);
  padding: .82rem .95rem;
  transition: border-color .2s ease, background-color .2s ease;
}
.field textarea{ resize: vertical; min-height: 118px; line-height: 1.6; }
.field input::placeholder,
.field textarea::placeholder{ color: #5E6B85; }
.field input:hover,
.field textarea:hover{ border-color: #33456B; }
.field input:focus,
.field textarea:focus{
  outline: none;
  border-color: var(--clay-2);
  background: #0B1428;
}
.field__hint{ font-size: .78rem; color: var(--steel); line-height: 1.5; }

.form-submit{ width: 100%; }
.form-submit:disabled{ cursor: default; transform: none; }
.form-submit.is-sent{
  background: transparent;
  border-color: var(--brass);
  color: var(--brass);
  box-shadow: none;
}

.form-status{
  margin-top: 1.1rem;
  font-size: .92rem;
  line-height: 1.6;
  padding: .9rem 1.05rem;
  border-radius: var(--r);
  border: 1px solid var(--ink-line);
}
.form-status.is-ok{
  color: #F0E4C9;
  border-color: rgba(200,149,47,.5);
  background: rgba(200,149,47,.12);
}
.form-status.is-err{
  color: #F6D8CE;
  border-color: rgba(210,96,58,.55);
  background: rgba(180,72,42,.15);
}

.turnstile-box{ margin-bottom: 1.15rem; }

.contact-side{ display: flex; flex-direction: column; gap: 1.25rem; min-width: 0; }
.contact-block{
  border: 1px solid var(--ink-line);
  border-radius: var(--r);
  padding: 1.4rem 1.5rem;
  background: var(--ink-2);
  min-width: 0;
}
.contact-block h2{
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clay-2);
  font-weight: 700;
  margin-bottom: 1.05rem;
}
.contact-line{
  display: flex; flex-direction: column; gap: .1rem;
  padding: .72rem 0;
  border-top: 1px solid var(--ink-line);
  transition: color .2s ease;
}
.contact-line:first-of-type{ border-top: none; padding-top: 0; }
.contact-line__label{
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--steel);
}
.contact-line__val{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -.015em;
}
.contact-line:hover .contact-line__val{ color: var(--clay-2); }

.contact-facts{ display: flex; flex-direction: column; gap: .95rem; }
.contact-facts li{ display: flex; flex-direction: column; gap: .12rem; }
.contact-facts strong{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: -.01em;
}
.contact-facts span{ font-size: .82rem; color: var(--steel); line-height: 1.5; }

.contact-block--area p{ font-size: .87rem; color: var(--bone-2); line-height: 1.65; }

/* ── scroll reveal (below the fold only) ─────────────────── */
.reveal{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .75s cubic-bezier(.2,.7,.3,1), transform .75s cubic-bezier(.2,.7,.3,1);
}
.reveal.in{ opacity: 1; transform: none; }

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

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal{ opacity: 1; transform: none; }
}

/* === site credit (injected by credit_footer.py); do not hand-edit === */
.site-credit {
  margin: 2.25rem 0 0;
  padding-inline: 1.25rem;
  font-size: .73rem;
  line-height: 1.5;
  letter-spacing: .06em;
  text-align: center;
  opacity: .65;
}
.site-credit a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(128, 128, 128, .5);
  border-bottom: 1px solid color-mix(in srgb, currentColor 45%, transparent);
  transition: border-bottom-color .25s ease;
}
.site-credit a:hover,
.site-credit a:focus-visible { border-bottom-color: currentColor; }
@media (prefers-reduced-motion: reduce) {
  .site-credit a { transition: none; }
}
/* === end site credit === */
