/* =========================================
   GLOW-N-GO AUTO SPA — Landing Page Theme
   ========================================= */

:root {
  --navy: #0F172A;
  --navy-mid: #1E293B;
  --gold: #B8924A;
  --gold-light: #D4AF6A;
  --cream: #FAFAF8;
  --cream-warm: #F5F0E8;
  --slate: #64748B;
  --slate-light: #94A3B8;
  --white: #FFFFFF;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 146, 74, 0.2);
}

.nav__logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.nav__tagline {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---- Section Label ---- */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 3rem 5rem;
  background: var(--navy);
  overflow: hidden;
}

.hero__bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(184, 146, 74, 0.07) 0%, transparent 70%),
    linear-gradient(160deg, var(--navy) 0%, #0D1420 60%, #0F172A 100%);
}

.hero__content {
  position: relative;
  max-width: 760px;
  z-index: 2;
}

.hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--slate-light);
  max-width: 480px;
  line-height: 1.65;
}

.hero__accent-bar {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
}

/* ---- Services ---- */
.services {
  padding: 6rem 3rem;
  background: var(--cream);
}

.services__header {
  max-width: 560px;
  margin-bottom: 4rem;
}

.services__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  border: 1.5px solid rgba(15, 23, 42, 0.08);
}

.service-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  transition: background 0.3s ease;
}

.service-card:hover {
  background: var(--cream-warm);
}

.service-card__icon {
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}

.service-card__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.service-card__desc {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.6;
}

/* ---- Pricing ---- */
.pricing {
  background: var(--navy);
  padding: 6rem 3rem;
}

.pricing__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.pricing__left .section-label {
  color: var(--gold-light);
}

.pricing__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.pricing__body {
  font-size: 0.925rem;
  color: var(--slate-light);
  line-height: 1.7;
}

.pricing__table {
  border: 1px solid rgba(184, 146, 74, 0.25);
}

.pricing__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--slate-light);
}

.pricing__row:last-child {
  border-bottom: none;
}

.pricing__row--header {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184, 146, 74, 0.08);
  font-weight: 500;
}

.pricing__row span:last-child {
  font-weight: 500;
  color: var(--cream-warm);
}

.pricing__note {
  font-size: 0.75rem;
  color: var(--slate);
  margin-top: 1rem;
  line-height: 1.5;
}

/* ---- Philosophy ---- */
.philosophy {
  padding: 7rem 3rem;
  background: var(--cream-warm);
  border-top: 1px solid rgba(15, 23, 42, 0.07);
}

.philosophy__quote {
  max-width: 680px;
  margin: 0 auto 5rem;
  text-align: center;
}

.philosophy__quote p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.philosophy__quote cite {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}

.philosophy__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.pillar__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.pillar__body {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.65;
}

/* ---- Closing ---- */
.closing {
  padding: 8rem 3rem;
  background: var(--navy);
  text-align: center;
}

.closing__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  letter-spacing: -0.02em;
}

.closing__body {
  font-size: 0.95rem;
  color: var(--slate-light);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ---- Footer ---- */
.footer {
  background: #080E18;
  padding: 2.5rem 3rem;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 1rem;
}

.footer__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  display: block;
}

.footer__location {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  display: block;
  margin-top: 0.25rem;
}

.footer__contact {
  text-align: right;
}

.footer__phone {
  display: block;
  font-size: 0.875rem;
  color: var(--cream-warm);
  text-decoration: none;
  font-weight: 500;
}

.footer__web {
  display: block;
  font-size: 0.75rem;
  color: var(--slate);
  text-decoration: none;
  margin-top: 0.25rem;
}

.footer__phone:hover, .footer__web:hover {
  color: var(--gold-light);
}

.footer__legal {
  font-size: 0.7rem;
  color: rgba(100, 116, 139, 0.5);
  text-align: center;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .nav { padding: 1rem 1.5rem; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .services { padding: 4rem 1.5rem; }
  .services__grid { grid-template-columns: 1fr; }
  .pricing { padding: 4rem 1.5rem; }
  .pricing__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .philosophy { padding: 4rem 1.5rem; }
  .philosophy__pillars { grid-template-columns: 1fr; gap: 2rem; }
  .closing { padding: 5rem 1.5rem; }
  .footer { padding: 2rem 1.5rem; }
  .footer__inner { flex-direction: column; gap: 1rem; text-align: center; }
  .footer__contact { text-align: center; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 2.5rem; }
  .nav__tagline { display: none; }
}