/* ==========================================================================
   Oscar's Cleaning Services — Stylesheet
   Palette: White / Red / Chrome, with a dark header, hero, CTA band & footer
   framing a bright body.
   ========================================================================== */

:root {
  /* Dark tokens — used only for the header, hero, page banners, CTA band,
     footer & lightbox, which stay dark as an intentional frame around a
     bright body. */
  --black: #0a0a0a;
  --black-soft: #131313;
  --charcoal: #1b1b1d;
  --charcoal-light: #262629;
  --chrome: #c9cdd3;
  --chrome-light: #eef0f2;
  --white: #f5f6f7;
  --muted: #9a9ba0;
  --border: #2c2c2f;

  /* Light tokens — used for the body content sections */
  --bg: #ffffff;
  --bg-alt: #f5f6f8;
  --surface: #ffffff;
  --ink: #16171a;
  --ink-soft: #4b4d54;
  --muted-lt: #797b82;
  --border-lt: #e6e7eb;
  --shadow-lt: 0 10px 26px rgba(20, 21, 26, 0.09);

  --red: #d81324;
  --red-bright: #ff2331;
  --red-dark: #8f0d17;

  --font-head: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --container: 1180px;
  --radius: 6px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  --transition: 200ms ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 96px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
}
p { margin: 0 0 1em; color: var(--ink-soft); }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--red);
  color: #fff;
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.92rem;
  border: 2px solid transparent;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-bright); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--border-lt); }
.btn-outline:hover { border-color: var(--red-bright); color: var(--red-bright); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 34px; font-size: 1rem; }

/* Outline buttons on the dark hero / CTA band need light-on-dark styling */
.hero .btn-outline, .cta-banner .btn-outline {
  color: var(--white); border-color: var(--chrome);
}
.hero .btn-outline:hover, .cta-banner .btn-outline:hover {
  border-color: var(--red-bright); color: var(--red-bright);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(12, 13, 15, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  font-family: var(--font-head);
}
.logo-mark {
  height: 38px;
  width: 38px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 3px;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo .logo-main {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
}
.logo .logo-main span { color: var(--red-bright); }
.logo .logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  color: var(--muted);
  margin-top: 3px;
}
.main-nav ul { display: flex; gap: 34px; align-items: center; }
.main-nav a {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  color: var(--chrome);
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.main-nav a:hover,
.main-nav a[aria-current="page"] { color: #fff; border-color: var(--red); }

.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone {
  display: flex;
  flex-direction: column;
  text-align: right;
  font-family: var(--font-head);
}
.header-phone .label { font-size: 0.62rem; letter-spacing: 0.2em; color: var(--muted); }
.header-phone a { font-size: 1.05rem; color: var(--white); }
.header-phone a:hover { color: var(--red-bright); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 10px;
}
.nav-toggle span {
  width: 26px; height: 2px; background: var(--white); display: block; transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 78px;
  background: #101114;
}
.hero-media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,6,7,0.55) 0%, rgba(6,6,7,0.75) 55%, rgba(6,6,7,0.96) 100%);
}
.hero-media.no-photo {
  background:
    radial-gradient(ellipse 900px 500px at 15% 20%, rgba(216,19,36,0.24), transparent 60%),
    radial-gradient(ellipse 700px 500px at 85% 75%, rgba(201,205,211,0.11), transparent 60%),
    repeating-linear-gradient(115deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 90px),
    #101114;
}
.hero-media.no-photo::after { background: linear-gradient(180deg, rgba(10,10,12,0.05) 0%, rgba(10,10,12,0.42) 70%, rgba(10,10,12,0.82) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red-bright);
  font-family: var(--font-head);
  letter-spacing: 0.3em;
  font-size: 0.78rem;
  margin-bottom: 18px;
}
.hero-eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--red-bright); }
.hero h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); margin-bottom: 20px; color: var(--white); }
.hero h1 em { color: var(--red-bright); font-style: normal; }
.hero p.lead { font-size: 1.15rem; color: var(--chrome-light); max-width: 560px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-meta {
  display: flex; gap: 34px; flex-wrap: wrap;
  border-top: 1px solid var(--border); padding-top: 24px;
}
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta strong { font-family: var(--font-head); font-size: 1.5rem; color: #fff; }
.hero-meta span { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- Page (interior) hero banner ---------- */
.page-banner {
  position: relative;
  padding: 168px 0 70px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-banner::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,8,10,0.6) 0%, rgba(8,8,10,0.82) 100%);
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner .eyebrow {
  color: var(--red-bright); font-family: var(--font-head);
  letter-spacing: 0.3em; font-size: 0.78rem; margin-bottom: 12px; display: block;
}
.page-banner h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 14px; color: var(--white); }
.page-banner p { max-width: 640px; font-size: 1.05rem; color: var(--chrome-light); margin: 0; }
.breadcrumb { font-size: 0.82rem; color: var(--muted); margin-top: 18px; }
.breadcrumb a { color: var(--chrome); }
.breadcrumb a:hover { color: var(--red-bright); }

/* ---------- Sections ---------- */
section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow {
  display: inline-block; color: var(--red-bright); font-family: var(--font-head);
  letter-spacing: 0.3em; font-size: 0.78rem; margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.section-head p { color: var(--muted-lt); font-size: 1.02rem; }
.section-head.align-left { margin: 0 0 48px; text-align: left; }

/* ---------- Trust bar ---------- */
.trust-bar {
  padding: 34px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-grid strong {
  display: block; font-family: var(--font-head); font-size: 1.9rem; color: var(--red-bright);
}
.trust-grid span { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-lt); }

/* ---------- Cards / Services ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  background: var(--surface);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-6px); border-color: var(--red); box-shadow: var(--shadow-lt); }
.card-media { aspect-ratio: 4 / 3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.card:hover .card-media img { transform: scale(1.07); }
.card-media.icon-media {
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(216,19,36,0.18), transparent 55%),
    linear-gradient(145deg, var(--charcoal-light), var(--black-soft));
}
.card-media.icon-media svg { width: 30%; height: 30%; color: var(--red-bright); transition: transform 500ms ease; }
.card:hover .card-media.icon-media svg { transform: scale(1.12); }
.service-media.icon-media {
  aspect-ratio: 4/3; border-radius: var(--radius); box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(216,19,36,0.18), transparent 55%),
    linear-gradient(145deg, var(--charcoal-light), var(--black-soft));
  border: 1px solid var(--border);
}
.service-media.icon-media svg { width: 26%; height: 26%; color: var(--red-bright); }
.card-body { padding: 26px; }
.card-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card-body p { font-size: 0.94rem; margin-bottom: 16px; }
.card-link {
  font-family: var(--font-head); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--red-bright); display: inline-flex; align-items: center; gap: 6px;
}
.card-link::after { content: "→"; transition: transform var(--transition); }
.card:hover .card-link::after { transform: translateX(4px); }

/* Service icon badges (used in "why us") */
.feature {
  text-align: center;
  padding: 30px 20px;
}
.feature .icon {
  width: 62px; height: 62px; margin: 0 auto 18px;
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--red-bright);
}
.feature h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature p { font-size: 0.9rem; margin: 0; }

/* ---------- Service detail rows (services.html) ---------- */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 70px 0;
  border-bottom: 1px solid var(--border-lt);
}
.service-row:last-child { border-bottom: none; }
.service-row.reverse .service-media { order: 2; }
.service-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.service-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-index {
  font-family: var(--font-head); font-size: 0.85rem; color: var(--red-bright);
  letter-spacing: 0.25em; margin-bottom: 10px; display: block;
}
.service-copy h2 { font-size: 1.9rem; margin-bottom: 16px; }
.service-copy p { font-size: 1rem; }
.checklist { margin: 22px 0; display: grid; gap: 10px; }
.checklist li { display: flex; gap: 10px; font-size: 0.94rem; color: var(--ink-soft); align-items: flex-start; }
.checklist li::before {
  content: "✓"; color: var(--red-bright); font-weight: 700; flex-shrink: 0;
  width: 20px; height: 20px; border: 1px solid var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 0.7rem; margin-top: 2px;
}
.price-tag {
  display: inline-flex; align-items: baseline; gap: 8px; margin: 6px 0 20px;
  font-family: var(--font-head);
}
.price-tag .from { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-lt); }
.price-tag .amount { font-size: 1.8rem; color: var(--ink); }
.price-tag .amount.range { font-size: 1.4rem; }

/* ---------- Pricing package cards (Mobile Car Detailing) ---------- */
.pricing-card { position: relative; }
.pricing-card.featured { border-color: var(--red); }
.pricing-card .ribbon {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: var(--red); color: #fff; font-family: var(--font-head);
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 3px;
}
.pricing-card .card-body p.note { font-size: 0.82rem; color: var(--muted-lt); margin-top: -6px; }
.pricing-note { text-align: center; font-size: 0.9rem; color: var(--muted-lt); margin-top: 26px; }

/* ---------- Add-ons ---------- */
.addon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.addon {
  background: var(--surface);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius);
  padding: 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.addon h4 { font-size: 0.98rem; margin-bottom: 4px; }
.addon p { font-size: 0.82rem; margin: 0; }
.addon .amount { font-family: var(--font-head); color: var(--red-bright); white-space: nowrap; }

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-lt);
}
.stars { color: var(--red-bright); letter-spacing: 3px; margin-bottom: 14px; font-size: 0.95rem; }
.testimonial p.quote { font-size: 1rem; color: var(--ink-soft); font-style: italic; }
.testimonial .author { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.author .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red-dark), var(--charcoal-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); color: #fff;
}
.author strong { display: block; font-size: 0.9rem; }
.author span { font-size: 0.78rem; color: var(--muted-lt); }

/* ---------- Service area ---------- */
.area-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.area-list h3 {
  font-size: 1rem; color: var(--red-bright); margin-bottom: 14px;
  border-bottom: 1px solid var(--border-lt); padding-bottom: 10px;
}
.area-list li { font-size: 0.92rem; color: var(--ink-soft); padding: 5px 0; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .tag {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(10,10,10,0.75); border: 1px solid var(--border); color: var(--white);
  padding: 6px 12px; border-radius: 4px;
  font-family: var(--font-head); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.gallery-item .zoom-hint {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(10,10,10,0); transition: background var(--transition);
  color: transparent;
  font-family: var(--font-head); letter-spacing: 0.15em; font-size: 0.8rem;
}
.gallery-item:hover .zoom-hint { background: rgba(10,10,10,0.35); color: #fff; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(4,4,5,0.94);
  display: none; align-items: center; justify-content: center; z-index: 1000;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1000px, 92vw); max-height: 84vh; border-radius: 4px; box-shadow: var(--shadow); }
.lightbox-close {
  position: absolute; top: 26px; right: 32px;
  background: none; border: 1px solid var(--border); color: #fff;
  width: 42px; height: 42px; border-radius: 50%; font-size: 1.2rem;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: #fff;
  width: 46px; height: 46px; border-radius: 50%; font-size: 1.3rem;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ---------- About page ---------- */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-grid img { border-radius: var(--radius); box-shadow: var(--shadow); }
.value-list { display: grid; gap: 20px; margin-top: 26px; }
.value-list li { display: flex; gap: 14px; }
.value-list .num {
  font-family: var(--font-head); color: var(--red-bright); font-size: 1.1rem;
  border: 1px solid var(--red); width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.value-list strong { display: block; margin-bottom: 4px; }
.value-list p { font-size: 0.92rem; margin: 0; }

.badge-row { display: flex; gap: 30px; flex-wrap: wrap; margin-top: 40px; }
.badge-row div { display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: 0.88rem; }
.badge-row svg { color: var(--red-bright); flex-shrink: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; }
.contact-info-list { display: grid; gap: 26px; margin-top: 30px; }
.contact-info-list .row { display: flex; gap: 16px; }
.contact-info-list .icon {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--red);
  display: flex; align-items: center; justify-content: center; color: var(--red-bright); flex-shrink: 0;
}
.contact-info-list strong { display: block; margin-bottom: 2px; }
.contact-info-list span, .contact-info-list a { font-size: 0.92rem; color: var(--ink-soft); }
.contact-info-list a:hover { color: var(--red-bright); }

.map-box {
  margin-top: 30px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-lt);
}
.map-box iframe { width: 100%; height: 260px; border: 0; display: block; }

.form-card {
  background: var(--surface); border: 1px solid var(--border-lt); border-radius: var(--radius); padding: 40px;
  box-shadow: var(--shadow-lt);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--muted); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--black-soft); border: 1px solid var(--border); color: #fff;
  padding: 13px 14px; border-radius: 4px; font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--red); }
.form-note { font-size: 0.8rem; color: var(--muted-lt); margin-top: 14px; }
.form-success {
  display: none; background: rgba(216,19,36,0.12); border: 1px solid var(--red-dark);
  padding: 16px 18px; border-radius: 4px; margin-bottom: 20px; font-size: 0.9rem;
}
.form-success.show { display: block; }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  padding: 90px 0;
  text-align: center;
  background: linear-gradient(rgba(10,10,12,0.6), rgba(10,10,12,0.78)), url('../assets/images/real-detail-exterior-escalade-black.jpg') center/cover;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-banner h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin-bottom: 14px; color: var(--white); }
.cta-banner p { max-width: 560px; margin: 0 auto 30px; color: var(--chrome-light); }
.cta-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--border-lt); }
.faq-item:first-child { border-top: 1px solid var(--border-lt); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--ink); text-align: left;
  padding: 22px 4px; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-head); font-size: 1.02rem; letter-spacing: 0.02em;
}
.faq-q .plus { color: var(--red-bright); font-size: 1.4rem; transition: transform var(--transition); flex-shrink: 0; margin-left: 20px; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 260ms ease; }
.faq-a p { padding: 0 4px 22px; font-size: 0.94rem; }

/* ---------- Footer ---------- */
.site-footer { background: #0c0d0f; border-top: 1px solid var(--border); padding: 70px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px;
  padding-bottom: 50px; border-bottom: 1px solid var(--border);
}
.footer-about p { font-size: 0.9rem; color: var(--chrome); }
.footer-col h4 {
  font-size: 0.82rem; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 11px; }
.footer-col li { font-size: 0.9rem; color: var(--chrome); }
.footer-col a { font-size: 0.9rem; color: var(--chrome); }
.footer-col a:hover { color: var(--red-bright); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; padding: 24px 0; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { margin: 0; font-size: 0.8rem; color: var(--muted); }
.footer-bottom .legal { display: flex; gap: 20px; }
.footer-bottom .legal a { font-size: 0.8rem; color: var(--muted); }
.footer-bottom .legal a:hover { color: var(--chrome); }

/* ---------- 404 ---------- */
.error-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center;
  padding-top: 78px;
}
.error-page .code {
  font-family: var(--font-head); font-size: clamp(5rem, 14vw, 9rem); color: var(--red);
  line-height: 1; margin-bottom: 10px; -webkit-text-stroke: 2px var(--red-bright);
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 48px; }
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 600ms ease, transform 600ms ease; }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-3, .area-list { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); row-gap: 26px; }
  .about-grid, .contact-grid, .service-row, .service-row.reverse { grid-template-columns: 1fr; }
  .service-row.reverse .service-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .addon-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  /* Height is set explicitly (not via bottom:0) because .site-header's backdrop-filter
     makes it the containing block for this fixed element, which would otherwise resolve
     top/bottom against the 78px header instead of the viewport. vh/dvh always resolve
     against the real viewport regardless of containing block, so this stays correct. */
  .main-nav { position: fixed; top: 78px; left: 0; right: 0; height: calc(100vh - 78px); height: calc(100dvh - 78px); background: var(--black); transform: translateX(100%); transition: transform 260ms ease; overflow-y: auto; border-top: 1px solid var(--border); }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 0; padding: 20px 24px; }
  .main-nav li { width: 100%; border-bottom: 1px solid var(--border); }
  .main-nav a { display: block; padding: 18px 4px; }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }
  .grid-3, .grid-2, .grid-4, .area-list, .footer-grid, .gallery-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 22px; }
  section { padding: 64px 0; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 26px; }

  /* Header logo + CTA are too wide to share a 375px row with the badge
     mark at full size — shrink both so nothing overlaps or clips. */
  .site-header .container { padding: 0 16px; }
  .logo { gap: 6px; }
  .logo-mark { height: 30px; width: 30px; }
  .header-cta { gap: 10px; }
  .header-cta .btn-primary { padding: 12px 16px; font-size: 0.8rem; }
}

@media (max-width: 360px) {
  .logo .logo-sub { display: none; }
}
