/* ==========================================================================
   AAA Law Offices — BOUTIQUE EDITION
   Loads AFTER ../public/css/main.css. Inherits every token & component.
   Compact components + breathing room + the Moní in-house-venture card.
   ========================================================================== */

/* A calmer vertical rhythm — more air, less length. */
:root {
  --section-pad: clamp(3.5rem, 6vw, 6rem);
  --section-pad-lg: clamp(4.5rem, 8vw, 7.5rem);
}

/* Hero: tighten to a single confident statement. */
.hero--lite { min-height: 78vh; }
.hero__note {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero__note strong { color: var(--brand); font-weight: 600; }

/* ==========================================================================
   FIRM STATEMENT — one bold sentence + short lede.
   ========================================================================== */
.statement { background: var(--paper); }
.statement__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.statement__big {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.statement__big em { font-style: italic; color: var(--brand); }
.statement__lede {
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink-soft);
}
.statement__lede p { margin-bottom: 1.25rem; }
.statement__lede p:last-child { margin-bottom: 0; }
.statement__lede strong { color: var(--ink); font-weight: 500; }

/* Desktop: the eyebrow label sits only in the left column, so drop the lede to
   align its first line with the big sentence rather than floating above it. */
@media (min-width: 901px) {
  .statement__lede { margin-top: 3rem; }
}
@media (max-width: 900px) {
  .statement__grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* Three principles — compact row. Spacing trimmed so the top-border block no
   longer over-detaches from the section. */
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(2.5rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}
.principle__num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--mustard-deep);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.principle__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.principle__text {
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-soft);
}
@media (max-width: 768px) {
  .principles { grid-template-columns: 1fr; gap: 2rem; }
}

/* ==========================================================================
   PRACTICE ROWS — names + one line, no sub-pages.
   ========================================================================== */
.practice-rows {
  margin-top: 0;                 /* section padding already supplies the gap */
  border-top: 1px solid var(--line);
}
.practice-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1rem 3rem;
  padding: 1.9rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;            /* top-align so the two columns share a cap-line */
  transition: padding-left 0.3s var(--ease-out);
}
.practice-row:hover { padding-left: 1rem; }
.practice-row__name {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.015em;
  transition: color 0.25s;
}
.practice-row:hover .practice-row__name { color: var(--brand); }
.practice-row__desc {
  font-size: clamp(1.1rem, 1.35vw, 1.25rem);   /* was 1.02rem — too small/faint in serif */
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-soft);
  padding-top: 0.4rem;           /* drop the body cap-line to meet the big name */
}
@media (max-width: 768px) {
  .practice-row { grid-template-columns: 1fr; gap: 0.4rem; padding: 1.5rem 0; }
  .practice-row:hover { padding-left: 0.5rem; }
  .practice-row__desc { padding-top: 0; }
}

/* ==========================================================================
   MATTERS — "Significant matters" / track record as a scannable list.
   ========================================================================== */
.matters {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--line);
}
.matter {
  display: grid;
  grid-template-columns: minmax(150px, 0.22fr) 1fr;
  gap: 1rem 3rem;
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: padding-left 0.3s var(--ease-out);
}
.matter:hover { padding-left: 0.75rem; }
.matter:last-child { border-bottom: none; }     /* avoid double hairline before roster */
.matter__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  color: var(--brand);
  line-height: 1.1;
  letter-spacing: -0.025em;
  white-space: nowrap;
}
.matter__body { padding-top: 0.1rem; }
.matter__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  color: var(--ink);
  line-height: 1.18;
  margin-bottom: 0.6rem;
  letter-spacing: -0.012em;
}
.matter__text {
  font-size: clamp(1.05rem, 1.2vw, 1.18rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 64ch;
}
@media (max-width: 768px) {
  .matter { grid-template-columns: 1fr; gap: 0.5rem; }
  .matter__body { padding-top: 0; }
}

/* Client roster — quiet wordmark block. */
.roster {
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  padding-top: clamp(2rem, 3vw, 2.5rem);
  border-top: 1px solid var(--line);
}
.roster__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1.75rem;
}
.roster__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  color: var(--ink-mute);
  line-height: 1.5;
}
.roster__list .dot {
  width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; display: inline-block; align-self: center;
}

/* ==========================================================================
   PARTNERS — two full bios stacked on People page.
   ========================================================================== */
.partner { padding: 0; }
.partner:first-child { padding-top: 0.5rem; }
.partner + .partner {
  margin-top: clamp(4rem, 8vw, 7rem);
  padding-top: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--line);
}
.partner .person__photo-wrap { top: 8.5rem; }   /* clear the unscrolled header */
/* Two bios share the page, so the names step down from hero scale. */
.partner .person__name {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}
/* Lead paragraph should breathe more than the small list sections below it. */
.partner .person__intro { margin-bottom: 3.5rem; padding-bottom: 3rem; }
@media (max-width: 768px) {
  .partner .person__name { font-size: clamp(2rem, 7vw, 3rem); }
  .partner .person__intro { margin-bottom: 2.5rem; padding-bottom: 2rem; }
}

/* ==========================================================================
   PAGE INTRO — compact page hero used on inner pages.
   ========================================================================== */
.page-intro {
  padding: 10rem 0 clamp(1rem, 2vw, 2rem);
  background: var(--paper);
}
.page-intro .section__label { margin-bottom: 1.25rem; }
.page-intro__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.026em;
  color: var(--ink);
  max-width: 18ch;
  padding-bottom: 0.08em;
}
.page-intro__title em { font-style: italic; color: var(--brand); }
.page-intro__lede {
  margin-top: 1.75rem;
  font-size: clamp(1.1rem, 1.55vw, 1.4rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
}
@media (max-width: 768px) {
  .page-intro { padding: 7rem 0 1rem; }
}

/* ==========================================================================
   INSIGHTS list — tidy rhythm + aligned card dividers.
   ========================================================================== */
@media (min-width: 769px) {
  .insights-hub__filters { margin-top: 0; }    /* section padding controls the top gap; keep main.css 2.5rem on mobile */
}
.insights__grid { margin-top: 0; grid-auto-rows: 1fr; }  /* count's 3rem bottom is the gap */
.insight-card { height: 100%; }                /* equal rows → dividers line up */
.insight-card__link { margin-top: auto; }      /* pin "Read More" to the bottom so equal cards read as intentional */

/* ==========================================================================
   PRACTICES dark band — tighten the title→grid gap to match light sections.
   ========================================================================== */
.practices .practices__grid { margin-top: 2rem; }

/* ==========================================================================
   CONTACT — balance the plain info column against the padded form card.
   ========================================================================== */
.contact-page__grid .contact-info { padding-top: 2.5rem; }
.map-wrap { margin-top: clamp(2.5rem, 4vw, 3.5rem); }
@media (max-width: 1024px) {
  .contact-page__grid .contact-info { padding-top: 0; }
}

/* ==========================================================================
   MONÍ — AAA's in-house AI venture. One quiet, bordered card on cream.
   Pattern: "from us", housed separately by a hairline frame + mustard tick.
   ========================================================================== */
.moni { background: var(--paper); }
.moni__card {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem);
  background: var(--paper-pure);
  border: 1px solid var(--line);
  text-align: center;
}
.moni__card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 56px;
  height: 2px;
  background: var(--mustard);
}
.moni__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 2rem;
}
.moni__brand { margin-bottom: 1.5rem; }
.moni-logo {
  height: 42px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}
/* Graceful fallback when the logo asset is missing — serif wordmark. */
.moni-logo--text {
  height: auto;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--brand);
}
.moni__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.1rem;
}
.moni__title em { font-style: italic; color: var(--brand); }
.moni__text {
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto 2rem;
}
.moni__text strong { color: var(--ink); font-weight: 500; }
.moni__cta {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}
.moni__url {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
@media (max-width: 600px) {
  .moni__cta { flex-direction: column; gap: 0.9rem; }
  .moni__cta .btn { width: 100%; justify-content: center; }
}

/* Discreet site-wide footer colophon credit. */
.footer__moni {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  text-align: center;
}
.footer__moni a {
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-gold);
  padding-bottom: 1px;
  transition: color 0.25s, border-color 0.25s;
}
.footer__moni a:hover { color: var(--brand); border-color: var(--brand); }
/* Three-item footer row: give the credit its own centered line below ~tablet. */
@media (max-width: 1024px) {
  .footer__moni { flex-basis: 100%; text-align: center; }
}

/* ==========================================================================
   Phone numbers rendered as images (anti-scrape). See js/contact-protect.js —
   the tel: href is built in JS so no readable digits sit in the HTML source.
   ========================================================================== */
.tel-link { display: inline-flex; align-items: center; text-decoration: none; }
.tel-img {
  height: 1.15em;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  transition: opacity 0.2s;
}
.tel-link:hover .tel-img { opacity: 0.6; }
.btn.tel-link .tel-img { height: 1rem; }
.footer__contact-line .tel-img,
.person__contact-row .tel-img { height: 1.25em; }

/* ==========================================================================
   RECOGNITION — Chambers Band 1 band (brand-red, big gold Chambers wordmark).
   ========================================================================== */
.chambers {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
  color: var(--on-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.chambers::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(200, 147, 47, 0.2), transparent 62%);
  pointer-events: none;
}
.chambers__inner { position: relative; z-index: 1; max-width: 760px; }
.chambers__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--mustard-bright);
  margin-bottom: 2.25rem;
}
/* The Chambers svg has a 1:1 viewBox with the wordmark vertically centred and
   lots of empty top/bottom. Crop it to a clean horizontal lockup. */
.chambers__logo-box {
  width: clamp(260px, 42vw, 470px);
  height: clamp(82px, 13vw, 145px);
  margin: 0 auto 2rem;
  overflow: hidden;
  position: relative;
}
.chambers__logo {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
}
.chambers__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.9rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 1.25rem;
}
.chambers__text {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--on-dark-mute);
  max-width: 620px;
  margin: 0 auto 2.25rem;
}
.chambers__text strong { color: var(--mustard-bright); font-weight: 600; }
.chambers__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mustard-bright);
  border-bottom: 1.5px solid var(--mustard-bright);
  padding-bottom: 4px;
  transition: gap 0.3s, color 0.25s, border-color 0.25s;
}
.chambers__link:hover { gap: 1rem; color: var(--gold-soft); border-color: var(--gold-soft); }
.chambers__link svg { transition: transform 0.3s; }
.chambers__link:hover svg { transform: translateX(3px); }

/* ==========================================================================
   MONÍ — a project AAA SUPPORTS (external). Small nav button right of Contact
   + an entry in the mobile menu. (Replaces the earlier in-house framing.)
   ========================================================================== */
/* Moní — a project AAA supports. A deliberately prominent, LABELLED chip to the
   right of Contact: logo + what it is. No hover animation. flex-shrink:0 + nowrap
   so the busy nav can never squeeze it (that caused the earlier "clipped" look). */
.header__nav { flex-wrap: nowrap; align-items: center; }
/* The mobile menu is a full-screen overlay (hidden via visibility/opacity, opened by
   the burger). The burger is hidden >1024, so the menu can't be opened on desktop —
   but force it gone there too, belt-and-suspenders against any cached/odd state that
   could flash the menu (and its duplicate Moní button) into the desktop page. */
@media (min-width: 1025px) { .mobile-menu { display: none !important; } }
/* Moní — a BOLD SOLID-RED CTA BUTTON, TEXT-ONLY (logo removed by request), as
   bright/noticeable as the AAA brand block. A cream "↗" arrow chip on the right is
   the explicit click affordance (reads as "opens the site"), so it's obviously a
   clickable button — and it balances the spot the old logo plate held. Gold eyebrow
   (now carries the Moní name as TEXT) + cream label on the red gradient. Everything
   align-items:center so internals stay even. flex-shrink:0 so the nav can't squeeze
   it; only a subtle brightness lift on hover (no moving/bouncing animation). */
/* NOTE: must out-specify `.header__nav a` (main.css) which sets `padding:0.25rem 0`
   — that 0 horizontal padding was overriding ours, so the text sat FLUSH against the
   button edges on desktop. `.header__nav a.header__moni` (0,2,1) beats it. */
.header__nav a.header__moni {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  flex-shrink: 0;
  margin-left: 1.5rem;
  padding: 0.5rem 0.7rem 0.5rem 0.95rem;   /* real breathing room so text never touches the edges */
  background: linear-gradient(157deg, var(--brand-bright) 0%, var(--brand) 52%, var(--brand-dark) 100%);
  border-radius: 13px;
  box-shadow: 0 3px 12px rgba(150, 15, 0, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.13);
  text-decoration: none;
  line-height: 1;
  transition: filter 0.18s ease, box-shadow 0.18s ease;
}
.header__nav a.header__moni:hover {
  filter: brightness(1.07);
  box-shadow: 0 5px 18px rgba(150, 15, 0, 0.40), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
/* kill the nav-link underline pseudo (main.css `.header__nav a::after`) on this button */
.header__nav a.header__moni::after { content: none; }
.header__moni-text {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  text-align: left;
}
.header__moni-eyebrow {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);        /* warm gold on red, like the AAA gold lettering */
}
.header__moni-desc {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  text-transform: none;
  color: var(--paper);            /* cream on red */
  white-space: nowrap;
}
.header__moni-go {                 /* the "click me" affordance: cream chip + red ↗ */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: var(--paper-pure);
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.20);
}
.header__moni-go svg {
  width: 16px;
  height: 16px;
  display: block;
  stroke: var(--brand);
}

/* Burger-menu Moní — the same bold red button, a touch larger, centred. */
.mobile-menu__moni {
  display: inline-flex !important;
  align-items: center;
  gap: 0.95rem;
  margin-top: 1.75rem;
  padding: 0.6rem 0.7rem 0.6rem 1.25rem;
  background: linear-gradient(157deg, var(--brand-bright) 0%, var(--brand) 52%, var(--brand-dark) 100%);
  border-radius: 13px;
  box-shadow: 0 4px 16px rgba(150, 15, 0, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.13);
  text-decoration: none;
  line-height: 1;
}
.mobile-menu__moni-text {
  display: inline-flex; flex-direction: column; gap: 0.2rem;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  text-align: left;
}
.mobile-menu__moni-eyebrow {
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-soft) !important;
}
.mobile-menu__moni-desc { font-size: 0.9rem; font-weight: 600; color: var(--paper); letter-spacing: 0.005em; }
.mobile-menu__moni-go {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--paper-pure); border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.20);
}
.mobile-menu__moni-go svg { width: 16px; height: 16px; display: block; stroke: var(--brand); }


/* ==========================================================================
   Track-record stats: 4-up on desktop via a class (was an inline grid that beat
   the mobile media queries below).
   ========================================================================== */
.about__stats--row { grid-template-columns: repeat(4, 1fr); }

/* ==========================================================================
   MOBILE — boutique components (layers AFTER main.css MOBILE OVERHAUL).
   Targets 360-414px. The light Instrument-Serif body needs a size bump on
   phones; the vh hero, 4-col stats, touch targets and section rhythm are fixed.
   ========================================================================== */
@media (max-width: 768px) {
  /* Hero: drop the 78vh so the (now short) content isn't pinned to the bottom
     of an empty box, leaving a dead band above it. */
  .hero--lite { min-height: auto; align-items: flex-start; padding: 8.5rem 0 3.5rem; }

  /* Description / body type — comfortable on a phone, still clearly below the
     heading sizes. (Instrument Serif reads thin/small at ~1rem.) */
  .statement__lede   { font-size: 1.18rem; line-height: 1.7; }
  .principle__text   { font-size: 1.15rem; }
  .practice-row__desc{ font-size: 1.18rem; line-height: 1.55; }
  .matter__text      { font-size: 1.15rem; line-height: 1.6; }
  .page-intro__lede  { font-size: 1.2rem;  line-height: 1.6; }
  .chambers__text    { font-size: 1.12rem; line-height: 1.65; }
  .person__intro     { font-size: 1.25rem; }
  .person__section li{ font-size: 1.18rem; }

  /* Track-record stats: 4 cramped serif numbers -> clean 2x2 */
  .about__stats--row { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* page-intro -> first section: collapse the doubled gap into one step */
  .page-intro { padding: 7.5rem 0 0.5rem; }
  .page-intro + .section { padding-top: 2.5rem; }

  /* Chambers band: a touch more title, viewport-scaled logo crop, balanced pad */
  .chambers { padding: 4.5rem 0; }
  .chambers__eyebrow  { letter-spacing: 0.26em; margin-bottom: 1.6rem; }
  .chambers__logo-box { width: min(78vw, 300px); height: 74px; margin-bottom: 1.6rem; }
  .chambers__title    { font-size: clamp(2rem, 6vw, 2.4rem); }

  /* Collapse doubled margin+border voids before hairline blocks */
  .principles { margin-top: 2.25rem; padding-top: 2.25rem; }
  .matters    { margin-top: 2.25rem; }

  /* Stacked rows: a little more air between name/number and description */
  .practice-row { gap: 0.55rem; padding: 1.4rem 0; }
  .matter       { gap: 0.65rem; }
  .matter__num  { margin-bottom: 0.15rem; }

  /* Touch targets >= 44px on the phone-image links + social icons */
  .tel-link { min-height: 44px; align-items: center; }
  .footer__contact-line .tel-link,
  .contact-info__value .tel-link,
  .contact-info__sub .tel-link { display: inline-flex; min-height: 44px; padding: 0.3rem 0; }
  .contact-info__sub .social-icon,
  .mobile-menu__footer .social-icon { min-height: 44px; display: inline-flex; align-items: center; }

  /* Moní in the burger — the clean button (its mobile home); give it air. */
  .mobile-menu__moni { margin-top: 1.85rem; }

  /* Contact: even rhythm, comfortable inputs, full-width submit */
  .contact-page__grid { gap: 2.5rem; margin-top: 2rem; }
  .contact-form input, .contact-form select, .contact-form textarea { font-size: 1.05rem; }
  .contact-form__submit { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  /* Let long emails/links break instead of forcing horizontal scroll at 320px */
  .contact-info__value, .contact-info__value a, .person__contact a,
  .team-card__email { overflow-wrap: anywhere; word-break: break-word; }
  .chambers__logo-box { width: min(84vw, 300px); }
}
