/* High Rollin Customs — Session 3: neutral grayscale + logo red */
:root {
  --black: #111111;
  --black-alt: #1a1a1a;
  --gray-dark: #2a2a2a;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --text-light: #f0f0f0;
  --text-dark: #1a1a1a;
  --text-muted: #9a9a9a;
  --accent: #be1e2d;
  --accent-deep: #961822;
  --border-dark: rgba(255, 255, 255, 0.1);
  --border-light: rgba(0, 0, 0, 0.08);
  --max-w: 1200px;
  --radius: 4px;
  --header-utility-h: 36px;
  --header-main-h: 80px;
  --header-h: calc(var(--header-utility-h) + var(--header-main-h));
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, sans-serif;
}

@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/bebas-neue.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/source-sans-3-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/source-sans-3-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/source-sans-3-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-light);
  background: var(--black);
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, .main-nav-list > li > a, .nav-dropdown-toggle {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  border-left: 3px solid var(--accent);
  padding-left: 0.85rem;
}
h2.heading-centered,
.cta-band h2,
.section-header--center h2 {
  border-left: none;
  padding-left: 0;
}
h3, .service-showcase-body h3, .pillar h3 {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 700;
  font-variant: small-caps;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  line-height: 1.3;
}

.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
}
.section-eyebrow--caps {
  font-variant: small-caps;
  letter-spacing: 0.0625rem;
  text-transform: lowercase;
}
@media (min-width: 768px) {
  .section-eyebrow,
  .section-eyebrow--caps {
    font-size: 1.0625rem;
    letter-spacing: 0.0625rem;
  }
}
.section-dark .section-eyebrow,
.section-dark .section-eyebrow--caps {
  color: #e83344;
}
.section-light .section-eyebrow,
.section-light .section-eyebrow--caps,
.section-alt .section-eyebrow,
.section-alt .section-eyebrow--caps {
  color: var(--accent);
}

.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 9999;
  background: var(--accent); color: #fff; padding: 0.5rem 1rem;
}
.skip-link:focus { top: 1rem; }

/* ── Header (two-tier, shrink-on-scroll) ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--black);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5); }

.header-utility {
  background: var(--black-alt);
  border-bottom: 1px solid var(--border-dark);
  height: var(--header-utility-h);
  transition: height 0.25s ease, opacity 0.25s ease;
}
.header-utility-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.header-social { display: flex; gap: 0.65rem; }
.header-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; color: var(--text-muted);
}
.header-social-link:hover { color: var(--accent); }
.header-social-link svg { width: 16px; height: 16px; }
.header-utility-links { display: flex; align-items: center; gap: 1.25rem; }
.header-utility-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--text-muted); text-transform: uppercase;
}
.header-utility-link svg { width: 14px; height: 14px; color: var(--accent); }
.header-utility-link:hover { color: var(--text-light); }

.header-main { height: var(--header-main-h); transition: height 0.25s ease; }
.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem;
  height: 100%; display: flex; align-items: center; gap: 1.25rem;
}
.logo { flex-shrink: 0; }
.logo-img {
  height: 52px; width: auto; object-fit: contain;
  transition: height 0.25s ease;
}
.site-header.scrolled .logo-img { height: 38px; }
.site-header.scrolled .header-main { height: 56px; }
.site-header.scrolled .header-utility {
  height: 0; opacity: 0; overflow: hidden; border: none;
}

.main-nav { margin-left: auto; }
.main-nav-list { display: flex; align-items: center; gap: 0.15rem; }
.main-nav-list > li > a,
.nav-dropdown-toggle {
  display: block; padding: 0.5rem 0.85rem;
  font-size: 0.95rem; background: none; border: none;
  color: var(--text-light); cursor: pointer;
}
.main-nav-list a:hover,
.nav-dropdown-toggle:hover { color: var(--accent); }
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: var(--gray-dark); border: 1px solid var(--border-dark);
  border-radius: var(--radius); padding: 0.5rem 0;
  opacity: 0; visibility: hidden; transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 0.55rem 1rem;
  font-family: var(--font-body); font-size: 0.9rem;
  letter-spacing: 0; text-transform: none;
}
.nav-dropdown-menu a:hover { background: var(--black-alt); color: var(--accent); }

.header-actions {
  display: flex; align-items: center; gap: 0.85rem; margin-left: 0.75rem;
}
.header-actions-divider {
  width: 1px; height: 28px; background: var(--border-dark);
}
.header-phone-mobile { display: none; color: var(--accent); }
.header-phone-mobile svg { width: 22px; height: 22px; }
.btn-header-quote {
  padding: 0.6rem 1.15rem; background: var(--accent); color: #fff;
  font-family: var(--font-display); font-size: 0.95rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--radius); white-space: nowrap;
}
.btn-header-quote:hover { background: var(--accent-deep); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.5rem; margin-left: auto;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-light); }
.mobile-utility { display: none; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.5rem; border-radius: var(--radius);
  font-family: var(--font-display); font-size: 0.95rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 2px solid transparent; cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ── Hero ── */
.hero {
  position: relative; min-height: clamp(380px, 72vh, 760px);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  margin-top: var(--header-h);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
@media (min-width: 768px) {
  .hero-bg img { object-position: 28% 42%; }
}
@media (max-width: 640px) {
  .hero { min-height: clamp(320px, 58vh, 520px); }
  .hero-bg img { object-position: center 38%; }
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(17,17,17,0.98) 0%, rgba(17,17,17,0.88) 28%, rgba(17,17,17,0.72) 52%, rgba(17,17,17,0.58) 100%),
    linear-gradient(to right, rgba(17,17,17,0.82) 0%, rgba(17,17,17,0.35) 55%, rgba(17,17,17,0.2) 100%);
}
@media (min-width: 768px) {
  .hero-bg::after {
    background:
      linear-gradient(to top, rgba(17,17,17,0.92) 0%, rgba(17,17,17,0.55) 35%, rgba(17,17,17,0.18) 62%, rgba(17,17,17,0.08) 100%),
      linear-gradient(to right, rgba(17,17,17,0.06) 0%, rgba(17,17,17,0.12) 38%, rgba(17,17,17,0.52) 58%, rgba(17,17,17,0.88) 100%);
  }
}
.hero-inner {
  position: relative; z-index: 1;
  flex: 0 1 var(--max-w);
  width: min(100%, var(--max-w));
  max-width: var(--max-w);
  margin: 0 auto; padding: 2rem 1.25rem;
  display: flex; align-items: center; min-height: inherit;
}
.hero-content { text-shadow: 0 2px 18px rgba(0,0,0,0.55); max-width: 640px; }
.hero-logo { max-width: 300px; margin-bottom: 1rem; }
@media (min-width: 768px) {
  .hero-inner { justify-content: flex-end; }
  .hero-content {
    flex: 0 1 min(640px, 48%);
    max-width: min(640px, 48%);
    margin-left: auto;
    text-align: right;
  }
  .hero-logo { margin-left: auto; }
  .hero-intro { margin-left: auto; }
  .hero-cta { justify-content: flex-end; }
}
@media (max-width: 767px) {
  .hero-content { text-align: left; }
  .hero-cta { justify-content: flex-start; }
}
.hero-eyebrow {
  display: block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.5rem;
}
.hero-intro { max-width: 52ch; margin-top: 1rem; color: var(--text-muted); font-size: 1.05rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

/* ── Sections (alternating light/dark) ── */
.section { padding: clamp(3rem, 6vw, 5rem) 1.25rem; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-dark { background: var(--black); color: var(--text-light); }
.section-dark h2, .section-dark h3 { color: var(--text-light); }
.section-dark .lead, .section-dark p { color: var(--text-muted); }
.section-light { background: var(--white); color: var(--text-dark); }
.section-light h2, .section-light h3 { color: var(--text-dark); }
.section-light .lead, .section-light p { color: #444; }
.section-alt { background: var(--off-white); color: var(--text-dark); }
.section-alt h2, .section-alt h3 { color: var(--text-dark); }
.section-alt .lead, .section-alt p { color: #444; }
.section-header { margin-bottom: 2rem; max-width: 640px; }
.lead { font-size: 1.1rem; max-width: 60ch; }

/* ── Service showcase cards (homepage) ── */
.service-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.service-showcase-card {
  display: flex; flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.service-showcase-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.service-showcase-media {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 4/3; border-bottom: 1px solid var(--border-light);
}
.service-showcase-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s;
}
.service-showcase-card:hover .service-showcase-media img { transform: scale(1.05); }
.service-showcase-label {
  position: absolute; inset: auto 0 0 0; padding: 1rem;
  background: linear-gradient(transparent, rgba(17,17,17,0.95));
  font-family: var(--font-display); font-size: 1.15rem;
  text-transform: uppercase; letter-spacing: 0.06em; color: #fff;
  pointer-events: none;
}
.service-showcase-body {
  padding: 1.25rem 1.35rem 1.35rem;
  border-top: 1px solid var(--border-light);
  background: var(--white);
}
.service-showcase-body h3 {
  color: var(--text-dark);
  margin-bottom: 0.65rem;
}
.service-showcase-body p {
  font-size: 0.95rem; color: #555; margin-bottom: 0.85rem;
}
.service-showcase-link {
  font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent);
}
.service-showcase-link:hover { color: var(--accent-deep); }

/* ── Pillars ── */
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.pillar h3 { color: var(--accent); margin-bottom: 0.5rem; }
.pillar p { color: var(--text-muted); }
.section-alt .pillar p { color: #555; }

/* ── CTA band ── */
.section-cta { border-top: 1px solid var(--border-dark); }
.section-light.section-cta { border-color: var(--border-light); }
.cta-band { text-align: center; max-width: 560px; margin: 0 auto; }
.cta-band p { color: var(--text-muted); margin: 1rem 0 1.5rem; }

/* ── Inner pages ── */
.page-hero {
  position: relative; margin-top: var(--header-h);
  padding: clamp(3rem, 8vw, 5rem) 1.25rem;
  background: var(--black-alt);
  border-bottom: 1px solid var(--border-dark);
  overflow: hidden;
}
.page-hero--photo { min-height: clamp(240px, 40vh, 420px); display: flex; align-items: flex-end; }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.92) 0%, rgba(17,17,17,0.55) 100%);
}
.page-hero .section-inner { position: relative; z-index: 1; max-width: var(--max-w); margin: 0 auto; }
.page-hero h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); border-left: none; padding-left: 0; }

.content-body h2 { margin: 2rem 0 0.75rem; }
.content-body p { margin-bottom: 1rem; }
.content-body ul { margin: 1rem 0 1.5rem 1.25rem; list-style: disc; }
.content-body li { margin-bottom: 0.35rem; }
.section-light .content-body a { color: var(--accent); font-weight: 600; }

.brand-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1rem; margin: 1.5rem 0;
}
.brand-grid img { max-height: 48px; width: auto; margin: 0 auto; filter: grayscale(100%); opacity: 0.85; }
.brand-grid img:hover { filter: none; opacity: 1; }

/* ── Forms ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  display: block; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 0.35rem; color: var(--text-muted);
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 0.65rem 0.85rem;
  background: var(--black); border: 1px solid var(--border-dark);
  border-radius: var(--radius); color: var(--text-light); font: inherit;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: 2px solid var(--accent); outline-offset: 1px;
}
.form-actions { margin-top: 1.25rem; }
.form-note { margin-top: 0.75rem; font-size: 0.9rem; color: var(--text-muted); }
.form-note a { color: var(--accent); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-msg { margin-top: 0.75rem; font-size: 0.95rem; }
.form-msg--error { color: #ff6b6b; }
.form-msg--success { color: #6bffb8; }

/* ── Map ── */
.map-section { padding: clamp(3rem, 6vw, 5rem) 1.25rem 0; background: var(--off-white); color: var(--text-dark); }
.map-section-intro { padding-bottom: 1.75rem; max-width: var(--max-w); margin: 0 auto; }
.map-section-intro h2 { color: var(--text-dark); }
.location-copy { max-width: 62ch; margin-top: 0.75rem; color: #444; }
.map-embed { position: relative; width: 100%; aspect-ratio: 21/9; min-height: 280px; background: var(--gray-dark); }
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ── Footer ── */
.site-footer { background: var(--black); }
.footer-main { padding: clamp(2.5rem, 5vw, 4rem) 1.25rem 2rem; border-top: 1px solid var(--border-dark); }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr 1.2fr 0.9fr; gap: 2rem;
  align-items: start;
}
.footer-col-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-brand-logo { max-width: 180px; margin-bottom: 1rem; }
.footer-brand-social {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0.75rem;
}
.footer-brand-social .footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--text-muted);
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer-brand-social .footer-social-link svg { width: 18px; height: 18px; }
.footer-brand-social .footer-social-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(190, 30, 45, 0.08);
}
.footer-shop address { font-style: normal; color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; }
.footer-shop a:hover { color: var(--accent); }
.footer-phone { font-weight: 700; font-size: 1.05rem; display: inline-block; margin: 0.25rem 0; }
.footer-hours { display: block; margin-top: 0.65rem; color: var(--text-muted); }
.footer-col h3 {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.85rem; border-left: 3px solid var(--accent); padding-left: 0.65rem;
}
.footer-col ul li { margin-bottom: 0.45rem; }
.footer-col a { color: var(--text-muted); font-size: 0.9rem; }
.footer-col a:hover { color: var(--accent); }
.footer-legal {
  background: var(--black-alt); border-top: 1px solid var(--border-dark);
  padding: 1rem 1.25rem;
}
.footer-legal-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem;
  font-size: 0.8rem; color: var(--text-muted);
}
.footer-staff-login { color: var(--text-muted); }
.footer-staff-login:hover { color: var(--accent); }

/* ── Trustindex band ── */
.reviews-ticker {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: clamp(2rem, 4vw, 3rem) 0;
  min-height: 300px;
}
.reviews-ticker-panel { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.trustindex-shell--fallback { color: var(--text-dark); }
#trustindex-ticker { min-height: 220px; }

/* ── Mobile bar ── */
.mobile-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
  background: var(--black-alt); border-top: 1px solid var(--border-dark);
}
.mobile-bar a {
  flex: 1; text-align: center; padding: 0.85rem;
  font-family: var(--font-display); font-size: 0.95rem;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.mobile-bar a:first-child { border-right: 1px solid var(--border-dark); }
.mobile-bar a:hover { background: var(--accent); color: #fff; }

.scroll-top {
  position: fixed; bottom: 5rem; right: 1rem; z-index: 90;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.scroll-top[hidden] { display: none; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .header-utility { display: none; }
  :root {
    --header-utility-h: 0px;
    --header-main-h: 64px;
  }
  .logo-img { height: 44px; }
  .site-header.scrolled .logo-img { height: 36px; }
  .main-nav { display: none; margin-left: 0; }
  .nav-toggle { display: flex; }
  .header-phone-mobile { display: flex; }
  .header-actions-divider { display: none; }
  .main-nav.is-open {
    display: block; position: fixed;
    top: var(--header-main-h); left: 0; right: 0; bottom: 0;
    background: var(--black); padding: 1rem 1.25rem 5rem;
    overflow-y: auto; z-index: 99;
  }
  .mobile-utility {
    display: flex; flex-direction: column; gap: 0.65rem;
    padding-bottom: 1rem; margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-dark);
  }
  .mobile-utility-link { font-size: 0.9rem; font-weight: 600; color: var(--text-muted); }
  .mobile-utility-social { display: flex; gap: 1rem; }
  .main-nav-list { flex-direction: column; align-items: stretch; }
  .nav-dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: transparent; padding-left: 0.5rem;
    display: none;
  }
  .nav-dropdown.is-open .nav-dropdown-menu { display: block; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-shop { order: 1; }
  .footer-col-services { order: 2; }
  .footer-col-company { order: 3; }
  .footer-col-brand { order: 4; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-shop { order: 1; }
  .footer-col-services { order: 2; }
  .footer-col-company { order: 3; }
  .footer-col-brand { order: 4; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 52px; }
  .map-embed { aspect-ratio: 4/3; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

@media (min-width: 1025px) {
  .main-nav { display: block; }
}

/* ── Service page components ── */
.service-page .section-dark { background: #141414; }
.service-page .section-light { background: #f5f5f5; }
.service-page .section-alt { background: #ebebeb; }

.service-page .sp-section { padding: clamp(3rem, 6vw, 5rem) 1.25rem; }
.service-page .sp-section > .section-inner { max-width: var(--max-w); margin: 0 auto; }

/* Heading spacing — gap between rule-headed titles and body copy */
.service-page .section-header h2,
.service-page .media-row__content > h2,
.service-page .sp-section > .section-inner > h2:not(.heading-centered) {
  margin-bottom: 1.25rem;
}
.service-page .section-header { margin-bottom: 2.25rem; }
.service-page h3,
.service-page .service-card__title,
.service-page .compare-card__title {
  margin-bottom: 0.75rem;
}
.service-page .media-row__body > p:first-child,
.service-page .service-card__desc + .check-list,
.service-page .compare-card__title + p {
  margin-top: 0;
}

/* Service-page type sizing (+1 step) */
.service-page .service-card__desc {
  font-size: 1.0625rem;
}
.service-page .check-list li,
.service-page .check-list--compact li {
  font-size: 1rem;
}
.service-page .section-eyebrow,
.service-page .section-eyebrow--caps,
.service-page .page-hero .section-eyebrow,
.service-page .sp-lead-band .section-eyebrow,
.service-page .sp-lead-band .section-eyebrow--caps {
  font-size: 1rem;
  letter-spacing: 0.0625rem;
}
@media (min-width: 768px) {
  .service-page .section-eyebrow,
  .service-page .section-eyebrow--caps,
  .service-page .page-hero .section-eyebrow,
  .service-page .sp-lead-band .section-eyebrow,
  .service-page .sp-lead-band .section-eyebrow--caps {
    font-size: 1.125rem;
    letter-spacing: 0.0625rem;
  }
}
.service-page .cta-band__actions .btn {
  font-size: 1.0625rem;
}

.sp-lead-band {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.sp-lead-band .section-eyebrow,
.sp-lead-band .section-eyebrow--caps {
  display: block;
  margin-bottom: 1rem;
  font-size: 1rem;
  letter-spacing: 0.0625rem;
}
@media (min-width: 768px) {
  .sp-lead-band .section-eyebrow,
  .sp-lead-band .section-eyebrow--caps {
    font-size: 1.0625rem;
  }
}
.sp-lead-band__text {
  font-size: clamp(1.0625rem, 2.2vw, 1.1875rem);
  line-height: 1.65;
  color: var(--text-muted);
}

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-cards-grid--5 {
  grid-template-columns: repeat(6, 1fr);
}
.service-cards-grid--4 {
  grid-template-columns: repeat(2, 1fr);
}
.service-cards-grid--5 .service-card:nth-child(1) { grid-column: 1 / 3; }
.service-cards-grid--5 .service-card:nth-child(2) { grid-column: 3 / 5; }
.service-cards-grid--5 .service-card:nth-child(3) { grid-column: 5 / 7; }
.service-cards-grid--5 .service-card:nth-child(4) { grid-column: 2 / 4; }
.service-cards-grid--5 .service-card:nth-child(5) { grid-column: 4 / 6; }

.service-card {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.35rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.section-dark .service-card {
  background: #1a1a1a;
  border-color: var(--border-dark);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.section-dark .service-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.service-card__icon {
  width: 2rem;
  height: 3px;
  background: var(--accent);
  margin-bottom: 1rem;
  border-radius: 1px;
}
.service-card__title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  font-variant: small-caps;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  line-height: 1.3;
  color: inherit;
}
.service-card__desc {
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 0.75rem;
  color: inherit;
}
.section-light .service-card__desc { color: #444; }
.section-dark .service-card__desc { color: var(--text-muted); }
.service-card .check-list { margin-top: 0; }
.check-list--compact { margin-top: 0.25rem; }
.check-list--compact li {
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
  padding-left: 1.35rem;
}
.check-list--compact li::before {
  top: 0.4rem;
  width: 0.45rem;
  height: 0.45rem;
}

.feature-band {
  position: relative;
  min-height: clamp(220px, 38vw, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.feature-band__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.feature-band__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-band__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(20, 20, 20, 0.55) 0%,
    rgba(20, 20, 20, 0.82) 100%
  );
}
.feature-band__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) 1.25rem;
  max-width: 720px;
}
.feature-band__headline {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  margin-bottom: 0;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}
.feature-band__caption {
  margin-top: 0.75rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
}

.sp-intro { max-width: 62ch; }
.sp-intro p { margin-bottom: 1rem; color: inherit; }
.sp-intro p:last-child { margin-bottom: 0; }
.section-light .sp-intro p { color: #444; }
.section-dark .sp-intro p { color: var(--text-muted); }
.sp-footnote { margin-top: 1.25rem; font-size: 0.95rem; color: var(--text-muted); }
.section-light .sp-footnote { color: #555; }
.sp-inline-link { font-weight: 700; color: var(--accent); letter-spacing: 0.04em; }
.sp-inline-link:hover { color: var(--accent-deep); }

.media-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center;
}
.media-row--55-45 {
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 1fr);
}
.media-row--img-right .media-row__media { order: 2; }
.media-row--img-right .media-row__content { order: 1; }
.media-row__media {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border-dark); aspect-ratio: 4/3;
}
.section-light .media-row__media { border-color: var(--border-light); }
.media-row__media img { width: 100%; height: 100%; object-fit: cover; }
.media-row__body p { margin-bottom: 1rem; }
.media-row__footer { margin-top: 0.5rem; }

.check-list { list-style: none; margin: 1rem 0 0; padding: 0; }
.check-list li {
  position: relative; padding-left: 1.65rem; margin-bottom: 0.55rem;
  color: inherit;
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 0.45rem;
  width: 0.55rem; height: 0.55rem;
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.check-list--two-col {
  columns: 2; column-gap: 2rem;
}
.check-list--two-col li { break-inside: avoid; }
.section-light .check-list li { color: #444; }

.app-grid {
  display: flex; flex-wrap: wrap; gap: 0.65rem;
}
.app-grid--after-intro {
  margin-top: 1.35rem;
}
.sp-intro--chip-lead {
  margin-bottom: 0;
}
.app-grid__chip {
  display: inline-flex; align-items: center;
  padding: 0.5rem 0.85rem; border-radius: 999px;
  border: 1px solid var(--border-light); background: var(--white);
  font-size: 1rem; font-weight: 600; color: var(--text-dark);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
a.app-grid__chip:hover { border-color: var(--accent); color: var(--accent); }
.section-dark .app-grid__chip {
  background: var(--gray-dark); border-color: var(--border-dark); color: var(--text-light);
}

.compare-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}
.compare-card {
  padding: 1.5rem; border-radius: var(--radius);
  border: 1px solid var(--border-light);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.section-dark .compare-card {
  background: var(--gray-dark); border-color: var(--border-dark);
  box-shadow: none;
}
.compare-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
}
.compare-card p { font-size: 0.95rem; color: #555; }
.section-dark .compare-card p { color: var(--text-muted); }

.steps-strip {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.steps-strip__item {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.65rem;
  padding: 1.25rem; border: 1px solid var(--border-dark);
  border-radius: var(--radius); background: var(--black-alt);
}
.section-light .steps-strip__item {
  background: var(--white); border-color: var(--border-light);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.steps-strip__num {
  display: flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-family: var(--font-display); font-size: 1.1rem;
}
.steps-strip__text { font-size: 0.92rem; line-height: 1.45; color: var(--text-muted); }
.section-light .steps-strip__text { color: #444; }

.faq-accordion { max-width: 760px; }
.faq-item {
  border: 1px solid var(--border-light); border-radius: var(--radius);
  background: var(--white); margin-bottom: 0.65rem; overflow: hidden;
}
.section-dark .faq-item {
  background: var(--gray-dark); border-color: var(--border-dark);
}
.faq-item summary {
  cursor: pointer; padding: 1rem 1.15rem;
  font-weight: 700; font-size: 0.95rem; list-style: none;
  color: var(--text-dark);
}
.section-dark .faq-item summary { color: var(--text-light); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; float: right; color: var(--accent); font-size: 1.2rem; line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item__answer {
  padding: 0 1.15rem 1rem; font-size: 0.95rem; color: #555;
  border-top: 1px solid var(--border-light);
}
.section-dark .faq-item__answer { color: var(--text-muted); border-color: var(--border-dark); }
.faq-item__answer p { margin: 0; }

.brand-strip {
  text-align: center;
}
.brand-strip__heading {
  font-family: var(--font-body); font-variant: small-caps;
  letter-spacing: 0.14em; text-transform: lowercase;
  color: var(--accent); margin-bottom: 1.25rem; font-size: 1rem;
}
.brand-strip__logos {
  display: flex; flex-wrap: wrap; gap: 2.5rem;
  align-items: center; justify-content: center;
}
.brand-strip__logo {
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
  min-width: min-content;
  line-height: 0;
}
.brand-strip__logo img {
  display: block;
  width: auto;
  height: auto;
  max-height: 52px;
  max-width: none;
  min-width: min-content;
  object-fit: contain;
  filter: grayscale(100%); opacity: 0.75;
  transition: filter 0.2s, opacity 0.2s;
}
@media (min-width: 768px) {
  .brand-strip__logo img { max-height: 72px; }
}
.brand-strip__logo:hover img { filter: none; opacity: 1; }

.cta-band--service { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-band--service .cta-band__copy { color: var(--text-muted); margin: 1rem 0 1.5rem; }
.cta-band__actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center;
}

.related-services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.service-showcase-card--compact .service-showcase-body p {
  font-size: 0.88rem; margin-bottom: 0.65rem;
}

@media (max-width: 900px) {
  .media-row { grid-template-columns: 1fr; }
  .media-row--img-right .media-row__media,
  .media-row--img-right .media-row__content { order: unset; }
  .compare-cards { grid-template-columns: 1fr; }
  .steps-strip { grid-template-columns: 1fr 1fr; }
  .check-list--two-col { columns: 1; }
  .related-services-grid { grid-template-columns: 1fr; }
  .service-cards-grid:not(.service-cards-grid--5) { grid-template-columns: repeat(2, 1fr); }
  .service-cards-grid--5 { grid-template-columns: repeat(2, 1fr); }
  .service-cards-grid--5 .service-card:nth-child(n) { grid-column: auto; }
}
@media (max-width: 640px) {
  .steps-strip { grid-template-columns: 1fr; }
  .service-cards-grid,
  .service-cards-grid--5,
  .service-cards-grid--5 .service-card:nth-child(n) { grid-template-columns: 1fr; grid-column: 1 / -1; }
}
