/* =================================================================
   Fort Collins Dodge Chrysler Jeep Ram — Spec preview
   Design system + layout. Self-contained, no external assets.
   ================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette (from real logo) */
  --blue-900: #071e4a;
  --blue-800: #0a2c6b;
  --blue-700: #0d3a8c;   /* primary Dodge blue */
  --blue-600: #1651b8;
  --blue-500: #2b6fe0;
  --red-600:  #c81a22;
  --red-500:  #d81f26;   /* Ram / Dodge red */
  --green-600: #3f8a24;
  --green-500: #4c9a2a;  /* Jeep green */

  /* Neutrals */
  --ink:      #10151f;
  --ink-soft: #333c4d;
  --steel-600: #556075;
  --steel-400: #8a94a6;
  --steel-200: #d2d8e2;
  --mist:     #eef1f6;
  --paper:    #f6f8fb;
  --white:    #ffffff;

  /* Semantic */
  --bg:        var(--white);
  --surface:   var(--paper);
  --text:      #1a2233;
  --text-muted:#54607a;
  --line:      #e2e7f0;

  /* Type */
  --font-display: "Helvetica Neue", "Arial", system-ui, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Fluid type scale */
  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.45rem);
  --step-2:  clamp(1.5rem, 1.3rem + 1vw, 2.05rem);
  --step-3:  clamp(1.9rem, 1.5rem + 2vw, 2.9rem);
  --step-4:  clamp(2.3rem, 1.7rem + 3vw, 3.9rem);
  --step-5:  clamp(2.55rem, 1.55rem + 4.2vw, 4.55rem);

  /* Space scale */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4.5rem;
  --sp-7: 6rem;

  --container: 1240px;
  --gutter: clamp(1.5rem, 5vw, 5rem);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(16, 30, 60, 0.06);
  --shadow-md: 0 18px 40px -18px rgba(11, 30, 74, 0.28);
  --shadow-lg: 0 40px 80px -30px rgba(7, 20, 55, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}
p { text-wrap: pretty; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-700);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--red-500);
}
.eyebrow--light { color: #bcd0ff; }
.eyebrow--light::before { background: var(--red-500); }

.lead { font-size: var(--step-1); color: var(--text-muted); line-height: 1.5; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--red-500);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--step-0);
  letter-spacing: 0.01em;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s var(--ease);
  box-shadow: 0 10px 24px -10px rgba(200, 26, 34, 0.6);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -12px rgba(200, 26, 34, 0.65); }
.btn:active { transform: translateY(-1px); }
.btn .arrow { transition: transform 0.35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border-color: rgba(255,255,255,0.55);
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(255,255,255,0.12); box-shadow: none; border-color: #fff; }

.btn--dark { --btn-bg: var(--blue-700); box-shadow: 0 10px 24px -10px rgba(13,58,140,0.6); }
.btn--dark:hover { box-shadow: 0 18px 34px -12px rgba(13,58,140,0.65); }

.btn--outline-dark {
  --btn-bg: transparent; --btn-fg: var(--blue-700);
  border-color: var(--steel-200);
  box-shadow: none;
}
.btn--outline-dark:hover { background: var(--mist); border-color: var(--blue-700); box-shadow: none; }

/* Focus states */
a:focus-visible, .btn:focus-visible, button:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 3px;
  border-radius: 6px;
}

/* =================================================================
   Header / nav
   ================================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding-block: 0.9rem;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.brand__chip {
  background: #fff;
  border-radius: 12px;
  padding: 8px 12px;
  box-shadow: 0 6px 18px -8px rgba(7,20,55,0.35);
  display: inline-flex;
}
.brand__chip img { width: clamp(118px, 14vw, 158px); height: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  list-style: none;
}
.nav__links a {
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  position: relative;
  padding-block: 4px;
  transition: color 0.25s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--red-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover::after, .nav__links a:focus-visible::after { transform: scaleX(1); }
.scrolled .nav__links a { color: var(--ink); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: var(--step--1);
  letter-spacing: 0.02em;
  color: #fff;
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  background: var(--red-500);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 8px 18px -8px rgba(200,26,34,0.6);
}
.nav__cta:hover { transform: translateY(-2px); }
.nav__toggle { display: none; }

/* =================================================================
   Hero
   ================================================================= */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: flex-end;
  padding-top: 8rem;
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
  isolation: isolate;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 52% 62%;
  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:
    linear-gradient(94deg, rgba(5,15,42,0.97) 0%, rgba(6,18,48,0.9) 26%, rgba(7,20,55,0.55) 52%, rgba(7,20,55,0.22) 78%, rgba(7,20,55,0.34) 100%),
    linear-gradient(to top, rgba(4,11,32,0.92) 0%, rgba(5,14,40,0.24) 42%, rgba(5,14,40,0) 66%),
    radial-gradient(130% 95% at 88% 4%, rgba(43,111,224,0.32), transparent 52%),
    radial-gradient(150% 120% at 50% 120%, rgba(3,9,26,0.55), transparent 60%);
}
.hero__inner { display: grid; gap: var(--sp-3); max-width: 920px; }
.hero__kicker {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: var(--step--1); font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: #f0b9bc;
}
.hero__kicker::before { content: ""; width: 34px; height: 2px; background: var(--red-500); }
.hero__inner > * { min-width: 0; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  align-self: start;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1rem 0.5rem 0.7rem;
  border-radius: 999px;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #eaf1ff;
}
.hero__badge .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(76,154,42,0.28);
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.55rem, 1.7rem + 3.7vw, 4.15rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  overflow-wrap: break-word;
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
  margin-top: 0.1rem;
  max-width: 15ch;
}
.hero__sub { color: #dbe4f5; font-size: var(--step-1); max-width: 48ch; line-height: 1.55; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; margin-top: 0.35rem; }

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.2rem, 4vw, 3rem);
  margin-top: 0.5rem;
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero__stat .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--step-2);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__stat .lbl {
  display: block;
  margin-top: 0.35rem;
  font-size: var(--step--1);
  color: #aebfdd;
  letter-spacing: 0.04em;
}

/* =================================================================
   Trust marquee
   ================================================================= */
.trust {
  background:
    radial-gradient(120% 180% at 100% 0%, rgba(43,111,224,0.22), transparent 55%),
    linear-gradient(90deg, var(--blue-900), var(--blue-800));
  color: #cdd8ee;
  border-bottom: 3px solid var(--red-500);
}
.trust__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3) var(--sp-5);
  padding-block: 1.6rem;
}
.trust__item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.03em;
}
.trust__item svg { flex: none; color: var(--green-500); }
.trust__item strong { color: #fff; font-weight: 800; }
.trust__badge { background: #fff; border-radius: 8px; padding: 6px 8px; display: inline-flex; }
.trust__badge img { height: 34px; width: auto; }

/* =================================================================
   About — asymmetric split
   ================================================================= */
.about {
  background:
    radial-gradient(90% 70% at 100% 0%, rgba(43,111,224,0.05), transparent 60%),
    var(--bg);
  position: relative;
}
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
}
.about__media { position: relative; padding: 22px 26px 26px 0; }
/* solid brand panel offset behind the photo for depth + a dot field top-right */
.about__media::before {
  content: "";
  position: absolute;
  right: 0; bottom: 0;
  width: 62%; height: 74%;
  background: linear-gradient(150deg, var(--blue-800), var(--blue-900));
  border-radius: var(--radius-lg);
  z-index: 0;
}
.about__media .frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.4;
  z-index: 1;
}
.about__media .frame::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: var(--radius-lg);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__media .tag {
  position: absolute;
  left: -16px; bottom: 8px;
  z-index: 3;
  background: var(--red-500);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--step-1);
  letter-spacing: -0.01em;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 22px 42px -14px rgba(200,26,34,0.6);
  line-height: 1.05;
}
.about__media .tag span { display: block; font-family: var(--font-body); font-weight: 600; font-size: var(--step--1); opacity: 0.9; letter-spacing: 0.03em; margin-top: 3px; }
/* a fine dot field peeking from the top-right corner */
.about__media .accent-block {
  position: absolute;
  right: 0; top: 0;
  width: 116px; height: 116px;
  z-index: 2;
  background-image: radial-gradient(rgba(255,255,255,0.85) 1.6px, transparent 1.7px);
  background-size: 14px 14px;
  border-radius: 4px;
}
.about__body h2 { font-size: var(--step-3); margin-block: 0.8rem 1.2rem; }
.about__body p + p { margin-top: 1rem; }
.about__points {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  margin-top: var(--sp-3);
}
.about__points li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-weight: 500;
  color: var(--text);
}
.about__points svg { flex: none; margin-top: 3px; color: var(--green-500); }

/* =================================================================
   Brand tiles
   ================================================================= */
.brands { background: var(--surface); }
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head h2 { font-size: var(--step-3); margin-block: 0.7rem 0.9rem; }
.section-head p { color: var(--text-muted); font-size: var(--step-1); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.brand-card {
  position: relative;
  padding: 1.5rem 1.4rem 1.4rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  min-height: 210px;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}
.brand-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--bc, var(--blue-700));
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
/* brand-colored ghost initial, watermark corner */
.brand-card::after {
  content: attr(data-ghost);
  position: absolute;
  right: -0.4rem; bottom: -1.6rem;
  z-index: -1;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 8rem;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--bc, var(--blue-700));
  opacity: 0.06;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.brand-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.brand-card:hover::after { opacity: 0.1; transform: translateY(-4px); }
.brand-card .mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--step-2);
  letter-spacing: -0.02em;
  color: var(--bc, var(--blue-700));
  line-height: 1;
}
.brand-card .desc { margin-top: 0.55rem; font-size: var(--step--1); color: var(--text-muted); }
.brand-card .go { margin-top: auto; padding-top: 1.1rem; font-size: var(--step--1); font-weight: 700; color: var(--ink); display: inline-flex; align-items: center; gap: 0.4rem; }
.brand-card .go .arrow { transition: transform 0.35s var(--ease); color: var(--bc); }
.brand-card:hover .go .arrow { transform: translateX(5px); }

/* =================================================================
   Services
   ================================================================= */
.services { background: var(--bg); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.2rem;
}
.svc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.svc__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: var(--mist);
  color: var(--blue-700);
  margin-bottom: 1.1rem;
}
.svc h3 { font-size: var(--step-1); letter-spacing: -0.01em; }
.svc p { margin-top: 0.55rem; color: var(--text-muted); font-size: var(--step-0); }
.svc__link { margin-top: auto; padding-top: 1.1rem; font-weight: 700; font-size: var(--step--1); color: var(--red-500); display: inline-flex; gap: 0.4rem; align-items: center; }
.svc__link .arrow { transition: transform 0.35s var(--ease); }
.svc:hover .svc__link .arrow { transform: translateX(4px); }

/* column spans for editorial rhythm */
.svc--a { grid-column: span 5; }
.svc--b { grid-column: span 4; }
.svc--c { grid-column: span 3; }
.svc--d { grid-column: span 4; }
.svc--e { grid-column: span 4; }
.svc--f { grid-column: span 4; }

/* Feature service (Mopar) with photo */
.svc-feature {
  grid-column: span 12;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--blue-900);
  color: #fff;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.svc-feature__media { position: relative; min-height: 300px; }
.svc-feature__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.svc-feature__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,20,55,0) 55%, var(--blue-900) 100%);
}
.svc-feature__body { padding: clamp(1.8rem, 4vw, 3.2rem); display: flex; flex-direction: column; justify-content: center; }
.svc-feature__body h3 { color: #fff; font-size: var(--step-3); }
.svc-feature__body p { color: #c6d3ee; margin-top: 0.9rem; font-size: var(--step-1); max-width: 44ch; }
.svc-feature__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }

/* =================================================================
   Showcase / gallery band
   ================================================================= */
.showcase { background: var(--surface); overflow: hidden; }
.showcase__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 1.1rem;
  min-height: 460px;
}
.showcase__item { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.showcase__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.showcase__item:hover img { transform: scale(1.05); }
.showcase__item::after {
  content: attr(data-cap);
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.3rem 1.2rem 1rem;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(to top, rgba(7,20,55,0.82), rgba(7,20,55,0));
}
.showcase__item--tall { grid-row: span 2; }

/* =================================================================
   CTA band
   ================================================================= */
.cta-band {
  background:
    radial-gradient(120% 140% at 12% 0%, rgba(43,111,224,0.35), transparent 55%),
    linear-gradient(120deg, var(--blue-800), var(--blue-900));
  color: #fff;
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,0.06);
}
/* diagonal speed-lines texture + a red edge accent for brand energy */
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 26px);
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -8%; top: -40%;
  width: 60vw; height: 180%;
  background: radial-gradient(closest-side, rgba(216,31,38,0.22), transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.cta-band__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--sp-4);
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-band h2 { color: #fff; font-size: var(--step-4); }
.cta-band p { color: #cdd8ee; font-size: var(--step-1); margin-top: 0.9rem; max-width: 40ch; }
.cta-band__actions { display: flex; flex-direction: column; gap: 0.8rem; align-items: stretch; }
.cta-band__actions .btn { justify-content: center; }
.cta-band__note { font-size: var(--step--1); color: #9fb2d6; text-align: center; }

/* =================================================================
   Contact
   ================================================================= */
.contact { background: var(--bg); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.contact__body h2 { font-size: var(--step-3); margin-block: 0.7rem 1rem; }
.contact__addr { font-style: normal; font-size: var(--step-1); color: var(--text); line-height: 1.5; }
.contact__addr .muted { color: var(--text-muted); font-size: var(--step-0); }
.contact__dirlink { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.8rem; font-weight: 700; color: var(--blue-700); }
.contact__dirlink .arrow { transition: transform 0.3s var(--ease); }
.contact__dirlink:hover .arrow { transform: translateX(4px); }

.contact__hours { margin-top: var(--sp-4); border-top: 1px solid var(--line); padding-top: var(--sp-3); }
.contact__hours h3 { font-family: var(--font-body); font-size: var(--step--1); letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); font-weight: 700; }
.contact__hours dl { display: grid; grid-template-columns: auto 1fr; gap: 0.4rem 1.5rem; margin-top: 0.8rem; }
.contact__hours dt { font-weight: 600; }
.contact__hours dd { text-align: right; color: var(--text-muted); }

.contact__cards { display: grid; gap: 1rem; }
.callcard {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.3rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.callcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; background: #fff; }
.callcard__icon {
  width: 50px; height: 50px; flex: none;
  border-radius: 12px;
  display: grid; place-items: center;
  color: #fff;
  background: linear-gradient(140deg, var(--blue-600), var(--blue-800));
}
.callcard--red .callcard__icon { background: linear-gradient(140deg, var(--red-500), var(--red-600)); }
.callcard--green .callcard__icon { background: linear-gradient(140deg, var(--green-500), var(--green-600)); }
.callcard__label { font-size: var(--step--1); letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); font-weight: 700; }
.callcard__num { font-family: var(--font-display); font-weight: 800; font-size: var(--step-2); color: var(--ink); letter-spacing: -0.02em; line-height: 1; margin-top: 2px; }

/* =================================================================
   Footer
   ================================================================= */
.site-footer {
  background: var(--blue-900);
  color: #aebdd8;
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer__brand .brand__chip { margin-bottom: 1.1rem; }
.footer__brand p { max-width: 38ch; font-size: var(--step--1); line-height: 1.6; }
.footer__col h4 { font-family: var(--font-body); color: #fff; font-size: var(--step--1); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer__col ul { list-style: none; display: grid; gap: 0.6rem; }
.footer__col a { font-size: var(--step--1); transition: color 0.25s var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.8rem;
  font-size: var(--step--1);
  color: #7f90b3;
}

/* Spec footer (mandatory) */
.spec-footer {
  background: #05122e;
  color: #8ea2c6;
  text-align: center;
  font-size: var(--step--1);
  line-height: 1.6;
  padding: clamp(1.5rem, 4vw, 2.2rem) var(--gutter);
}
.spec-footer a { color: #cdd8ee; text-decoration: underline; text-underline-offset: 3px; }
.spec-footer a:hover { color: #fff; }

/* =================================================================
   Scroll reveal
   ================================================================= */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-delay="3"] { transition-delay: 0.24s; }
[data-reveal][data-delay="4"] { transition-delay: 0.32s; }

/* Hero staggered on-load reveal */
.hero__inner > * {
  opacity: 0;
  transform: translateY(26px);
  animation: heroRise 0.9s var(--ease) forwards;
}
.hero__inner > *:nth-child(1) { animation-delay: 0.12s; }
.hero__inner > *:nth-child(2) { animation-delay: 0.22s; }
.hero__inner > *:nth-child(3) { animation-delay: 0.34s; }
.hero__inner > *:nth-child(4) { animation-delay: 0.46s; }
.hero__inner > *:nth-child(5) { animation-delay: 0.58s; }
.hero__inner > *:nth-child(6) { animation-delay: 0.7s; }
@keyframes heroRise { to { opacity: 1; transform: none; } }

/* =================================================================
   Responsive
   ================================================================= */
@media (max-width: 1000px) {
  .about__grid { grid-template-columns: 1fr; gap: var(--sp-5); }
  .about__media { max-width: 560px; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band__inner { grid-template-columns: 1fr; }
  .cta-band__actions { flex-direction: row; flex-wrap: wrap; }
  .cta-band__actions .btn { flex: 1 1 auto; }
  .cta-band__note { width: 100%; }
  .svc-feature { grid-template-columns: 1fr; }
  .svc-feature__media { min-height: 240px; }
  .svc-feature__media::after { background: linear-gradient(0deg, var(--blue-900) 2%, rgba(7,20,55,0) 45%); }
  .contact__grid { grid-template-columns: 1fr; }
  .showcase__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav__links { display: none; }
  .services__grid { grid-template-columns: 1fr; }
  .svc--a, .svc--b, .svc--c, .svc--d, .svc--e, .svc--f { grid-column: 1 / -1; }
  .footer__top { grid-template-columns: 1fr; gap: var(--sp-4); }
  .showcase__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; min-height: 0; }
  .showcase__item--tall { grid-row: span 1; }
  .hero { min-height: 0; padding-top: 6.5rem; align-items: stretch; }
  .hero__inner { max-width: 100%; }
  .hero__bg img { object-position: 68% center; }
  .hero__sub { max-width: 100%; }
  .hero__actions { width: 100%; }
  .hero__actions .btn { flex: 1 1 100%; justify-content: center; padding-inline: 1.2rem; }
}

@media (max-width: 460px) {
  .brand-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.15rem, 1.1rem + 5.6vw, 2.7rem); letter-spacing: -0.03em; }
  .hero__stats { gap: 1.2rem 1.8rem; }
  .hero__stat .num { font-size: var(--step-1); }
  .callcard { padding: 1.1rem; }
}

/* =================================================================
   Reduced motion
   ================================================================= */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .hero__bg img { transform: none; animation: none; }
  .hero__inner > * { opacity: 1; transform: none; }
  [data-reveal] { opacity: 1; transform: none; }
}
