/* ==========================================================================
   RedOne Auto Mobile Detailing — design tokens
   ========================================================================== */

@property --wipe {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 38%;
}

:root {
  --ink-950: #130f0e;
  --ink-900: #1b1513;
  --ink-800: #261d1a;
  --ink-700: #382725;
  --ink-100: #f1e7e4;

  --bone: #f7f2ee;
  --bone-soft: #efe6e0;
  --paper: #fdfaf8;

  --ink: #1c1310;
  --ink-soft: #6c5e57;

  --red: #d3212c;
  --red-light: #f0555e;
  --red-dark: #98151d;

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(19, 15, 14, 0.09);
  --shadow-md: 0 8px 24px rgba(19, 15, 14, 0.15);
  --shadow-lg: 0 24px 60px rgba(19, 15, 14, 0.26);

  --max-w: 1240px;
  --nav-h: 76px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Palette is locked (no OS dark-mode swap): the near-black hero, before/after,
   quote and footer sections are fixed brand color blocks, by design. */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: "Karla", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: "Urbanist", "Karla", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-dark);
}

.section-head {
  max-width: 640px;
  margin-bottom: 44px;
}
.section-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.12;
  margin-top: 10px;
}
.section-head p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 16.5px;
  max-width: 60ch;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Buttons -------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.btn:active { transform: translateY(1px) scale(0.98); }

.btn-primary {
  background: var(--red);
  color: #fff6f5;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--red-light); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  border-color: rgba(247, 242, 238, 0.42);
  color: var(--bone);
}
.btn-ghost:hover { background: rgba(247, 242, 238, 0.12); }

.btn-outline {
  background: transparent;
  border-color: rgba(28, 19, 16, 0.18);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--red-dark); background: rgba(211, 33, 44, 0.06); }

.btn-block { width: 100%; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(19, 15, 14, 0.93);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid rgba(247, 242, 238, 0.08);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark { height: 32px; width: 32px; flex-shrink: 0; }
.brand-word {
  font-family: "Urbanist", sans-serif;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--bone);
}
.brand-word em { font-style: normal; color: var(--red-light); }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(247, 242, 238, 0.82);
  transition: color 0.2s var(--ease);
}
.main-nav a:hover { color: var(--red-light); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--bone);
}
.header-phone i { color: var(--red-light); font-size: 17px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--bone);
  font-size: 26px;
  padding: 4px;
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-cta .btn-primary { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 480px) {
  .header-phone span { display: none; }
}

.mobile-nav {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--ink-950);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
  gap: 6px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.mobile-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-nav a {
  padding: 16px 4px;
  font-size: 19px;
  font-weight: 600;
  color: var(--bone);
  border-bottom: 1px solid rgba(247,242,238,0.08);
}
.mobile-nav .btn { margin-top: 18px; }

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

.hero { background: var(--ink-900); padding: 56px 0 0; overflow: clip; }

.hero .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-copy { padding-bottom: 56px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px 8px 10px;
  border-radius: var(--radius-pill);
  background: rgba(211, 33, 44, 0.16);
  border: 1px solid rgba(211, 33, 44, 0.4);
  color: var(--red-light);
  font-size: 13px;
  font-weight: 700;
}
.hero-badge i { font-size: 16px; }

.hero h1 {
  color: var(--bone);
  font-size: clamp(32px, 4.4vw, 50px);
  line-height: 1.1;
  margin-top: 20px;
  max-width: 15ch;
}
.hero h1 em { font-style: normal; color: var(--red-light); }

.hero-sub {
  margin-top: 18px;
  color: rgba(247, 242, 238, 0.78);
  font-size: 17.5px;
  max-width: 46ch;
}

.hero-actions { display: flex; align-items: center; gap: 16px; margin-top: 30px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(247, 242, 238, 0.12);
  flex-wrap: wrap;
}
.hero-stats .stat strong {
  display: block;
  font-family: "Urbanist", sans-serif;
  font-size: 22px;
  color: var(--bone);
}
.hero-stats .stat span { font-size: 12.5px; color: rgba(247, 242, 238, 0.62); }

@media (max-width: 940px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 12px; }
  .hero-copy { padding-bottom: 8px; }
}

/* Car-wash hero animation (diagonal wipe + water streaks) --------------- */

.carwash { position: relative; aspect-ratio: 640 / 320; display: flex; align-items: center; justify-content: center; }
.carwash svg { width: 100%; height: 100%; overflow: visible; }
.carwash .bubbles-layer { position: absolute; inset: 0; pointer-events: none; }

/* dirty layer visible from the wipe boundary rightward (not-yet-cleaned);
   a diagonal parallelogram clip (not a straight edge) for a more dynamic,
   premium "squeegee" feel than a plain vertical wipe */
.carwash .dirty-layer,
.carwash .wheel-dirty-clip {
  clip-path: polygon(
    calc(var(--wipe) - 7%) 0%, 100% 0%, 100% 100%, calc(var(--wipe) + 7%) 100%
  );
  animation: wipe-cycle 6.5s ease-in-out infinite;
}
.carwash .wipe-divider {
  position: absolute;
  top: 6%;
  bottom: 12%;
  left: var(--wipe);
  width: 34px;
  transform: translateX(-50%) skewX(-8deg);
  background: linear-gradient(90deg, rgba(240,85,94,0) 0%, rgba(240,85,94,0.5) 45%, rgba(255,255,255,0.9) 50%, rgba(240,85,94,0.5) 55%, rgba(240,85,94,0) 100%);
  filter: blur(6px);
  animation: wipe-cycle 6.5s ease-in-out infinite;
  pointer-events: none;
}
.carwash .mitt {
  position: absolute;
  bottom: 16%;
  left: var(--wipe);
  transform: translate(-50%, 20%);
  width: 13%;
  animation: wipe-cycle 6.5s ease-in-out infinite;
  filter: drop-shadow(0 6px 10px rgba(19,15,14,0.4));
  pointer-events: none;
}
.carwash .shine-sweep { animation: shine-sweep 3.2s ease-in-out infinite; will-change: transform, opacity; }
.carwash .bubble { animation: bubble-float 4.5s ease-in-out infinite; transform-origin: center; will-change: transform, opacity; }
.carwash .bubble:nth-child(2) { animation-delay: 0.7s; }
.carwash .bubble:nth-child(3) { animation-delay: 1.6s; }
.carwash .bubble:nth-child(4) { animation-delay: 2.4s; }
.carwash .bubble:nth-child(5) { animation-delay: 3.1s; }
.carwash .droplet {
  position: absolute;
  left: var(--wipe);
  top: 55%;
  width: 6px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(240,150,155,0.55));
  transform: translate(-50%, -6px);
  pointer-events: none;
  animation: droplet-fall 2.4s ease-in infinite;
  will-change: transform, opacity;
}
.carwash .droplet:nth-child(2) { animation-delay: 0.5s; }
.carwash .droplet:nth-child(3) { animation-delay: 1.1s; }
.carwash .wipe-divider,
.carwash .mitt,
.carwash .droplet-layer { will-change: left; }

@keyframes wipe-cycle {
  0%   { --wipe: 4%; }
  10%  { --wipe: 4%; }
  55%  { --wipe: 96%; }
  85%  { --wipe: 96%; }
  100% { --wipe: 4%; }
}
@keyframes shine-sweep {
  0%   { transform: translateX(-60%) skewX(-14deg); opacity: 0; }
  8%   { opacity: 0.9; }
  30%  { opacity: 0; }
  100% { transform: translateX(160%) skewX(-14deg); opacity: 0; }
}
@keyframes bubble-float {
  0%   { transform: translateY(0) scale(0.85); opacity: 0; }
  15%  { opacity: 0.9; }
  100% { transform: translateY(-46px) scale(1.05); opacity: 0; }
}
@keyframes droplet-fall {
  0%   { transform: translateY(-6px); opacity: 0; }
  12%  { opacity: 0.85; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(64px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .carwash .dirty-layer, .carwash .wheel-dirty-clip, .carwash .wipe-divider, .carwash .mitt,
  .carwash .shine-sweep, .carwash .bubble, .carwash .droplet { animation: none; }
  .carwash .dirty-layer, .carwash .wheel-dirty-clip { clip-path: polygon(38% 0%, 100% 0%, 100% 100%, 52% 100%); }
  .carwash .wipe-divider, .carwash .mitt { left: 45%; }
  .carwash .shine-sweep, .carwash .bubble, .carwash .droplet { opacity: 0; }
}

.carwash-caption {
  position: absolute;
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247,242,238,0.5);
  white-space: nowrap;
}

/* ==========================================================================
   Trust strip
   ========================================================================== */

.trust-strip { background: var(--paper); border-bottom: 1px solid rgba(28,19,16,0.06); }
.trust-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 34px;
  padding-bottom: 34px;
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item i { font-size: 24px; color: var(--red-dark); flex-shrink: 0; }
.trust-item strong { display: block; font-family: "Urbanist", sans-serif; font-size: 14.5px; }
.trust-item span { font-size: 12.5px; color: var(--ink-soft); }
@media (max-width: 780px) { .trust-strip .wrap { grid-template-columns: repeat(2, 1fr); } }

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

.about { padding: 92px 0; background: var(--bone); }
.about .wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.about-body p { color: var(--ink-soft); font-size: 16.5px; max-width: 58ch; }
.about-body h2 { font-size: clamp(28px, 3.4vw, 38px); margin-top: 10px; }

.about-badge {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--ink-100);
  border: 1px solid rgba(211,33,44,0.14);
  border-radius: var(--radius-md);
  padding: 20px 22px;
}
.about-badge i { font-size: 26px; color: var(--red-dark); margin-top: 2px; }
.about-badge strong { display: block; font-family: "Urbanist", sans-serif; font-size: 15.5px; margin-bottom: 4px; }
.about-badge span { font-size: 14px; color: var(--ink-soft); }

.about-panel { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-md); position: relative; }
.about-panel svg { display: block; }

@media (max-width: 900px) {
  .about .wrap { grid-template-columns: 1fr; gap: 40px; }
  .about-panel { order: -1; aspect-ratio: 16/10; }
}

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

.services { padding: 92px 0; background: var(--paper); }

.service-grid-photo { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/4.4; box-shadow: var(--shadow-sm); }
.service-card svg { width: 100%; height: 100%; display: block; transition: transform 0.5s var(--ease); }
.service-card:hover svg { transform: scale(1.06); }
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19,15,14,0) 40%, rgba(19,15,14,0.86) 100%);
}
.service-card .card-copy { position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 1; }
.service-card .card-copy i { font-size: 20px; color: var(--red-light); }
.service-card .card-copy h3 { color: var(--bone); font-size: 18px; margin-top: 8px; }
.service-card .card-copy p { color: rgba(247,242,238,0.72); font-size: 13.5px; margin-top: 4px; }

.service-grid-icons { margin-top: 22px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-chip {
  background: var(--bone);
  border: 1px solid rgba(28,19,16,0.08);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: left;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.service-chip:hover { border-color: var(--red-dark); transform: translateY(-3px); }
.service-chip .chip-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--ink-100);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.service-chip .chip-icon i { font-size: 21px; color: var(--red-dark); }
.service-chip h3 { font-size: 14.5px; }
.service-chip p { font-size: 12.5px; color: var(--ink-soft); margin-top: 4px; }

@media (max-width: 980px) {
  .service-grid-photo { grid-template-columns: 1fr; }
  .service-grid-icons { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   Reviews (marquee)
   ========================================================================== */

.reviews { padding: 92px 0 100px; background: var(--bone); overflow: hidden; }
.review-track-outer {
  position: relative;
  margin-top: 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.review-track { display: flex; gap: 20px; width: max-content; animation: marquee 46s linear infinite; }
.review-track-outer:hover .review-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .review-track { animation: none; overflow-x: auto; } }

.review-card {
  position: relative;
  flex: 0 0 320px;
  background: var(--paper);
  border: 1px solid rgba(28,19,16,0.07);
  border-radius: var(--radius-md);
  padding: 24px 24px 22px;
  box-shadow: var(--shadow-sm);
}
.review-card .sample-chip {
  position: absolute; top: 16px; right: 16px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-soft); background: var(--bone-soft);
  border: 1px solid rgba(28,19,16,0.1);
  padding: 3px 9px; border-radius: var(--radius-pill);
}
.review-stars { color: var(--red-dark); font-size: 14px; letter-spacing: 2px; }
.review-card .quote-text { margin-top: 14px; font-size: 15px; color: var(--ink); line-height: 1.55; }
.review-who { margin-top: 18px; display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: "Urbanist", sans-serif; font-weight: 700; font-size: 13px; color: #fff; flex-shrink: 0;
}
.review-who strong { display: block; font-size: 13.5px; }
.review-who span { font-size: 12px; color: var(--ink-soft); }
.reviews-note { margin-top: 26px; text-align: center; font-size: 12.5px; color: var(--ink-soft); }

/* ==========================================================================
   Quote / Contact (asks for make + model)
   ========================================================================== */

.quote { padding: 92px 0; background: var(--ink-900); }
.quote .wrap { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 60px; }

.quote-info .eyebrow { color: var(--red-light); }
.quote-info h2 { color: var(--bone); font-size: clamp(28px, 3.4vw, 38px); margin-top: 10px; }
.quote-info p.lead { color: rgba(247,242,238,0.72); margin-top: 14px; font-size: 16px; max-width: 44ch; }

.contact-list { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.contact-list a, .contact-list .row { display: flex; align-items: center; gap: 14px; color: var(--bone); font-size: 15px; }
.contact-list i {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(247,242,238,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--red-light); font-size: 18px; flex-shrink: 0;
}
.contact-list a:hover { color: var(--red-light); }

.social-row { margin-top: 30px; display: flex; gap: 12px; }
.social-row a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(247,242,238,0.24);
  display: flex; align-items: center; justify-content: center;
  color: var(--bone); font-size: 18px;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.social-row a:hover { background: var(--red); border-color: var(--red); color: #fff6f5; }

.quote-form { background: var(--paper); border-radius: var(--radius-lg); padding: 34px 34px 30px; box-shadow: var(--shadow-lg); }
.quote-form h3 { font-size: 19px; }
.quote-form .form-sub { font-size: 13.5px; color: var(--ink-soft); margin-top: 6px; }

.form-grid { margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 700; color: var(--ink); }
.field .hint { font-weight: 400; color: var(--ink-soft); text-transform: none; letter-spacing: 0; }
.field input, .field select, .field textarea {
  border: 1px solid rgba(28,19,16,0.16);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--ink);
  background: var(--bone);
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(108,94,87,0.6); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--red-dark);
  box-shadow: 0 0 0 3px rgba(211,33,44,0.15);
}
.field textarea { resize: vertical; min-height: 96px; }

.quote-form .btn { margin-top: 22px; }
.form-note { margin-top: 14px; display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--ink-soft); }
.form-note i { color: var(--red-dark); }

@media (max-width: 940px) {
  .quote .wrap { grid-template-columns: 1fr; gap: 40px; }
  .form-grid { grid-template-columns: 1fr; }
  .quote-form { padding: 26px; }
}

/* ==========================================================================
   Map / service area
   ========================================================================== */

.area { padding: 90px 0 0; background: var(--bone); }
.area-inner { border-radius: var(--radius-lg) var(--radius-lg) 0 0; overflow: hidden; box-shadow: var(--shadow-md); }
.area-map { width: 100%; height: 420px; border: 0; display: block; filter: saturate(0.85); }
.area-towns { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.area-towns span { font-size: 13px; padding: 7px 14px; border-radius: var(--radius-pill); background: var(--ink-100); color: var(--ink); font-weight: 600; }

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

.site-footer { background: var(--ink-950); color: rgba(247,242,238,0.7); padding: 60px 0 26px; margin-top: 46px; }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(247,242,238,0.1);
}
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { font-size: 14px; max-width: 34ch; color: rgba(247,242,238,0.55); }
.footer-col h4 { color: var(--bone); font-size: 14px; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col li { font-size: 14px; }
.footer-col a:hover { color: var(--red-light); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 22px; font-size: 12.5px; color: rgba(247,242,238,0.4);
  flex-wrap: wrap; gap: 10px;
}
@media (max-width: 780px) { .footer-top { grid-template-columns: 1fr; gap: 30px; } }

/* ==========================================================================
   Reveal-on-scroll utility
   ========================================================================== */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ==========================================================================
   Small-screen tune-up
   ========================================================================== */

@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  .nav-toggle { padding: 6px; margin: -6px; }

  .about, .services, .reviews, .quote { padding-top: 64px; padding-bottom: 64px; }
  .area { padding-top: 64px; }

  .section-head { margin-bottom: 30px; }

  .hero { padding-top: 40px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 10px; }
  .hero-stats .stat strong { font-size: 19px; }
  .hero-stats .stat span { font-size: 11px; line-height: 1.35; display: block; }

  .review-card { flex-basis: 84vw; }

  .quote-form { padding: 22px 20px; }
  .form-grid { gap: 14px; }

  .area-map { height: 300px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
