/* =============================================================
   DRIVE2SHINE — Black/white heavy-display, photo-hero aesthetic
   (inspired by clarkdetailingva.com)
   ============================================================= */

:root {
  /* Palette — pure black/white */
  --bg: #000000;
  --bg-2: #0d0d0d;
  --bg-3: #161616;
  --bg-card: #141414;
  --bg-card-2: #1c1c1c;
  --line: #262626;
  --line-strong: #3a3a3a;

  --text: #f5f5f5;
  --text-2: #c8c8c8;
  --muted: #8c8c8c;
  --muted-2: #6a6a6a;

  --accent: #ffffff;
  --gold: #facc15;       /* yellow stars */
  --gold-soft: #fbbf24;

  --r: 8px;
  --r-lg: 14px;
  --r-xl: 22px;

  --container: 1280px;
  --ease: cubic-bezier(.22,.8,.22,1);

  --font-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}
.container.narrow { max-width: 920px; }

/* =============================================================
   TYPOGRAPHY
   ============================================================= */
h1, h2, h3, h4 {
  margin: 0 0 14px;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 700;
}
p { margin: 0 0 12px; color: var(--text-2); }

.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 0.95;
}

/* Section title with underline (Clark-style) */
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0.005em;
  color: var(--text);
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  margin: 0;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--text);
}
.section-head {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 920px;
}
.section-head-inline {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}
.sec-sub {
  margin: 20px auto 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 15.5px;
}

/* Small pill badge that sits next to section title */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--bg-2);
  font-weight: 600;
}

/* Feature pills row below the section header */
.feature-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 48px;
  max-width: 1100px;
}
.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--bg-2);
  font-size: 14px;
  color: var(--text-2);
  font-weight: 500;
  white-space: nowrap;
}
.feature-pill strong {
  color: #fff;
  font-weight: 700;
}
.pill-icon {
  font-size: 16px;
  line-height: 1;
}
@media (max-width: 900px) {
  .feature-pill { white-space: normal; }
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .2s var(--ease), color .2s, border-color .2s, transform .2s;
  white-space: nowrap;
}
.btn.full { width: 100%; }
.btn.sm { padding: 11px 22px; font-size: 12px; }

.btn-primary {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.btn-primary:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline:hover {
  background: #fff;
  color: #000;
}
.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text);
}
.btn-ghost:hover { border-color: #fff; color: #fff; }

/* =============================================================
   HEADER (logo left, nav center-right, BOOK NOW right)
   ============================================================= */
.header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 20px 0;
  background: transparent;
}
.header.scrolled,
body.panel-open .header,
.header.solid {
  position: sticky;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  line-height: 0;
  flex-shrink: 0;
}
.brand-logo {
  height: 56px;
  width: auto;
  border-radius: 10px;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffffff;
  transition: color .2s, opacity .2s;
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(0,0,0,0.65);
  opacity: 0.88;
}
.nav-links a:hover { opacity: 1; }
.nav-links a.active { opacity: 1; }
.header.scrolled .nav-links a { text-shadow: none; opacity: 0.85; }
.header.scrolled .nav-links a:hover,
.header.scrolled .nav-links a.active { opacity: 1; }
.header-cta {
  display: flex; align-items: center; gap: 14px;
  flex-shrink: 0;
}
.header-phone {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 13.5px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  letter-spacing: 0.02em;
}
.header.scrolled .header-phone { text-shadow: none; }
.header-phone:hover { color: var(--gold-soft); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--line-strong);
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  width: 20px; height: 2px; background: #fff;
}

/* =============================================================
   HERO — full-bleed photo with dark overlay
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.45) 18%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.85) 100%),
    url('before-2.jpg');
  background-size: cover;
  background-position: 75% 75%;
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, #000 100%);
  pointer-events: none;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  width: 100%;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.8rem, 9vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.005em;
  color: #fff;
  margin: 0 0 28px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: rgba(255,255,255,0.88);
  margin: 0 auto 40px;
  max-width: 680px;
  font-weight: 400;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.hero-stats .sep {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  display: inline-block;
}
.hero-stats strong {
  color: #fff;
  font-weight: 700;
  margin-right: 5px;
}

/* =============================================================
   SECTIONS
   ============================================================= */
.section {
  padding: 100px 0;
  position: relative;
  background: var(--bg);
}
.section.alt { background: var(--bg-2); }

/* =============================================================
   SERVICES — dark gray cards on black
   ============================================================= */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 30px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color .25s var(--ease), transform .25s;
}
.card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}
.card.featured {
  background: var(--bg-card-2);
  border-color: var(--line-strong);
}
.card.featured:hover { border-color: #fff; }
.ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #000;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
}
.card h3 {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.card .price {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  font-family: var(--font-sans);
  letter-spacing: -.01em;
}
.card .price-label {
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 4px;
}
.card .price-was {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  margin-left: 8px;
}
.card-sub {
  text-align: center;
  color: var(--muted);
  margin: 0 0 22px;
  font-size: 14px;
}
.card ul {
  list-style: none; padding: 0; margin: 0 0 22px;
  flex: 1;
}
.card li {
  padding: 10px 0 10px 26px;
  color: var(--text-2);
  font-size: 14.5px;
  position: relative;
}
.card li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 14px; height: 8px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* Inner pricing block at the bottom of the card */
.pricing-options {
  margin-top: auto;
  padding: 18px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin-bottom: 18px;
}
.pricing-options-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 14.5px;
}
.pricing-row span:first-child { color: var(--text-2); }
.pricing-row span:last-child { color: #fff; font-weight: 600; }

/* Promo banner */
.promo-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-lg);
  padding: 16px 24px;
  text-align: center;
  margin-bottom: 36px;
  color: var(--text-2);
  font-size: 14.5px;
  background: var(--bg-2);
}
.promo-banner strong { color: #fff; font-weight: 700; }
.promo-pill {
  background: #fff;
  color: #000;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* =============================================================
   ADD-ONS (icon cards in grid)
   ============================================================= */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.addon {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: border-color .2s;
}
.addon:hover { border-color: var(--line-strong); }
.addon-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  color: #fff;
}
.addon-icon svg { width: 22px; height: 22px; }
.addon-body { flex: 1; }
.addon-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 2px;
}
.addon-price {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 6px;
  font-weight: 500;
}
.addon-desc {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
}

/* =============================================================
   PROCESS
   ============================================================= */
.steps {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.steps li {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 14px;
  display: inline-block;
}
.steps h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.steps p {
  color: var(--muted);
  font-size: 13.5px;
  margin: 0;
}

/* =============================================================
   GALLERY (before/after tiles)
   ============================================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tile {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: ew-resize;
  border: 1px solid var(--line);
  isolation: isolate;
  --pos: 50%;
  background: var(--bg-3);
}
.tile .before, .tile .after {
  position: absolute; inset: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.tile .before {
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.04), transparent 40%),
    linear-gradient(135deg, #2e2e2e, #161616);
  filter: grayscale(.3);
}
.tile.has-photo .before { filter: none; }
.tile.has-photo .before,
.tile.has-photo .after {
  background-color: #000;
  background-repeat: no-repeat;
  background-size: contain !important;
  background-position: center !important;
}
.tile.has-photo.fill .before,
.tile.has-photo.fill .after {
  background-size: cover !important;
  background-position: center bottom !important;
}
.tile .before::after {
  content: "BEFORE";
  position: absolute; top: 14px; left: 16px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.18em;
  color: rgba(255,255,255,.85);
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(0,0,0,.5);
  border-radius: 3px;
}
.tile .after {
  clip-path: polygon(var(--pos) 0, 100% 0, 100% 100%, var(--pos) 100%);
  background:
    radial-gradient(circle at 30% 20%, hsla(var(--h, 200), 60%, 70%, .3), transparent 45%),
    linear-gradient(135deg,
      hsl(var(--h, 200) 50% 35%),
      hsl(var(--h, 200) 60% 18%));
}
.tile .after::before {
  content: "";
  position: absolute; top: 0; bottom: 0; left: var(--pos);
  width: 2px; margin-left: -1px;
  background: #fff;
  box-shadow: 0 0 12px rgba(255,255,255,.5);
}
.tile .after::after {
  content: "";
  position: absolute; top: 50%; left: var(--pos); transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'><path d='M4 8h8M4 8l3-3M4 8l3 3M12 8l-3-3M12 8l-3 3' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}
.tile .label {
  position: absolute; left: 14px; bottom: 14px;
  padding: 6px 10px;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  color: #fff;
  letter-spacing: 0.06em;
  border-radius: 4px;
  z-index: 2;
}
.tile[data-hue="220"] { --h: 200; }
.tile[data-hue="10"]  { --h: 170; }
.tile[data-hue="150"] { --h: 160; }
.tile[data-hue="280"] { --h: 190; }

/* =============================================================
   REVIEWS — dark cards, yellow stars
   ============================================================= */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review {
  margin: 0;
  padding: 28px 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  transition: border-color .2s;
}
.review:hover { border-color: var(--line-strong); }
.review .stars {
  color: var(--gold);
  font-size: 17px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.review blockquote {
  font-size: 15.5px;
  font-style: italic;
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 22px;
  font-weight: 400;
  flex: 1;
}
.review blockquote::before { content: "\""; }
.review blockquote::after { content: "\""; }
.review figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}
.review-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-name {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
}
.review-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.reviews-footer {
  margin-top: 32px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}
.reviews-footer strong { color: #fff; }
.reviews-footer a {
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid #fff;
}

/* =============================================================
   ABOUT (short)
   ============================================================= */
.about-short {
  text-align: left;
  max-width: 760px;
  margin: 0 auto;
}
.about-short p {
  font-size: 17.5px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 20px;
}
.about-short p:last-child { margin-bottom: 0; }
.about-short strong { color: #fff; font-weight: 700; }

/* =============================================================
   FAQ
   ============================================================= */
.faq details {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 18px 24px;
  margin-bottom: 10px;
  transition: border-color .2s;
}
.faq details[open] { border-color: var(--line-strong); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  color: #fff;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 26px;
  color: #fff;
  font-weight: 300;
  transition: transform .2s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 14px 0 0; color: var(--text-2); font-size: 15px; }

/* =============================================================
   BOOK section
   ============================================================= */
.book {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.book-copy .section-title { font-size: clamp(2rem, 4.5vw, 3rem); }
.book-points {
  list-style: none; padding: 0; margin: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.book-points li {
  padding: 12px 0;
  color: var(--text-2);
  font-size: 15px;
  border-bottom: 1px solid var(--line);
}
.book-points li:last-child { border-bottom: 0; }
.contact-line {
  font-size: 15px;
  color: var(--muted);
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}
.contact-line strong { color: #fff; }
.contact-line a {
  color: #fff;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 600;
}
.book-cal {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 700px;
}
.book-cal iframe { border: 0 !important; }

/* =============================================================
   PANELS (Before & After, FAQ, Book)
   ============================================================= */
.panel[hidden] { display: none; }
.panel:not([hidden]) {
  animation: panelIn .35s var(--ease);
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.panel-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.panel-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  background: transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: border-color .2s, color .2s;
}
.panel-back:hover { border-color: #fff; color: #fff; }
.panel-title {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
body.panel-open #view-home { display: none; }

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 64px 0 28px;
}
.foot-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}
.foot-brand p {
  margin-top: 14px;
  max-width: 320px;
  color: var(--muted);
}
.foot-brand .brand-logo { height: 64px; border-radius: 12px; }
.foot-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 18px;
}
.foot-col a, .foot-col span {
  display: block;
  color: var(--text-2);
  padding: 5px 0;
  font-size: 14.5px;
  transition: color .2s;
}
.foot-col a:hover { color: #fff; }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--muted);
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .header.open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(0,0,0,0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    padding: 18px 28px;
    gap: 4px;
  }
  .header.open .nav-links a { padding: 12px 0; font-size: 14px; }

  .cards { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .book { grid-template-columns: 1fr; gap: 36px; }
  .foot-inner { grid-template-columns: 1fr 1fr; }
  .section { padding: 70px 0; }
  .hero { min-height: 88vh; }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .steps { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr; }
  .foot-inner { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .brand-logo { height: 44px; }
  .hero h1 { font-size: clamp(2.4rem, 11vw, 4rem); }
  .hero { padding: 110px 16px 60px; min-height: 80vh; }
  .hero-stats { gap: 12px; font-size: 11px; }
  .section-title { font-size: clamp(1.8rem, 8vw, 2.5rem); }
}

/* =============================================================
   MOTION
   ============================================================= */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
}
