/* ============================================================
   FoCo Fresh Detail — spec preview
   Design system
   ============================================================ */
:root {
  /* brand */
  --ink:        #0b1826;   /* deep navy-black */
  --ink-2:      #0f1f33;
  --steel:      #1f4e6b;
  --accent:     #31c6d4;   /* fresh cyan */
  --accent-deep:#199faa;

  /* neutrals */
  --paper:      #f6f7f5;   /* warm off-white */
  --paper-2:    #eceef0;
  --line:       #dfe3e6;
  --muted:      #5c6b76;
  --muted-light:#9fb1bd;
  --white:      #ffffff;

  /* type */
  --serif: "Iowan Old Style", "Charter", "Cambria", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans:  ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* fluid type scale */
  --step--1: clamp(0.83rem, 0.79rem + 0.18vw, 0.92rem);
  --step-0:  clamp(1rem, 0.95rem + 0.25vw, 1.13rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  --step-2:  clamp(1.5rem, 1.3rem + 1vw, 2.1rem);
  --step-3:  clamp(2rem, 1.6rem + 2vw, 3.1rem);
  --step-4:  clamp(2.6rem, 1.9rem + 3.4vw, 4.6rem);

  /* space */
  --gutter: clamp(1.5rem, 1rem + 3vw, 5rem);
  --section-y: clamp(4rem, 3rem + 5vw, 7rem);
  --maxw: 1240px;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px -28px rgba(11, 24, 38, 0.45);
  --shadow-sm: 0 12px 30px -18px rgba(11, 24, 38, 0.4);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.12; letter-spacing: -0.01em; }
ul { list-style: none; padding: 0; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--ink); color: var(--white);
  padding: 10px 16px; border-radius: 8px; z-index: 200;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: var(--step--1);
  font-weight: 700;
  color: var(--steel);
  margin-bottom: 1rem;
}
.section-title { font-size: var(--step-3); max-width: 20ch; }
.section-title.light { color: var(--white); }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 650;
  font-size: var(--step-0);
  line-height: 1;
  padding: 0.95em 1.6em;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(-1px); }

.btn-accent { --btn-bg: var(--accent); --btn-fg: var(--ink); }
.btn-accent:hover { background: var(--accent-deep); color: var(--white); }

.btn-ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  border-color: color-mix(in srgb, var(--ink) 25%, transparent);
}
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.btn-ghost.light {
  --btn-fg: var(--white);
  border-color: rgba(255,255,255,0.55);
  background: rgba(8,18,30,0.32);
  backdrop-filter: blur(6px);
}
.btn-ghost.light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.85rem;
}
.brand { min-width: 0; }
.site-header.scrolled {
  background: color-mix(in srgb, var(--ink) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px -20px rgba(0,0,0,0.6);
}
.brand { display: inline-flex; align-items: center; gap: 0.65rem; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 10px; object-fit: contain;
  background: var(--white); padding: 4px;
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: -0.01em;
}
.site-nav { display: flex; gap: 2rem; margin-left: auto; }
.site-nav a {
  color: rgba(255,255,255,0.82);
  font-weight: 550;
  font-size: var(--step--1);
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.site-nav a:hover { color: var(--white); }
.site-nav a:hover::after { transform: scaleX(1); }

.btn-phone {
  display: inline-flex; flex-direction: column; align-items: flex-start;
  gap: 0.1rem; padding: 0.5rem 1.2rem; border-radius: 12px;
  background: var(--accent); color: var(--ink);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn-phone:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-phone-label {
  text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.6rem; font-weight: 700; opacity: 0.75;
}
.btn-phone-num { font-weight: 750; font-size: 0.95rem; letter-spacing: 0.01em; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: min(100svh, 860px);
  display: flex;
  align-items: flex-end;
  padding-top: clamp(7rem, 12vh, 10rem);
  padding-bottom: var(--section-y);
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-img {
  width: 100%; height: 100%; object-fit: cover; object-position: 70% 42%;
  transform: scale(1.08);
  animation: heroZoom 16s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    /* directional wash: strong behind the copy, feathers off to reveal the car */
    linear-gradient(94deg, rgba(6,14,24,0.92) 0%, rgba(6,14,24,0.78) 24%, rgba(8,18,30,0.46) 50%, rgba(8,18,30,0.14) 76%, rgba(8,18,30,0) 100%),
    /* vertical: top scrim carries the nav, bottom vignette anchors the copy + strip seam */
    linear-gradient(180deg, rgba(6,14,24,0.7) 0%, rgba(6,14,24,0.14) 16%, rgba(6,14,24,0) 40%, rgba(6,14,24,0.5) 80%, rgba(5,12,21,0.96) 100%);
}
.hero-glow {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(70% 55% at 12% 62%, color-mix(in srgb, var(--accent) 16%, transparent) 0%, transparent 62%);
  mix-blend-mode: screen;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(1.5rem, 4vw, 4rem);
  width: 100%;
}
.hero-copy { max-width: 42rem; }
.hero .eyebrow { color: var(--accent); text-shadow: 0 1px 3px rgba(6,14,24,0.95), 0 2px 18px rgba(6,14,24,0.85); }
.hero-title {
  font-size: clamp(2.65rem, 1.7rem + 5.4vw, 6rem);
  line-height: 1.02;
  max-width: 15ch;
  text-wrap: balance;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 34px rgba(6,14,24,0.6);
}
.hero-lede {
  font-size: var(--step-1);
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  max-width: 44ch;
  margin-bottom: 2rem;
  text-shadow: 0 1px 18px rgba(6,14,24,0.7);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 0.55rem 0.65rem;
  margin-top: 1.7rem;
}
.hero-meta span {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: var(--step--1); font-weight: 600;
  color: rgba(255,255,255,0.92);
  background: rgba(8,18,30,0.4);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 0.42rem 0.85rem; border-radius: 999px;
  backdrop-filter: blur(6px);
}
.hero-meta span::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 25%, transparent);
}

.hero-card {
  background: color-mix(in srgb, var(--ink) 78%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 1.6rem 1.7rem;
  max-width: 17rem;
  box-shadow: var(--shadow);
}
.hero-card-badge {
  display: inline-block;
  text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.62rem; font-weight: 700; color: var(--accent);
  border: 1px solid rgba(49,198,212,0.4);
  padding: 0.3rem 0.6rem; border-radius: 999px;
  margin-bottom: 1rem;
}
.hero-card-figure {
  font-family: var(--serif); font-size: clamp(2.4rem, 2rem + 2vw, 3.2rem);
  line-height: 1; color: var(--white); margin-bottom: 0.5rem;
}
.hero-card-text { color: rgba(255,255,255,0.82); font-size: var(--step--1); line-height: 1.5; }

/* ============================================================
   STRIP
   ============================================================ */
.strip {
  background: var(--ink); color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-block: clamp(1.15rem, 2.4vw, 1.7rem);
  overflow: hidden;
}
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee-track {
  display: flex; width: max-content;
  gap: clamp(1rem, 2.4vw, 2.2rem);
  animation: marquee 34s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group {
  display: flex; align-items: center; flex: none;
  gap: clamp(1rem, 2.4vw, 2.2rem);
  padding: 0; margin: 0;
}
.marquee-group li {
  font-family: var(--serif); font-size: var(--step-1);
  color: rgba(255,255,255,0.82); white-space: nowrap; letter-spacing: 0.005em;
}
.marquee-group li.dot {
  width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent);
}
@keyframes marquee { to { transform: translateX(calc(-50% - clamp(0.5rem, 1.2vw, 1.1rem))); } }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-y);
  background: linear-gradient(180deg, var(--white) 0%, var(--paper) 55%, var(--paper-2) 100%);
}
.about::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  right: -14%; top: -22%; width: 44rem; height: 44rem;
  background: radial-gradient(circle at center, color-mix(in srgb, var(--accent) 12%, transparent) 0%, transparent 62%);
}
.about::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--steel) 30%, transparent), transparent);
}
.about-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about-media { position: relative; }
.about-img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.about-stat {
  position: absolute;
  right: clamp(-0.5rem, -1vw, -1.5rem);
  bottom: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--accent);
  color: var(--ink);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
  box-shadow: var(--shadow);
  display: flex; align-items: baseline; gap: 0.6rem;
  max-width: 15rem;
}
.about-stat-num { font-family: var(--serif); font-size: clamp(2.4rem, 2rem + 1.5vw, 3rem); line-height: 1; }
.about-stat-label { font-size: 0.78rem; font-weight: 650; line-height: 1.3; }

.about-copy .section-title { margin-bottom: 1.5rem; max-width: 24ch; }
.about-copy p { color: var(--muted); margin-bottom: 1.1rem; max-width: 52ch; }
.about-list { margin-top: 1.6rem; display: grid; gap: 0.7rem; }
.about-list li {
  position: relative; padding-left: 1.9rem;
  font-weight: 600; color: var(--ink);
}
.about-list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 0.85rem; height: 0.85rem; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 22%, transparent);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  position: relative;
  padding-block: var(--section-y);
  background:
    radial-gradient(90% 60% at 80% -10%, color-mix(in srgb, var(--steel) 34%, var(--ink)) 0%, var(--ink) 55%),
    var(--ink);
  color: var(--white);
}
.services::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(49,198,212,0.5), transparent);
}
.services-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.services .eyebrow { color: var(--accent); }
.services .section-title { color: var(--white); max-width: 22ch; }
.services-intro { color: rgba(255,255,255,0.72); margin-top: 1.2rem; max-width: 52ch; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 1.6vw, 1.4rem);
}
.service-card {
  position: relative;
  background: color-mix(in srgb, var(--white) 5%, transparent);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 2.5vw, 2.2rem);
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
  overflow: hidden;
}
.service-card::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--accent);
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.45s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(49,198,212,0.5);
  background: color-mix(in srgb, var(--white) 8%, transparent);
}
.service-card:hover::after { transform: scaleY(1); }
.service-card.feature {
  grid-column: span 1;
  background:
    radial-gradient(120% 140% at 0% 0%, color-mix(in srgb, var(--accent) 30%, var(--ink-2)) 0%, transparent 55%),
    linear-gradient(150deg, var(--ink-2) 0%, color-mix(in srgb, var(--steel) 40%, var(--ink-2)) 100%);
  border-color: rgba(49,198,212,0.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 20px 50px -30px rgba(49,198,212,0.5);
}
.service-card.feature::after { transform: scaleY(1); }
.service-num {
  font-family: var(--serif); font-size: 1.05rem;
  color: var(--accent); letter-spacing: 0.05em; margin-bottom: 1.4rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: block; width: 2.4rem;
}
.service-card h3 { font-size: var(--step-2); margin-bottom: 0.7rem; color: var(--white); }
.service-card p { color: rgba(255,255,255,0.72); font-size: var(--step-0); line-height: 1.55; }

/* ============================================================
   SHOWCASE (full-bleed proof band)
   ============================================================ */
.showcase {
  position: relative;
  isolation: isolate;
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(30rem, 62vh, 44rem);
  padding-block: clamp(4rem, 3rem + 5vw, 7rem);
}
.showcase-media { position: absolute; inset: 0; z-index: -2; }
.showcase-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 60% 55%;
}
.showcase-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(97deg, rgba(7,16,26,0.93) 0%, rgba(7,16,26,0.78) 34%, rgba(9,20,32,0.35) 66%, rgba(9,20,32,0.1) 90%),
    linear-gradient(180deg, rgba(7,16,26,0.4) 0%, rgba(7,16,26,0) 40%, rgba(7,16,26,0.55) 100%);
}
.showcase-inner {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(2rem, 5vw, 4rem);
}
.showcase-copy { max-width: 38rem; }
.showcase .eyebrow { color: var(--accent); }
.showcase .section-title { max-width: 18ch; }
.showcase-lede {
  margin-top: 1.3rem;
  color: rgba(255,255,255,0.86);
  font-size: var(--step-0);
  line-height: 1.6;
  max-width: 50ch;
}
.showcase-brand {
  display: flex; flex-direction: column; gap: 0.9rem;
  padding: 1.4rem 1.6rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--ink) 62%, transparent);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  max-width: 15rem;
}
.showcase-brand-label {
  text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.62rem; font-weight: 700; color: var(--accent);
}
.showcase-brand-mark { width: 100%; max-width: 11rem; height: auto; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding-block: var(--section-y);
  background:
    radial-gradient(120% 120% at 85% 0%, color-mix(in srgb, var(--steel) 55%, var(--ink)) 0%, var(--ink) 55%);
  color: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.contact-copy p { color: rgba(255,255,255,0.78); margin: 1.2rem 0 2rem; max-width: 46ch; }
.contact-copy .section-title { margin-top: 1rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.contact-card {
  background: color-mix(in srgb, var(--white) 6%, transparent);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: grid; gap: 1.5rem;
  backdrop-filter: blur(6px);
}
.contact-row { display: grid; gap: 0.4rem; }
.contact-label {
  text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.62rem; font-weight: 700; color: var(--accent);
}
.contact-row p { color: rgba(255,255,255,0.9); line-height: 1.5; }
.contact-row a:hover { color: var(--accent); }
.hours { display: grid; gap: 0.5rem; }
.hours li {
  display: flex; justify-content: space-between; gap: 1rem;
  color: rgba(255,255,255,0.85); font-size: var(--step--1);
  border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 0.5rem;
}
.hours li:last-child { border-bottom: none; padding-bottom: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink-2);
  color: rgba(255,255,255,0.8);
  padding-block: clamp(2.5rem, 4vw, 3.5rem);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-inner {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 2rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.9rem; }
.footer-name { font-family: var(--serif); font-size: 1.25rem; color: var(--white); }
.footer-tag { font-size: var(--step--1); color: rgba(255,255,255,0.6); }
.footer-meta { text-align: right; font-size: var(--step--1); line-height: 1.7; }
.footer-meta a:hover { color: var(--accent); }

/* spec footer (mandatory) */
.spec-footer {
  background: #06101a;
  color: rgba(255,255,255,0.55);
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.6;
  padding: clamp(1.8rem, 3vw, 2.4rem) var(--gutter);
}
.spec-footer a { color: var(--accent); text-decoration: underline; }

/* ============================================================
   REVEAL / MOTION
   ============================================================ */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: calc(var(--reveal-delay, 0) * 90ms);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-img { animation: none; transform: none; }
  .btn:hover, .service-card:hover { transform: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .marquee-track { animation: none !important; transform: none !important; width: 100%; justify-content: center; flex-wrap: wrap; }
  .marquee-group[aria-hidden="true"] { display: none; }
  .marquee-group { flex-wrap: wrap; justify-content: center; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-nav { display: none; }
  .btn-phone { padding: 0.55rem 0.9rem; }
  .brand-name { font-size: 1.05rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: none; }
  .hero { align-items: center; }
  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(6,14,24,0.82) 0%, rgba(6,14,24,0.62) 26%, rgba(6,14,24,0.62) 56%, rgba(6,14,24,0.82) 80%, rgba(5,12,21,0.97) 100%);
  }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 24rem; }
  .about-stat { right: auto; left: clamp(1rem, 4vw, 2rem); }
  .showcase-inner { grid-template-columns: 1fr; align-items: start; }
  .showcase-brand { max-width: none; flex-direction: row; align-items: center; gap: 1.2rem; }
  .showcase-brand-mark { max-width: 9rem; }
  .footer-inner { flex-direction: column; }
  .footer-meta { text-align: left; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .btn-phone-label { display: none; }
  .btn-phone { border-radius: 999px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .hero-meta span { font-size: 0.78rem; padding: 0.36rem 0.7rem; }
  .showcase-brand { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 410px) {
  .brand-name { display: none; }
}
