/* ==========================================================================
   Narrowsburg Electric — static rebuild of narrowsburg-electric.com

   This is a like-for-like reconstruction, not a redesign. Every colour, type
   size and measure below was read off the live Elementor site at 1440px and is
   reproduced as plain HTML/CSS. Values are annotated with what they replace.

     moss    #699465  body + hero bands
     white   #ffffff  content bands and cards
     grey    #e9e9e9  team band
     yellow  #ffde59  CTA bands
     black   #000000  type, buttons, footer
     dim     #7a7a7a  footer labels, copyright

   Type: Poppins 600/700 for headings and nav, Inter 400/500/700 for body.
   ========================================================================== */

/* Fonts are loaded by a <link> in the document head rather than @import here,
   so the browser does not have to fetch kit.css before it discovers them. */

:root {
  --moss:   #699465;
  --white:  #ffffff;
  --grey:   #e9e9e9;
  --yellow: #ffde59;
  --black:  #000000;
  --dim:    #7a7a7a;

  --ff-head: 'Poppins', ui-sans-serif, system-ui, sans-serif;
  --ff-body: 'Inter', ui-sans-serif, system-ui, sans-serif;

  /* the live site centres a 1200px column inside a 72px-padded band */
  --col: 1200px;
  --col-wide: 1152px;
  --pad: clamp(1.25rem, 5vw, 4.5rem);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--moss);
  color: var(--black);
  font: 400 20px/30px var(--ff-body);   /* live body: Inter 400 20/30 */
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; }
::selection { background: var(--yellow); color: var(--black); }

:where(a, button):focus-visible {
  outline: 3px solid var(--black);
  outline-offset: 3px;
}
.band--dark :where(a, button):focus-visible,
.footer :where(a, button):focus-visible { outline-color: var(--yellow); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--black); color: var(--white);
  padding: 14px 22px; font: 500 16px var(--ff-body);
}
.skip:focus { left: 0; }

/* ---------- shell ---------- */
.wrap { width: 100%; max-width: var(--col); margin-inline: auto; padding-inline: var(--pad); }
.wrap--wide { max-width: var(--col-wide); }

.band { padding-block: clamp(3.5rem, 7vw, 7rem); }
.band--white  { background: var(--white); }
.band--grey   { background: var(--grey); }
.band--yellow { background: var(--yellow); }
.band--dark   { background: var(--black); color: var(--white); }

/* ---------- type ---------- */
h1, h2, h3, h4 { font-family: var(--ff-head); font-weight: 700; margin: 0; }

/* home hero: Poppins 700 111/111 */
.h-hero { font-size: clamp(3.25rem, 7.7vw, 6.9375rem); line-height: 1; }
/* interior hero: Poppins 700 70/70 */
.h-page { font-size: clamp(2.5rem, 4.9vw, 4.375rem); line-height: 1; }
/* big section + CTA statements: Poppins 700 70/80 */
.h-big  { font-size: clamp(2.25rem, 4.9vw, 4.375rem); line-height: 1.14; }
/* section title: Poppins 700 44/48 */
.h-sec  { font-size: clamp(1.875rem, 3.05vw, 2.75rem); line-height: 1.09; }
/* lead paragraph set in the heading face: Poppins 700 37/46 */
.h-lead { font-size: clamp(1.5rem, 2.6vw, 2.3125rem); line-height: 1.24; font-weight: 700; }
/* kicker: Poppins 600/700 25/25 uppercase */
.kicker {
  font: 700 clamp(1.125rem, 1.74vw, 1.5625rem)/1.05 var(--ff-head);
  text-transform: uppercase; margin: 0;
}
.kicker--thin { font-weight: 600; }

.lede { font-size: clamp(1.125rem, 1.74vw, 1.5625rem); line-height: 1.52; }  /* Inter 400 25/38 */
p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }
.small { font-size: 15px; line-height: 23px; }                                /* Inter 400 15/23 */

/* ---------- button: black pill, radius 52, Inter 500 18 ---------- */
.btn {
  display: inline-block;
  background: var(--black); color: var(--white);
  font: 500 18px/1 var(--ff-body);
  text-transform: capitalize; text-align: center; text-decoration: none;
  padding: 22px 54px; border-radius: 52px; border: 2px solid var(--black);
  transition: background .25s ease, color .25s ease;
}
.btn:hover { background: transparent; color: var(--black); }
.band--dark .btn, .footer .btn {
  background: var(--white); color: var(--black); border-color: var(--white);
}
.band--dark .btn:hover, .footer .btn:hover { background: transparent; color: var(--white); }
.btn--wide { padding-inline: 66px; }

/* ---------- header ---------- */
.hdr { background: var(--moss); }
.hdr__in {
  max-width: var(--col); margin-inline: auto; padding: 18px var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(1rem, 3vw, 2.5rem);
}
.hdr__logo { flex: 0 0 auto; line-height: 0; }
.hdr__logo img { width: clamp(180px, 19vw, 264px); }
/* nav runs along the bar, with the call CTA at the end */
.hdr__nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.25rem); margin-left: auto; }
.hdr__nav a {
  font: 600 clamp(0.875rem, 1.05vw, 1rem)/1 var(--ff-head);
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--black); text-decoration: none;
  padding: 12px 0; white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.hdr__nav a:hover { border-bottom-color: var(--black); }
.hdr__nav a[aria-current="page"] { border-bottom-color: var(--black); }

.hdr__cta {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--black); color: var(--white) !important;
  font: 600 clamp(0.875rem, 1.05vw, 1rem)/1 var(--ff-head);
  letter-spacing: 1px; text-transform: uppercase; white-space: nowrap;
  padding: 15px 26px !important; border-radius: 52px;
  border: 2px solid var(--black); text-decoration: none;
  transition: background .25s ease, color .25s ease;
}
.hdr__cta:hover { background: var(--yellow); color: var(--black) !important; border-color: var(--yellow); }
.hdr__cta svg { width: 17px; height: 17px; fill: currentColor; flex: 0 0 auto; }
.hdr__cta__n { letter-spacing: .5px; }
@media (max-width: 1100px) { .hdr__cta__t { display: none; } }

.burger {
  display: none; width: 48px; height: 48px; padding: 0;
  background: none; border: 0; cursor: pointer; color: var(--black);
}
.burger span { display: block; width: 26px; height: 3px; margin: 5px auto; background: currentColor; transition: transform .3s, opacity .3s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.sheet { display: none; background: var(--moss); padding: 0 var(--pad) 24px; }
.sheet[data-open="true"] { display: block; }
.sheet a {
  display: block; padding: 12px 0;
  font: 600 20px/1 var(--ff-head); letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--black); text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.18);
}
@media (max-width: 900px) {
  .hdr__nav { display: none; }
  .burger { display: block; }
}
.sheet__cta {
  display: inline-flex; align-items: center; gap: .6rem;
  margin-top: 1.25rem; background: var(--black); color: var(--white) !important;
  padding: 16px 28px; border-radius: 52px; border-bottom: 0 !important;
  font: 600 1rem/1 var(--ff-head); letter-spacing: 1px; text-transform: uppercase;
}
.sheet__cta svg { width: 17px; height: 17px; fill: currentColor; }

/* ---------- home hero ---------- */
.hero { background: var(--moss); padding: clamp(2.5rem, 7vw, 6.25rem) 0 0; }
.hero__in {
  max-width: var(--col-wide); margin-inline: auto; padding-inline: var(--pad);
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
  gap: clamp(1.5rem, 4vw, 3rem); align-items: start;
}
.hero__copy { padding-block: clamp(1rem, 4vw, 3.5rem); max-width: 36rem; }
.hero__copy p { margin: clamp(1rem, 2vw, 1.25rem) 0 0; }
.hero__eagle { justify-self: end; width: clamp(160px, 21vw, 295px); }
@media (max-width: 860px) {
  .hero__in { grid-template-columns: 1fr; }
  .hero__eagle { justify-self: start; order: -1; }
}

/* moss spacer band the live site sits between the hero and the first block */
.gap-moss { background: var(--moss); height: clamp(2.5rem, 9.4vw, 8.4rem); }

/* ---------- "what we do": full-bleed photo, then kicker + lead ---------- */
.showcase { background: var(--moss); padding-bottom: clamp(3rem, 7vw, 7rem); }
.showcase__img { max-width: var(--col); margin-inline: auto; padding-inline: var(--pad); }
.showcase__img img { width: 100%; }
.showcase__body {
  max-width: var(--col); margin: clamp(2.5rem, 5vw, 4.75rem) auto 0;
  padding-inline: var(--pad);
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: clamp(1.5rem, 4vw, 3rem); align-items: start;
}
@media (max-width: 860px) { .showcase__body { grid-template-columns: 1fr; } }

/* ---------- split rows (kicker left / content right) ---------- */
.split--even { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.split--media { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); align-items: center; }
@media (max-width: 860px) {
  .split, .split--even, .split--media { grid-template-columns: 1fr; }
}

/* ---------- offer tabs ---------- */
.tabs { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.tabs__list { display: flex; flex-direction: column; align-items: flex-start; gap: clamp(.5rem, 1.6vw, 1.4rem); }
.tabs__btn {
  background: none; border: 0; padding: 0; cursor: pointer;
  font: 700 clamp(2.25rem, 4.9vw, 4.375rem)/1.1 var(--ff-head);
  color: var(--black); text-align: left;
}
.tabs__btn[aria-selected="true"] { color: var(--moss); }
.tabs__panel[hidden] { display: none; }
.tabs__panel img { width: 100%; margin-bottom: clamp(1.25rem, 3vw, 2.25rem); }
.tabs__panel p { margin-bottom: clamp(1.25rem, 3vw, 2rem); }
@media (max-width: 860px) { .tabs { grid-template-columns: 1fr; } }

/* ---------- why choose ----------
   Measured off the live section: a full-bleed photograph, with a 1200px card
   pair floating on it (616px white pane + 584px black pane, ~130px of photo
   above and below). Quotes are italic; navigation is dots only. */
.why {
  background-position: center; background-size: cover; background-repeat: no-repeat;
  padding: clamp(2.5rem, 9vw, 130px) var(--pad);
}
.why__card {
  max-width: var(--col); margin-inline: auto;
  display: grid; grid-template-columns: 616fr 584fr;
  min-height: clamp(28rem, 59vw, 854px);
}
.why__pane {
  background: var(--white);
  padding: 36px clamp(1.5rem, 4.2vw, 60px) clamp(2.5rem, 8.3vw, 120px);
  display: flex; flex-direction: column; justify-content: space-between;
  gap: clamp(2rem, 6vw, 5rem);
}
.why__quotes {
  background: var(--black); color: var(--white);
  padding: clamp(1.5rem, 2.5vw, 36px);
  /* the live pane top-aligns its quote rather than centring it */
  display: flex; flex-direction: column; justify-content: flex-start;
  min-width: 0;            /* a grid item defaults to min-width:auto and the
                              flex track inside would blow out the page */
}
@media (max-width: 860px) {
  .why__card { grid-template-columns: 1fr; min-height: 0; }
  .why__pane { padding-bottom: clamp(2rem, 8vw, 3rem); }
}

.carousel { position: relative; min-width: 0; }
.carousel__viewport { overflow: hidden; width: 100%; min-width: 0; }
.carousel__track {
  display: flex; gap: 10px;                  /* live space_between: 10px */
  transition: transform .5s ease;             /* live speed: 500ms */
}
@media (prefers-reduced-motion: reduce) { .carousel__track { transition: none; } }
/* blockquote carries a 40px UA side margin; without this reset the slide sits
   40px right of its clip edge and the text is cut mid-word */
.carousel__item { flex: 0 0 100%; min-width: 0; margin: 0; }
.carousel__item p { font-style: italic; margin-bottom: 1.3em; }
.carousel__item cite {
  font-style: normal; display: block;
  font-size: clamp(1.25rem, 1.9vw, 1.6875rem); line-height: 1.5;
}
.carousel__dots {
  display: flex; justify-content: center; gap: 4px;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}
.carousel__dots button {
  width: 44px; height: 44px; padding: 0; border: 0;
  background: none; cursor: pointer; display: grid; place-items: center;
}
.carousel__dots button::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--dim); transition: background .2s ease;
}
.carousel__dots button[aria-current="true"]::before { background: var(--white); }

/* ---------- interior page hero ---------- */
.phero { background: var(--moss); padding-block: clamp(3rem, 7vw, 7.1875rem); }
.phero__intro { margin: clamp(1rem, 1.7vw, 1.25rem) 0 0; max-width: 845px; }

/* ---------- photo band with a floating white card ---------- */
.photoband {
  position: relative;
  background-size: cover; background-position: center;
  padding-block: clamp(3rem, 6vw, 6.25rem);
  display: flex; align-items: center;
  min-height: clamp(28rem, 56vw, 56.25rem);   /* live band is 900px tall */
}
.photoband__card {
  background: rgba(255, 255, 255, 0.97);   /* live card is #FFFFFFF7 */
  width: 100%; max-width: 1140px; margin-inline: auto;
  padding: clamp(1.75rem, 3.9vw, 2.4375rem) clamp(1.5rem, 4.3vw, 3.875rem) clamp(2.5rem, 5vw, 3.5rem);
}
.photoband__card > * + * { margin-top: clamp(1rem, 2.5vw, 1.5rem); }
.photoband__card .h-sec { margin-top: clamp(2rem, 5.9vw, 5.9375rem); }
.photoband__card p { max-width: 40ch; }

/* ---------- interior page body ----------
   Live layout: a full-width 70/80 heading, then a two-row grid.
   Row 1: lead paragraph left, photo right. Row 2: section heading left, list right.
   Columns measure 576 / 461 with a 115px gutter inside the 1152 container. */
.ipage {
  display: grid;
  grid-template-columns: minmax(0, 576fr) minmax(0, 461fr);
  column-gap: clamp(2rem, 8vw, 115px);
  row-gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  margin-top: clamp(2rem, 5vw, 4.5rem);
}
.ipage__img { grid-column: 2; grid-row: 1; width: 100%; }
.ipage__lead { grid-column: 1; grid-row: 1; margin: 0; }
.ipage__h { grid-column: 1; grid-row: 2; align-self: start; }
.ipage__list { grid-column: 2; grid-row: 2; align-self: start; }
@media (max-width: 860px) {
  .ipage { grid-template-columns: 1fr; }
  .ipage__img, .ipage__lead, .ipage__h, .ipage__list { grid-column: 1; grid-row: auto; }
  .ipage__img { order: -1; }
}

/* ---------- lists on the service pages ---------- */
.ticks { list-style: none; margin: 0; padding: 0; }
.ticks li { position: relative; padding-left: 32px; line-height: 41px; }
.ticks li::before {
  content: ''; position: absolute; left: 0; top: 20px;
  width: 12px; height: 12px; background: var(--moss);
  transform: translateY(-50%) rotate(45deg);
}
.band--dark .ticks li::before { background: var(--yellow); }

/* ---------- about statistics ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr)); gap: clamp(1.5rem, 4vw, 3rem); }
.stats__v { font: 700 clamp(3rem, 6.5vw, 5.5rem)/1 var(--ff-head); }
.stats__l { font-size: 15px; line-height: 23px; margin-top: .35rem; }

/* ---------- contact ---------- */
/* the live contact page is moss from the header to the footer */
.contact-body { background: var(--moss); padding-bottom: clamp(3.5rem, 7vw, 7rem); }
.contact-line { font: 700 clamp(1.75rem, 3vw, 2.75rem)/1.2 var(--ff-head); text-decoration: none; word-break: break-word; }
.contact-line:hover { color: var(--white); }

/* ---------- footer ---------- */
.footer {
  position: relative; overflow: hidden;
  background: var(--black); color: var(--white);
  padding-block: clamp(3rem, 5.5vw, 5rem);
}
/* the logo's pole drawing, from the original footer. Sits behind the columns
   and is hidden once the layout stacks, where it would collide with the text. */
.footer::after {
  content: ''; position: absolute; right: -2%; bottom: -8%;
  width: min(38%, 26rem); aspect-ratio: 887 / 855;
  background: url('/assets/pole.webp') right bottom / contain no-repeat;
  opacity: .55; pointer-events: none;
}
.footer__in { position: relative; z-index: 1; }
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 3.5vw, 3.25rem);
  align-items: start;
}
.footer__logo { width: clamp(190px, 18vw, 240px); }
.footer__blurb { font-size: 15px; line-height: 23px; color: rgba(255,255,255,.72); margin-top: 1.25rem; max-width: 30ch; }
.footer__grid h2 {
  font: 600 clamp(0.8125rem, 0.95vw, 0.9375rem)/1 var(--ff-head);
  letter-spacing: 2.5px; text-transform: uppercase; color: #a8a8a8;
  margin: 0 0 20px;
}
.footer__list { list-style: none; margin: 0; padding: 0; }
.footer__list a, .footer__reach a {
  display: inline-block;
  font: 600 clamp(0.9375rem, 1.05vw, 1.0625rem)/1.5 var(--ff-head);
  letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--white); text-decoration: none; padding: 6px 0;
}
.footer__reach a.footer__tel {
  display: block; font: 700 clamp(1.25rem, 1.9vw, 1.6rem)/1.2 var(--ff-head) !important;
  letter-spacing: .5px !important; text-transform: none !important;
  margin-bottom: .5rem;
}
.footer__note { font-size: 14px; line-height: 22px; color: rgba(255,255,255,.66); margin-top: .5rem; }

/* the Facebook mark, same icon the original site used */
.footer__reach a.footer__social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; padding: 0; margin-top: .35rem;
  color: var(--white);
}
.footer__social svg { width: 28px; height: 28px; fill: currentColor; display: block; transition: fill .25s ease; }
.footer__reach a.footer__social:hover { color: var(--yellow); }
.footer__list a:hover, .footer__reach a:hover { color: var(--yellow); }
.footer__base {
  position: relative; z-index: 1;
  background: var(--black);
  padding-block: clamp(1.75rem, 3vw, 2.25rem) clamp(2rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(255,255,255,.14);
}
.footer__base .footer__tagline {
  font: 700 clamp(1.5rem, 2.6vw, 2.375rem)/1 var(--ff-head);
  letter-spacing: normal; text-transform: none;
  color: var(--white); margin: 0 0 1.25rem;
}
.footer__meta { display: flex; flex-wrap: wrap; gap: .5rem 2rem; justify-content: space-between; color: var(--dim); font-size: 15px; line-height: 23px; }
.footer__meta a { color: var(--yellow); text-decoration: none; }
.footer__meta a:hover { text-decoration: underline; }
@media (max-width: 1000px) {
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer::after { display: none; }
}
@media (max-width: 620px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- utilities ---------- */
.mt-1 { margin-top: clamp(1rem, 2vw, 1.5rem); }
.mt-2 { margin-top: clamp(1.5rem, 3.5vw, 2.75rem); }
.mt-3 { margin-top: clamp(2rem, 5vw, 4rem); }

/* ---------- service area map (contact) ----------
   Real county boundaries, projected from US Census data and centred on
   Narrowsburg. The Sullivan/Wayne county line IS the Delaware River. */
.mapwrap { background: var(--white); padding: clamp(1.25rem, 3vw, 2.5rem); }
.map { width: 100%; height: auto; display: block; }
.map__c { fill: #dcdcd6; stroke: #c2c2ba; stroke-width: 1.2; }
.map__n { fill: #b9cdb4; stroke: #000; stroke-width: 1.4; }
.map__k { fill: var(--yellow); stroke: #000; stroke-width: 2.4; }
.map__lab {
  font: 600 17px var(--ff-head); fill: #5a5a52;
  letter-spacing: 1.4px; text-anchor: middle;
}
.map__lab--core { fill: var(--black); font-weight: 700; font-size: 19px; }
.map__st { font-size: .78em; opacity: .6; }
.map__halo { fill: #000; opacity: .18; }
.map__dot { fill: #000; stroke: var(--white); stroke-width: 3; }
.map__pinlab {
  font: 700 19px var(--ff-head); fill: var(--black);
  letter-spacing: 1.2px;
  paint-order: stroke; stroke: rgba(255,255,255,.85); stroke-width: 5px;
}
.map__legend {
  display: flex; flex-wrap: wrap; gap: .75rem 2rem;
  margin-top: clamp(1rem, 2vw, 1.5rem);
  font-size: 15px; line-height: 23px;
}
.map__legend span { display: inline-flex; align-items: center; gap: .6rem; }
.map__legend i { width: 18px; height: 18px; border: 2px solid var(--black); flex: 0 0 auto; }
.map__legend .k { background: var(--yellow); }
.map__legend .n { background: #b9cdb4; }

/* ---------- service page: the list is the main event ---------- */
.svclist {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 21rem), 1fr));
  gap: 0 clamp(2rem, 5vw, 4rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  list-style: none; padding: 0;
}
.svclist li {
  position: relative; padding: 20px 0 20px 40px;
  border-bottom: 1px solid rgba(0,0,0,.14);
  font-size: clamp(1.0625rem, 1.3vw, 1.25rem); line-height: 1.5;
}
.svclist li::before {
  content: ''; position: absolute; left: 0; top: 28px;
  width: 14px; height: 14px; background: var(--moss);
  transform: rotate(45deg);
}
.band--dark .svclist li { border-bottom-color: rgba(255,255,255,.18); }
.band--dark .svclist li::before { background: var(--yellow); }

/* ---------- questions ---------- */
.qa { margin-top: clamp(1.5rem, 3vw, 2.5rem); border-top: 2px solid var(--black); }
.qa__item { border-bottom: 1px solid rgba(0,0,0,.16); }
.qa__item summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: clamp(1.1rem, 2vw, 1.5rem) 0;
  font: 700 clamp(1.125rem, 1.6vw, 1.4rem)/1.35 var(--ff-head);
}
.qa__item summary::-webkit-details-marker { display: none; }
.qa__item summary::after {
  content: '+'; margin-left: auto; flex: 0 0 auto;
  font: 400 1.75rem/1 var(--ff-body); color: var(--moss);
  transition: transform .3s ease;
}
.qa__item[open] summary::after { content: '–'; }
.qa__a { padding: 0 0 clamp(1.1rem, 2vw, 1.6rem); max-width: 68ch; }
.band--dark .qa { border-top-color: var(--yellow); }
.band--dark .qa__item { border-bottom-color: rgba(255,255,255,.18); }
.band--dark .qa__item summary::after { color: var(--yellow); }

/* ---------- about ---------- */
.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); gap: clamp(1.5rem, 2.6vw, 2.25rem); margin-top: clamp(1.5rem, 3vw, 2.5rem); }
.values h3 { font: 700 clamp(1.125rem, 1.5vw, 1.375rem)/1.3 var(--ff-head); margin-bottom: .5rem; }
.values p { font-size: 16px; line-height: 26px; }
.values__n { font: 700 clamp(1.5rem, 2vw, 1.875rem)/1 var(--ff-head); color: var(--moss); display: block; margin-bottom: .75rem; }

.quotegrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem); margin-top: clamp(1.5rem, 3vw, 2.5rem); }
.quotegrid blockquote { margin: 0; font-size: 17px; line-height: 28px; }
.quotegrid cite { display: block; margin-top: 1rem; font-style: normal; font-weight: 700; font-family: var(--ff-head); }

/* ---------- about: credential badges ---------- */
.badges { display: flex; flex-wrap: wrap; gap: .75rem; list-style: none; margin: clamp(1.5rem, 3vw, 2.25rem) 0 0; padding: 0; }
.badges li {
  font: 600 clamp(0.8125rem, 0.95vw, 0.9375rem)/1 var(--ff-head);
  letter-spacing: 1.4px; text-transform: uppercase;
  padding: 13px 20px; border: 2px solid var(--black); border-radius: 52px;
}
.band--dark .badges li { border-color: rgba(255,255,255,.4); }

/* ---------- about: team ---------- */
.teamhead {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem); align-items: end;
  margin-bottom: clamp(2rem, 4.5vw, 3.5rem);
}
.teamhead__p { font-size: clamp(1.0625rem, 1.3vw, 1.25rem); line-height: 1.6; max-width: 46ch; }
@media (max-width: 860px) { .teamhead { grid-template-columns: 1fr; align-items: start; } }

.team {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: clamp(1.75rem, 3.5vw, 3rem);
}
.team__m { margin: 0; }
.team__img {
  width: 100%; height: auto; aspect-ratio: 1; object-fit: cover;
  border-bottom: 4px solid var(--yellow);
}
.team__m figcaption { display: block; padding-top: 1.1rem; }
.team__n {
  display: block;
  font: 700 clamp(1.5rem, 2.2vw, 1.9rem)/1.1 var(--ff-head);
}
.team__r {
  display: block; margin-top: .35rem;
  font: 600 clamp(0.75rem, 0.85vw, 0.8125rem)/1.3 var(--ff-head);
  letter-spacing: 1.6px; text-transform: uppercase; color: var(--yellow);
}
.team__l { display: block; margin-top: .8rem; font-size: 16px; line-height: 26px; color: rgba(255,255,255,.82); }

.teamshot { margin: clamp(2.5rem, 5vw, 4rem) 0 0; }
.teamshot img { width: 100%; }
.teamshot figcaption {
  margin-top: 1rem;
  font: 600 clamp(0.75rem, 0.85vw, 0.8125rem)/1.4 var(--ff-head);
  letter-spacing: 1.6px; text-transform: uppercase; color: rgba(255,255,255,.6);
}
