/* ==========================================================================
   Jogindra Electricals — The Cable People
   Stylesheet. Plain CSS, no build step.

   Layout of this file:
     1.  Design tokens (colours, type, spacing)   <- EDIT COLOURS HERE
     2.  Reset & base
     3.  Utilities (wrap, eyebrow, marker, buttons, icons)
     4.  Header / navigation
     5.  Hero
     6.  About & trust badges
     7.  Brands
     8.  Products
     9.  Contact & form
     10. Business hours
     11. Footer
     12. Mobile call bar
     13. Scroll-reveal animation
     14. Responsive breakpoints
     15. Reduced motion & print
   ========================================================================== */


/* ==========================================================================
   1. DESIGN TOKENS
   EDIT: change the brand colour in one place and it updates the whole site.
   ========================================================================== */
:root {
  /* Brand */
  --red:        #D71920;   /* sampled from the logo */
  --red-dark:   #A5121A;   /* hover / pressed state */
  --red-tint:   #FDECEC;   /* very light red wash */

  /* Ink & neutrals */
  --ink:        #141414;
  --ink-soft:   #22252A;
  --ink-line:   #33373E;
  --slate:      #5B6169;   /* body text — 6.2:1 on white */
  --slate-mid:  #61686F;   /* secondary text — 5.6:1 on white, 5.2:1 on grey */
  --paper:      #FFFFFF;
  --paper-alt:  #F4F5F7;   /* section break background */
  --line:       #E2E5E9;

  /* Copper — the conductor inside the cable */
  --copper:     #C87B3E;

  /* Type */
  --display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  /* Spacing & shape */
  --wrap:      1180px;
  --header-h:  72px;
  --radius:    6px;
  --radius-lg: 10px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(20, 20, 20, .06), 0 2px 8px rgba(20, 20, 20, .05);
  --shadow-md: 0 4px 12px rgba(20, 20, 20, .08), 0 12px 28px rgba(20, 20, 20, .07);

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
}


/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.05;
  margin: 0;
  letter-spacing: .005em;
}

p  { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }

address { font-style: normal; }

/* Anchor targets clear the sticky header */
section[id], [id="top"] { scroll-margin-top: calc(var(--header-h) + 12px); }

/* Visible keyboard focus everywhere */
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  font-weight: 600;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  color: #fff;
}


/* ==========================================================================
   3. UTILITIES
   ========================================================================== */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 22px;
}

/* Standard vertical rhythm for every section. One rule, no competing overrides. */
.section { padding-block: clamp(58px, 7.5vw, 104px); }
.section--alt { background: var(--paper-alt); }

.section__head { max-width: 720px; margin-bottom: clamp(34px, 4vw, 52px); }

.section__title {
  font-size: clamp(2.15rem, 4.6vw, 3.35rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin-bottom: .55rem;
}

.section__intro {
  font-size: 1.02rem;
  max-width: 58ch;
  margin-bottom: 0;
}

.lede {
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  max-width: 68ch;
  color: var(--slate);
  margin-bottom: clamp(38px, 4.5vw, 56px);
}

/* Eyebrow label + the three-bar marker.
   The marker is the three conductors of the cable, seen from the side. */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--ink);
  margin-bottom: 14px;
}
.eyebrow--light { color: rgba(255, 255, 255, .78); }

.marker {
  flex: none;
  width: 26px;
  height: 15px;
  background:
    linear-gradient(var(--red), var(--red)) left  center / 26px 3px no-repeat,
    linear-gradient(var(--red), var(--red)) left  top    / 18px 3px no-repeat,
    linear-gradient(var(--red), var(--red)) left  bottom / 18px 3px no-repeat;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 12px 22px;
  min-height: 46px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color .18s var(--ease),
              border-color .18s var(--ease),
              color .18s var(--ease),
              transform .18s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--lg { min-height: 54px; padding: 15px 30px; font-size: 1.15rem; }

.btn--primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .38);
  color: #fff;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
  color: #fff;
}

.btn--call {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  font-size: 1rem;
  padding: 9px 16px;
  min-height: 44px;
}
.btn--call:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; }

.ico { width: 20px; height: 20px; fill: currentColor; flex: none; }


/* ==========================================================================
   4. HEADER / NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-top: 3px solid var(--red);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 2px 14px rgba(20, 20, 20, .09); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; flex: none; }
.brand__img { height: 44px; width: auto; }

/* Vector fallback shown only if images/logo.png is missing */
.brand__fallback { display: inline-flex; align-items: center; gap: 11px; }
.brand__fallback[hidden] { display: none; }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__words { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--display);
  font-size: 1.62rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .01em;
}
.brand__sub {
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .3em;
}

.nav { display: flex; align-items: center; gap: 26px; }

.nav__list { display: flex; align-items: center; gap: 4px; }

.nav__link {
  display: block;
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--ink);
  padding: 10px 13px;
  border-radius: var(--radius);
  position: relative;
  transition: color .18s var(--ease), background-color .18s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 5px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s var(--ease);
}
.nav__link:hover { color: var(--red); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--red); }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before,
.nav-toggle__bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bars::before { top: -7px; }
.nav-toggle__bars::after  { top: 7px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after  { transform: translateY(-7px) rotate(-45deg); }


/* ==========================================================================
   5. HERO
   Ground: near-black, tiled with small cable cross-sections.
   ========================================================================== */
.hero {
  position: relative;
  background-color: var(--ink);
  background-image:
    radial-gradient(58% 74% at 78% 24%, rgba(215, 25, 32, .30) 0%, rgba(215, 25, 32, 0) 62%),
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='84'%20height='84'%20viewBox='0%200%2084%2084'%3E%3Cg%20fill='none'%20stroke='%23D71920'%20stroke-width='3.4'%3E%3Ccircle%20cx='42'%20cy='42'%20r='27'/%3E%3C/g%3E%3Cg%20fill='%23D71920'%3E%3Ccircle%20cx='42'%20cy='30.5'%20r='8'/%3E%3Ccircle%20cx='32'%20cy='47.8'%20r='8'/%3E%3Ccircle%20cx='52'%20cy='47.8'%20r='8'/%3E%3C/g%3E%3C/svg%3E");
  background-size: auto, 84px 84px;
  background-position: center, center;
  overflow: hidden;
}
/* Dim the pattern so it reads as texture, not wallpaper */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 20, 20, .93) 0%, rgba(20, 20, 20, .88) 55%, rgba(20, 20, 20, .95) 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  align-items: center;
  gap: clamp(30px, 5vw, 64px);
  padding-block: clamp(56px, 8vw, 104px);
}

.hero__copy { min-width: 0; }

.hero__title { margin-bottom: 20px; }

.hero__name {
  display: block;
  font-size: clamp(2.6rem, 6.4vw, 5.1rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: .005em;
}

/* The tagline is the promise — set it in the brand red, on its own line */
.hero__tagline {
  display: block;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--red);
  margin-top: 6px;
}

.hero__sub {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: rgba(255, 255, 255, .8);
  max-width: 50ch;
  margin-bottom: 30px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__art { display: flex; justify-content: center; min-width: 0; }
.cable {
  width: min(100%, 400px);
  height: auto;
  filter: drop-shadow(0 22px 44px rgba(0, 0, 0, .55));
}

/* Slow rotation of the inspection ring — one quiet moving part */
.cable__ring {
  transform-origin: 200px 200px;
  animation: spin 26s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Conductors breathe faintly, staggered — reads as current */
.cable__core {
  transform-origin: 200px 200px;
  animation: pulse 4.6s var(--ease) infinite;
  animation-delay: calc(var(--i) * .5s);
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .84; }
}

/* Dealer strip under the hero */
.dealer-strip {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--ink-line);
  background: rgba(0, 0, 0, .38);
}
.dealer-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 30px;
  padding-block: 18px;
}
.dealer-strip__label {
  font-family: var(--display);
  font-size: .92rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, .55);
}
.dealer-strip__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 26px;
}
.dealer-strip__list li {
  font-family: var(--display);
  font-size: 1.24rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
}


/* ==========================================================================
   6. ABOUT — trust badges
   ========================================================================== */
.trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.trust__item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 26px 22px 24px;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.trust__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.trust__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red-tint);
  color: var(--red);
  margin-bottom: 16px;
}
.trust__icon svg { width: 25px; height: 25px; }

.trust__title {
  font-size: 1.35rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 7px;
}
.trust__text { font-size: .95rem; margin-bottom: 0; }


/* ==========================================================================
   7. BRANDS
   Each card carries the brand's own corporate colour on the top rule
   and the wordmark, so the three read as distinct suppliers.
   ========================================================================== */
.brands {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.brand-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.brand-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--brand-color, var(--red));
}
.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.brand-card__mark {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
}
.brand-card__glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: none;
}
.brand-card__glyph svg { width: 100%; height: 100%; }

.brand-card__word {
  font-family: var(--display);
  font-size: 2.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .045em;
  color: var(--brand-color, var(--ink));
  line-height: 1;
}

.brand-card__kind {
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: var(--slate-mid);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.brand-card__text { font-size: .97rem; margin-bottom: 0; }


/* ==========================================================================
   8. PRODUCTS
   ========================================================================== */
.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.product {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform .22s var(--ease),
              box-shadow .22s var(--ease),
              border-color .22s var(--ease);
}
.product:hover {
  transform: translateY(-3px);
  border-color: rgba(215, 25, 32, .38);
  box-shadow: var(--shadow-md);
}

.product__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  background: var(--paper-alt);
  color: var(--red);
  margin-bottom: 15px;
  transition: background-color .22s var(--ease);
}
.product:hover .product__icon { background: var(--red-tint); }
.product__icon svg { width: 27px; height: 27px; }

.product__title {
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .035em;
  margin-bottom: 7px;
}
.product__text { font-size: .95rem; margin-bottom: 0; }


/* ==========================================================================
   9. CONTACT & FORM
   ========================================================================== */
.contact {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(26px, 4vw, 48px);
  align-items: start;
}

.contact__details {
  display: grid;
  gap: 26px;
  align-content: start;
}

.detail { display: flex; gap: 15px; }

.detail__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--red);
}
.detail__icon svg { width: 21px; height: 21px; }

.detail__body { min-width: 0; }

.detail__label {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--ink);
  margin-bottom: 5px;
}

.detail__value { color: var(--slate); margin-bottom: 0; line-height: 1.6; }

.detail__list { display: grid; gap: 3px; }
.detail__list a,
.detail__value a {
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: color .18s var(--ease), border-color .18s var(--ease);
}
.detail__list a:hover,
.detail__value a:hover { color: var(--red); border-bottom-color: var(--red); }

.detail__note { color: var(--slate-mid); font-weight: 400; font-size: .9rem; }

/* Form panel */
.contact__form-wrap {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow-sm);
}

.form__heading {
  font-size: 1.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 6px;
}
.form__intro { font-size: .96rem; margin-bottom: 22px; }

.form { display: grid; gap: 17px; }

.field { display: grid; gap: 7px; }

.field__label {
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink);
}
.field__optional { color: var(--slate-mid); font-weight: 500; letter-spacing: .04em; }
.req { color: var(--red); }

.field__input {
  width: 100%;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  min-height: 50px;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field__input::placeholder { color: #6E757E; }   /* 4.7:1 — readable, not shouty */
.field__input:hover { border-color: #C9CED5; }
.field__input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(215, 25, 32, .15);
  outline: none;
}
.field__input--area { resize: vertical; min-height: 118px; line-height: 1.55; }

.form__submit { width: 100%; margin-top: 4px; }

.form__status {
  margin: 0;
  font-size: .95rem;
  font-weight: 500;
  min-height: 1px;
}
.form__status.is-ok    { color: #1B7A3D; }
.form__status.is-error { color: var(--red-dark); }

/* Honeypot — visually hidden, still reachable by bots */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


/* ==========================================================================
   10. BUSINESS HOURS
   ========================================================================== */
.hours {
  margin-top: clamp(26px, 3.5vw, 40px);
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px) clamp(24px, 3vw, 36px);
  color: rgba(255, 255, 255, .78);
}

.hours__head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }

.hours__icon { display: inline-flex; color: var(--red); }
.hours__icon svg { width: 26px; height: 26px; }

.hours__title {
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
}

.hours__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 46px;
  margin: 0 0 12px;
}
.hours__row { display: flex; align-items: baseline; gap: 12px; }
.hours__row dt {
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: rgba(255, 255, 255, .62);
}
.hours__row dd {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}

.hours__note { font-size: .92rem; color: rgba(255, 255, 255, .58); margin: 0; }


/* ==========================================================================
   11. FOOTER
   ========================================================================== */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, .7); }

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
  gap: 38px;
  padding-block: clamp(44px, 5vw, 66px);
}

.footer__logo { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 12px; }
.footer__mark { width: 40px; height: 40px; flex: none; }
.footer__words { display: flex; flex-direction: column; line-height: 1; }
.footer__name {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .01em;
}
.footer__sub {
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .62);
  letter-spacing: .3em;
}

/* 20px at 600 weight keeps red-on-black above the large-text contrast bar */
.footer__tagline {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .17em;
  color: var(--red);
  margin-bottom: 12px;
}
.footer__blurb { font-size: .94rem; max-width: 34ch; margin-bottom: 0; }

.footer__heading {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #fff;
  margin-bottom: 15px;
}

.footer__list { display: grid; gap: 9px; }
.footer__list a,
.footer__address {
  font-size: .95rem;
  color: rgba(255, 255, 255, .7);
  transition: color .18s var(--ease);
}
.footer__list a:hover { color: #fff; }
.footer__address { line-height: 1.75; }

.footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 20px;
  padding-block: 20px;
  border-top: 1px solid var(--ink-line);
}
.footer__copy,
.footer__meta {
  margin: 0;
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
}


/* ==========================================================================
   12. MOBILE CALL BAR  (hidden on desktop, shown under 860px)
   ========================================================================== */
.callbar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
}
.callbar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  background: var(--red);
  color: #fff;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  border-radius: var(--radius);
}
.callbar__btn:hover { background: var(--red-dark); color: #fff; }


/* ==========================================================================
   13. SCROLL REVEAL
   Elements with .reveal fade up once when they enter the viewport.
   js/script.js adds .is-visible. If JS is off, .no-js keeps them visible.
   ========================================================================== */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}


/* ==========================================================================
   14. RESPONSIVE
   ========================================================================== */

/* Large tablet / small laptop */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav { gap: 14px; }
  .nav__link { padding: 10px 9px; font-size: 1rem; }
}

/* Tablet — hero stacks, nav collapses */
@media (max-width: 860px) {
  body { padding-bottom: 76px; }          /* room for the fixed call bar */

  .nav-toggle { display: inline-flex; }

  .nav {
    position: fixed;
    top: calc(var(--header-h) + 3px);
    left: 0;
    right: 0;
    max-height: calc(100dvh - var(--header-h) - 3px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 26px rgba(20, 20, 20, .12);
    padding: 10px 22px 22px;
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  }
  .nav.is-open { transform: none; opacity: 1; visibility: visible; }

  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link {
    padding: 15px 4px;
    font-size: 1.22rem;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .nav__link::after { display: none; }

  .header__call { margin-top: 16px; width: 100%; }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
  }
  /* Headline and the call button stay first — the illustration follows */
  .cable { width: min(74%, 300px); }

  .brands { grid-template-columns: minmax(0, 1fr); }
  .products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact { grid-template-columns: minmax(0, 1fr); }

  .callbar { display: block; }

  /* Touch targets: phone and email links are the whole point of this site
     on a phone, so give every one of them a full 44px tap area. */
  .brand { min-height: 44px; }

  .detail__list a,
  .detail__value a,
  .footer__list a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
  .detail__list { gap: 0; }
  .footer__list { gap: 2px; }
}

/* Phone */
@media (max-width: 640px) {
  body { font-size: 16px; }

  .brand__img { height: 38px; }
  .brand__mark { width: 36px; height: 36px; }
  .brand__name { font-size: 1.38rem; }
  .brand__sub { font-size: .68rem; letter-spacing: .26em; }

  .hero__actions .btn { flex: 1 1 100%; }
  .cable { width: min(66%, 244px); }

  .dealer-strip__inner { gap: 8px 20px; }
  .dealer-strip__list { gap: 6px 18px; }
  .dealer-strip__list li { font-size: 1.06rem; }

  .trust { grid-template-columns: minmax(0, 1fr); }
  .products { grid-template-columns: minmax(0, 1fr); }

  .footer__grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .footer__bar { justify-content: flex-start; }

  .hours__list { gap: 8px 28px; }
}

/* Small phone */
@media (max-width: 400px) {
  .brand__sub { letter-spacing: .2em; }
  .section__title { font-size: 2rem; }
  .callbar__btn { font-size: 1.08rem; }
}


/* ==========================================================================
   15. REDUCED MOTION & PRINT
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  /* Show revealed content immediately in its final state */
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .callbar, .hero__art, .contact__form-wrap { display: none; }
  body { color: #000; background: #fff; }
  .hero { background: #fff; }
  .hero::before { display: none; }
  .hero__name, .hero__sub, .dealer-strip__list li { color: #000; }
}
