/* ==========================================================================
   Wright Co Electric — shared stylesheet
   Simple, sturdy contractor look: charcoal + concrete gray + safety yellow.
   Flat blocks, solid 1px borders, square corners, condensed display type.
   ========================================================================== */

:root {
  --ink: #1c1f24;          /* near-black */
  --charcoal: #23262b;     /* panels / bands */
  --gray: #6b7076;         /* concrete gray text */
  --gray-line: #d9d7d1;    /* borders on light surfaces */
  --surface: #f2f1ee;      /* light concrete surface */
  --white: #ffffff;
  --yellow: #f4c20d;       /* safety yellow accent */
  --yellow-dark: #d9a400;  /* hover / darker yellow */
  --yellow-ink: #241f00;   /* text on yellow */

  --radius: 3px;
  --wrap: 1180px;
  --display: "Oswald", "Arial Narrow", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--yellow-dark); }

h1, h2, h3, h4 {
  font-family: var(--display); color: var(--ink); line-height: 1.05;
  margin: 0 0 .5em; font-weight: 700; text-transform: uppercase; letter-spacing: .01em;
}
h1 { font-size: clamp(2.4rem, 6.2vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.25rem; letter-spacing: .02em; }
h4 { font-size: 1rem; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(52px, 8vw, 92px) 0; }
.section--soft { background: var(--surface); }
.section--dark { background: var(--charcoal); color: #e7e6e2; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: #b9b8b2; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--yellow); color: var(--yellow-ink); font-family: var(--display);
  font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
  padding: 12px 18px;
}
.skip:focus { left: 0; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--display); font-weight: 600; font-size: 1rem;
  text-transform: uppercase; letter-spacing: .06em;
  padding: 13px 26px; border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; transition: background .14s ease, color .14s ease, border-color .14s ease;
  line-height: 1; white-space: nowrap;
}
.btn--primary { background: var(--yellow); color: var(--yellow-ink); border-color: var(--yellow); }
.btn--primary:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); color: var(--yellow-ink); }
.btn--dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--dark:hover { background: #000; border-color: #000; color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--lg { padding: 16px 32px; font-size: 1.1rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.masthead {
  position: sticky; top: 0; z-index: 100;
  background: var(--ink);
  border-bottom: 3px solid var(--yellow);
}
.masthead__row { display: flex; align-items: center; gap: 18px; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__logo { width: 46px; height: 46px; flex: none; border-radius: 50%; }
.brand__text {
  font-family: var(--display); font-weight: 700; font-size: 1.35rem; color: #fff;
  line-height: .95; text-transform: uppercase; letter-spacing: .02em;
}
.brand__text b { color: var(--yellow); font-weight: 700; }
.brand__sub {
  display: block; font-family: var(--body); font-size: .62rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: #8b8f96; margin-top: 3px;
}

.nav { margin-left: auto; }
.nav ul { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav a {
  display: block; font-family: var(--display); font-weight: 500; font-size: 1rem;
  text-transform: uppercase; letter-spacing: .05em; color: #cfd1d5;
  padding: 9px 16px; border-radius: var(--radius); transition: color .14s, background .14s;
}
.nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav a[aria-current="page"] { color: var(--yellow); }
.masthead__cta { margin-left: 10px; }
.masthead__cta .btn { padding: 11px 20px; }

.burger {
  display: none; margin-left: auto; width: 46px; height: 46px;
  background: transparent; border: 2px solid rgba(255,255,255,.35); border-radius: var(--radius);
  cursor: pointer; padding: 0; align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.burger span { display: block; width: 22px; height: 2.5px; background: #fff; transition: transform .25s, opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav {
    position: fixed; inset: 74px 0 auto 0; margin: 0;
    background: var(--ink); border-bottom: 3px solid var(--yellow);
    transform: translateY(-160%); transition: transform .28s ease;
    max-height: calc(100vh - 74px); overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 16px 18px; }
  .nav a { padding: 15px 14px; font-size: 1.15rem; border-bottom: 1px solid rgba(255,255,255,.08); border-radius: 0; }
  .masthead__cta { display: none; }
  .burger { display: inline-flex; }
}

/* ---------- Hero (full-bleed photo + scrim) ---------- */
.hero { position: relative; background: var(--ink); }
.hero__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,22,26,.92) 0%, rgba(20,22,26,.78) 45%, rgba(20,22,26,.45) 100%);
}
.hero__inner {
  position: relative; z-index: 1;
  padding-top: clamp(64px, 10vw, 132px); padding-bottom: clamp(64px, 10vw, 132px);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 600; font-size: .9rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--yellow);
  border-left: 4px solid var(--yellow); padding: 2px 0 2px 12px; margin-bottom: 22px;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 span { color: var(--yellow); }
.hero__lead { font-size: 1.2rem; color: #d7d7d3; max-width: 46ch; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* trade strip under hero */
.tradestrip { background: var(--yellow); }
.tradestrip ul {
  display: flex; flex-wrap: wrap; list-style: none;
  align-items: stretch; justify-content: center;
}
.tradestrip li {
  font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
  color: var(--yellow-ink); font-size: .98rem; padding: 14px 22px; position: relative;
}
.tradestrip li + li::before {
  content: ""; position: absolute; left: 0; top: 22%; height: 56%; width: 2px; background: rgba(36,31,0,.28);
}

/* ---------- Section head ---------- */
.head { max-width: 720px; margin: 0 auto clamp(34px, 5vw, 54px); }
.head--center { text-align: center; }
.kicker {
  font-family: var(--display); font-weight: 600; font-size: .95rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--yellow-dark); margin: 0 0 10px;
  display: inline-flex; align-items: center; gap: 10px;
}
.kicker::before { content: ""; width: 26px; height: 3px; background: var(--yellow); }
.head--center .kicker { justify-content: center; }
.head p:last-child { color: var(--gray); margin: 0; font-size: 1.06rem; }
.section--dark .head p:last-child { color: #b9b8b2; }

/* ---------- Service grid (photo cards) ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc {
  background: #fff; border: 1px solid var(--gray-line);
  display: flex; flex-direction: column; transition: border-color .15s;
}
.svc:hover { border-color: var(--ink); }
.svc__media { position: relative; aspect-ratio: 4 / 3; background: var(--charcoal); overflow: hidden; }
.svc__media img { width: 100%; height: 100%; object-fit: cover; }
.svc__ico {
  position: absolute; left: 0; bottom: 0; width: 52px; height: 52px;
  background: var(--yellow); color: var(--yellow-ink); display: grid; place-items: center;
}
.svc__ico svg { width: 28px; height: 28px; }
.svc--noimg .svc__media { display: grid; place-items: center; }
.svc--noimg .svc__ico { position: static; width: 72px; height: 72px; }
.svc--noimg .svc__ico svg { width: 38px; height: 38px; }
.svc__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.svc h3 { margin-bottom: 8px; }
.svc p { font-size: .95rem; color: var(--gray); margin: 0 0 16px; }
.svc .link { margin-top: auto; }

@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }

.link {
  font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
  color: var(--ink); display: inline-flex; align-items: center; gap: 6px; font-size: .95rem;
}
.link:hover { color: var(--yellow-dark); gap: 10px; }

/* ---------- Credibility band ---------- */
.creds { background: var(--ink); color: #fff; }
.creds__inner {
  display: grid; grid-template-columns: 1.05fr 1fr; align-items: stretch; gap: 0;
}
.creds__media { position: relative; min-height: 340px; }
.creds__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.creds__body { padding: clamp(34px, 5vw, 60px); align-self: center; }
.creds__body .kicker { color: var(--yellow); }
.creds__body h2 { color: #fff; }
.creds__body p { color: #c4c4c0; max-width: 46ch; }
.creds__body .btn { margin-top: 8px; }
@media (max-width: 780px) { .creds__inner { grid-template-columns: 1fr; } .creds__media { min-height: 240px; } }

/* ---------- Split band (residential & commercial) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.split__card { background: #fff; border: 1px solid var(--gray-line); padding: 30px; border-top: 4px solid var(--ink); }
.split__card.is-comm { border-top-color: var(--yellow); }
.split__card h3 { display: flex; align-items: center; gap: 12px; font-size: 1.3rem; }
.split__card .tag { width: 42px; height: 42px; display: grid; place-items: center; flex: none; background: var(--ink); color: var(--yellow); }
.split__card.is-comm .tag { background: var(--yellow); color: var(--yellow-ink); }
.split__card ul { list-style: none; }
.split__card li { position: relative; padding-left: 26px; margin-bottom: 9px; color: var(--gray); }
.split__card li::before {
  content: ""; position: absolute; left: 0; top: .55em; width: 13px; height: 7px;
  border-left: 2.5px solid var(--yellow-dark); border-bottom: 2.5px solid var(--yellow-dark); transform: rotate(-45deg);
}
@media (max-width: 720px) { .split { grid-template-columns: 1fr; } }

/* ---------- Trust stats ---------- */
.trust { margin-top: 40px; border: 1px solid rgba(255,255,255,.14); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust__item { text-align: center; padding: 30px 18px; border-right: 1px solid rgba(255,255,255,.14); }
.trust__item:last-child { border-right: 0; }
.trust__item .n { font-family: var(--display); font-weight: 700; font-size: 2.6rem; line-height: 1; color: var(--yellow); }
.trust__item .n span { color: #fff; }
.trust__item p { margin: 10px 0 0; color: #b9b8b2; font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; }
@media (max-width: 640px) {
  .trust__grid { grid-template-columns: 1fr 1fr; }
  .trust__item:nth-child(2) { border-right: 0; }
  .trust__item:nth-child(1), .trust__item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.14); }
}

/* ---------- Feature rows ---------- */
.feature__row { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.feature__row + .feature__row { margin-top: clamp(48px, 7vw, 80px); }
.feature__row--rev .feature__media { order: 2; }
.feature__media { border: 1px solid var(--gray-line); aspect-ratio: 4 / 3; overflow: hidden; background: var(--charcoal); }
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature__body h2 { margin-bottom: 14px; }
.ticks { list-style: none; margin-top: 18px; }
.ticks li { position: relative; padding-left: 30px; margin-bottom: 11px; color: var(--gray); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px;
  background: var(--yellow) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23241f00' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}
@media (max-width: 820px) {
  .feature__row { grid-template-columns: 1fr; gap: 26px; }
  .feature__row--rev .feature__media { order: 0; }
}

/* ---------- Trade detail sections (Services page) ---------- */
.trade { scroll-margin-top: 84px; }
.trade__head { display: flex; align-items: center; gap: 18px; margin-bottom: 20px; }
.trade__ico { width: 62px; height: 62px; display: grid; place-items: center; flex: none; background: var(--ink); color: var(--yellow); }
.trade--yellow .trade__ico { background: var(--yellow); color: var(--yellow-ink); }
.trade__ico svg { width: 32px; height: 32px; }
.trade__head h2 { margin: 0; }
.trade__head .kicker { margin-bottom: 4px; }
.trade__lead { color: var(--gray); max-width: 66ch; font-size: 1.1rem; margin-bottom: 26px; }
.trade__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; }
.trade__photo { border: 1px solid var(--gray-line); aspect-ratio: 4 / 3; overflow: hidden; background: var(--charcoal); }
.section--dark .trade__photo, .section--dark .split__card, .section--dark .faq__item { border-color: rgba(255,255,255,.16); }
.trade__photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) { .trade__layout { grid-template-columns: 1fr; gap: 24px; } .trade__photo { order: -1; } }

/* ---------- Jump nav (services) ---------- */
.jumpnav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.jumpnav a {
  font-family: var(--display); font-weight: 500; font-size: .95rem; text-transform: uppercase; letter-spacing: .05em;
  background: #fff; border: 1px solid var(--gray-line); color: var(--ink);
  padding: 9px 16px; border-radius: var(--radius); display: inline-flex; align-items: center; gap: 8px;
}
.jumpnav a:hover { border-color: var(--ink); background: var(--yellow); }
.jumpnav svg { width: 17px; height: 17px; }

/* ---------- Pills ---------- */
.pills { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin-top: 16px; }
.pills li {
  font-family: var(--display); font-weight: 500; font-size: .95rem; text-transform: uppercase; letter-spacing: .04em;
  color: var(--ink); background: #fff; border: 1px solid var(--gray-line); padding: 8px 16px; border-radius: var(--radius);
}

/* ---------- CTA band ---------- */
.cta { background: var(--yellow); color: var(--yellow-ink); }
.cta__row { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta h2 { color: var(--yellow-ink); margin-bottom: 6px; }
.cta p { color: #4a3f00; margin: 0; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Contact (stacked full-width bands) ---------- */
.card { background: #fff; border: 1px solid var(--gray-line); padding: clamp(24px, 4vw, 36px); }
.card h2 { font-size: 1.6rem; }

/* Band 1 — wide single-column form card, related fields in an inner 2-col grid */
.contact-form { max-width: 760px; margin-inline: auto; }
.contact-form .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.contact-form .form-grid .form-row { margin-bottom: 0; }
@media (max-width: 560px) { .contact-form .form-grid { grid-template-columns: 1fr; } }

/* Band 2 — three equal info tiles (Call / Email / Hours) */
.info-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; list-style: none; }
.info-tile {
  background: #fff; border: 1px solid var(--gray-line); border-top: 4px solid var(--yellow);
  padding: 30px 26px; text-align: center; display: flex; flex-direction: column; align-items: center;
}
.info-tile .info__ico { margin-bottom: 16px; }
.info-tile .k { font-family: var(--display); font-weight: 500; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gray); margin-bottom: 6px; }
.info-tile a, .info-tile .info-tile__lead { font-family: var(--display); font-weight: 600; font-size: 1.18rem; color: var(--ink); letter-spacing: .01em; word-break: break-word; }
.info-tile a:hover { color: var(--yellow-dark); }
.info-tile p { margin: 12px 0 0; color: var(--gray); font-size: .92rem; }
@media (max-width: 720px) { .info-tiles { grid-template-columns: 1fr; } }

/* Band 3 — full-width emergency / service-call strip (yellow) */
.emergency-strip { background: var(--yellow); color: var(--yellow-ink); padding: clamp(30px, 5vw, 48px) 0; }
.emergency-strip__inner { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.emergency-strip .bolt { width: 58px; height: 58px; background: var(--ink); color: var(--yellow); display: grid; place-items: center; flex: none; }
.emergency-strip__text { flex: 1; min-width: 240px; }
.emergency-strip h3 { color: var(--yellow-ink); margin-bottom: 4px; }
.emergency-strip p { color: #4a3f00; margin: 0; max-width: 60ch; }
.emergency-strip p a { color: var(--ink); font-weight: 600; text-decoration: underline; }
.emergency-strip p a:hover { color: #000; }
.emergency-strip > .wrap > .btn { margin-left: auto; }
@media (max-width: 640px) { .emergency-strip > .wrap > .btn { margin-left: 0; width: 100%; } }

.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: .04em; font-size: .92rem; margin-bottom: 6px; color: var(--ink); }
.form-row label .req { color: var(--yellow-dark); }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; font-family: var(--body); font-size: 1rem; color: var(--ink);
  padding: 12px 14px; border: 2px solid var(--gray-line); border-radius: var(--radius); background: #fff;
  transition: border-color .15s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--ink); }
.form-row textarea { resize: vertical; min-height: 130px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.two .form-row { margin: 0; }
@media (max-width: 480px) { .form-row.two { grid-template-columns: 1fr; } }
.err { color: #b3261e; font-size: .84rem; margin-top: 5px; display: none; font-family: var(--display); font-weight: 500; letter-spacing: .03em; }
.form-row.invalid input, .form-row.invalid select, .form-row.invalid textarea { border-color: #b3261e; }
.form-row.invalid .err { display: block; }
.form-note { font-size: .88rem; color: var(--gray); margin-top: 14px; }
.form-status { display: none; margin-top: 14px; padding: 12px 16px; border-radius: var(--radius); font-family: var(--display); font-weight: 500; letter-spacing: .03em; }
.form-status.ok { display: block; background: #eaf6ec; color: #1c7c3c; border: 1px solid #b9e4c6; }
.hp { position: absolute; left: -9999px; }

/* ---------- Info card / detail lines ---------- */
.info__list { list-style: none; }
.info__list li { display: flex; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--gray-line); }
.info__list li:last-child { border-bottom: 0; }
.info__ico { width: 42px; height: 42px; display: grid; place-items: center; flex: none; background: var(--ink); color: var(--yellow); }
.info__ico svg { width: 20px; height: 20px; }
.info__meta { line-height: 1.5; }
.info__meta .k { font-family: var(--display); font-weight: 500; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gray); display: block; }
.info__meta a { font-weight: 600; }

.emergency { background: var(--ink); color: #fff; padding: 24px; display: flex; gap: 16px; align-items: flex-start; margin-top: 22px; }
.emergency .bolt { width: 46px; height: 46px; background: var(--yellow); color: var(--yellow-ink); display: grid; place-items: center; flex: none; }
.emergency h3 { color: #fff; margin-bottom: 4px; }
.emergency p { margin: 0; color: #c4c4c0; font-size: .96rem; }
.emergency a { color: var(--yellow); }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { background: #fff; border: 1px solid var(--gray-line); margin-bottom: 12px; overflow: hidden; }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: .02em;
  font-size: 1.05rem; color: var(--ink);
  padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq__q .chev { flex: none; transition: transform .2s; color: var(--yellow-dark); }
.faq__q[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq__a p { padding: 0 22px 18px; margin: 0; color: var(--gray); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Footer ---------- */
.foot { background: #16181c; color: #a9aab0; border-top: 3px solid var(--yellow); }
.foot a { color: #c9cace; }
.foot a:hover { color: #fff; }

/* Trade strip — distinctive charcoal band with yellow rules (inverts .tradestrip) */
.foot__strip { background: var(--charcoal); border-bottom: 1px solid rgba(244,194,13,.30); }
.foot__strip ul {
  display: flex; flex-wrap: wrap; list-style: none; margin: 0; padding: 0;
  align-items: stretch; justify-content: center;
}
.foot__strip li {
  font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  color: var(--yellow); font-size: .98rem; padding: 16px 26px; position: relative;
}
.foot__strip li + li::before {
  content: ""; position: absolute; left: 0; top: 22%; height: 56%; width: 2px; background: rgba(244,194,13,.35);
}

/* 2-part row: brand (left) + contact & links (right) */
.foot__main {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px 56px;
  padding: clamp(40px, 5vw, 56px) 0 6px; align-items: start;
}
.foot__brand .brand { align-items: center; }
.foot__brand .brand__text { color: #fff; }
.foot__brand .brand__text b { color: var(--yellow); }
.foot__brand p { margin: 16px 0 0; font-size: .96rem; max-width: 42ch; }
.foot__contact { display: grid; gap: 22px; }
.foot h4 { color: var(--yellow); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 12px; }
.foot address { font-style: normal; font-size: .96rem; line-height: 1.7; }
.foot__links {
  display: flex; flex-wrap: wrap; align-items: center; list-style: none; margin: 0; padding: 0;
  font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; font-size: .82rem;
}
.foot__links li { line-height: 1.9; }
.foot__links li::after { content: "·"; margin: 0 12px; color: rgba(244,194,13,.55); }
.foot__links li:last-child::after { content: none; }
.foot__bottom {
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; align-items: center;
  margin-top: 28px; padding: 22px 0 28px; border-top: 1px solid rgba(255,255,255,.12);
  font-size: .86rem; color: #7c7e85;
}
@media (max-width: 720px) { .foot__main { grid-template-columns: 1fr; gap: 32px; } }
@media (max-width: 400px) { .foot__strip li { padding: 13px 16px; font-size: .9rem; } }

/* ---------- Hero BBB — floating accreditation seal (corner overlay, not an in-flow badge) ---------- */
.hero__bbb {
  position: absolute; z-index: 2;
  right: clamp(16px, 4vw, 40px); bottom: clamp(16px, 4vw, 34px);
  display: inline-block; line-height: 0;
  transition: transform .15s ease;
}
.hero__bbb img { width: 116px; height: auto; display: block; filter: drop-shadow(0 6px 14px rgba(0,0,0,.55)); }
.hero__bbb:hover { transform: translateY(-2px); }
@media (max-width: 720px) {
  .hero__inner { padding-bottom: clamp(80px, 20vw, 104px); }
  .hero__bbb { right: 16px; bottom: 16px; }
  .hero__bbb img { width: 98px; }
}
