/* ==========================================================================
   CrewShine Auto Detailing — design tokens
   ========================================================================== */

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

:root {
  --ink-950: #0a0e14;
  --ink-900: #0f141c;
  --ink-800: #161d29;
  --ink-700: #202a3b;
  --ink-600: #303f56;
  --ink-100: #e9edf3;

  --bone: #f4f6f9;
  --bone-soft: #eaeef4;
  --paper: #fbfcfd;

  --ink: #10141c;
  --ink-soft: #545e70;

  --cyan: #21b8d6;
  --cyan-light: #5fd6ec;
  --cyan-dark: #157f95;

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

  --shadow-sm: 0 1px 2px rgba(10, 14, 20, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 14, 20, 0.14);
  --shadow-lg: 0 24px 60px rgba(10, 14, 20, 0.24);

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

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

/* Palette is locked (not swapped by OS dark mode): the graphite hero,
   quote and footer sections are fixed brand color blocks alternating
   with light bone sections, by design, not a light/dark theme. */

* { 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: "Manrope", -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: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 600;
  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: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-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: 600;
  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(--cyan);
  color: #06222a;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--cyan-light); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  border-color: rgba(244, 246, 249, 0.42);
  color: var(--bone);
}
.btn-ghost:hover { background: rgba(244, 246, 249, 0.12); }

.btn-outline {
  background: transparent;
  border-color: rgba(16, 20, 28, 0.18);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--cyan-dark); background: rgba(33, 184, 214, 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(10, 14, 20, 0.92);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid rgba(244, 246, 249, 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: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--bone);
}
.brand-word em {
  font-style: normal;
  color: var(--cyan-light);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(244, 246, 249, 0.82);
  transition: color 0.2s var(--ease);
}
.main-nav a:hover { color: var(--cyan-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: 600;
  color: var(--bone);
}
.header-phone i { color: var(--cyan-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: 500;
  color: var(--bone);
  border-bottom: 1px solid rgba(244,246,249,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(33, 184, 214, 0.14);
  border: 1px solid rgba(33, 184, 214, 0.35);
  color: var(--cyan-light);
  font-size: 13px;
  font-weight: 600;
}
.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(--cyan-light);
}

.hero-sub {
  margin-top: 18px;
  color: rgba(244, 246, 249, 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(244, 246, 249, 0.12);
  flex-wrap: wrap;
}
.hero-stats .stat strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  color: var(--bone);
}
.hero-stats .stat span {
  font-size: 12.5px;
  color: rgba(244, 246, 249, 0.62);
}

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

/* Car-wash hero animation ------------------------------------------------ */

.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 stays visible from the current wipe boundary rightward
   (not-yet-cleaned); clean shows through to the left of it, so as --wipe
   grows the car gets CLEANER left-to-right, not dirtier */
.carwash .dirty-layer {
  clip-path: inset(0 0 0 var(--wipe));
  animation: wipe-cycle 6.5s ease-in-out infinite;
}
.carwash .wipe-divider {
  position: absolute;
  top: 8%;
  bottom: 14%;
  left: var(--wipe);
  width: 30px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(95,214,236,0) 0%, rgba(95,214,236,0.55) 45%, rgba(255,255,255,0.85) 50%, rgba(95,214,236,0.55) 55%, rgba(95,214,236,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(10,14,20,0.35));
  pointer-events: none;
}
.carwash .shine-sweep {
  animation: shine-sweep 3.4s 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 .wipe-divider,
.carwash .mitt {
  will-change: left;
}
.carwash .bubble:nth-child(2) { animation-delay: 0.8s; }
.carwash .bubble:nth-child(3) { animation-delay: 1.9s; }
.carwash .bubble:nth-child(4) { animation-delay: 2.6s; }

@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; }
}

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

.carwash-caption {
  position: absolute;
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244,246,249,0.45);
  white-space: nowrap;
}

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

.trust-strip {
  background: var(--paper);
  border-bottom: 1px solid rgba(16,20,28,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(--cyan-dark);
  flex-shrink: 0;
}
.trust-item strong {
  display: block;
  font-family: "Space Grotesk", 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 / crew
   ========================================================================== */

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

.crew-quote {
  margin-top: 30px;
  position: relative;
  background: var(--ink-900);
  border-radius: var(--radius-md);
  padding: 28px 30px;
  color: var(--bone);
}
.crew-quote i.ph-quotes {
  font-size: 26px;
  color: var(--cyan-light);
}
.crew-quote p {
  margin-top: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 19px;
  line-height: 1.4;
  color: var(--bone);
}
.crew-quote span {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  color: rgba(244,246,249,0.55);
}

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

@media (max-width: 900px) {
  .crew .wrap { grid-template-columns: 1fr; gap: 40px; }
  .crew-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(10,14,20,0) 40%, rgba(10,14,20,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(--cyan-light);
}
.service-card .card-copy h3 {
  color: var(--bone);
  font-size: 18px;
  margin-top: 8px;
}
.service-card .card-copy p {
  color: rgba(244,246,249,0.72);
  font-size: 13.5px;
  margin-top: 4px;
}

.service-grid-icons {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.service-chip {
  background: var(--bone);
  border: 1px solid rgba(16,20,28,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(--cyan-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(--cyan-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); }
}
@media (min-width: 981px) and (max-width: 1180px) {
  .service-grid-icons { grid-template-columns: repeat(3, 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(16,20,28,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(16,20,28,0.1);
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}
.review-stars {
  color: var(--cyan-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: "Space Grotesk", sans-serif;
  font-weight: 600;
  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
   ========================================================================== */

.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(--cyan-light); }
.quote-info h2 { color: var(--bone); font-size: clamp(28px, 3.4vw, 38px); margin-top: 10px; }
.quote-info p.lead { color: rgba(244,246,249,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(244,246,249,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-light);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-list a:hover { color: var(--cyan-light); }

.social-row {
  margin-top: 30px;
  display: flex;
  gap: 12px;
}
.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(244,246,249,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(--cyan); border-color: var(--cyan); color: #06222a; }

.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: 600; color: var(--ink); }
.field input,
.field select,
.field textarea {
  border: 1px solid rgba(16,20,28,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(84,94,112,0.55); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--cyan-dark);
  box-shadow: 0 0 0 3px rgba(33,184,214,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(--cyan-dark); }

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

/* ==========================================================================
   Map
   ========================================================================== */

.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.9);
}
.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-700);
  font-weight: 500;
}

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

.site-footer {
  background: var(--ink-950);
  color: rgba(244,246,249,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(244,246,249,0.1);
}
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { font-size: 14px; max-width: 34ch; color: rgba(244,246,249,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(--cyan-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  font-size: 12.5px;
  color: rgba(244,246,249,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; }

  .crew,
  .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; }
}
