/* ================================================================
   PREMIER AUTO DETAILING — style.css
   Charcoal     #5B5B5B  primary CTAs, dark sections (was Copper/Walnut)
   Grey         #7D7C7A  secondary links, borders (was Baltic Blue)
   Dry Sage     #C9C19F  warm accent, eyebrows, hero highlight (was Sandy Brown)
   Frosted Mint #EDF7D2  light section backgrounds (was Azure Mist)
   Cream        #EDF7B5  soft secondary tint
   Near Black   #0E0E0E  body text, footer
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@400;500;600&family=Bebas+Neue&display=swap');

/* === VARIABLES === */
:root {
  --baltic-blue: #7D7C7A;   /* Grey */
  --azure-mist: #EDF7D2;    /* Frosted Mint */
  --sandy-brown: #C9C19F;   /* Dry Sage - warm accent */
  --copper: #5B5B5B;        /* Charcoal - primary CTA */
  --deep-walnut: #5B5B5B;   /* Charcoal - dark sections */
  --cream: #EDF7B5;         /* Cream - soft accent */
  --near-black: #0E0E0E;
  --white: #ffffff;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Bebas Neue', sans-serif;
  /* Soria is a paid font - drop the .woff2 in /fonts and add an @font-face rule.
     Until then, Cormorant Garamond renders as the visible fallback. */
  --font-serif: 'Soria', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;

  --container-max: 1200px;
  --container-pad: 1.5rem;
  --radius: 8px;
  --radius-lg: 16px;
  --t: 0.3s ease;
  --t-slow: 0.6s ease;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.18);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--near-black);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; }

/* === LAYOUT === */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad); }
.section { padding: 5rem 0; }
.section--dark { background: var(--deep-walnut); color: #fff; }
.section--walnut { background: var(--deep-walnut); color: #fff; }
.section--mist { background: var(--azure-mist); }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  line-height: 1.55;
  color: #555;
  font-weight: 500;
}
.section--dark .section-header p,
.section--walnut .section-header p { color: rgba(255,255,255,0.7); }
.section--dark .section-header h2,
.section--walnut .section-header h2 { color: #fff; }

/* === TYPOGRAPHY === */
.eyebrow {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--sandy-brown);
  display: block;
  margin-bottom: 0.75rem;
}
.eyebrow--light { color: var(--cream); }

h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.15; font-weight: 800; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 700; }
p { line-height: 1.7; }
.lead {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform var(--t), box-shadow var(--t), background var(--t), border-color var(--t);
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: scale(1.02); }

.btn--copper {
  background: var(--azure-mist);
  color: var(--near-black);
  border: 1.5px solid var(--sandy-brown);
  box-shadow: 0 6px 18px rgba(91,91,91,0.18), 0 1px 2px rgba(0,0,0,0.05);
}
.btn--copper:hover {
  background: var(--cream);
  border-color: var(--near-black);
  box-shadow: 0 10px 26px rgba(91,91,91,0.25), 0 1px 2px rgba(0,0,0,0.05);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.45);
}
.btn--outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.btn--blue { background: var(--baltic-blue); color: #fff; }
.btn--blue:hover { background: #1d4f8a; }

.btn--ghost {
  background: transparent;
  color: var(--copper);
  border: 2px solid var(--copper);
}
.btn--ghost:hover { background: var(--copper); color: var(--near-black); }

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--t), padding var(--t), box-shadow var(--t);
}
.nav.scrolled {
  background: rgba(14,14,14,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav--inner {
  background: rgba(14,14,14,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo { flex-shrink: 0; }
.nav__logo img { height: 40px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
  transition: color var(--t);
  padding-bottom: 2px;
}
.nav__links a:hover { color: #fff; }
.nav__links a.active {
  color: #fff;
  border-bottom: 2px solid var(--copper);
}
.nav__cta { flex-shrink: 0; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--t);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile slide panel */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--near-black);
  border-left: 1px solid rgba(255,255,255,0.08);
  padding: 5rem 2rem 2rem;
  flex-direction: column;
  gap: 0;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  overflow-y: auto;
}
.nav__mobile.open { right: 0; }
.nav__mobile a {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 0;
  display: block;
  transition: color var(--t);
}
.nav__mobile a:hover { color: var(--copper); }
.nav__mobile .btn {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
  text-align: center;
}

.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}
.nav__overlay.open { display: block; }

/* === HERO === */
.hero {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero__video-wrap { position: absolute; inset: 0; overflow: hidden; }
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(14,14,14,0.55), rgba(14,14,14,0.75));
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 var(--container-pad);
}
.hero__title {
  color: #fff;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.hero__title em { font-style: normal; color: var(--sandy-brown); }
.hero__sub {
  font-family: var(--font-serif);
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin: 0 auto 2rem;
  max-width: 560px;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.hero__trust {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* Staggered fade-in */
.hero__title, .hero__sub, .hero__ctas, .hero__trust {
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
}
.hero__title  { animation-delay: 0.1s; }
.hero__sub    { animation-delay: 0.3s; }
.hero__ctas   { animation-delay: 0.5s; }
.hero__trust  { animation-delay: 0.7s; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === PAGE HEADER (inner pages) === */
.page-header {
  background: var(--near-black);
  padding: 7rem 0 4rem;
  text-align: center;
  color: #fff;
}
.page-header h1 { margin-bottom: 1rem; }
.page-header .lead { max-width: 620px; margin: 0 auto; color: rgba(255,255,255,0.72); }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--t); }
.breadcrumb a:hover { color: var(--copper); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* === MARQUEE === */
.marquee-section {
  background: var(--near-black);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 1.75rem 0;
  overflow: hidden;
}
.marquee-eyebrow {
  text-align: center;
  margin-bottom: 1.1rem;
}
.marquee-track { overflow: hidden; }
.marquee-inner {
  display: flex;
  width: max-content;
  animation: marqueeScroll 45s linear infinite;
}
.marquee-inner:hover { animation-play-state: paused; }
.marquee-inner span {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  padding: 0 2rem;
  background: linear-gradient(135deg, #888, #d8d8d8, #eee, #c0c0c0, #999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.marquee-inner span::after {
  content: ' ·';
  -webkit-text-fill-color: rgba(255,255,255,0.18);
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === ABOUT SNIPPET === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text .eyebrow { margin-bottom: 0.75rem; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { color: #444; margin-bottom: 0.9rem; }
.about-text .btn { margin-top: 0.75rem; }

/* === SERVICE CARDS (home preview - bento) === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.service-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--copper);
}
.service-card__icon { margin-bottom: 1.25rem; color: var(--copper); }
.service-card__icon svg { width: 44px; height: 44px; }
.service-card h3 { margin-bottom: 0.5rem; }
.service-card p { font-size: 0.88rem; color: #555; line-height: 1.65; margin-bottom: 1rem; }
.service-card__link {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--t);
}
.service-card__link:hover { gap: 0.55rem; }

/* Featured service cards (Paint Correction, Ceramic Coating) */
.service-card--featured {
  grid-column: span 2;
  background: linear-gradient(180deg, #fff 0%, var(--azure-mist) 100%);
  border: 1.5px solid var(--sandy-brown);
  padding: 2.5rem;
}
.service-card--featured .service-card__icon { color: var(--near-black); }
.service-card--featured .service-card__icon svg { width: 52px; height: 52px; }
.service-card--featured h3 { font-size: 1.55rem; }
.service-card--featured .service-card__intro {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.service-card__badge {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--near-black);
  background: var(--cream);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
  border: 1px solid var(--sandy-brown);
}

/* What's included checklist */
.service-card__includes {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.5rem;
}
.service-card__includes li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #444;
}
.service-card__includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--sandy-brown);
  transform: rotate(45deg);
}
.service-card--featured .service-card__includes li {
  font-size: 0.92rem;
  padding-left: 1.6rem;
}
.service-card--featured .service-card__includes li::before {
  background: var(--near-black);
}

/* Tighter copy on small cards */
.service-card--compact h3 { font-size: 1.1rem; }
.service-card--compact .service-card__intro {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.55;
  margin-bottom: 1rem;
}

/* === GALLERY PREVIEW (home - bento) === */
.gallery-grid-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0.85rem;
  margin-top: 2.5rem;
}
.gallery-grid-preview .img-placeholder {
  aspect-ratio: auto;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-grid-preview .img-placeholder--featured {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-grid-preview .img-placeholder--wide {
  grid-column: span 2;
}
/* Dark gradient at bottom for tag legibility */
.gallery-grid-preview .img-placeholder::after {
  content: "";
  position: absolute;
  inset: 50% 0 0 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}
.gallery-grid-preview .img-placeholder:hover::after { opacity: 1; }

.gallery-grid-preview .img-tag {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  color: #fff;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.gallery-grid-preview .img-placeholder:hover .img-tag {
  opacity: 1;
  transform: translateY(0);
}
.gallery-grid-preview .img-placeholder:hover > img { transform: scale(1.06); }

.gallery-cta { text-align: center; margin-top: 2.5rem; }

@media (max-width: 900px) {
  .gallery-grid-preview { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-grid-preview .img-placeholder--featured { grid-column: span 2; grid-row: span 2; }
  .gallery-grid-preview .img-placeholder--wide { grid-column: span 2; }
}
@media (max-width: 480px) {
  .gallery-grid-preview { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-grid-preview .img-placeholder--featured,
  .gallery-grid-preview .img-placeholder--wide { grid-column: span 1; grid-row: span 1; }
}

/* === IMAGE PLACEHOLDERS === */
.img-placeholder {
  position: relative;
  background: #f0f0f0;
  border: 2px dashed #ccc;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder.has-photo { background: transparent; border: none; }
.img-placeholder > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-grid-preview .img-placeholder:hover > img,
.gallery-item .img-placeholder:hover > img { transform: scale(1.04); }
.placeholder-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1rem;
  text-align: center;
  transition: transform 0.4s ease;
}
.placeholder-cam { color: #bbb; }
.placeholder-cam svg { width: 28px; height: 28px; }
.placeholder-slot {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: #bbb;
}
.placeholder-label {
  font-size: 0.72rem;
  color: #aaa;
  line-height: 1.4;
  max-width: 160px;
}

/* === REVIEWS MARQUEE === */
.reviews-marquee {
  margin-top: 2.5rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.reviews-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: reviews-scroll 55s linear infinite;
  will-change: transform;
}
.reviews-marquee:hover .reviews-track,
.reviews-marquee:focus-within .reviews-track {
  animation-play-state: paused;
}
.reviews-track .review-card {
  flex: 0 0 360px;
  max-width: 360px;
  box-shadow:
    0 22px 38px -14px rgba(91,91,91,0.28),
    0 8px 14px -8px rgba(91,91,91,0.18),
    0 2px 4px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reviews-track .review-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 46px -14px rgba(91,91,91,0.34),
    0 10px 18px -8px rgba(91,91,91,0.22),
    0 2px 4px rgba(0,0,0,0.05);
}
@keyframes reviews-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(calc(-50% - 0.75rem), 0, 0); }
}
@media (max-width: 640px) {
  .reviews-track .review-card { flex: 0 0 84vw; max-width: 84vw; }
  .reviews-track { animation-duration: 40s; }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; }
}

/* === REVIEWS (legacy grid, kept for other pages) === */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
}
.review-card__stars { display: flex; gap: 2px; margin-bottom: 0.9rem; }
.review-card__stars svg { width: 17px; height: 17px; fill: #f5a623; }
.review-card__text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1.1rem;
  font-style: italic;
}
.review-card__author { font-weight: 600; font-size: 0.875rem; color: var(--near-black); }
.review-card__badge { font-size: 0.75rem; color: #888; font-weight: 400; }

.reviews-rating-block { text-align: center; margin-top: 2.5rem; }
.reviews-rating-score {
  font-family: var(--font-accent);
  font-size: 3rem;
  color: var(--near-black);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.star-row { display: flex; justify-content: center; gap: 3px; margin-bottom: 0.5rem; }
.star-row svg { width: 22px; height: 22px; fill: #f5a623; }
.reviews-source { font-size: 0.82rem; color: #888; font-weight: 500; margin-bottom: 1.25rem; }
.reviews-rating-block .btn { margin-top: 0; }

/* === CTA BANNER === */
.cta-banner {
  background: var(--deep-walnut);
  padding: 4.5rem 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 0.75rem; letter-spacing: -0.01em; }
.cta-banner p {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  margin: 0 auto 2rem;
}
.cta-banner__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === FOOTER === */
.footer { background: var(--near-black); color: rgba(255,255,255,0.75); padding: 4rem 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__logo-img { height: 60px; width: auto; margin-bottom: 1rem; }
.footer__tagline { font-size: 0.86rem; color: rgba(255,255,255,0.5); line-height: 1.65; max-width: 260px; margin-bottom: 1.25rem; }
.footer__social { display: flex; gap: 0.65rem; }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--t), background var(--t);
}
.footer__social a:hover { border-color: var(--sandy-brown); background: rgba(201,193,159,0.18); }
.footer__social svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.65); }

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.2rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a { font-size: 0.86rem; color: rgba(255,255,255,0.55); transition: color var(--t); }
.footer__links a:hover { color: var(--copper); }

.footer__contact-line {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.5;
}
.footer__contact-line a { color: rgba(255,255,255,0.58); transition: color var(--t); }
.footer__contact-line a:hover { color: var(--copper); }
.footer__contact-icon { flex-shrink: 0; margin-top: 1px; }
.footer__contact-icon svg { width: 14px; height: 14px; color: var(--copper); }

.footer__hours-table { font-size: 0.8rem; color: rgba(255,255,255,0.42); line-height: 2; margin-top: 0.5rem; width: 100%; }
.footer__hours-table td:last-child { text-align: right; }

.footer__bottom {
  padding: 1.1rem 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
}

/* === SERVICES PAGE === */
.service-section { padding: 5rem 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.service-section:nth-child(even) { background: var(--azure-mist); }

.service-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.service-layout.reverse { direction: rtl; }
.service-layout.reverse > * { direction: ltr; }

.service-content .eyebrow { margin-bottom: 0.5rem; }
.service-content h2 { margin-bottom: 1.1rem; }
.service-content p { color: #444; margin-bottom: 0.9rem; font-size: 0.95rem; }

.service-benefits { margin: 1.1rem 0 1.75rem; display: flex; flex-direction: column; gap: 0.5rem; }
.service-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: #333;
  line-height: 1.55;
}
.service-benefits li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
  margin-top: 0.55rem;
}
.service-image .img-placeholder { border: none; background: transparent; }
.service-image .img-placeholder > img { height: auto; object-fit: unset; width: 100%; display: block; }

/* === FAQ === */
.faq-section { padding: 5rem 0; background: var(--azure-mist); }
.faq-section--white { background: #fff; }
.faq-list { max-width: 800px; margin: 2.5rem auto 0; }
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 0.65rem;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}
.faq-question {
  width: 100%; text-align: left;
  padding: 1.2rem 1.5rem;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.92rem; font-weight: 600;
  color: var(--near-black);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: color var(--t);
}
.faq-question:hover { color: var(--copper); }
.faq-question svg { flex-shrink: 0; width: 18px; height: 18px; transition: transform var(--t); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-item.open .faq-question { color: var(--copper); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 1.5rem 1.2rem; font-size: 0.88rem; color: #555; line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 300px; }

/* === GALLERY PAGE === */
.gallery-filters {
  display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.48rem 1.2rem;
  border-radius: 100px;
  font-size: 0.83rem; font-weight: 600;
  cursor: pointer;
  border: 2px solid rgba(0,0,0,0.12);
  background: transparent; color: #555;
  transition: all var(--t);
  font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active { background: var(--copper); color: #fff; border-color: var(--copper); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 1rem;
}
.gallery-item {
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.gallery-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.gallery-item .img-placeholder { aspect-ratio: 1 / 1; border-radius: 0; border: none; background: transparent; }
.gallery-item .img-placeholder > img { height: 100%; object-fit: cover; object-position: center; }

/* Wide item for 2:1 landscape before/after shots (e.g. Polaris RZR) */
.gallery-item--wide { grid-column: span 2; }
.gallery-item--wide .img-placeholder { aspect-ratio: 2 / 1; }
.gallery-item:hover .placeholder-inner { transform: scale(1.04); }
.gallery-item[data-hidden="true"] { display: none; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox__content { max-width: 880px; width: 100%; position: relative; }
.lightbox__img-wrap {
  width: 100%;
  max-height: 82vh;
  border-radius: var(--radius);
  overflow: hidden; background: #111;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__img-wrap img {
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.lightbox__caption { text-align: center; color: rgba(255,255,255,0.55); font-size: 0.82rem; margin-top: 0.9rem; }
.lightbox__close {
  position: absolute; top: -2.5rem; right: 0;
  background: none; border: none; color: rgba(255,255,255,0.65);
  cursor: pointer; padding: 0.4rem; line-height: 1;
  font-size: 1.4rem; transition: color var(--t);
}
.lightbox__close:hover { color: #fff; }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; border-radius: 50%;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background var(--t);
}
.lightbox__nav:hover { background: rgba(255,255,255,0.2); }
.lightbox__nav svg { width: 18px; height: 18px; }
.lightbox__nav--prev { left: -3.5rem; }
.lightbox__nav--next { right: -3.5rem; }

/* Gallery reviews */
.gallery-reviews { background: var(--azure-mist); padding: 5rem 0; }
.gallery-reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  max-width: 900px;
  margin-left: auto; margin-right: auto;
}

/* === CONTACT PAGE === */
.contact-callout {
  background: var(--copper);
  padding: 0.85rem 0;
  text-align: center;
}
.contact-callout p { color: var(--near-black); font-size: 0.9rem; font-weight: 600; }
.contact-callout a { font-weight: 700; text-decoration: underline; color: var(--near-black); }

.contact-section { padding: 4rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-title { font-size: 1.5rem; margin-bottom: 2rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-info-item__icon {
  width: 40px; height: 40px;
  background: rgba(196,115,53,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-item__icon svg { width: 18px; height: 18px; color: var(--copper); }
.contact-info-item__body { font-size: 0.88rem; color: #333; line-height: 1.6; }
.contact-info-item__body strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #aaa;
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.contact-info-item__body a { color: var(--baltic-blue); font-weight: 500; transition: color var(--t); }
.contact-info-item__body a:hover { color: var(--copper); }

.contact-hours-block { margin-top: 2rem; }
.contact-hours-block h3 { font-size: 0.95rem; margin-bottom: 0.75rem; }
.contact-hours-table { width: 100%; font-size: 0.84rem; border-collapse: collapse; }
.contact-hours-table tr { border-bottom: 1px solid rgba(0,0,0,0.05); }
.contact-hours-table td { padding: 0.45rem 0; color: #444; }
.contact-hours-table td:last-child { text-align: right; font-weight: 500; }

.contact-social-row { display: flex; gap: 0.65rem; margin-top: 1.75rem; }
.contact-social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--t), background var(--t);
}
.contact-social-row a:hover { border-color: var(--sandy-brown); background: rgba(201,193,159,0.15); }
.contact-social-row svg { width: 16px; height: 16px; fill: #555; }

/* Contact Form */
.contact-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.06);
}
.contact-form-card h2 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.contact-form-card .form-intro { font-size: 0.84rem; color: #999; margin-bottom: 1.75rem; }

.form-group { position: relative; margin-bottom: 1.4rem; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.15rem 1rem 0.5rem;
  border: 2px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--near-black);
  background: #fff;
  outline: none;
  appearance: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(196,115,53,0.12);
}
.form-group input.invalid,
.form-group textarea.invalid {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.1);
}
.form-group textarea { height: 120px; resize: vertical; padding-top: 1.4rem; }

.form-label {
  position: absolute;
  left: 1rem; top: 50%;
  transform: translateY(-50%);
  font-size: 0.88rem; color: #aaa;
  pointer-events: none;
  transition: all 0.2s ease;
  background: #fff;
  padding: 0 0.15rem;
}
.form-group--textarea .form-label {
  top: 1.2rem;
  transform: none;
}
.form-group input:focus ~ .form-label,
.form-group input.filled ~ .form-label {
  top: 0.45rem;
  font-size: 0.7rem;
  color: var(--copper);
  transform: none;
}
.form-group--textarea textarea:focus ~ .form-label,
.form-group--textarea textarea.filled ~ .form-label {
  top: 0.45rem;
  font-size: 0.7rem;
  color: var(--copper);
}

.form-error { font-size: 0.76rem; color: #e53e3e; margin-top: 0.3rem; display: none; }
.form-error.show { display: block; }

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--copper);
  color: var(--near-black);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 700;
  cursor: pointer;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  letter-spacing: 0.02em;
  margin-top: 0.5rem;
}
.btn-submit:hover:not(:disabled) {
  background: #d4823f;
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(196,115,53,0.4);
}
.btn-submit:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

.form-success-state {
  display: none;
  text-align: center;
  padding: 3rem 1.5rem;
}
.form-success-state.show { display: block; animation: fadeIn 0.45s ease forwards; }
.form-success-icon {
  width: 58px; height: 58px;
  background: rgba(196,115,53,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.form-success-icon svg { width: 26px; height: 26px; color: var(--copper); }
.form-success-state h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.form-success-state p { font-size: 0.88rem; color: #666; }

/* Map */
.map-section { padding: 0 0 5rem; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrap iframe { display: block; width: 100%; height: 400px; border: none; }

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* === SCROLL ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }
.fade-up-d4 { transition-delay: 0.4s; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .about-grid,
  .service-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-layout.reverse { direction: ltr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--featured { grid-column: span 2; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery-reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --container-pad: 1.1rem; }
  .section { padding: 3.5rem 0; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: flex; }
  .hero { height: 70vh; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card--featured { grid-column: span 1; padding: 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--wide .img-placeholder { aspect-ratio: 2 / 1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .lightbox__nav--prev { left: -1rem; }
  .lightbox__nav--next { right: -1rem; }
  .cta-banner { padding: 3rem 0; }
  .page-header { padding: 6rem 0 3rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .gallery-item--wide .img-placeholder { aspect-ratio: 2 / 1; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .cta-banner__btns { flex-direction: column; align-items: center; }
  .gallery-filters { gap: 0.35rem; }
  .filter-btn { padding: 0.4rem 0.9rem; font-size: 0.78rem; }
}
