/* Elite Wiring Co. - design system
   Direction: industrial commercial contractor. Keeps the existing brand equity
   (safety orange on charcoal) but drops the vintage-badge styling, which reads
   local trade rather than the nationwide commercial buyer they are selling to.
   House rule: no em dashes anywhere in content. */

:root {
  /* brand */
  --orange:      #E07B39;   /* pulled from their logo lettering */
  --orange-deep: #C15F1F;
  --orange-tint: #FDF1E8;
  --charcoal:    #16181A;   /* their black, warmed slightly so it prints as a color */
  --slate:       #2A2F35;
  --steel:       #5A646E;
  --steel-light: #8B959F;
  --line:        #E2E6EA;
  --paper:       #F7F8F9;
  --white:       #FFFFFF;
  --safety:      #F5B301;   /* accent for callouts, used sparingly */

  --serif: "Barlow Condensed", "Oswald", Impact, sans-serif;   /* headlines: industrial condensed */
  --sans:  "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;

  --wrap: 1180px;
  --trans: 0.2s ease;
  --shadow: 0 18px 50px rgba(22,24,26,0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--white); color: var(--slate);
  font-family: var(--sans); font-size: 17px; line-height: 1.65;
}
/* overflow-x lives on html, not body: setting it on body makes body its own
   scroll box, which silently breaks #anchor jumps and scrollIntoView. */
html { overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange-deep); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--orange); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ---- type ---- */
h1, h2, h3, h4 { font-family: var(--serif); color: var(--charcoal); margin: 0 0 0.5em; line-height: 1.08; letter-spacing: -0.01em; text-transform: uppercase; }
h1 { font-size: clamp(2.2rem, 5.2vw, 3.9rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; text-transform: none; letter-spacing: 0; }
p { margin: 0 0 1.1rem; }
.lede { font-size: 1.15rem; color: var(--steel); max-width: 60ch; }
.eyebrow {
  display: inline-block; font-family: var(--sans); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange-deep); margin-bottom: 0.9rem;
}

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 15px 28px; font-family: var(--sans); font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.02em; border-radius: 3px; border: 2px solid transparent;
  cursor: pointer; transition: all var(--trans); text-align: center;
}
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-deep); border-color: var(--orange-deep); color: var(--white); }
.btn-ghost { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-ghost:hover { background: var(--charcoal); color: var(--white); }
.btn-onDark { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-onDark:hover { background: var(--white); color: var(--charcoal); border-color: var(--white); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 1.6rem; }

/* ---- header ---- */
.site-header {
  position: sticky; top: 0; z-index: 60; background: var(--charcoal);
  border-bottom: 3px solid var(--orange);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 74px; }
.brand { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; min-width: 0; }
.brand img { height: 42px; width: auto; }
.brand-text { font-family: var(--serif); font-size: 1.35rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.02em; white-space: nowrap; }
.brand-text span { color: var(--orange); }
.main-nav { display: flex; align-items: center; gap: 1.5rem; }
.main-nav a { color: rgba(255,255,255,0.86); font-size: 0.93rem; font-weight: 500; white-space: nowrap; }
.main-nav a:hover { color: var(--orange); }
.nav-phone { color: var(--white); font-weight: 700; }
.nav-toggle {
  display: none; align-items: center; justify-content: center; width: 42px; height: 42px;
  background: transparent; border: 1px solid rgba(255,255,255,0.35); border-radius: 3px;
  color: var(--white); cursor: pointer; padding: 0; flex-shrink: 0;
}
.nav-toggle svg { width: 21px; height: 21px; }
.nav-toggle .x { display: none; }
.nav-toggle.is-open .x { display: block; }
.nav-toggle.is-open .bars { display: none; }

/* 1150 not 1000: the desktop nav needs 1098px once Partners is in it, so the
   drawer has to take over above that or the header overflows. */
@media (max-width: 1150px) {
  .site-header .wrap { height: 64px; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--charcoal); border-bottom: 3px solid var(--orange);
    padding: 0.4rem 24px 1.2rem; display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.9rem 0; border-top: 1px solid rgba(255,255,255,0.12); font-size: 1rem; }
  .main-nav .btn { margin-top: 0.9rem; }
  .site-header .wrap { position: relative; }
  .brand-text { font-size: 1.15rem; }
  .brand img { height: 36px; }
}

/* ---- hero ---- */
/* Fills the first screen under the 77px sticky header so no white band shows
   below the fold. min-height, not height, so tall content still expands it. */
.hero {
  background: var(--charcoal); color: var(--white);
  position: relative; overflow: hidden;
}
/* Full-screen opener is opt-in: only the homepage and landing pages want it.
   Applying it to every hero padded the inner pages with dead space. */
.hero-full {
  min-height: calc(100vh - 77px);
  display: flex; flex-direction: column; justify-content: center;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, var(--charcoal) 34%, rgba(22,24,26,0.78) 62%, rgba(22,24,26,0.34) 100%);
  pointer-events: none;
}
.hero-media { position: absolute; inset: 0; }
.hero-media picture { display: block; width: 100%; height: 100%; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.hero .wrap { position: relative; z-index: 2; padding-top: 84px; padding-bottom: 88px; max-width: 900px; margin-inline: 0; padding-left: max(24px, calc((100vw - var(--wrap)) / 2 + 24px)); }
.hero h1 { color: var(--white); }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero .lede { color: rgba(255,255,255,0.86); font-size: 1.2rem; }
/* Three even columns with hairline dividers rather than ragged flex items, so
   the strip reads as a spec line. Label is the quiet part; the claim carries. */
.hero-proof {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.4rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.18);
  max-width: 760px;
}
.hero-proof > div { padding: 0 1.6rem; border-left: 1px solid rgba(255,255,255,0.14); }
.hero-proof > div:first-child { padding-left: 0; border-left: 0; }
.hp-k {
  display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 0.45rem;
}
.hp-v { display: block; font-size: 0.92rem; line-height: 1.5; color: rgba(255,255,255,0.82); }
@media (max-width: 760px) {
  .hero-proof { grid-template-columns: 1fr; gap: 0.9rem; max-width: none; }
  .hero-proof > div { padding: 0 0 0 0.9rem; border-left: 2px solid rgba(224,123,57,0.5); }
  .hero-proof > div:first-child { padding-left: 0.9rem; border-left: 2px solid rgba(224,123,57,0.5); }
}

/* ---- sections ---- */
.section { padding: 84px 0; }
.section.tight { padding: 60px 0; }
.section.alt { background: var(--paper); }
.section.dark { background: var(--charcoal); color: rgba(255,255,255,0.82); }
.section.dark h2, .section.dark h3 { color: var(--white); }
.section.dark .eyebrow { color: var(--orange); }
.section-head { max-width: 62ch; margin-bottom: 2.6rem; }

/* ---- cards ---- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.card {
  background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--orange);
  padding: 30px 26px; transition: transform var(--trans), box-shadow var(--trans);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: 0.95rem; color: var(--steel); margin-bottom: 0.8rem; }
.card .more { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.card-icon { width: 42px; height: 42px; color: var(--orange); margin-bottom: 1rem; }

/* ---- process steps ---- */
.steps { counter-reset: step; display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.step { position: relative; padding: 28px 24px 26px; background: var(--white); border: 1px solid var(--line); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--serif); font-size: 2.2rem; font-weight: 700; color: var(--orange); opacity: 0.9;
  display: block; line-height: 1; margin-bottom: 0.6rem;
}
.step h3 { font-size: 1.08rem; }
.step p { font-size: 0.92rem; color: var(--steel); margin: 0; }

/* ---- callout ---- */
.callout { border-left: 4px solid var(--orange); background: var(--orange-tint); padding: 22px 26px; margin: 2rem 0; }
.callout p:last-child { margin-bottom: 0; }

/* ---- checklist ---- */
.check { list-style: none; margin: 0 0 1.2rem; padding: 0; }
.check li { position: relative; padding: 0 0 0.75rem 1.9rem; font-size: 0.98rem; }
.check li::before {
  content: ""; position: absolute; left: 0; top: 0.52em; width: 9px; height: 9px;
  background: var(--orange); transform: rotate(45deg);
}

/* ---- FAQ ---- */
.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq summary { font-family: var(--serif); font-size: 1.12rem; font-weight: 600; color: var(--charcoal); cursor: pointer; list-style: none; text-transform: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--orange); font-size: 1.5rem; line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq p { margin: 0.9rem 0 0; color: var(--steel); font-size: 0.97rem; }

/* ---- CTA band ---- */
.cta-band { background: var(--orange); color: var(--white); padding: 64px 0; text-align: center; }
.cta-band h2 { color: var(--white); }
.cta-band p { max-width: 56ch; margin-inline: auto; color: rgba(255,255,255,0.94); }
.cta-band .btn-row { justify-content: center; }
.cta-band .btn-ghost { color: var(--white); border-color: rgba(255,255,255,0.7); }
.cta-band .btn-ghost:hover { background: var(--white); color: var(--orange-deep); }
.cta-band .btn-primary { background: var(--charcoal); border-color: var(--charcoal); }

/* ---- forms ---- */
.form-grid { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--steel); margin-bottom: 6px; }
input, select, textarea {
  width: 100%; padding: 13px 14px; font: inherit; font-size: 0.97rem; color: var(--charcoal);
  background: var(--white); border: 1px solid var(--line); border-radius: 3px; transition: border-color var(--trans);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--orange); }
textarea { min-height: 130px; resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: 1rem; font-size: 0.95rem; min-height: 1.4em; }
.form-status.err { color: var(--orange-deep); }
.form-status.ok { color: #1B7F3B; font-weight: 600; }

/* Confirms a service checkbox was ticked from a ?service= link, so a pre-ticked
   box reads as intentional rather than as a bug. */
.prefill-note {
  margin: 0 0 0.7rem;
  padding: 0.55rem 0.8rem;
  border-left: 3px solid var(--orange);
  background: var(--orange-tint);
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.5;
}
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* ---- footer ---- */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.68); padding: 62px 0 30px; font-size: 0.93rem; }
.site-footer h4 { color: var(--white); font-size: 0.8rem; letter-spacing: 0.16em; margin-bottom: 1rem; }
.site-footer a { color: rgba(255,255,255,0.68); display: block; padding: 4px 0; }
.site-footer a:hover { color: var(--orange); }
.foot-grid { display: grid; gap: 34px; grid-template-columns: 1.4fr 1fr 1fr 1fr; }
.foot-brand img { height: 46px; margin-bottom: 1rem; }
.foot-legal {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.14);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.85rem;
}
.site-credit { color: rgba(255,255,255,0.5); }
.site-credit a { display: inline; color: rgba(255,255,255,0.62); font-weight: 600; }
.site-credit a:hover { color: var(--orange); }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; gap: 26px; } }

/* ---- back to top (house standard on every Resite360 build) ---- */
#backToTop {
  position: fixed; right: 20px; bottom: 20px; width: 46px; height: 46px; z-index: 70;
  display: none; align-items: center; justify-content: center;
  background: var(--orange); color: var(--white); border: 0; border-radius: 3px;
  cursor: pointer; box-shadow: 0 8px 24px rgba(22,24,26,0.28); transition: background var(--trans);
}
#backToTop:hover { background: var(--orange-deep); }
#backToTop.show { display: flex; }
#backToTop svg { width: 20px; height: 20px; }

/* ---- phone rhythm ---- */
@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 52px 0; }
  .section.tight { padding: 40px 0; }
  .hero .wrap { padding-top: 54px; padding-bottom: 58px; padding-left: 24px; }
  .hero .lede { font-size: 1.05rem; }
  .btn-row .btn { width: 100%; }
  .section-head { margin-bottom: 1.8rem; }
  .card { padding: 24px 20px; }
}


/* ---- hero scroll cue ---- */
.hero-scroll {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column-reverse; align-items: center; gap: 7px;
  color: rgba(255,255,255,0.62);
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
  text-decoration: none;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.hero-scroll:hover, .hero-scroll:focus-visible { color: var(--orange); }
.hero-scroll svg { display: block; width: 15px; height: 15px; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.62; }
  50%      { transform: translateX(-50%) translateY(8px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .hero-scroll { animation: none; } }
@media (max-width: 768px) {
  .hero-full { min-height: 0; }
  .hero-scroll { display: none; }
}


/* ---- campaign landing pages ----
   No nav by design: one offer, one action. The bar carries the phone only,
   so the single exit is a conversion. */
.lp-bar { background: var(--charcoal); border-bottom: 2px solid var(--orange); }
.lp-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 0; }
.lp-logo { font-family: var(--serif); font-size: 1.35rem; letter-spacing: 0.02em; color: var(--white); text-transform: uppercase; }
.lp-logo span { color: var(--orange); }
.lp-bar-phone {
  color: var(--white); text-decoration: none; font-weight: 600; font-size: 1.02rem;
  border: 1px solid rgba(255,255,255,0.28); padding: 10px 18px; min-height: 44px;
  display: inline-flex; align-items: center;
}
.lp-bar-phone:hover, .lp-bar-phone:focus-visible { border-color: var(--orange); color: var(--orange); }
/* the landing hero sits under a static bar, not the 77px sticky header */
.lp-hero { min-height: calc(100vh - 78px); }
.lp-form { margin-top: 1.8rem; }
.lp-foot { background: var(--charcoal); color: rgba(255,255,255,0.62); padding: 34px 0; font-size: 0.9rem; }
.lp-foot p { margin: 0 0 6px; }
.lp-foot p:last-child { margin-bottom: 0; }
@media (max-width: 640px) {
  .lp-bar-inner { padding: 14px 0; }
  .lp-logo { font-size: 1.15rem; }
}


/* ---- project card media ----
   Client photography is mostly portrait (racks are vertical subjects), so cards
   use a 4:5 well and cover-crop, keeping every card the same shape. */
.card > img {
  display: block; width: 100%; aspect-ratio: 4 / 5;
  object-fit: cover; background: var(--paper);
  margin-bottom: 18px;
}

.ba-cap { margin-top: 12px; font-size: 0.94rem; color: var(--steel); line-height: 1.55; }
.ba-cap strong { color: var(--charcoal); }


/* ---- contact page: form-first opener ----
   The page's whole job is the walkthrough request, so the form shares the
   opener with the pitch instead of sitting two screens below it. */
/* .hero .wrap is clamped to 900px and anchored left so homepage text sits clear
   of the photo. The contact opener is a two-column layout and needs the full
   measure back. */
.contact-hero .wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-left: 24px; padding-right: 24px;
  padding-top: 56px; padding-bottom: 64px;
}
.contact-grid {
  display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 52px; align-items: start;
}
.contact-pitch .lede { color: rgba(255,255,255,0.86); }
.contact-direct { margin: 30px 0 0; padding: 24px 0 0; border-top: 1px solid rgba(255,255,255,0.18); display: grid; gap: 16px; }
.contact-direct > div { display: grid; grid-template-columns: 74px 1fr; gap: 14px; align-items: baseline; }
.contact-direct dt {
  font-family: var(--serif); font-size: 0.82rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--orange);
}
.contact-direct dd { margin: 0; color: rgba(255,255,255,0.86); font-size: 0.96rem; line-height: 1.6; }
.contact-direct a { color: var(--white); }
.contact-direct a:hover { color: var(--orange); }
.contact-note { margin: 22px 0 0; font-size: 0.9rem; color: rgba(255,255,255,0.62); }

/* the form sits on paper so the inputs read normally against the dark opener */
.form-card { background: var(--white); color: var(--charcoal); padding: 34px 34px 30px; border-top: 3px solid var(--orange); }
.form-card h2 { margin: 0 0 8px; color: var(--charcoal); }
.form-card-sub { color: var(--steel); font-size: 0.95rem; margin: 0 0 22px; }

/* desktop: pitch and details stack in the left column, form on the right */
.contact-grid { grid-template-areas: "pitch form" "direct form"; grid-template-rows: auto 1fr; }
.contact-pitch { grid-area: pitch; }
.contact-direct-wrap { grid-area: direct; }
.form-card { grid-area: form; }

@media (max-width: 900px) {
  /* one column, and the form jumps ahead of the phone/email block: every pixel
     above the first field costs a submission on a phone */
  .contact-grid { grid-template-columns: 1fr; grid-template-areas: "pitch" "form" "direct"; gap: 28px; }
  .contact-hero .wrap { padding-top: 38px; padding-bottom: 44px; }
  .contact-pitch .lede { font-size: 1.02rem; }
  .form-card { padding: 26px 22px 24px; }
  /* 16px minimum stops iOS Safari zooming the page when a field takes focus */
  .form-card input, .form-card select, .form-card textarea { font-size: 16px; }
}


/* ================= dropdown nav ================= */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-top { display: inline-flex; align-items: center; }
.nav-caret {
  background: none; border: 0; padding: 4px 2px 4px 5px; cursor: pointer;
  color: inherit; display: inline-flex; align-items: center; line-height: 0;
}
.nav-caret svg { width: 13px; height: 13px; transition: transform 0.18s ease; }
.nav-item.open .nav-caret svg { transform: rotate(180deg); }

.nav-menu {
  position: absolute; top: 100%; left: -14px; min-width: 268px; z-index: 60;
  background: var(--charcoal); border: 1px solid rgba(255,255,255,0.14);
  border-top: 2px solid var(--orange);
  padding: 8px 0; display: none; box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
.nav-item.open .nav-menu { display: block; }
.nav-menu a {
  display: block; padding: 10px 20px; color: rgba(255,255,255,0.84);
  font-size: 0.92rem; text-transform: none; letter-spacing: 0; white-space: nowrap;
}
.nav-menu a:hover, .nav-menu a:focus-visible { background: rgba(255,255,255,0.06); color: var(--orange); }

@media (max-width: 1150px) {
  /* drawer: menus stack inline instead of floating */
  .nav-item { display: block; }
  .nav-item .nav-top { flex: 1; }
  .has-menu { display: flex; flex-wrap: wrap; align-items: center; }
  .nav-caret { padding: 10px 12px; min-height: 44px; min-width: 44px; justify-content: center; }
  .nav-menu {
    position: static; width: 100%; min-width: 0; border: 0; border-top: 0;
    box-shadow: none; background: rgba(255,255,255,0.04); padding: 4px 0 8px;
  }
  .nav-menu a { padding: 11px 18px; min-height: 44px; display: flex; align-items: center; border-top: 0; font-size: 0.95rem; }
  .nav-item { border-top: 1px solid rgba(255,255,255,0.12); }
  .nav-item .nav-top { border-top: 0; }
  .main-nav .nav-btn { margin-top: 0.9rem; border-top: 0; }
}

/* ================= industries hub ================= */
.ind-list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.ind { background: var(--white); display: grid; grid-template-columns: 300px minmax(0,1fr); gap: 34px; padding: 30px 32px; }
.ind-head h3 { margin: 0 0 8px; }
.ind-lede { color: var(--steel); font-size: 0.95rem; margin: 0; line-height: 1.6; }
.ind-body > p:first-child { margin-top: 0; }
.ind-links { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 0; }
@media (max-width: 860px) { .ind { grid-template-columns: 1fr; gap: 16px; padding: 26px 22px; } }

/* every service page links to every building type: one dense internal mesh */
.ind-crosslink { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 12px; }
.ind-chip {
  display: flex; align-items: center; min-height: 56px; padding: 14px 18px;
  background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--orange);
  color: var(--charcoal); font-weight: 600; font-size: 0.95rem; text-decoration: none;
}
.ind-chip:hover, .ind-chip:focus-visible { border-left-color: var(--orange-deep); background: var(--orange-tint); color: var(--orange-deep); }

/* The header is sticky, so anchored sections must stop clear of it.
   No scroll-behavior:smooth here - it made the on-load jump to a #hash
   unreliable, and back-to-top already animates itself in JS. */
[id] { scroll-margin-top: 96px; }
@media (max-width: 1150px) { [id] { scroll-margin-top: 80px; } }
