/* ===============================
   BOOST HOUSE MOTORWORKS
   Custom build by OTM Web Design
   Full Dark Mode · Carbon + Copper
   =============================== */

/* --- Design Tokens --- */
:root {
  /* Deep black anchors (engine bay, drama moments) */
  --black: #0a0a0a;
  --black-soft: #141414;
  --black-lift: #1c1c1c;

  /* Chrome / light backgrounds (content sections) */
  --chrome: #e8e6e3;
  --chrome-dark: #d4d1cc;
  --chrome-light: #f1efec;
  --chrome-white: #f8f6f3;

  /* Surface (cards on chrome) */
  --surface: #f5f3ef;
  --surface-lift: #ffffff;
  --surface-line: #c9c5be;

  /* Legacy mappings so existing class names keep working */
  --carbon-black: var(--black);
  --carbon: var(--black-soft);
  --carbon-deep: var(--black);
  --stone-dark: var(--chrome);
  --stone: var(--chrome-dark);
  --stone-soft: var(--chrome);
  --stone-lift: var(--surface-lift);
  --carbon-soft: var(--surface);
  --carbon-lift: var(--surface-lift);
  --carbon-line: var(--surface-line);

  /* Muscle red accent */
  --red: #a81f22;
  --red-bright: #c52a2d;
  --red-deep: #7e1618;
  --red-glow: rgba(168, 31, 34, 0.28);

  /* Legacy copper mapping to red */
  --copper: var(--red);
  --copper-bright: var(--red-bright);
  --copper-deep: var(--red-deep);
  --copper-glow: var(--red-glow);

  /* Text (on chrome backgrounds = dark; on black = light) */
  --ink: #141414;
  --ink-muted: #3d3d3d;
  --ink-soft: #5a5a5a;

  --text-bright: #f8f6f3;
  --text: #141414;
  --text-muted: #3d3d3d;
  --text-soft: #5a5a5a;

  /* Shadows */
  --shadow-soft: 0 6px 24px rgba(10, 10, 10, 0.12);
  --shadow-lift: 0 16px 44px rgba(10, 10, 10, 0.18);
  --shadow-deep: 0 28px 70px rgba(10, 10, 10, 0.28);
  --shadow-copper: 0 4px 16px rgba(168, 31, 34, 0.3);

  /* Chrome texture (subtle brushed metal effect) */
  --carbon-texture:
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);

  /* Type */
  --font-display: 'Bebas Neue', 'Oswald', Impact, sans-serif;
  --font-body: 'Rajdhani', 'Inter', system-ui, sans-serif;

  /* Layout */
  --container: 1240px;
  --radius: 8px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-weight: 400;
  position: relative;
}
/* Fixed background image (iOS-safe approach using body::before) */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('assets/background.jpg');
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--black);
  z-index: -1;
  will-change: transform;
}
/* Ensure everything sits above the background */
.nav, .hero, .marquee, section, .footer, .booking-wrap, .thankyou, .divider {
  position: relative;
  z-index: 1;
}

/* Divider component - shows fixed background through between sections */
.divider {
  height: 140px;
  background: transparent;
  position: relative;
  overflow: hidden;
}
.divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--red) 50%, transparent 100%);
  opacity: 0.4;
}
.divider::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--red) 50%, transparent 100%);
  opacity: 0.4;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

/* Dark section typography overrides */
.hero h1, .hero h2, .hero h3,
.cta-strip h1, .cta-strip h2, .cta-strip h3,
.stats-band h1, .stats-band h2, .stats-band h3,
.about-hero h1, .about-hero h2,
.services-hero h1, .services-hero h2,
.thankyou h1, .thankyou h2,
.footer h1, .footer h2, .footer h3, .footer h4,
.nav h1, .nav h2,
.marquee h1, .marquee h2,
.info-panel h1, .info-panel h2, .info-panel h3,
.booking-fallback h3 {
  color: var(--text-bright);
}
.hero p, .hero .hero-sub,
.cta-strip p,
.about-hero p, .about-hero .lead,
.services-hero p, .services-hero .lead,
.thankyou p,
.footer p,
.info-panel p {
  color: var(--text-bright);
  opacity: 0.85;
}
h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); letter-spacing: 0.02em; }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); letter-spacing: 0.02em; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); letter-spacing: 0.03em; }
h4 { font-size: 1.2rem; letter-spacing: 0.04em; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--copper-bright);
  display: inline-block;
  margin-bottom: 18px;
}
p { color: var(--text); }

/* --- Layout Helpers --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
section { padding: 80px 0; }
.section-head { max-width: 740px; margin-bottom: 50px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.lead { font-size: 1.15rem; color: var(--text-muted); margin-top: 18px; line-height: 1.7; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--copper); color: var(--text-bright); box-shadow: var(--shadow-copper); }
.btn-primary:hover { background: var(--copper-bright); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(181, 106, 58, 0.45); }
.btn-dark { background: var(--black); color: var(--text-bright); border: 1px solid var(--black); }
.btn-dark:hover { background: var(--black-lift); border-color: var(--red); transform: translateY(-2px); }
.btn-outline {
  border: 1.5px solid var(--text-bright);
  color: var(--text-bright);
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.btn-outline:hover { background: var(--red); border-color: var(--red); color: var(--text-bright); transform: translateY(-2px); }
.btn-ghost { color: var(--text-bright); padding: 10px 16px; }
.btn-ghost:hover { color: var(--copper-bright); }

/* --- Navigation --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 12, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--carbon-line);
  transition: background 0.3s ease;
}
.nav-inner {
  max-width: var(--container); margin: 0 auto; padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 400;
  color: var(--text-bright); letter-spacing: 0.04em; text-transform: uppercase;
}
.brand-mark {
  width: 42px; height: 42px; border-radius: 6px;
  background: var(--copper); color: var(--text-bright);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 400; font-size: 1.4rem;
  box-shadow: var(--shadow-copper);
}
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name small {
  font-family: var(--font-body); font-size: 0.62rem; font-weight: 700;
  color: var(--copper-bright); letter-spacing: 0.26em;
  text-transform: uppercase; margin-top: 4px;
}
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 700;
  color: var(--text-bright); letter-spacing: 0.14em; text-transform: uppercase;
  position: relative; padding: 6px 0; transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a.is-active { color: var(--copper-bright); }
.nav-links a.is-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--copper);
}
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700;
  color: var(--text-bright); font-size: 0.9rem; letter-spacing: 0.04em;
}
.nav-phone:hover { color: var(--copper-bright); }

.hamburger { display: none; width: 42px; height: 42px; align-items: center; justify-content: center; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-bright); position: relative; transition: all 0.3s ease; }
.hamburger span::before, .hamburger span::after { content: ''; position: absolute; left: 0; width: 100%; height: 2px; background: var(--text-bright); transition: all 0.3s ease; }
.hamburger span::before { top: -7px; }
.hamburger span::after { top: 7px; }
.hamburger.is-open span { background: transparent; }
.hamburger.is-open span::before { top: 0; transform: rotate(45deg); }
.hamburger.is-open span::after { top: 0; transform: rotate(-45deg); }

/* --- Hero --- */
.hero {
  position: relative; min-height: 72vh; display: flex; align-items: center;
  padding: 130px 0 70px; overflow: hidden; background: var(--black);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('assets/hero-main.jpg');
  background-size: cover;
  background-position: center center;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.2) 55%, rgba(10, 10, 10, 0.15) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.05) 0%, rgba(10, 10, 10, 0.55) 100%);
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; max-width: 820px; }
.hero h1 { color: var(--text-bright); margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--copper-bright); }
.hero-sub {
  font-family: var(--font-body); font-size: 1.2rem; color: var(--text-bright); opacity: 0.9;
  line-height: 1.65; max-width: 620px; margin-bottom: 40px; font-weight: 400;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { position: absolute; bottom: 60px; right: 32px; z-index: 2; display: flex; gap: 48px; }
.hero-stats div { text-align: right; }
.hero-stats strong {
  display: block; font-family: var(--font-display); font-size: 2.6rem;
  font-weight: 400; color: var(--red-bright); line-height: 1; letter-spacing: 0.02em;
}
.hero-stats span {
  font-family: var(--font-body); font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.22em; font-weight: 700; color: var(--text-bright); opacity: 0.7;
  margin-top: 4px; display: inline-block;
}

/* --- Marquee --- */
.marquee {
  background: var(--black); color: var(--text-bright); padding: 22px 0;
  overflow: hidden; border-top: 1px solid var(--black); border-bottom: 1px solid var(--black);
}
.marquee-track { display: flex; gap: 48px; animation: marquee 40s linear infinite; width: max-content; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 48px;
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; color: var(--text-bright);
}
.marquee-item::after { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--red-bright); flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* --- Intro Grid --- */
/* --- Intro Grid (transparent section, solid content card) --- */
.intro { background: transparent; position: relative; }
.intro .container { position: relative; z-index: 1; }
.intro-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center;
  background: var(--chrome-light);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius);
  padding: 60px;
  box-shadow: var(--shadow-lift);
}
.intro-media {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-deep);
}
.intro-media img { width: 100%; height: 100%; object-fit: cover; }
.intro-badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--red); color: var(--text-bright); padding: 10px 18px; border-radius: 4px;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; box-shadow: var(--shadow-copper);
}
.intro-content h2 { margin-bottom: 24px; }
.intro-content p { color: var(--ink-muted); margin-bottom: 18px; font-size: 1.05rem; }

/* --- Services Grid --- */
/* --- Services Grid (transparent section, card container) --- */
.services { background: transparent; position: relative; }
.services > .container {
  background: var(--chrome-dark);
  border-radius: var(--radius);
  padding: 70px 60px;
  box-shadow: var(--shadow-lift);
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--carbon-soft); border: 1px solid var(--carbon-line);
  border-radius: var(--radius); padding: 36px 32px; transition: all 0.3s ease;
  box-shadow: var(--shadow-soft); display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--copper); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}
.service-card:hover {
  transform: translateY(-4px); background: var(--carbon-lift);
  border-color: var(--copper); box-shadow: var(--shadow-lift);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px; background: var(--copper); color: var(--text-bright);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; font-size: 1.3rem; box-shadow: var(--shadow-copper);
}
.service-card h3 { margin-bottom: 12px; color: var(--ink); }
.service-card p { color: var(--text-muted); font-size: 0.98rem; margin-bottom: 20px; flex-grow: 1; }
.service-card .card-footer {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  color: var(--copper-bright); text-transform: uppercase; letter-spacing: 0.18em;
}

/* --- Pricing Packages --- */
.packages { background: transparent; position: relative; }
.packages > .container {
  background: var(--chrome);
  border-radius: var(--radius);
  padding: 70px 60px;
  box-shadow: var(--shadow-lift);
}
.packages::before {
  content: ''; position: absolute; inset: 0;
  background: var(--carbon-texture); background-size: 32px 32px;
  opacity: 0.3; pointer-events: none;
}
.packages .container { position: relative; z-index: 1; }
.package-group { margin-bottom: 80px; }
.package-group:last-child { margin-bottom: 0; }
.package-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 24px; margin-bottom: 40px; padding-bottom: 24px;
  border-bottom: 1px solid var(--carbon-line);
}
.package-header h2 { margin-bottom: 8px; }
.package-header p { color: var(--text-muted); font-size: 1.05rem; max-width: 520px; }
.package-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.package-grid.tight-3 { grid-template-columns: repeat(3, 1fr); }

/* Carousel for 5-card group */
.package-carousel {
  position: relative;
  overflow: hidden;
}
.package-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.package-carousel-track .package-card {
  flex: 0 0 calc((100% - 60px) / 4);
  min-width: 260px;
}
.package-carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.package-carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--black);
  color: var(--text-bright);
  border: 1px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.package-carousel-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}
.package-carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.package-carousel-btn:disabled:hover {
  background: var(--black);
  border-color: var(--black);
  transform: none;
}
.package-carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.package-carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.25);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}
.package-carousel-dot.is-active {
  background: var(--red);
  width: 24px;
  border-radius: 4px;
}
@media (max-width: 1100px) {
  .package-carousel-track .package-card { flex: 0 0 calc((100% - 40px) / 3); }
}
@media (max-width: 900px) {
  .package-carousel-track .package-card { flex: 0 0 calc((100% - 20px) / 2); }
}
@media (max-width: 560px) {
  .package-carousel-track .package-card { flex: 0 0 100%; }
}
.package-card {
  background: var(--chrome-light); border: 1px solid var(--surface-line);
  border-radius: var(--radius); padding: 32px 28px; display: flex; flex-direction: column;
  transition: all 0.3s ease; position: relative; box-shadow: var(--shadow-soft);
}
.package-card:hover {
  transform: translateY(-4px); background: var(--surface-lift);
  border-color: var(--red); box-shadow: var(--shadow-lift);
}
.package-card .featured-tag { display: none; }
.package-card h3 { margin-bottom: 14px; color: var(--ink); }
.package-card p { color: var(--ink-muted); font-size: 0.92rem; line-height: 1.6; margin-bottom: 24px; flex-grow: 1; }
.package-price {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 400;
  color: var(--red); line-height: 1; margin-bottom: 8px; letter-spacing: 0.02em;
}
.package-price small { font-size: 1rem; color: var(--ink-soft); font-weight: 400; }
.package-hp {
  display: inline-block; padding: 5px 14px; border: 1px solid var(--red);
  border-radius: 20px; font-family: var(--font-body); font-size: 0.75rem; font-weight: 700;
  color: var(--red); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 22px;
}
.package-cta {
  display: block; text-align: center; padding: 13px 16px;
  background: var(--red); color: var(--text-bright);
  border: 1px solid var(--red); border-radius: 6px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.14em; text-transform: uppercase; transition: all 0.2s ease;
}
.package-cta:hover { background: var(--black); border-color: var(--black); transform: translateY(-1px); }

.custom-note {
  text-align: center; margin-top: 40px; padding: 32px;
  background: var(--carbon-soft); border: 1px dashed var(--copper);
  border-radius: var(--radius); color: var(--text-muted); font-size: 1rem;
}
.custom-note strong {
  color: var(--copper-bright); font-family: var(--font-display);
  font-size: 1.25rem; letter-spacing: 0.04em; text-transform: uppercase;
  display: block; margin-bottom: 4px;
}

/* --- Stats Band --- */
.stats-band {
  background: var(--black); padding: 70px 0;
  border-top: 1px solid var(--surface-line); border-bottom: 1px solid var(--surface-line);
  position: relative; overflow: hidden;
}
.stats-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, var(--copper-glow) 0%, transparent 60%);
  opacity: 0.4; pointer-events: none;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  max-width: var(--container); margin: 0 auto; padding: 0 32px;
  position: relative; z-index: 1;
}
.stat { text-align: center; padding: 0 20px; border-right: 1px solid rgba(255, 255, 255, 0.1); }
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display); font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  font-weight: 400; color: var(--red-bright); line-height: 1;
  margin-bottom: 10px; letter-spacing: 0.02em;
}
.stat-label {
  font-family: var(--font-body); font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.22em; font-weight: 700; color: var(--text-bright); opacity: 0.8;
}

/* --- Gallery (transparent section, card container) --- */
.gallery { background: transparent; }
.gallery > .container {
  background: var(--chrome-dark);
  border-radius: var(--radius);
  padding: 70px 60px;
  box-shadow: var(--shadow-lift);
}
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-soft); cursor: pointer;
  transition: all 0.3s ease; border: 1px solid var(--carbon-line);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--copper); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; filter: brightness(0.95); }
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1.05); }

/* --- Feature Section --- */
/* --- Feature Section (transparent section, solid content card) --- */
.feature { background: transparent; overflow: hidden; position: relative; }
.feature-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
  background: var(--chrome-light);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius);
  padding: 60px;
  box-shadow: var(--shadow-lift);
}
.feature-content h2 { margin-bottom: 24px; }
.feature-content p { color: var(--ink-muted); margin-bottom: 18px; font-size: 1.05rem; }
.feature-list { list-style: none; margin: 28px 0; }
.feature-list li {
  padding: 14px 0; border-bottom: 1px solid var(--surface-line);
  display: flex; align-items: center; gap: 14px;
  color: var(--ink); font-weight: 600; font-size: 1rem;
}
.feature-list li::before {
  content: ''; width: 8px; height: 8px; background: var(--red);
  border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 10px var(--copper-glow);
}
.feature-media {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-deep);
}
.feature-media img { width: 100%; height: 100%; object-fit: cover; }

/* --- CTA Strip --- */
.cta-strip {
  background: var(--black); color: var(--text-bright);
  padding: 90px 0; text-align: center; position: relative; overflow: hidden;
  border-top: 1px solid var(--carbon-line); border-bottom: 1px solid var(--carbon-line);
}
.cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(10, 10, 10, 0.5) 0%, transparent 60%),
              radial-gradient(ellipse at 30% 50%, var(--copper-glow), transparent 60%);
  pointer-events: none;
}
.cta-strip::after {
  content: ''; position: absolute; inset: 0;
  background: var(--carbon-texture); background-size: 28px 28px;
  opacity: 0.3; pointer-events: none;
}
.cta-strip .container { position: relative; z-index: 1; }
.cta-strip h2 { margin-bottom: 18px; max-width: 760px; margin-left: auto; margin-right: auto; color: var(--text-bright); }
.cta-strip p { color: var(--text-bright); opacity: 0.9; max-width: 580px; margin: 0 auto 36px; font-size: 1.1rem; }

/* --- Booking Page --- */
.booking-wrap { padding-top: 130px; padding-bottom: 110px; background: transparent; min-height: 80vh; }
.booking-wrap > .container {
  background: var(--chrome);
  border-radius: var(--radius);
  padding: 70px 60px;
  box-shadow: var(--shadow-lift);
}
.booking-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
.booking-main h1 { margin-bottom: 16px; }
.booking-main .lead { margin-bottom: 36px; }
.booking-widget {
  background: var(--surface-lift); border: 1px solid var(--surface-line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft);
  min-height: 700px; padding: 40px;
}
.booking-fallback { text-align: center; padding: 60px 20px; color: var(--ink-muted); }
.booking-fallback h3 { margin-bottom: 12px; color: var(--ink); }
.booking-fallback .btn { margin-top: 24px; }

.info-panel {
  background: var(--black); color: var(--text-bright);
  border: 1px solid var(--black); border-radius: var(--radius);
  padding: 40px 36px; position: sticky; top: 100px;
}
.info-panel h3 { color: var(--text-bright); margin-bottom: 24px; }
.info-item { padding: 18px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.info-item:last-of-type { border-bottom: none; }
.info-item .label {
  font-family: var(--font-body); font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--red-bright); font-weight: 700;
  margin-bottom: 8px; display: block;
}
.info-item .value { color: var(--text-bright); font-size: 1rem; line-height: 1.55; opacity: 0.85; }
.info-item .value a { color: var(--text-bright); border-bottom: 1px dotted rgba(255, 255, 255, 0.4); opacity: 1; }
.info-item .value a:hover { color: var(--red-bright); border-color: var(--red-bright); }

/* --- Contact Form --- */
.contact-form {
  background: var(--surface-lift); border: 1px solid var(--surface-line);
  border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-soft);
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block; font-family: var(--font-body); font-size: 0.78rem;
  font-weight: 700; color: var(--red); margin-bottom: 8px;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--surface-line);
  border-radius: 6px; font: inherit; background: var(--chrome-light);
  color: var(--ink); transition: border-color 0.2s ease, background 0.2s ease;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--ink-soft); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--red); background: var(--surface-lift);
  box-shadow: 0 0 0 3px rgba(168, 31, 34, 0.12);
}
.form-row textarea { resize: vertical; min-height: 140px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* --- Hours Table --- */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 11px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.95rem; }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:first-child {
  font-family: var(--font-body); font-weight: 700; color: var(--red-bright);
  letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.85rem;
}
.hours-table td:last-child { text-align: right; color: var(--text-bright); opacity: 0.85; }
.hours-table .closed { color: var(--text-bright); opacity: 0.5; }

/* --- About Page --- */
.about-hero {
  padding: 180px 0 100px; background: var(--black);
  border-bottom: 1px solid var(--carbon-line); position: relative; overflow: hidden;
}
.about-hero-bg {
  position: absolute; inset: 0;
  background-image: url('assets/about-hero-bg.jpg');
  background-size: cover; background-position: center;
  z-index: 0;
}
.about-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.45) 55%, rgba(10, 10, 10, 0.55) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.7) 100%),
    radial-gradient(ellipse at 70% 50%, var(--copper-glow), transparent 55%);
  z-index: 1; pointer-events: none;
}
.about-hero .container { position: relative; z-index: 2; }
.about-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-hero h1 { margin-bottom: 24px; }
.about-hero .lead { margin-bottom: 16px; }
.about-hero-media {
  aspect-ratio: 1; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-deep); border: 1px solid var(--carbon-line);
}
.about-hero-media img { width: 100%; height: 100%; object-fit: cover; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.value-card {
  background: var(--carbon-soft); border: 1px solid var(--carbon-line);
  border-radius: var(--radius); padding: 40px 32px; transition: all 0.3s ease;
}
.value-card:hover {
  transform: translateY(-4px); background: var(--carbon-lift);
  box-shadow: var(--shadow-lift); border-color: var(--copper);
}
.value-num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 400;
  color: var(--copper); line-height: 1; margin-bottom: 20px; letter-spacing: 0.02em;
}
.value-card h3 { margin-bottom: 12px; color: var(--ink); }
.value-card p { color: var(--text-muted); font-size: 0.98rem; line-height: 1.65; }

/* --- Services Page Hero --- */
.services-hero {
  padding: 180px 0 110px; background: rgba(10, 10, 10, 0.5);
  text-align: center; border-bottom: 1px solid var(--carbon-line);
  position: relative; overflow: hidden;
}
.services-hero-bg {
  position: absolute; inset: 0;
  background-image: url('assets/services-hero.jpg');
  background-size: cover; background-position: center;
  opacity: 0.9; z-index: 0;
}
.services-hero::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, rgba(10, 10, 10, 0.75) 100%),
    radial-gradient(ellipse at center, rgba(10, 10, 10, 0.3) 0%, transparent 60%);
  z-index: 1; pointer-events: none;
}
.services-hero .container { position: relative; z-index: 2; }
.services-hero h1 { margin-bottom: 20px; color: var(--text-bright); }
.services-hero .lead { max-width: 700px; margin: 0 auto; }

.process { background: transparent; }
.process > .container {
  background: var(--chrome-dark);
  border-radius: var(--radius);
  padding: 70px 60px;
  box-shadow: var(--shadow-lift);
}
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  counter-reset: step; margin-top: 20px;
}
.process-step {
  position: relative; padding: 40px 28px 32px;
  background: var(--carbon-soft); border: 1px solid var(--carbon-line);
  border-radius: var(--radius); transition: all 0.3s ease;
}
.process-step:hover {
  transform: translateY(-4px); background: var(--carbon-lift);
  box-shadow: var(--shadow-lift); border-color: var(--copper);
}
.process-step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: -20px; left: 24px;
  background: var(--copper); color: var(--text-bright);
  width: 48px; height: 48px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 400; font-size: 1.1rem;
  letter-spacing: 0.04em; box-shadow: var(--shadow-copper);
}
.process-step h3 { margin: 16px 0 10px; color: var(--ink); }
.process-step p { color: var(--text-muted); font-size: 0.94rem; line-height: 1.6; }

/* --- Footer --- */
.footer {
  background: var(--black); color: var(--text-bright);
  padding: 80px 0 30px; border-top: 1px solid var(--black-lift);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-brand {
  display: flex; align-items: center; gap: 12px; color: var(--text-bright);
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 400;
  margin-bottom: 16px; letter-spacing: 0.04em; text-transform: uppercase;
}
.footer-col h4 {
  color: var(--red-bright); font-family: var(--font-body); font-size: 0.78rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.22em; margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--text-bright); opacity: 0.7; font-size: 0.94rem; transition: all 0.2s ease; }
.footer-col a:hover { color: var(--red-bright); opacity: 1; }
.footer-about p { color: var(--text-bright); opacity: 0.7; font-size: 0.94rem; line-height: 1.7; margin-bottom: 20px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap; gap: 20px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-bright); opacity: 0.5; letter-spacing: 0.04em; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  color: var(--red-bright); font-family: var(--font-body);
  font-weight: 700; font-size: 0.82rem; letter-spacing: 0.02em; transition: all 0.2s ease;
  opacity: 1;
}
.footer-social a:hover {
  background: var(--copper); color: var(--text-bright);
  border-color: var(--copper); transform: translateY(-2px);
}

/* --- Thank You --- */
.thankyou {
  min-height: 90vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 180px 0 110px; background: var(--black);
  position: relative; overflow: hidden;
}
.thankyou::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, var(--copper-glow), transparent 60%);
  opacity: 0.4; pointer-events: none;
}
.thankyou .container { position: relative; z-index: 1; }
.thankyou-inner { max-width: 640px; margin: 0 auto; }
.thankyou-check {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--copper); color: var(--text-bright);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; margin: 0 auto 32px;
  box-shadow: 0 14px 40px var(--copper-glow);
}
.thankyou h1 { margin-bottom: 20px; }
.thankyou p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 36px; }

/* --- Responsive --- */
@media (max-width: 1100px) {
  .intro-grid, .feature-grid, .about-hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .services-grid, .package-grid.tight-3 { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-grid { grid-template-columns: 1fr; gap: 40px; }
  .info-panel { position: static; }
}
@media (max-width: 900px) {
  section { padding: 70px 0; }
  .container { padding: 0 24px; }
  .services > .container,
  .packages > .container,
  .gallery > .container,
  .process > .container,
  .booking-wrap > .container { padding: 50px 36px; }
  .intro-grid, .feature-grid { padding: 40px 32px; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }
  .nav-links.is-open {
    display: flex; position: fixed; top: 72px; left: 0; right: 0;
    flex-direction: column; background: var(--carbon);
    padding: 30px 32px; gap: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid var(--carbon-line);
  }
  .nav-links.is-open a { font-size: 1rem; padding: 10px 0; }
  .hero { min-height: auto; padding: 140px 0 80px; }
  .hero-stats { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .stat:nth-child(2) { border-right: none; }
  .stats-grid .stat { padding: 20px 10px; border-bottom: 1px solid var(--carbon-line); }
  .stats-grid .stat:nth-child(3), .stats-grid .stat:nth-child(4) { border-bottom: none; }
  .package-header { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-about { grid-column: 1 / -1; }
  .contact-form { padding: 28px; }
}
@media (max-width: 560px) {
  .services-grid, .package-grid, .gallery-grid, .values-grid, .process-grid, .form-grid-2 { grid-template-columns: 1fr; }
  .services > .container,
  .packages > .container,
  .gallery > .container,
  .process > .container,
  .booking-wrap > .container { padding: 36px 22px; }
  .intro-grid, .feature-grid { padding: 32px 22px; }
  .stats-grid { grid-template-columns: 1fr; gap: 30px; }
  .stat { border-right: none !important; border-bottom: 1px solid var(--carbon-line); padding-bottom: 20px; }
  .stat:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero h1 { font-size: 2.6rem; }
  .hero-sub { font-size: 1.05rem; }
  .booking-widget { padding: 24px; }
  h2 { font-size: 2rem; }
}
