/* ============================================================
   EXQUISITE CARWASH STYLES
   Cormorant Garamond · Dark · Gold · Cinematic
   ============================================================ */

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

:root {
  --black:    #080808;
  --dark:     #0e0e0e;
  --surface:  #141414;
  --card:     #181818;
  --border:   rgba(255,255,255,0.07);
  --gold:     #c9a84c;
  --gold-lt:  #e8c96a;
  --gold-dim: rgba(201,168,76,0.15);
  --blue:     #1dd1a1;
  --text:     #f0ede8;
  --muted:    rgba(240,237,232,0.45);
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'Inter', system-ui, sans-serif;
  --radius:   2px;
  --nav-h:    88px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
em { font-style: italic; }

/* ── TYPOGRAPHY ── */
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
}
.section-title em { color: var(--gold); font-style: italic; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  background: transparent;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-ghost-sm {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.btn-ghost-sm:hover { border-color: var(--gold); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav__logo-img {
  display: block;
  height: 100px;
  width: auto;
  max-width: 100%;
}
.nav__logo-mark {
  width: 34px; height: 34px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0;
}
.nav__logo-text {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.2;
}
.nav__logo-text em {
  display: block;
  font-style: normal;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.22em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--text); }
.nav__cta {
  margin-left: 1.5rem;
  padding: 0.55rem 1.4rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
  flex-shrink: 0;
}
.nav__cta:hover { background: var(--gold); color: var(--black); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 6rem;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__video,
.hero__poster {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__video { position: absolute; inset: 0; }
.hero__poster { position: absolute; inset: 0; z-index: -1; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8,8,8,0.55) 0%,
    rgba(8,8,8,0.2) 40%,
    rgba(8,8,8,0.75) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.5rem, 5vw, 6rem);
  max-width: 760px;
}
.hero__location {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.hero__headline {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.4rem;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold);
}
.hero__sub {
  font-size: 1rem;
  color: rgba(240,237,232,0.7);
  max-width: 420px;
  margin-bottom: 2.4rem;
  line-height: 1.65;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 4vw, 4rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.hero__scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-strip__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.stat { text-align: center; flex: 1; }
.stat__num {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat__star { font-size: 0.6em; }
.stat__unit { font-size: 0.55em;  }
.stat__label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat__divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 7rem 2rem;
  max-width: 1320px;
  margin: 0 auto;
}
.services__header {
  margin-bottom: 4rem;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.service-card {
  background: var(--card);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { background: #1e1e1e; }

.service-card__num {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--gold-dim);
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s;
}
.service-card:hover .service-card__num { color: rgba(201,168,76,0.25); }

.service-card__img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.72) saturate(0.75) sepia(0.25) contrast(1.08);
}
.service-card:hover .service-card__img {
  transform: scale(1.04);
  filter: brightness(0.82) saturate(0.9) sepia(0.15) contrast(1.05);
}

.service-card__body {
  padding: 2rem 2rem 2.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card__body h3 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 0.9rem;
  color: var(--text);
}
.service-card__body h3 em { color: var(--gold); font-style: italic; }
.service-card__body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}
.service-card__link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: letter-spacing 0.2s;
}
.service-card:hover .service-card__link { letter-spacing: 0.22em; }

/* ============================================================
   PHILOSOPHY BAND
   ============================================================ */
.philosophy {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6rem 2rem;
  text-align: center;
}
.philosophy__inner {
  max-width: 760px;
  margin: 0 auto;
}
.philosophy__quote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--text);
  margin: 1.5rem 0 2rem;
  font-style: normal;
}
.philosophy__quote em {
  font-style: italic;
  color: var(--gold);
}
.philosophy__rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}
.philosophy__sub {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   WHY US
   ============================================================ */
.why {
  padding: 7rem 2rem;
  max-width: 1320px;
  margin: 0 auto;
}
.why__header { margin-bottom: 4rem; }
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.why-item {
  background: var(--dark);
  padding: 2.5rem 2rem;
  transition: background 0.25s;
}
.why-item:hover { background: var(--card); }
.why-item__num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 1rem;
}
.why-item h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.why-item p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 7rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.testimonials__header { margin-bottom: 4rem; max-width: 1320px; margin-left: auto; margin-right: auto; }
.testimonials__track {
  max-width: 1320px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.testimonial {
  background: var(--card);
  padding: 2.5rem 2rem;
}
.testimonial__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}
.testimonial__text {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.8rem;
  font-style: italic;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.testimonial__avatar {
  width: 36px; height: 36px;
  background: var(--gold-dim);
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
}
.testimonial__name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}
.testimonial__source {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.testimonials__cta {
  max-width: 1320px;
  margin: 0 auto;
}

/* ============================================================
   BOOK CTA
   ============================================================ */
.book-cta {
  padding: 8rem 2rem;
  background: var(--black);
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.book-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.book-cta__inner { position: relative; z-index: 1; }
.book-cta .section-title { margin-bottom: 1rem; }
.book-cta__sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}
.book-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.book-cta__address {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 5rem 2rem 2rem;
}
.footer__inner {
  max-width: 1320px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
}
.footer__brand p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 1.4rem 0 1.8rem;
  max-width: 300px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.footer__logo-img {
  display: block;
  height: 100px;
  width: auto;
  max-width: 100%;
}
.footer__logo-mark {
  width: 30px; height: 30px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
}
.footer__logo span:not(.footer__logo-mark) {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.3;
}
.footer__logo em {
  display: block;
  font-style: normal;
  color: var(--gold);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
}
.footer__socials {
  display: flex;
  gap: 1rem;
}
.footer__socials a {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s;
}
.footer__socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer__heading {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer__col a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--gold); }
.footer__address {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.footer__phone,
.footer__email {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}
.footer__phone:hover,
.footer__email:hover { color: var(--gold); }
.footer__icon {
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.85;
}
.footer__address .footer__icon { margin-top: 0.2rem; }
.footer__bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__bottom p {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: 1fr 1fr; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .testimonials__track { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__logo-img { height: 40px; }

  /* mobile nav open */
  .nav.mobile-open .nav__links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(16px);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
  }
  .nav.mobile-open .nav__links a { font-size: 0.9rem; }
  .nav.mobile-open .nav__cta {
    display: block;
    margin: 0 2rem 2rem;
    position: fixed;
    top: calc(var(--nav-h) + 8rem);
    left: 0; right: 0;
    text-align: center;
    padding: 0.9rem;
    font-size: 0.8rem;
  }

  .stats-strip__inner { flex-wrap: wrap; justify-content: center; gap: 2rem; }
  .stat__divider { display: none; }

  .services__grid { grid-template-columns: 1fr; background: none; gap: 1rem; }

  .why__grid { grid-template-columns: 1fr; background: none; gap: 1px; }
  .testimonials__track { grid-template-columns: 1fr; background: none; gap: 1rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero { padding-bottom: 4rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .book-cta__actions { flex-direction: column; align-items: center; }
}
