/* ==========================================================================
   CAR RESCUE TEAM — design tokens
   ========================================================================== */

:root {
  --black: #0a0a0b;
  --charcoal: #1a1c20;
  --charcoal-2: #24262b;
  --charcoal-3: #2f3137;
  --steel: #6b6e74;
  --steel-light: #9a9da3;
  --fog: #f2f1ee;
  --white: #ffffff;
  --red: #e3111a;
  --red-dark: #a80d13;
  --red-bright: #ff3b3b;
  --red-glow: rgba(227, 17, 26, 0.5);

  --font-display: "Oswald", "Big Shoulders", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --radius-media: 18px;
  --radius-card: 4px;

  color-scheme: dark;
}

/* ==========================================================================
   Reset
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

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

body {
  background: var(--black);
  color: var(--fog);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 3px;
  border-radius: 2px;
}

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

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: 1.2;
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 1.1rem;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 10px;
  background: var(--red);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  max-width: 18ch;
}

.section-lede {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--steel-light);
  max-width: 46ch;
  margin-top: 1.1rem;
  line-height: 1.7;
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */

.container {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.glow-section { position: relative; overflow: hidden; }

.glow-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 640px;
  height: 640px;
  top: -280px;
  right: -220px;
  background: radial-gradient(circle, rgba(227, 17, 26, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.glow-section.glow-left::before { right: auto; left: -220px; }

section { position: relative; }

.section-pad { padding-block: clamp(4.5rem, 9vw, 8.5rem); }

.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head.center { align-items: center; text-align: center; }
.section-head.center .section-lede { margin-inline: auto; }

.blog-empty {
  max-width: 560px;
  margin: 3rem auto 0;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  background: var(--charcoal-2);
  border-top: 3px solid var(--red);
  text-align: center;
}

.blog-empty svg { width: 3rem; height: 3rem; color: var(--red-bright); margin: 0 auto 1.3rem; }
.blog-empty h3 { font-size: 1.4rem; margin-bottom: 0.7rem; }
.blog-empty p { color: var(--steel-light); font-size: 0.96rem; max-width: 42ch; margin-inline: auto; }

.blog-empty-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.8rem;
}

/* ---- Blog listing (blog.html) ---- */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.8rem;
}

.blog-card {
  display: block;
  background: var(--charcoal-2);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -20px rgba(0,0,0,.6); }

.blog-card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-media img { transform: scale(1.07); }

.blog-card-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.72rem;
  padding: 0.4rem 0.75rem;
  border-radius: 3px;
}

.blog-card-body { padding: 1.7rem 1.8rem 1.9rem; }

.blog-card-date {
  display: block;
  color: var(--steel);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.7rem;
}

.blog-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.25rem;
  line-height: 1.32;
  margin-bottom: 0.8rem;
}

.blog-card p { color: var(--steel-light); font-size: 0.94rem; line-height: 1.65; margin: 0 0 1.2rem; }

.blog-card-read {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
  color: var(--red-bright);
}
.blog-card-read svg { width: 1em; height: 1em; transition: transform 0.25s; }
.blog-card:hover .blog-card-read svg { transform: translateX(4px); }

.blog-follow {
  max-width: 760px;
  margin: 3.5rem auto 0;
  padding-top: 2.4rem;
  border-top: 1px solid rgba(242,241,238,0.12);
  text-align: center;
}
.blog-follow p { color: var(--steel-light); margin-bottom: 1.1rem; }

/* ---- Blog post page (blog-*.html) ---- */

.post-hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: flex-end;
  background: var(--black);
  margin-top: -1px;
}
.post-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.post-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 38%, rgba(10,10,11,0.55) 52%, rgba(10,10,11,0.93) 68%, var(--black) 84%);
}
.post-hero-inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 3.5rem var(--gutter) 3.2rem;
  text-align: center;
}
.post-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--red-bright);
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.9);
}
.post-hero h1 {
  font-size: clamp(1.8rem, 4.4vw, 3rem);
  line-height: 1.18;
  text-shadow: 0 2px 8px rgba(0,0,0,0.95), 0 8px 32px rgba(0,0,0,0.85);
}
.post-date {
  margin-top: 1.1rem;
  color: var(--steel-light);
  font-size: 0.85rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.9);
}

@media (max-width: 760px) {
  .post-hero { min-height: 70vh; }
  .post-hero-inner { padding: 2.4rem 1.2rem 2rem; }
}

.post-body { max-width: 960px; margin: 0 auto; padding: 3.5rem var(--gutter) 5rem; }
.post-body p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: #d7d6d3;
  margin: 0 0 1.4rem;
}
.post-body p strong { color: var(--white); }
.post-body p a { color: var(--red-bright); text-decoration: underline; text-underline-offset: 2px; }
.post-body p a:hover { color: var(--white); }
.post-body p.lede::first-letter {
  font-family: var(--font-display);
  font-size: 3.6rem;
  line-height: 0.8;
  float: left;
  padding: 0.1rem 0.5rem 0 0;
  color: var(--red-bright);
}
.post-body h2 {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  margin: 3.4rem 0 1.1rem;
}
.post-body h2:first-of-type { margin-top: 0; }

.post-pull {
  margin: 2.6rem 0;
  padding: 0 0 0 1.6rem;
  border-left: 3px solid var(--red);
}
.post-pull p {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: none;
  font-size: clamp(1.3rem, 2.8vw, 1.7rem);
  line-height: 1.4;
  color: var(--white);
  margin: 0;
}

.post-story-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.92rem;
  color: var(--red-bright);
  margin-bottom: 0.6rem;
}

.post-list { list-style: none; margin: 0 0 1.2rem; padding: 0; }
.post-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.7rem;
  color: #d7d6d3;
  line-height: 1.6;
}
.post-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
}
.post-list li strong { color: var(--white); }

.post-inline-media {
  margin: 2.6rem 0;
}
.post-inline-media img {
  width: 100%;
  border-radius: var(--radius-media);
  display: block;
}
.post-inline-caption {
  display: block;
  color: var(--steel);
  font-size: 0.82rem;
  text-align: center;
  margin-top: 0.7rem;
}

.post-audio {
  margin: 3.4rem 0 0;
  padding: 1.6rem 0 0;
  border-top: 1px solid rgba(242,241,238,0.12);
  text-align: center;
}
.post-audio p { color: var(--steel); font-size: 0.9rem; margin-bottom: 1.1rem; }
.post-audio audio { width: 100%; max-width: 480px; }

.post-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--steel-light);
  font-size: 0.88rem;
  margin-bottom: 2rem;
  transition: color 0.25s;
}
.post-back:hover { color: var(--red-bright); }
.post-back svg { width: 1em; height: 1em; }

.post-hero-cta { margin-top: 1.6rem; }

.post-trust {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.6rem var(--gutter) 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.post-trust-item {
  background: var(--charcoal-2);
  border-top: 3px solid var(--red);
  padding: 1.5rem 1.3rem;
  text-align: center;
}
.post-trust-item svg { width: 1.8rem; height: 1.8rem; color: var(--red-bright); margin-bottom: 0.8rem; }
.post-trust-item h3 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.post-trust-item p { font-size: 0.82rem; color: var(--steel-light); margin: 0; line-height: 1.5; }

.post-areas {
  background: var(--charcoal-2);
  border-left: 3px solid var(--red);
  padding: 1.5rem 1.7rem;
  margin: 2rem 0;
}
.post-areas h3 { font-size: 1rem; margin-bottom: 0.7rem; text-transform: none; letter-spacing: 0; }
.post-areas p { color: var(--steel-light); font-size: 0.95rem; margin: 0; line-height: 1.7; }

@media (max-width: 640px) {
  .post-trust { grid-template-columns: repeat(2, 1fr); }
}

.divider-cut {
  height: 90px;
  margin-top: -1px;
  background: var(--charcoal);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65em;
  padding: 1.05rem 2.1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  white-space: nowrap;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,.35) 0%, transparent 60%);
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.6s, transform 0.6s;
  pointer-events: none;
}

.btn:active::after { opacity: 1; transform: scale(2.2); transition: 0s; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 30px -8px var(--red-glow);
}

.btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 38px -8px var(--red-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--fog);
  border: 1px solid rgba(242,241,238,0.28);
}

.btn-ghost:hover {
  border-color: var(--fog);
  transform: translateY(-2px);
}

.btn-lg { padding: 1.35rem 2.8rem; font-size: 1.15rem; }

.btn-icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.3rem clamp(1rem, 3vw, 2rem) 0;
  transition: padding 0.4s var(--ease-out);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1240px;
  border-radius: 999px;
  padding: 0.7rem 0.9rem 0.7rem 1.4rem;
  transition: padding 0.4s var(--ease-out);
}

.site-header .container::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(19, 20, 23, 0.55);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(242, 241, 238, 0.09);
  border-radius: inherit;
  box-shadow: 0 16px 40px -18px rgba(0, 0, 0, 0.55);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s;
}

.site-header.is-scrolled { padding-top: 0.85rem; }

.site-header.is-scrolled .container::before {
  background: rgba(12, 13, 15, 0.86);
  box-shadow: 0 16px 40px -14px rgba(0, 0, 0, 0.7);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand img { height: 42px; width: auto; max-width: none; transition: height 0.4s var(--ease-out); }
.site-header.is-scrolled .brand img { height: 36px; }

.brand-text {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  font-size: 1.02rem;
  color: var(--white);
}

.brand-text span { display: block; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em; color: var(--red-bright); margin-top: 0.3rem; }

.main-nav { display: flex; align-items: center; gap: 2.2rem; }

.main-nav a:not(.call-btn-mobile) {
  position: relative;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0;
  color: var(--fog);
  padding-block: 0.4rem;
  transition: color 0.25s;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.main-nav a:hover, .main-nav a.is-active { color: var(--white); }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }

.call-btn-mobile { display: none; }

.header-actions { display: flex; align-items: center; gap: 1rem; }

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  animation: pulse-glow 2.6s ease-in-out infinite;
}

.call-btn:hover { background: var(--red-bright); }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(242,241,238,0.25);
  border-radius: 999px;
  padding: 2px;
  gap: 2px;
  flex-shrink: 0;
}
.lang-toggle a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--steel-light);
  transition: background 0.2s, color 0.2s;
}
.lang-toggle a.is-active { background: var(--red); color: var(--white); }
.lang-toggle a:not(.is-active):hover { color: var(--white); }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 var(--red-glow); }
  50% { box-shadow: 0 0 0 10px rgba(227,17,26,0); }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  z-index: 110;
}

.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--white); transition: transform 0.35s var(--ease-out), opacity 0.3s; }

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.hero-media { position: absolute; inset: 0; z-index: 0; min-height: 100%; }

.hero-media video, .hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,9,.55) 0%, rgba(8,8,9,.35) 30%, rgba(8,8,9,.65) 70%, rgba(6,6,7,.92) 100%),
    linear-gradient(90deg, rgba(6,6,7,.55) 0%, rgba(6,6,7,0) 45%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: clamp(7rem, 11vw, 9rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  background: var(--red);
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  margin-bottom: 1.6rem;
  animation: fade-up 0.9s var(--ease-out) both;
}

.hero-title {
  font-size: clamp(2.5rem, 5.8vw, 5.4rem);
  letter-spacing: 0.025em;
  line-height: 1.22;
  max-width: 15ch;
  animation: fade-up 0.9s var(--ease-out) 0.1s both;
}

@media (min-width: 900px) {
  .hero-title { max-width: 21ch; }
}

.hero-title em {
  font-style: normal;
  color: var(--red-bright);
}

.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--fog);
  max-width: 46ch;
  margin-top: 1.5rem;
  line-height: 1.6;
  animation: fade-up 0.9s var(--ease-out) 0.2s both;
}

.hero-sub strong { color: var(--white); font-weight: 700; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1.1rem;
  margin-top: 2.5rem;
  animation: fade-up 0.9s var(--ease-out) 0.3s both;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.6rem;
  border-top: 1px solid rgba(242,241,238,0.18);
  animation: fade-up 0.9s var(--ease-out) 0.4s both;
}

.hero-stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--white);
  line-height: 1;
}

.hero-stat span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-light);
  margin-top: 0.5rem;
}

.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(1.5rem, 4vw, 2.5rem);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  color: var(--steel-light);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue::after {
  content: "";
  writing-mode: horizontal-tb;
  width: 1px;
  height: 46px;
  background: linear-gradient(var(--red-bright), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.001% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0) scale(1); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.14s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.23s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.32s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.41s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.5s; }

/* ==========================================================================
   Why choose us
   ========================================================================== */

.why { background: var(--charcoal); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.why-card {
  background: var(--charcoal-2);
  padding: 2.2rem 1.9rem;
  border-top: 3px solid transparent;
  transition: border-color 0.35s, transform 0.35s var(--ease-out), background 0.35s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-card:hover {
  border-top-color: var(--red);
  background: var(--charcoal-3);
  transform: translateY(-6px);
}

.why-icon {
  width: 3rem; height: 3rem;
  margin-bottom: 1.4rem;
  color: var(--red-bright);
}

.why-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.why-card p { color: var(--steel-light); font-size: 0.96rem; }

/* ==========================================================================
   Services
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.service-card {
  position: relative;
  background: var(--charcoal-2);
  padding: 2.4rem 2rem;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
  transition: transform 0.4s var(--ease-out), background 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-card:hover { transform: translateY(-8px); background: var(--charcoal-3); }

.service-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--steel);
  letter-spacing: 0.1em;
  margin-bottom: 1.6rem;
}

.service-card svg { width: 2.6rem; height: 2.6rem; color: var(--red-bright); margin-bottom: 1.3rem; }

.service-card h3 { font-size: 1.4rem; margin-bottom: 0.7rem; }
.service-card p { color: var(--steel-light); font-size: 0.95rem; }

/* ==========================================================================
   Gallery preview carousel
   ========================================================================== */

.gallery-preview { background: var(--black); }

.carousel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.2rem;
}

.carousel-nav { display: flex; gap: 0.7rem; }

.carousel-arrow {
  width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(242,241,238,0.25);
  border-radius: 50%;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.carousel-arrow:hover { background: var(--red); border-color: var(--red); transform: scale(1.08); }
.carousel-arrow svg { width: 1.15rem; height: 1.15rem; }

.carousel-track {
  display: flex;
  gap: 1.3rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  cursor: grab;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track.is-dragging { cursor: grabbing; scroll-snap-type: none; }

.reel-card {
  position: relative;
  flex: 0 0 clamp(240px, 32vw, 380px);
  aspect-ratio: 9 / 13;
  scroll-snap-align: start;
  border-radius: var(--radius-media);
  overflow: hidden;
  background: var(--charcoal-2);
}

.reel-card img, .reel-card video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.reel-card:hover img, .reel-card:hover video { transform: scale(1.06); }

.reel-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.85) 100%);
}

.reel-play {
  position: absolute; inset: 0;
  margin: auto;
  width: 4rem; height: 4rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(227,17,26,0.92);
  border-radius: 50%;
  transition: transform 0.35s var(--ease-out), background 0.35s;
}

.reel-card:hover .reel-play { transform: scale(1.12); background: var(--red-bright); }
.reel-play svg { width: 1.4rem; height: 1.4rem; margin-left: 3px; }

.reel-label {
  position: absolute; left: 1.1rem; right: 1.1rem; bottom: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  text-transform: uppercase;
}

.carousel-cta { display: flex; justify-content: center; margin-top: 2.8rem; }

/* ==========================================================================
   Technika (equipment) grid
   ========================================================================== */

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.tech-card { background: var(--charcoal-2); overflow: hidden; }

.tech-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
}

.tech-card-media video, .tech-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.tech-card:hover .tech-card-media video,
.tech-card:hover .tech-card-media img { transform: scale(1.06); }

.tech-card-num {
  position: absolute; top: 1rem; left: 1rem;
  z-index: 1;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.3rem 0.7rem;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.tech-card-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.85) 100%);
}

.tech-card-gallery-cta {
  position: absolute; left: 1.1rem; right: 1.1rem; bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  transition: transform 0.35s var(--ease-out);
}

.tech-card-gallery-cta svg { width: 1.15rem; height: 1.15rem; color: var(--red-bright); flex-shrink: 0; }

.tech-card-media:hover .tech-card-gallery-cta,
.tech-card-media:focus-visible .tech-card-gallery-cta {
  transform: translateY(-3px);
}

.tech-card-body { padding: 1.6rem 1.7rem 1.9rem; }
.tech-card-body h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.tech-card-body p { color: var(--steel-light); font-size: 0.94rem; }

/* ==========================================================================
   Full gallery grid + lightbox
   ========================================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.gallery-grid .reel-card { flex: none; width: 100%; aspect-ratio: 4 / 5; }
.gallery-grid .reel-card:nth-child(3n+2) { aspect-ratio: 4 / 5.6; }

.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(6,6,7,0.96);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(1rem, 4vw, 4rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}

.lightbox.is-open { opacity: 1; visibility: visible; }

.lightbox-inner {
  position: relative;
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 16/9;
  background: #000;
  transform: scale(0.94);
  transition: transform 0.4s var(--ease-out);
}

.lightbox.is-open .lightbox-inner { transform: scale(1); }
.lightbox-media { width: 100%; height: 100%; }
.lightbox-inner video { width: 100%; height: 100%; object-fit: contain; background: #000; }

.lightbox-close {
  position: absolute; top: -3.2rem; right: 0;
  width: 2.6rem; height: 2.6rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(242,241,238,0.3);
  border-radius: 50%;
  color: var(--fog);
  transition: background 0.3s, border-color 0.3s;
}

.lightbox-close:hover { background: var(--red); border-color: var(--red); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10, 10, 11, 0.55);
  border: 1px solid rgba(242,241,238,0.25);
  border-radius: 50%;
  color: var(--white);
  transition: background 0.3s, border-color 0.3s;
}

.lightbox-nav:hover { background: var(--red); border-color: var(--red); }
.lightbox-nav svg { width: 1.2rem; height: 1.2rem; }
.lightbox-nav-prev { left: -1.4rem; }
.lightbox-nav-next { right: -1.4rem; }

.lightbox-counter {
  position: absolute;
  bottom: -2.4rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--steel-light);
}

.lightbox-loading {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--steel-light);
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.lightbox-loading::before {
  content: "";
  width: 22px; height: 22px;
  margin-right: 0.8rem;
  border: 2px solid rgba(242,241,238,0.25);
  border-top-color: var(--red-bright);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================================================
   Instagram
   ========================================================================== */

.instagram { background: var(--charcoal); }

.instagram-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.35fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.instagram-text .section-lede { margin-top: 1rem; }

.ig-handle {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 1.05rem;
  margin-top: 0.6rem;
}

.ig-handle svg { width: 1.3rem; height: 1.3rem; color: var(--red-bright); }

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  background: var(--charcoal-2);
  border: 1px solid rgba(242, 241, 238, 0.1);
  border-radius: 50%;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-out);
}

.social-chip:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-3px);
}

.social-chip-icon {
  display: flex;
  width: 1.5rem;
  height: 1.5rem;
  align-items: center;
  justify-content: center;
  color: var(--red-bright);
  transition: color 0.3s;
}

.social-chip:hover .social-chip-icon { color: var(--white); }
.social-chip-icon svg { width: 100%; height: 100%; }

.ig-track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 24px, black calc(100% - 40px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, black 24px, black calc(100% - 40px), transparent 100%);
}

.ig-track::-webkit-scrollbar { display: none; }

.ig-post {
  flex: 0 0 clamp(180px, 22vw, 240px);
  aspect-ratio: 1;
  scroll-snap-align: start;
  background: var(--charcoal-3);
  position: relative;
  overflow: hidden;
}

.ig-post img, .ig-post video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out); }
.ig-post:hover img, .ig-post:hover video { transform: scale(1.08); }

.ig-post::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.75) 100%);
}

.ig-track .reel-card {
  flex: 0 0 clamp(200px, 26vw, 260px);
}

.ig-post svg {
  position: absolute; top: 0.9rem; right: 0.9rem; z-index: 1;
  width: 1.2rem; height: 1.2rem;
  color: var(--white);
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.5));
}

/* ==========================================================================
   About
   ========================================================================== */

.about { background: var(--black); overflow: hidden; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.about-media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-media);
  overflow: hidden;
}

.about-media video, .about-media img { width: 100%; height: 100%; object-fit: cover; }

.about-media-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.75) 100%);
}

.about-label {
  position: absolute; left: 1.4rem; top: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: rgba(10, 10, 11, 0.55);
  backdrop-filter: blur(6px);
  padding: 0.55rem 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.about-label::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red-bright);
}

.about-badge {
  position: absolute;
  left: -1.2rem; bottom: 1.8rem;
  background: var(--red);
  padding: 1.1rem 1.6rem;
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
  box-shadow: 0 20px 40px -12px rgba(0,0,0,.6);
}

.about-badge b { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--white); line-height: 1; }
.about-badge span { display: block; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.85); margin-top: 0.4rem; }

.timeline { margin-top: 2.6rem; display: flex; flex-direction: column; gap: 1.6rem; }

.timeline-item { display: flex; gap: 1.3rem; padding-left: 1.3rem; border-left: 2px solid rgba(242,241,238,0.15); position: relative; }

.timeline-item::before {
  content: "";
  position: absolute; left: -6px; top: 4px;
  width: 10px; height: 10px;
  background: var(--red-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(227,17,26,0.2);
}

.timeline-item h4 { font-family: var(--font-body); font-weight: 700; text-transform: none; font-size: 1.05rem; color: var(--white); letter-spacing: 0; }
.timeline-item p { color: var(--steel-light); font-size: 0.92rem; margin-top: 0.3rem; }

/* ==========================================================================
   Reviews
   ========================================================================== */

.reviews { background: var(--black); }

.reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.reviews-score {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  background: var(--charcoal-2);
  padding: 1.1rem 1.6rem;
  border-left: 3px solid var(--red);
}

.reviews-score-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1;
}

.reviews-score-meta { display: flex; flex-direction: column; gap: 0.35rem; }

.reviews-stars { display: flex; gap: 0.2rem; color: var(--red-bright); }
.reviews-stars svg { width: 1.05rem; height: 1.05rem; }

.star-rating { position: relative; display: inline-flex; line-height: 0; }
.star-rating .star-row { display: flex; gap: 0.2rem; }
.star-rating .star-row svg { width: 1.05rem; height: 1.05rem; }
.star-rating .star-row-bg { color: rgba(242, 241, 238, 0.16); }
.star-rating .star-row-fg {
  position: absolute;
  top: 0; left: 0;
  color: var(--red-bright);
  overflow: hidden;
  white-space: nowrap;
  width: calc(var(--rating, 5) / 5 * 100%);
}

.reviews-score-meta span { font-size: 0.85rem; color: var(--steel-light); }
.reviews-score-meta a { color: var(--steel-light); text-decoration: underline; text-underline-offset: 2px; }
.reviews-score-meta a:hover { color: var(--red-bright); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--charcoal-2);
  padding: 1.9rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  min-width: 0;
  transition: transform 0.35s var(--ease-out), background 0.35s;
}

.review-card:hover { background: var(--charcoal-3); transform: translateY(-6px); }

.review-card .reviews-stars svg { width: 0.95rem; height: 0.95rem; }

.review-text {
  color: var(--fog);
  font-size: 0.95rem;
  line-height: 1.65;
  flex-grow: 1;
}

.review-author { display: flex; align-items: center; gap: 0.9rem; }

.review-avatar {
  width: 2.6rem; height: 2.6rem;
  border-radius: 50%;
  background: var(--charcoal-3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--red-bright);
  flex-shrink: 0;
}

.review-author-meta h4 {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
  color: var(--white);
}

.review-author-meta span { display: block; font-size: 0.78rem; color: var(--steel); margin-top: 0.1rem; }

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  background: linear-gradient(160deg, var(--red-bright) 0%, var(--red-dark) 100%);
  text-align: center;
  position: relative;
}

.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,0.07) 0 2px, transparent 2px 90px);
  pointer-events: none;
}

.cta-band .btn-primary {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 8px 30px -8px rgba(0, 0, 0, 0.35);
}

.cta-band .btn-primary:hover {
  background: var(--black);
  color: var(--white);
}

.cta-band .section-title { max-width: none; margin-inline: auto; }

.cta-phone {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5rem);
  color: var(--white);
  margin-block: 1.6rem 2.2rem;
  transition: color 0.3s;
}

.cta-phone:hover { color: var(--red-bright); }
.cta-phone small { font-size: 1rem; color: rgba(255,255,255,0.75); font-family: var(--font-body); text-transform: none; letter-spacing: 0; }

/* ==========================================================================
   Contact
   ========================================================================== */

.branches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.branch-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  background: var(--charcoal-2);
  padding: 1.6rem 1.5rem;
  border-left: 3px solid var(--red);
  transition: background 0.3s, transform 0.3s var(--ease-out);
}

.branch-card:hover { background: var(--charcoal-3); transform: translateY(-4px); }

.branch-card .branch-tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--red-bright);
}

.branch-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--white);
}

.branch-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.85rem;
  color: var(--steel-light);
  margin-top: auto;
}

.branch-card a:hover { color: var(--red-bright); }
.branch-card a svg { width: 1em; height: 1em; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.contact-info { display: flex; flex-direction: column; gap: 1.6rem; }

.contact-row { display: flex; gap: 1.1rem; align-items: flex-start; }
.contact-row svg { width: 1.4rem; height: 1.4rem; color: var(--red-bright); flex-shrink: 0; margin-top: 0.2rem; }
.contact-row h4 { font-family: var(--font-body); font-weight: 700; text-transform: none; font-size: 1rem; color: var(--white); letter-spacing: 0; }
.contact-row p, .contact-row a { color: var(--steel-light); font-size: 0.96rem; }
.contact-row a:hover { color: var(--red-bright); }

.contact-row.emergency {
  background: var(--charcoal-2);
  padding: 1.4rem 1.5rem;
  border-left: 3px solid var(--red);
}

.contact-row.emergency a { color: var(--white); font-family: var(--font-display); font-size: 1.3rem; text-transform: uppercase; }

.map-frame {
  width: 100%; height: 100%; min-height: 260px;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.9);
  border-radius: var(--radius-media);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  background: var(--charcoal-2);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  border-top: 3px solid var(--red);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.65);
}

.contact-form-head { margin-bottom: 0.4rem; }
.contact-form-head h3 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.contact-form-head p { color: var(--steel-light); font-size: 0.92rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.field label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-light);
  margin-bottom: 0.5rem;
}

.field input, .field textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid rgba(242,241,238,0.12);
  padding: 0.95rem 1.1rem;
  color: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.field input:focus, .field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(227, 17, 26, 0.2);
}
.field textarea { min-height: 120px; resize: vertical; }

.contact-form .btn { align-self: flex-start; }

.billing-info {
  margin-top: 2.8rem;
  padding: 1.8rem 2rem;
  background: var(--charcoal-2);
  border-left: 3px solid var(--red);
  box-shadow: 0 20px 50px -30px rgba(0, 0, 0, 0.6);
}

.billing-info .eyebrow { margin-bottom: 0.9rem; }

.billing-info > p {
  color: var(--fog);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(242, 241, 238, 0.1);
}

.billing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem 2rem;
  font-size: 0.9rem;
  color: var(--steel-light);
}

.billing-grid b {
  display: block;
  color: var(--steel);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

@media (max-width: 700px) {
  .billing-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--charcoal);
  padding-block: 3.5rem 2rem;
  border-top: 1px solid rgba(242,241,238,0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.8rem;
}

.footer-brand img { height: 44px; width: auto; max-width: none; margin-bottom: 1.1rem; }
.footer-brand p { color: var(--steel-light); font-size: 0.92rem; max-width: 34ch; }

.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--steel-light);
  margin-bottom: 1.1rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { color: var(--fog); font-size: 0.95rem; transition: color 0.25s; }
.footer-col a:hover { color: var(--red-bright); }

.footer-social { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.footer-social a {
  width: 2.4rem; height: 2.4rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(242,241,238,0.18);
  border-radius: 50%;
  transition: background 0.3s, border-color 0.3s;
}
.footer-social a:hover { background: var(--red); border-color: var(--red); }
.footer-social svg { width: 1.1rem; height: 1.1rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(242,241,238,0.08);
  font-size: 0.82rem;
  color: var(--steel);
}

.footer-bottom a:hover { color: var(--steel-light); }

/* ==========================================================================
   Mobile sticky CTA
   ========================================================================== */

.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  background: var(--red);
  padding: 0.95rem 1.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 -6px 24px rgba(0,0,0,.4);
}

.mobile-cta svg { width: 1.2rem; height: 1.2rem; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .why-grid, .services-grid, .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 480px; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .branches-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .instagram-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .main-nav, .header-actions .call-btn { display: none; }
  .nav-toggle { display: flex; }

  .main-nav.is-open {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 105;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 3rem var(--gutter);
    gap: 1.6rem;
  }

  .main-nav.is-open a:not(.call-btn-mobile) { font-size: 1.7rem; }
  .main-nav.is-open .call-btn-mobile { display: inline-flex; margin-top: 1rem; }

  .hero-stats { flex-wrap: wrap; row-gap: 1.5rem; }
  .services-grid, .gallery-grid, .tech-grid, .reviews-grid { grid-template-columns: 1fr; }
  .branches-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .branch-card { padding: 1.2rem 1.1rem; }

  .why-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 1rem;
    margin: 0 calc(var(--gutter) * -1);
    padding: 0 var(--gutter) 0.5rem;
  }
  .why-grid::-webkit-scrollbar { display: none; }
  .why-card { flex: 0 0 82%; scroll-snap-align: start; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2.2rem; }

  .mobile-cta { display: flex; }
  body { padding-bottom: 64px; }

  .scroll-cue { display: none; }
}
