/* =================================================================
   TROLEC WINDING SERVICES - styles.css
   Style: Engineering-grade Industrial. High-contrast, bold, sturdy.
   Brand: Yellow #FFF100 · Ink #232112 · Paper #FEFEFE
   ================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand */
  --yellow: #FFF100;
  --yellow-deep: #E3D400;   /* hover/active for yellow surfaces */
  --yellow-soft: #FFF7A1;
  --ink: #232112;           /* primary dark surface / text */
  --ink-2: #2C2A19;         /* elevated dark surface */
  --ink-3: #3C3924;         /* lines / borders on dark */
  --paper: #FEFEFE;         /* light background */
  --paper-2: #F5F4EC;       /* alternate section background */
  --paper-3: #ECEADD;       /* deeper light surface */

  /* Text */
  --text: #232112;
  --muted: #54513C;         /* >=4.5:1 on paper */
  --on-dark: #FEFEFE;
  --on-dark-muted: rgba(255, 255, 255, .74);

  /* Lines */
  --border: #E4E1D2;
  --border-2: #D6D2C0;

  /* Effects */
  --r-sm: 4px;
  --r: 7px;
  --r-lg: 12px;
  --r-pill: 999px;
  --sh-1: 0 1px 2px rgba(35,33,18,.06), 0 1px 3px rgba(35,33,18,.07);
  --sh-2: 0 6px 16px rgba(35,33,18,.08), 0 2px 5px rgba(35,33,18,.05);
  --sh-3: 0 22px 48px -16px rgba(35,33,18,.28);
  --ring: 0 0 0 3px rgba(255,241,0,.55);

  /* Type */
  --font-display: 'Archivo', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-slab: 'Zilla Slab', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --header-h: 116px;

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

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }
table { border-collapse: collapse; width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--text);
}

.icon {
  width: 1.25em; height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
/* Filled glyphs */
#i-bolt, #i-star, #i-facebook, #i-quote { }
.review__stars .icon { fill: currentColor; stroke: none; }
.hero__chips .icon, .utility .icon { }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed;
  top: 8px; left: 8px;
  z-index: 2000;
  background: var(--yellow);
  color: var(--ink);
  padding: .7rem 1.1rem;
  border-radius: var(--r);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
  border-radius: 3px;
}
/* Yellow outline is invisible on yellow surfaces - use ink there */
.btn--primary:focus-visible,
.fab:focus-visible,
.utility a:focus-visible,
.utility button:focus-visible,
.social a:hover:focus-visible {
  outline-color: var(--ink);
}

.link {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--yellow-deep);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.link:hover { text-decoration-color: var(--ink); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}
.eyebrow--light { color: var(--on-dark-muted); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .8rem 1.35rem;
  border-radius: var(--r);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9375rem;
  letter-spacing: .01em;
  line-height: 1;
  border: 2px solid transparent;
  transition: transform .15s var(--ease), background-color .15s var(--ease),
              box-shadow .15s var(--ease), color .15s var(--ease);
  white-space: nowrap;
}
.btn .icon { width: 1.15em; height: 1.15em; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-2); }
.btn:active { transform: translateY(0); }

.btn--primary { --btn-bg: var(--yellow); --btn-fg: var(--ink); }
.btn--primary:hover { background: var(--yellow-deep); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--on-dark);
  border-color: var(--ink-3);
}
.btn--ghost:hover { background: rgba(255,255,255,.07); box-shadow: none; transform: translateY(-2px); }

.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--on-dark);
  border-color: rgba(255,255,255,.35);
}
.btn--outline:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.btn--lg { min-height: 56px; padding: 1rem 1.7rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* =================================================================
   HEADER
   ================================================================= */
/* The navbar itself is the sticky bar (see .navbar); the utility bar stays static. */

/* Utility bar (scrolls away naturally with the page; not sticky) */
.utility {
  background: var(--yellow);
  color: var(--ink);
  font-size: .875rem;
}
.utility__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 38px;
  padding-block: .35rem;
}
.utility__pitch { display: flex; align-items: center; gap: .5rem; font-weight: 500; }
.utility__pitch .icon { width: 1.05rem; height: 1.05rem; stroke-width: 2.4; }
.utility__right { display: flex; align-items: center; gap: 1.1rem; }
.utility__mail { display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; }
.utility__mail .icon { width: 1rem; height: 1rem; }
.utility__mail:hover { text-decoration: underline; text-underline-offset: 3px; }

.status { display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; }
.status__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--muted);
  box-shadow: 0 0 0 3px rgba(35,33,18,.12);
}
.status.is-open .status__dot { background: #178a3a; box-shadow: 0 0 0 3px rgba(23,138,58,.22); }
.status.is-closed .status__dot { background: #b4291f; box-shadow: 0 0 0 3px rgba(180,41,31,.2); }

/* Primary navbar - the ONLY sticky bar (the yellow utility bar scrolls away). */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid var(--ink-3);
  transition: box-shadow .2s var(--ease);
}
.navbar.is-scrolled { box-shadow: var(--sh-3); }
.navbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

/* Brand wordmark */
.brand { display: inline-flex; flex-direction: column; line-height: 1; gap: .18rem; }
.brand__mark {
  font-family: var(--font-slab);
  font-weight: 700;
  font-size: 1.65rem;
  letter-spacing: .04em;
  color: var(--paper);
  text-transform: uppercase;
  position: relative;
  padding-bottom: .18rem;
}
.brand__mark::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 4px;
  background: var(--yellow);
}
.brand__sub {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}

/* Primary nav */
.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav > a:not(.btn) {
  color: var(--on-dark-muted);
  font-weight: 600;
  font-size: .9375rem;
  padding: .4rem 0;
  position: relative;
  transition: color .15s var(--ease);
}
.nav > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--yellow);
  transition: width .2s var(--ease);
}
.nav > a:not(.btn):hover, .nav > a:not(.btn):focus-visible { color: var(--paper); }
.nav > a:not(.btn):hover::after { width: 100%; }
.nav__cta { display: none; }
.nav__close { display: none; }

.navbar__actions { display: flex; align-items: center; gap: .7rem; }
.btn--icon-text { padding-inline: 1rem; }
.navbar__quote { display: none; }

.nav-toggle {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 48px; height: 48px;
  color: var(--paper);
  border: 2px solid var(--ink-3);
  border-radius: var(--r);
}
.nav-toggle .icon { width: 1.5rem; height: 1.5rem; }
.nav-toggle:hover { background: rgba(255,255,255,.06); }

.nav-scrim {
  position: fixed; inset: 0;
  background: rgba(20,19,10,.55);
  z-index: 90;
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.nav-scrim.is-open { opacity: 1; }

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--on-dark);
  isolation: isolate;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(35,33,18,.74) 0%, rgba(35,33,18,.66) 45%, rgba(35,33,18,.92) 100%),
    radial-gradient(120% 90% at 80% 10%, rgba(255,241,0,.10), transparent 55%);
}
.hero__inner {
  padding-top: clamp(3.2rem, 8vw, 6rem);
  padding-bottom: clamp(3.2rem, 8vw, 6rem);
}
/* Constrained text column, aligned to the container's left edge (matches navbar/logo) */
.hero__content { max-width: 800px; }
.hero__title {
  font-size: clamp(2.45rem, 6.4vw, 4.6rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--paper);
  text-transform: none;
}
.hero__title .hl {
  color: var(--yellow);
  position: relative;
}
.hero__lead {
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.6;
  color: var(--on-dark-muted);
  max-width: 60ch;
}
.hero__cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}
.hero__chips {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,.16);
}
.hero__chips li {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 600;
  font-size: .9375rem;
  color: var(--paper);
}
.hero__chips .icon { color: var(--yellow); width: 1.25rem; height: 1.25rem; }

/* =================================================================
   CREDENTIALS BAND (yellow, icon-led) - replaces the old dark stats strip
   ================================================================= */
.creds { background: var(--yellow); color: var(--ink); }
.creds__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* No side padding here: each cell's own padding sets even spacing to every
     border/divider, so all blocks are inset identically. */
  padding-inline: 0;
  /* Two outer borders (left + right) framing the row, matching the inner dividers */
  box-shadow: inset 1px 0 0 rgba(35, 33, 18, .16), inset -1px 0 0 rgba(35, 33, 18, .16);
}
.cred {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 1.5rem var(--gutter);
}
.cred__icon {
  flex: none;
  width: 54px; height: 54px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink);
  color: var(--yellow);
  border-radius: var(--r);
}
.cred__icon .icon { width: 1.7rem; height: 1.7rem; stroke-width: 2.2; }
.cred__body { display: flex; flex-direction: column; min-width: 0; }
.cred__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.7rem, 3.6vw, 2.3rem);
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.cred__unit { font-size: .5em; margin-left: .18em; font-weight: 800; opacity: .68; }
.cred__label { margin-top: .35rem; font-size: .875rem; font-weight: 500; line-height: 1.3; color: rgba(35, 33, 18, .82); }

/* =================================================================
   SECTIONS (generic)
   ================================================================= */
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.6rem, 5vw, 4rem); }
.section--alt { background: var(--paper-2); }
.section--dark { background: var(--ink); color: var(--on-dark); }

.section__head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section__title { font-size: clamp(1.75rem, 3.6vw, 2.7rem); }
.section__title--light { color: var(--paper); }
.section__intro {
  margin-top: 1rem;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  color: var(--muted);
  max-width: 62ch;
}
.section--dark .section__intro { color: var(--on-dark-muted); }
.section__foot { margin-top: 2rem; font-size: 1.05rem; color: var(--muted); }

/* =================================================================
   CARDS (services)
   ================================================================= */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
.card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.7rem;
  box-shadow: var(--sh-1);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0;
  width: 100%; height: 4px;
  background: var(--yellow);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-3); border-color: var(--border-2); }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 54px; height: 54px;
  border-radius: var(--r);
  background: var(--ink);
  color: var(--yellow);
  margin-bottom: 1.1rem;
}
.card__icon .icon { width: 1.6rem; height: 1.6rem; }
.card__title { font-size: 1.125rem; margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .9375rem; }

/* =================================================================
   WHY (split)
   ================================================================= */
.why { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.features { margin-top: 1.8rem; display: grid; gap: 1.4rem; }
.features li { display: flex; gap: 1rem; }
.features__icon {
  flex: none;
  width: 50px; height: 50px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--yellow);
  color: var(--ink);
  border-radius: var(--r);
}
.features__icon .icon { width: 1.5rem; height: 1.5rem; stroke-width: 2.2; }
.features h3 { font-size: 1.125rem; margin-bottom: .25rem; }
.features p { color: var(--muted); font-size: .9375rem; }

.why__media { position: relative; }
.why__media img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
  aspect-ratio: 5 / 6;
  object-fit: cover;
}
.why__badge {
  position: absolute;
  left: 1rem; bottom: 1rem;
  display: flex; align-items: center; gap: .7rem;
  background: var(--ink);
  color: var(--paper);
  padding: .8rem 1.1rem;
  border-radius: var(--r);
  box-shadow: var(--sh-2);
  border-left: 4px solid var(--yellow);
  font-size: .875rem; line-height: 1.25;
}
.why__badge .icon { color: var(--yellow); width: 1.5rem; height: 1.5rem; }
.why__badge strong { font-family: var(--font-display); font-size: 1rem; }

/* =================================================================
   STEPS (process)
   ================================================================= */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  box-shadow: var(--sh-1);
}
.step__head { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.step__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: var(--r);
  background: var(--ink);
  color: var(--yellow);
  flex: none;
}
.step__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  line-height: 1;
  color: rgba(35, 33, 18, .26);
  font-variant-numeric: tabular-nums;
}
.step__icon .icon { width: 1.45rem; height: 1.45rem; }
.step h3 { font-size: 1.125rem; margin-bottom: .35rem; }
.step p { color: var(--muted); font-size: .9375rem; }

/* =================================================================
   ABOUT (dark split)
   ================================================================= */
.about { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: stretch; }
.about__media { display: flex; }
.about__media img {
  width: 100%; border-radius: var(--r-lg);
  aspect-ratio: 4 / 5; object-fit: cover;
  box-shadow: var(--sh-3);
  border: 1px solid var(--ink-3);
}
.about__lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--paper); font-weight: 500; }
.about__body { margin-top: 1rem; color: var(--on-dark-muted); }
.about__list {
  margin: 1.6rem 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}
.about__list li { display: flex; align-items: center; gap: .6rem; font-weight: 600; color: var(--paper); font-size: .9375rem; }
.about__list .icon { color: var(--yellow); width: 1.2rem; height: 1.2rem; flex: none; }

/* =================================================================
   INDUSTRIES
   ================================================================= */
.industries {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem;
}
.industries li {
  display: flex; align-items: center; gap: .7rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: .85rem 1rem;
  font-weight: 600;
  font-size: .9375rem;
  line-height: 1.2;
}
.industries .icon { color: var(--ink); background: var(--yellow); padding: .35rem; width: 2rem; height: 2rem; border-radius: 6px; stroke-width: 2.2; }

/* =================================================================
   REVIEWS
   ================================================================= */
.cards--3 { gap: 1.1rem; }
.review {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.7rem;
  box-shadow: var(--sh-1);
}
.review__stars { display: inline-flex; gap: .15rem; color: var(--yellow-deep); margin-bottom: .9rem; }
.review__stars .icon { width: 1.15rem; height: 1.15rem; }
.review blockquote { font-size: 1.05rem; line-height: 1.55; color: var(--text); font-weight: 500; }
.review figcaption { margin-top: 1rem; font-weight: 700; font-size: .9375rem; }
.review figcaption span { color: var(--muted); font-weight: 500; }

/* Google rating - fractional stars (used on dark surfaces) */
.grating { position: relative; display: inline-flex; line-height: 0; }
.grating__row { display: inline-flex; gap: .12em; white-space: nowrap; }
.grating__row .icon { fill: currentColor; stroke: none; width: 1.5rem; height: 1.5rem; }
.grating__row--base { color: rgba(255, 255, 255, .26); }
.grating__row--fill { position: absolute; top: 0; left: 0; overflow: hidden; color: var(--yellow); }
.grating--sm .grating__row .icon { width: 1.05rem; height: 1.05rem; }

.hero__rating { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; margin-top: 1.5rem; }
.hero__rating-text { color: var(--paper); font-weight: 600; font-size: .9375rem; }
.hero__rating-text strong { font-family: var(--font-display); font-weight: 800; color: var(--yellow); font-size: 1.05rem; }

.rating-summary {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.1rem 2rem;
  background: var(--ink);
  color: var(--on-dark);
  border-left: 5px solid var(--yellow);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.8rem;
  margin-bottom: 2rem;
  box-shadow: var(--sh-2);
}
.rating-summary__score { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.rating-summary__num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 3.1rem; line-height: 1; color: var(--yellow);
  font-variant-numeric: tabular-nums;
}
.rating-summary__meta { color: var(--on-dark-muted); font-weight: 600; }

/* =================================================================
   CTA BAND
   ================================================================= */
.cta-band {
  position: relative;
  background: var(--ink);
  color: var(--on-dark);
  isolation: isolate;
  overflow: hidden;
  text-align: center;
}
.cta-band__media { position: absolute; inset: 0; z-index: -1; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.cta-band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(35,33,18,.82), rgba(35,33,18,.92));
}
.cta-band__inner { padding-block: clamp(3rem, 7vw, 5rem); max-width: 760px; }
.cta-band .eyebrow { justify-content: center; }
.cta-band__title { font-size: clamp(1.8rem, 4vw, 3rem); color: var(--paper); }
.cta-band__lead { margin-top: .9rem; font-size: 1.15rem; color: var(--on-dark-muted); }
.cta-band__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

/* =================================================================
   CONTACT
   ================================================================= */
.contact { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3rem); }

/* Form */
.form { margin-top: 1.6rem; display: grid; gap: 1.1rem; }
.form__row { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-weight: 600; font-size: .9375rem; }
.req { color: #b4291f; }
.field input, .field select, .field textarea {
  min-height: 48px;
  padding: .7rem .9rem;
  background: var(--paper);
  border: 1.5px solid var(--border-2);
  border-radius: var(--r);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
  width: 100%;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: var(--ring);
}
.field input::placeholder, .field textarea::placeholder { color: #9a9683; }
.field.has-error input, .field.has-error textarea, .field.has-error select { border-color: #b4291f; }
.field__error { color: #97241b; font-size: .875rem; font-weight: 600; display: flex; align-items: center; gap: .3rem; }

.form__status {
  padding: .9rem 1.1rem;
  border-radius: var(--r);
  font-weight: 600;
  border: 1.5px solid transparent;
}
.form__status.is-success { background: #eaf6ee; color: #14692f; border-color: #bfe3cb; }
.form__status.is-error { background: #fdecea; color: #97241b; border-color: #f3c5bf; }
.form__note { font-size: .875rem; color: var(--muted); }

/* Info card */
.contact__info { display: grid; gap: 1.2rem; align-content: start; }
.info-card {
  background: var(--ink);
  color: var(--on-dark);
  border-radius: var(--r-lg);
  padding: 1.8rem;
  border-top: 5px solid var(--yellow);
}
.info-card__title { color: var(--paper); font-size: 1.3rem; margin-bottom: 1.1rem; }
.info-list { display: grid; gap: 1rem; margin-bottom: 1.6rem; }
.info-list li { display: flex; gap: .8rem; align-items: flex-start; }
.info-list .icon { color: var(--yellow); width: 1.35rem; height: 1.35rem; margin-top: .15rem; flex: none; }
.info-list span { color: var(--paper); line-height: 1.4; }
.info-list a { font-weight: 700; }
.info-list a:hover { text-decoration: underline; text-underline-offset: 3px; }
.info-list small { display: block; color: var(--on-dark-muted); font-weight: 400; font-size: .875rem; margin-top: .1rem; }

.hours { border-top: 1px solid var(--ink-3); padding-top: 1.2rem; }
.hours__head { display: flex; align-items: center; gap: .5rem; color: var(--paper); font-size: 1rem; margin-bottom: .7rem; }
.hours__head .icon { color: var(--yellow); width: 1.15rem; height: 1.15rem; }
.hours__table th, .hours__table td { padding: .35rem 0; font-size: .875rem; text-align: left; color: var(--on-dark-muted); font-weight: 500; }
.hours__table td { text-align: right; color: var(--paper); }
.hours__table tr.is-today th, .hours__table tr.is-today td { color: var(--yellow); font-weight: 700; }
.hours__note { display: flex; align-items: center; gap: .45rem; margin-top: .9rem; font-size: .875rem; color: var(--on-dark-muted); }
.hours__note .icon { color: var(--yellow); width: 1.05rem; height: 1.05rem; }

.social { display: flex; gap: .6rem; margin-top: 1.4rem; }
.social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--r);
  background: var(--ink-2);
  color: var(--paper);
  border: 1px solid var(--ink-3);
  transition: background-color .15s var(--ease), color .15s var(--ease), transform .15s var(--ease);
}
.social a:hover { background: var(--yellow); color: var(--ink); transform: translateY(-2px); }

.map { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--sh-1); }
.map iframe { width: 100%; height: 280px; border: 0; }

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer { background: var(--ink); color: var(--on-dark-muted); }
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  padding-block: clamp(2.6rem, 5vw, 4rem);
}
.brand--footer .brand__mark { font-size: 1.5rem; }
.footer__tagline { margin-top: 1rem; max-width: 38ch; font-size: .9375rem; }
.footer__col h3 { color: var(--paper); font-size: .875rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; font-weight: 700; }
.footer__col a, .footer__contact p { display: flex; align-items: center; gap: .5rem; color: var(--on-dark-muted); padding: .3rem 0; font-size: .9375rem; transition: color .15s var(--ease); }
.footer__col a:hover { color: var(--yellow); }
.footer__col .icon { width: 1.05rem; height: 1.05rem; color: var(--yellow); flex: none; }
.footer__contact p { align-items: flex-start; }
.footer__hours { color: var(--on-dark-muted); }
.social--footer { margin-top: 1.3rem; }

.footer__bar { border-top: 1px solid var(--ink-3); }
.footer__bar-row {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
  justify-content: space-between; align-items: center;
  padding-block: 1.3rem;
  font-size: .875rem;
}
.footer__credit a { color: var(--paper); font-weight: 600; }
.footer__credit a:hover { color: var(--yellow); }

/* =================================================================
   FAB (mobile call button)
   ================================================================= */
.fab {
  position: fixed;
  right: 16px; bottom: 16px;
  z-index: 80;
  display: none;
  align-items: center; gap: .5rem;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  padding: .85rem 1.2rem;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-3);
  transform: translateY(120%);
  transition: transform .3s var(--ease);
  min-height: 52px;
}
.fab .icon { width: 1.3rem; height: 1.3rem; }
.fab.is-visible { transform: translateY(0); }

/* =================================================================
   REVEAL ANIMATION
   ================================================================= */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (min-width: 600px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .cards--3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .form__row { grid-template-columns: 1fr 1fr; }
  .industries { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .creds__grid { grid-template-columns: repeat(4, 1fr); }
  .creds__grid .cred + .cred { box-shadow: inset 1px 0 0 rgba(35, 33, 18, .16); }
}

@media (min-width: 920px) {
  .navbar__quote { display: inline-flex; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .cards--3 { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .why { grid-template-columns: 1.05fr .95fr; }
  .about { grid-template-columns: .95fr 1.05fr; }
  .about__media img { aspect-ratio: auto; height: 100%; }
  .contact { grid-template-columns: 1.1fr .9fr; }
  .industries { grid-template-columns: repeat(6, 1fr); }
  .footer__grid { grid-template-columns: 1.8fr 1fr 1fr 1.4fr; }
}

/* ----- Desktop nav vs mobile drawer ----- */
@media (max-width: 919px) {
  .nav {
    position: fixed;
    top: 0; right: 0;
    z-index: 200;
    height: 100dvh;
    width: min(85vw, 340px);
    flex-direction: column;
    align-items: stretch;
    gap: .3rem;
    padding: 5rem 1.6rem 2rem;
    background: var(--ink-2);
    border-left: 4px solid var(--yellow);
    box-shadow: var(--sh-3);
    transform: translateX(100%);
    transition: transform .3s var(--ease);
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav > a:not(.btn) {
    color: var(--paper);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    padding: .9rem 0;
    border-bottom: 1px solid var(--ink-3);
  }
  .nav > a:not(.btn)::after { display: none; }
  .nav__cta { display: inline-flex; margin-top: 1.2rem; }
  .nav__close {
    display: inline-flex;
    position: absolute; top: 1rem; right: 1rem;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    color: var(--paper);
    border: 2px solid var(--ink-3);
    border-radius: var(--r);
  }
  .nav__close .icon { width: 1.4rem; height: 1.4rem; }
}

@media (min-width: 920px) {
  .nav-toggle { display: none; }
}

/* Compact the utility/nav bars on small screens; surface the call FAB */
@media (max-width: 540px) {
  .navbar__phone-text { display: none; }
  .btn--icon-text { padding-inline: 0; width: 48px; }
  .utility__pitch, .status { display: none; }   /* status still shown in Contact > hours */
  .utility__row { justify-content: flex-end; }
  .fab { display: inline-flex; }
}

@media (max-width: 380px) {
  .hero__cta .btn { width: 100%; }
}

/* =================================================================
   MOTION PREFERENCES
   ================================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js [data-reveal], [data-reveal] { opacity: 1 !important; transform: none !important; }
  .btn:hover, .card:hover, .social a:hover { transform: none; }
}

/* Print: keep it lean */
@media print {
  .utility, .navbar, .fab, .map, .nav-scrim, .cta-band__media { display: none; }
  .hero { color: #000; }
}
