/* =========================================================
   All American Roof Pros — multi-page showcase site
   Type: Barlow Condensed (logo DNA: geometric condensed caps)
         + Source Sans 3 (clean trade UI body)
   NOT Syne/Newsreader — those fought the wordmark.
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Source+Sans+3:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --navy: #0a2a6b;
  --navy-ink: #061530;
  --red: #e10600;
  --red-deep: #b50400;
  --paper: #f4f1ea;
  --cream: #faf8f4;
  --ink: #141820;
  --mute: #5a6270;
  --line: rgba(10, 42, 107, 0.12);
  --white: #fff;
  --font-d: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-b: "Source Sans 3", system-ui, sans-serif;
  --wrap: 72rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.5rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-b);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); }
a:hover { color: var(--red); }
:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

.skip {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--red); color: #fff; padding: .5rem 1rem;
}
.skip:focus { left: 0; }
.wrap { width: min(100% - 2rem, var(--wrap)); margin-inline: auto; }

.bars { display: inline-flex; gap: 4px; }
.bars i { width: 8px; height: 16px; background: var(--red); display: block; }

/* util */
.util {
  background: var(--navy-ink);
  color: #a8b6cf;
  font-size: .84rem;
  font-weight: 600;
}
.util .wrap {
  display: flex; flex-wrap: wrap; gap: .4rem 1.2rem;
  justify-content: space-between; align-items: center;
  padding: .45rem 0;
}
.util a { color: #fff; text-decoration: none; }
.util a:hover { color: #ffc9c5; }
.util-social { display: flex; flex-wrap: wrap; gap: .65rem; }
.util-social a { color: #9eb0cc; font-size: .8rem; }

/* header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: var(--header-h); padding: .65rem 0;
}
.logo img { width: clamp(120px, 28vw, 160px); height: auto; }
.nav {
  display: none; align-items: center; gap: .15rem;
  font-family: var(--font-d); font-weight: 700;
  font-size: .95rem; letter-spacing: .04em; text-transform: uppercase;
}
.nav > a, .nav details summary {
  text-decoration: none; color: var(--ink);
  padding: .45rem .55rem; cursor: pointer; list-style: none;
}
.nav details summary::-webkit-details-marker { display: none; }
.nav > a:hover, .nav details summary:hover, .nav a.is-active { color: var(--red); }
.nav details { position: relative; }
.nav details[open] summary { color: var(--red); }
.nav-drop {
  position: absolute; top: 100%; left: 0; min-width: 14rem;
  background: #fff; border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(6,21,48,.1);
  padding: .4rem 0; z-index: 60;
}
.nav-drop a {
  display: block; padding: .5rem .9rem; text-decoration: none;
  color: var(--ink); font-size: .9rem; letter-spacing: .03em;
}
.nav-drop a:hover { background: var(--paper); color: var(--red); }
.nav .cta {
  background: var(--red); color: #fff !important;
  padding: .55rem .9rem; margin-left: .35rem;
}
.nav .cta:hover { background: var(--red-deep); }
.menu-btn {
  font-family: var(--font-d); font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; border: 1px solid var(--line);
  background: #fff; padding: .5rem .75rem; cursor: pointer;
}
.nav-mobile {
  display: none !important; flex-direction: column; gap: 0;
  padding: 0 0 .75rem; border-bottom: 1px solid var(--line);
}
.nav-mobile.is-open { display: flex !important; }
.nav-mobile a {
  font-family: var(--font-d); font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; text-decoration: none; color: var(--ink);
  padding: .75rem 0; border-bottom: 1px solid var(--line); font-size: .95rem;
}
.nav-mobile a:last-child { border-bottom: 0; }
@media (min-width: 1020px) {
  .nav { display: flex; }
  .menu-btn { display: none !important; }
  .nav-mobile, .nav-mobile.is-open { display: none !important; }
}

/* page hero */
.page-hero {
  background: var(--navy-ink); color: #e6edf8;
  padding: 2.75rem 0 2.5rem;
  border-bottom: 4px solid var(--red);
}
.page-hero h1 {
  font-family: var(--font-d); font-weight: 800; text-transform: uppercase;
  letter-spacing: .02em; font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: .98; margin: .5rem 0 .75rem;
}
.page-hero p { margin: 0; color: #aebcd4; max-width: 38rem; font-size: 1.08rem; }
.page-hero .kicker {
  font-family: var(--font-d); font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; font-size: .85rem; color: #ff9a92;
  display: flex; align-items: center; gap: .55rem;
}

/* home hero — conversion-first split (NOT bottom-aligned overlay on empty roof) */
.home-hero {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--navy-ink);
  color: #fff;
  /* Mobile: content first in document order = above the fold */
}
@media (min-width: 900px) {
  .home-hero {
    grid-template-columns: minmax(20rem, 0.95fr) minmax(0, 1.15fr);
    min-height: min(72vh, 620px);
    align-items: stretch;
  }
}
.home-hero__content {
  position: relative; z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.75rem 0 1.85rem;
  width: min(100% - 2rem, 34rem);
  margin: 0 auto;
  max-width: none;
}
@media (min-width: 900px) {
  .home-hero__content {
    width: auto;
    max-width: 32rem;
    margin: 0 0 0 max(1rem, calc((100vw - var(--wrap)) / 2));
    padding: 2.5rem 2rem 2.5rem 0;
  }
}
.home-hero__media {
  position: relative;
  min-height: 240px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  /* DOM order: content first → mobile above-the-fold is headline+CTAs */
}
@media (min-width: 900px) {
  .home-hero__media {
    min-height: 100%;
    aspect-ratio: auto;
  }
}
.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  min-height: 240px;
}
@media (min-width: 900px) {
  .home-hero__media img {
    position: absolute;
    inset: 0;
    min-height: 100%;
  }
}
.home-hero__media .cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: .55rem .9rem;
  background: linear-gradient(transparent, rgba(6,21,48,.75));
  font-family: var(--font-d);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #dce5f5;
}
.home-hero .kicker {
  font-family: var(--font-d); font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; font-size: .85rem; color: #ff9a92;
  display: flex; gap: .55rem; align-items: center; margin: 0 0 .75rem;
}
.home-hero h1 {
  font-family: var(--font-d); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.15rem, 5.5vw, 3.55rem); line-height: .96;
  letter-spacing: .01em; margin: 0 0 .85rem;
}
.home-hero .lede {
  color: #c9d4e8; font-size: 1.08rem; margin: 0 0 1.15rem; max-width: 32rem;
}
.home-hero .proof-row {
  display: flex; flex-wrap: wrap; gap: .4rem;
  margin: 0 0 1.25rem;
}
.home-hero .proof-row span {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  padding: .35rem .65rem;
  color: #e8eef8;
}
.actions { display: flex; flex-wrap: wrap; gap: .65rem; align-items: center; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; text-decoration: none; border: 2px solid transparent;
  padding: .8rem 1.15rem; font-size: 1.05rem; cursor: pointer;
}
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-deep); color: #fff; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn--navy { background: var(--navy); color: #fff; }
.btn--line { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--line:hover { background: var(--navy); color: #fff; }
.quiet { color: #aebcd4; font-size: .95rem; }
.quiet:hover { color: #fff; }

.rail {
  background: var(--navy); color: #c5d0e4; border-top: 3px solid var(--red);
}
.rail__inner { display: grid; grid-template-columns: 1fr 1fr; }
@media (min-width: 800px) { .rail__inner { grid-template-columns: repeat(4, 1fr); } }
.rail article {
  padding: 1.15rem 1.1rem;
  border-right: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 800px) {
  .rail article { border-bottom: 0; }
  .rail article:last-child { border-right: 0; }
}
.rail strong {
  display: block; font-family: var(--font-d); font-weight: 800;
  font-size: 1.7rem; color: #fff; line-height: 1; margin-bottom: .25rem;
}
.rail span { font-size: .9rem; color: #8fa0bb; }

section.block { padding: 3.25rem 0; }
.sec-h {
  display: flex; flex-wrap: wrap; gap: .75rem 1.5rem;
  justify-content: space-between; align-items: end; margin-bottom: 1.5rem;
}
.sec-h h2 {
  font-family: var(--font-d); font-weight: 800; text-transform: uppercase;
  letter-spacing: .02em; font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--navy); margin: 0; line-height: 1;
}
.sec-h p { margin: 0; color: var(--mute); max-width: 26rem; }

/* team grid */
.team-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}
@media (min-width: 700px) {
  .team-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
}
.person {
  background: #fff; border: 1px solid var(--line); overflow: hidden;
  text-decoration: none; color: inherit; display: block;
  transition: transform .2s var(--ease), box-shadow .2s;
}
.person:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(6,21,48,.1); color: inherit; }
.person img {
  width: 100%; aspect-ratio: 1; object-fit: cover; object-position: 50% 20%;
  background: #dde3ee;
}
.person__body { padding: .75rem .8rem 1rem; }
.person h3 {
  font-family: var(--font-d); font-weight: 800; text-transform: uppercase;
  letter-spacing: .03em; font-size: 1.15rem; margin: 0 0 .2rem; color: var(--navy);
}
.person p { margin: 0; color: var(--mute); font-size: .9rem; }
.team-band { margin-bottom: 2.25rem; }
.team-band h2 {
  font-family: var(--font-d); font-weight: 800; text-transform: uppercase;
  color: var(--navy); font-size: 1.35rem; letter-spacing: .04em; margin: 0 0 1rem;
  display: flex; align-items: center; gap: .55rem;
}

/* video grid */
.video-grid {
  display: grid; gap: 1.25rem;
}
@media (min-width: 800px) { .video-grid { grid-template-columns: 1fr 1fr; } }
.video-card {
  background: #fff; border: 1px solid var(--line); overflow: hidden;
}
.video-card iframe, .video-card .ratio {
  width: 100%; aspect-ratio: 16/9; border: 0; display: block; background: #111;
}
.video-card h3 {
  font-family: var(--font-d); font-weight: 700; text-transform: uppercase;
  letter-spacing: .03em; font-size: 1.05rem; margin: 0; padding: .85rem 1rem 1rem;
  color: var(--navy); line-height: 1.2;
}

/* service cards */
.svc-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .svc-grid { grid-template-columns: 1fr 1fr 1fr; } }
.svc {
  background: #fff; border: 1px solid var(--line); overflow: hidden;
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
}
.svc:hover { border-color: var(--navy); color: inherit; }
.svc img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.svc__body { padding: 1rem 1.05rem 1.15rem; flex: 1; }
.svc h3 {
  font-family: var(--font-d); font-weight: 800; text-transform: uppercase;
  letter-spacing: .03em; font-size: 1.25rem; margin: 0 0 .35rem; color: var(--navy);
}
.svc p { margin: 0; color: var(--mute); font-size: .95rem; }

/* content pages */
.prose { max-width: 44rem; }
.prose h2 {
  font-family: var(--font-d); font-weight: 800; text-transform: uppercase;
  color: var(--navy); letter-spacing: .02em; font-size: 1.6rem; margin: 2rem 0 .75rem;
}
.prose p { color: var(--mute); margin: 0 0 1rem; }
.prose ul { color: var(--mute); padding-left: 1.2rem; }
.prose li { margin-bottom: .35rem; }
.split {
  display: grid; gap: 2rem;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1.1fr .9fr; align-items: start; gap: 2.5rem; }
}
.split img { width: 100%; border: 1px solid var(--line); }

/* cities */
.city-grid {
  display: flex; flex-wrap: wrap; gap: .45rem;
}
.city-grid span, .city-grid a {
  background: #fff; border: 1px solid var(--line); padding: .4rem .75rem;
  font-size: .92rem; font-weight: 600; text-decoration: none; color: var(--navy);
}

/* form */
.form-card {
  background: #fff; border: 1px solid var(--line); padding: 1.35rem 1.25rem 1.5rem;
}
.form-card h2, .form-card h3 {
  font-family: var(--font-d); font-weight: 800; text-transform: uppercase;
  color: var(--navy); margin: 0 0 .35rem; letter-spacing: .02em;
}
.form-row { display: grid; gap: .6rem; margin-bottom: .6rem; }
@media (min-width: 540px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
label {
  display: block; font-family: var(--font-d); font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; font-size: .78rem;
  color: var(--mute); margin-bottom: .25rem;
}
input, textarea, select {
  width: 100%; border: 1px solid var(--line); padding: .7rem .75rem;
  font: inherit; background: var(--paper);
}
input:focus, textarea:focus { outline: none; border-color: var(--navy); background: #fff; }
textarea { min-height: 110px; resize: vertical; }
.tcpa { font-size: .78rem; color: var(--mute); margin-top: .7rem; }
.form-success {
  display: none; margin-top: .75rem; padding: .8rem;
  background: #e8f3eb; border: 1px solid #9dcaaa; color: #14532d;
}
.form-success.is-on { display: block; }

.offices { display: grid; gap: .85rem; }
@media (min-width: 560px) { .offices { grid-template-columns: 1fr 1fr; } }
.office { background: #fff; border: 1px solid var(--line); padding: 1rem; }
.office h3 {
  font-family: var(--font-d); font-weight: 800; text-transform: uppercase;
  color: var(--navy); margin: 0 0 .3rem; font-size: 1.1rem;
}
.office p { margin: 0; color: var(--mute); }

.quote-band {
  background: var(--navy-ink); color: #e4eaf5; padding: 2.75rem 0;
}
.quote-band blockquote {
  margin: 0; font-size: clamp(1.2rem, 2.5vw, 1.55rem); font-style: italic;
  max-width: 44rem; line-height: 1.4;
}
.quote-band footer {
  margin-top: 1rem; font-family: var(--font-d); font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; color: #9aabc6; font-size: .95rem;
}

/* footer */
.site-footer {
  background: var(--navy-ink); color: #9aabc6; padding: 2.75rem 0 1.4rem; margin-top: 2rem;
}
.foot { display: grid; gap: 1.5rem; }
@media (min-width: 800px) { .foot { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.site-footer h4 {
  font-family: var(--font-d); font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: #fff; margin: 0 0 .65rem; font-size: .9rem;
}
.site-footer a { color: #c5d0e4; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .3rem; }
.legal {
  margin-top: 1.75rem; padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem; opacity: .8;
}

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  display: flex; gap: .5rem;
  padding: .55rem .7rem calc(.55rem + env(safe-area-inset-bottom));
  background: rgba(6,21,48,.96); border-top: 3px solid var(--red);
  transform: translateY(110%); transition: transform .25s var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn { flex: 1; padding: .7rem; font-size: .95rem; }
@media (min-width: 1020px) { .sticky-cta { display: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}


/* —— service interior layout —— */
.svc-page { padding: 0 0 3rem; }
.svc-page__hero {
  position: relative;
  /* wide landscape frame — tall enough for full-house impact, not a thin sliver */
  height: clamp(320px, 46vh, 480px);
  overflow: hidden;
  background: var(--navy-ink);
}
.svc-page__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* center full house/roof, not a random peak crop */
  object-position: center center;
  display: block;
}
/* bottom-weighted scrim so title sits on photo without crushing the visual */
.svc-page__hero .scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(6, 21, 48, 0.88) 0%, rgba(6, 21, 48, 0.45) 42%, rgba(6, 21, 48, 0.15) 70%, rgba(6, 21, 48, 0.2) 100%);
  pointer-events: none;
}
.svc-page__hero .inner {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.75rem 0 1.6rem;
  color: #fff;
  z-index: 1;
}
.svc-page__hero h1 {
  font-family: var(--font-d); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2rem, 4.5vw, 3rem); margin: .35rem 0 .45rem; letter-spacing: .02em;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.svc-page__hero p {
  margin: 0; color: #e0e7f4; max-width: 38rem;
  text-shadow: 0 1px 10px rgba(0,0,0,.3);
}
.svc-gallery img {
  object-position: center center;
}
/* optional per-page tuning */
.svc-page__hero img.pos-roof { object-position: 50% 42%; }
.svc-page__hero img.pos-house { object-position: 50% 55%; }
.svc-page__hero img.pos-high { object-position: 50% 28%; }
.svc-body {
  display: grid; gap: 2rem;
  padding: 2.5rem 0 1rem;
}
@media (min-width: 900px) {
  .svc-body { grid-template-columns: 1.2fr .8fr; align-items: start; }
}
.svc-body .prose { max-width: none; }
.svc-side {
  background: #fff; border: 1px solid var(--line); padding: 1.35rem 1.25rem;
  position: sticky; top: 5.5rem;
}
.svc-side h3 {
  font-family: var(--font-d); font-weight: 800; text-transform: uppercase;
  color: var(--navy); margin: 0 0 .75rem; font-size: 1.2rem;
}
.svc-side ul { margin: 0 0 1.25rem; padding-left: 1.1rem; color: var(--mute); }
.svc-side li { margin-bottom: .35rem; }
.svc-gallery {
  display: grid; gap: .65rem; margin-top: 1.5rem;
  grid-template-columns: 1fr 1fr;
}
.svc-gallery img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 1px solid var(--line);
}

/* contact wide layout + map */
.contact-layout {
  display: grid; gap: 1.75rem;
  padding: 2.5rem 0 3rem;
}
@media (min-width: 960px) {
  .contact-layout {
    grid-template-columns: 1fr 1.15fr;
    align-items: start;
  }
}
.contact-aside .phone-block {
  margin-bottom: 1.25rem;
}
.contact-aside .phone-block a.phone-big {
  font-family: var(--font-d); font-weight: 800; font-size: 2rem;
  color: var(--red); text-decoration: none; letter-spacing: .02em;
}
.map-wrap {
  margin-top: 1.25rem;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #e8e4dc;
  min-height: 280px;
}
.map-wrap iframe {
  width: 100%; height: 300px; border: 0; display: block;
}
.form-card.form-card--wide {
  width: 100%;
  max-width: none;
  padding: 1.75rem 1.6rem 1.85rem;
  box-shadow: 0 16px 40px rgba(6,21,48,.07);
}
.form-card--wide .form-row.two { grid-template-columns: 1fr 1fr; }
.form-card--wide textarea { min-height: 140px; }
.form-card--wide .btn { width: 100%; max-width: 16rem; }

/* areas page */
.areas-hero-img {
  width: 100%; max-height: 360px; object-fit: cover; object-position: center;
  border-bottom: 4px solid var(--red);
}
.areas-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
  padding: 2.25rem 0;
}
@media (min-width: 700px) {
  .areas-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .areas-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.area-card {
  background: #fff; border: 1px solid var(--line); padding: 1.15rem 1.2rem;
  display: flex; flex-direction: column; gap: .35rem;
  min-height: 7.5rem;
}
.area-card h3 {
  font-family: var(--font-d); font-weight: 800; text-transform: uppercase;
  letter-spacing: .04em; color: var(--navy); margin: 0; font-size: 1.25rem;
}
.area-card p { margin: 0; color: var(--mute); font-size: .95rem; flex: 1; }
.area-card a {
  font-family: var(--font-d); font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; font-size: .85rem; text-decoration: none; color: var(--red);
}

/* reviews punchy */
.reviews-score {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem;
  align-items: center;
  background: var(--navy-ink); color: #fff;
  padding: 2rem 0;
  border-bottom: 4px solid var(--red);
}
.reviews-score .big {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(3.5rem, 8vw, 5.5rem); line-height: 1; letter-spacing: -.02em;
}
.reviews-score .stars {
  color: #ffc107; font-size: 1.6rem; letter-spacing: .12em; line-height: 1;
}
.reviews-score .meta { color: #aebcd4; font-size: 1.05rem; }
.reviews-score .meta strong { color: #fff; display: block; font-family: var(--font-d); font-size: 1.3rem; text-transform: uppercase; letter-spacing: .04em; }
.review-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
  padding: 2.5rem 0 1rem;
}
@media (min-width: 700px) { .review-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .review-grid { grid-template-columns: 1fr 1fr 1fr; } }
.review-card {
  background: #fff; border: 1px solid var(--line);
  padding: 1.25rem 1.2rem 1.35rem;
  display: flex; flex-direction: column; gap: .65rem;
  min-height: 14rem;
}
.review-card .stars { color: #e6a800; letter-spacing: .1em; font-size: 1.05rem; }
.review-card blockquote {
  margin: 0; flex: 1; color: var(--ink); font-size: 1.02rem; line-height: 1.45;
}
.review-card footer {
  display: flex; align-items: center; gap: .75rem;
  font-family: var(--font-d); font-weight: 800; text-transform: uppercase;
  letter-spacing: .04em; color: var(--navy); font-size: 1rem;
}
.review-card .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; flex-shrink: 0;
}
.review-card footer span {
  display: block; font-family: var(--font-b); font-weight: 400;
  text-transform: none; letter-spacing: 0; color: var(--mute); font-size: .88rem;
}

/* home what-we-do cleanup */
.sec-h p { max-width: 28rem; }
