/* ==========================================================================
   Orion Tech Repair — Design Tokens
   ========================================================================== */
:root {
  /* Color */
  --ink: #040906;
  --ink-2: #020705;
  --bg: #07110c;
  --bg-elevated: #0d1c15;
  --bg-elevated-2: #14291b;
  --bg-elevated-3: #1a3323;

  --green-700: #1c4732;
  --green-600: #256040;
  --green-500: #2f6b4f;
  --green-400: #3c8562;
  --green-300: #4a9070;
  --green-200: #6fae8d;

  --gold-600: #b6902c;
  --gold-500: #d4af37;
  --gold-400: #e8c766;
  --gold-300: #f0d998;

  --cream: #f5f1e8;
  --cream-dim: #e4dfd0;
  --text-muted: #a8b8ac;
  --text-muted-2: #7e9186;

  --border: rgba(212, 175, 55, 0.16);
  --border-soft: rgba(245, 241, 232, 0.08);
  --border-green: rgba(74, 144, 112, 0.35);

  --success: #5fbf87;
  --error: #e0836b;

  /* Typography */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale (8pt rhythm) */
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 6rem;
  --space-9: 8rem;

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 150ms;
  --dur-base: 250ms;
  --dur-slow: 400ms;

  /* Layout */
  --container-w: 1200px;
  --header-h: 84px;

  color-scheme: dark;
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream);
  background: var(--bg);
  overflow-x: hidden;
}

/* Subtle film grain — breaks up the flat dark fill for a warmer, less "flat template" feel */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}
@media (prefers-reduced-motion: reduce) {
  body::after { display: none; }
}

img, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold-500);
  color: var(--bg);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 8px 0;
  z-index: 1000;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--space-4);
}
.container-narrow { max-width: 780px; }

.section {
  padding-block: var(--space-8);
}
.section-alt {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  border-block: 1px solid var(--border-soft);
}

.section-head {
  max-width: 640px;
  margin-bottom: var(--space-6);
}
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--space-3);
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--gold-500);
  flex-shrink: 0;
}

.section-head h2 {
  font-size: clamp(1.75rem, 1.35rem + 1.8vw, 2.75rem);
  margin-bottom: var(--space-3);
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 56ch;
}

.text-gradient {
  color: var(--gold-300);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9375rem;
  border: 1px solid transparent;
  white-space: nowrap;
  min-height: 48px;
  transition: transform var(--dur-fast) var(--ease-out),
              background-color var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--dur-base) var(--ease-out); }
.btn:active { transform: scale(0.97); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: #201705;
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 8px 24px -8px rgba(212,175,55,0.55);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.55) 48%, transparent 66%);
  transform: translateX(-120%);
  transition: transform 650ms var(--ease-out);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
  box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset, 0 12px 32px -8px rgba(212,175,55,0.7);
  transform: translateY(-2px);
}
.btn-primary:hover::after { transform: translateX(120%); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--border-soft);
}
.btn-ghost:hover {
  border-color: var(--gold-500);
  color: var(--gold-300);
}

.btn-outline {
  background: rgba(212,175,55,0.06);
  color: var(--gold-300);
  border-color: var(--border);
}
.btn-outline:hover {
  background: rgba(212,175,55,0.14);
  border-color: var(--gold-500);
  transform: translateY(-2px);
}

.btn-lg { padding: 1.05rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.6rem 1.15rem; font-size: 0.875rem; min-height: 40px; }
.btn-block { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(4, 9, 6, 0.6);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border-soft);
  transition: background-color var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.site-header.is-scrolled {
  background: rgba(3, 7, 5, 0.94);
  box-shadow: 0 12px 30px -18px rgba(0,0,0,0.85);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.brand { display: flex; align-items: center; }
.brand-logo { height: 40px; width: auto; }

.nav-primary { display: none; }
.nav-list { display: flex; align-items: center; gap: var(--space-5); }
.nav-list a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding-block: 4px;
  transition: color var(--dur-base) var(--ease-out);
}
.nav-list a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--gold-500);
  transition: right var(--dur-base) var(--ease-out);
  border-radius: 2px;
}
.nav-list a:hover { color: var(--cream); }
.nav-list a:hover::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: var(--space-3); }

.header-phone {
  display: none;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--cream);
  transition: color var(--dur-base) var(--ease-out);
}
.header-phone svg { width: 18px; height: 18px; color: var(--gold-400); }
.header-phone:hover { color: var(--gold-300); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out);
}
.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); }

/* ==========================================================================
   Mobile menu
   ========================================================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 84vw);
  background: var(--bg-elevated);
  border-left: 1px solid var(--border-soft);
  z-index: 200;
  padding: calc(var(--header-h) + var(--space-4)) var(--space-4) var(--space-5);
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.mobile-menu.is-open { transform: translateX(0); }

.mobile-menu ul { display: flex; flex-direction: column; gap: var(--space-1); }
.mobile-menu a {
  display: block;
  font-size: 1.0625rem;
  font-weight: 500;
  padding: 0.85rem 0.25rem;
  border-bottom: 1px solid var(--border-soft);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out), color var(--dur-fast);
}
.mobile-menu.is-open a { opacity: 1; transform: translateY(0); }
.mobile-menu.is-open ul li:nth-child(1) a { transition-delay: 60ms; }
.mobile-menu.is-open ul li:nth-child(2) a { transition-delay: 100ms; }
.mobile-menu.is-open ul li:nth-child(3) a { transition-delay: 140ms; }
.mobile-menu.is-open ul li:nth-child(4) a { transition-delay: 180ms; }
.mobile-menu.is-open ul li:nth-child(5) a { transition-delay: 220ms; }
.mobile-menu.is-open ul li:nth-child(6) a { transition-delay: 260ms; }
.mobile-menu a:hover { color: var(--gold-300); }

.mobile-menu-phone {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-weight: 600;
  color: var(--gold-300);
}
.mobile-menu-phone svg { width: 20px; height: 20px; }

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 12, 9, 0.6);
  backdrop-filter: blur(2px);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out);
}
.mobile-menu-backdrop.is-open { opacity: 1; pointer-events: auto; }

body.menu-open { overflow: hidden; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  min-height: 88dvh;
  display: flex;
  align-items: center;
  padding-block: calc(var(--header-h) + var(--space-7)) var(--space-8);
  isolation: isolate;
}

.hero-video,
.hero-fallback-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}
.hero-fallback-img { display: none; }

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3,7,5,0.82) 0%, rgba(4,9,6,0.55) 45%, rgba(2,5,4,0.94) 100%),
    linear-gradient(90deg, rgba(3,7,5,0.6) 0%, rgba(4,9,6,0.12) 55%, rgba(3,7,5,0.6) 100%);
  z-index: -2;
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(212,175,55,0.18) 0%, rgba(47,107,79,0.1) 45%, transparent 70%);
  filter: blur(20px);
  z-index: -1;
  pointer-events: none;
  transition: transform 900ms var(--ease-out);
  will-change: transform;
}

.hero-inner {
  display: flex;
  justify-content: center;
}

.hero-content { max-width: 720px; text-align: center; }

.hero-title {
  font-size: clamp(2.25rem, 1.6rem + 3.2vw, 4rem);
  margin-bottom: var(--space-4);
  text-shadow: 0 4px 30px rgba(0,0,0,0.35);
}

.hero-sub {
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.1875rem);
  color: var(--cream-dim);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: var(--space-5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4) var(--space-5);
}
.trust-strip li {
  display: flex;
  align-items: center;
  gap: 0.55em;
  font-size: 0.875rem;
  color: var(--cream-dim);
}
.trust-strip svg { width: 18px; height: 18px; color: var(--gold-400); flex-shrink: 0; }

@media (prefers-reduced-motion: reduce), (max-width: 767px) {
  .hero-video { display: none; }
  .hero-fallback-img { display: block; }
}

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--border-soft);
  background: var(--bg-elevated);
  padding-block: var(--space-3);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: var(--space-5);
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-muted-2);
  white-space: nowrap;
}
.marquee-track span:nth-child(even) {
  color: var(--gold-500);
  font-size: 0.7rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Services
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.service-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-elevated-2), var(--bg-elevated-3));
  border: 1px solid var(--border);
  margin-bottom: var(--space-4);
  transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.service-icon svg { width: 28px; height: 28px; color: var(--gold-400); transition: transform var(--dur-base) var(--ease-out); }
.service-card:hover .service-icon { transform: rotate(-6deg) scale(1.08); border-color: var(--gold-500); }
.service-card:hover .service-icon svg { transform: scale(1.1); }

.service-card h3 { font-size: 1.25rem; margin-bottom: var(--space-2); }
.service-card > p { color: var(--text-muted); margin-bottom: var(--space-3); }

.service-list { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: var(--space-4); }
.service-list li {
  font-size: 0.9rem;
  color: var(--text-muted-2);
  padding-left: 1.15em;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-300);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold-400);
}
.service-link svg { width: 16px; height: 16px; transition: transform var(--dur-base) var(--ease-out); }
.service-link:hover svg { transform: translateX(4px); }

/* ==========================================================================
   How it works / Steps
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  counter-reset: step;
  position: relative;
}

.step {
  position: relative;
  padding-left: var(--space-6);
}
.step-num {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-500);
  opacity: 0.6;
}
.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated-2);
  border: 1px solid var(--border-green);
  margin-bottom: var(--space-3);
  transform: scale(0.6);
  opacity: 0;
  transition: transform 500ms var(--ease-out) 150ms, opacity 500ms var(--ease-out) 150ms, border-color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.step.is-visible .step-icon { transform: scale(1); opacity: 1; }
.step:hover .step-icon { transform: scale(1.12); border-color: var(--gold-500); background: var(--bg-elevated-3); }
.step-icon svg { width: 22px; height: 22px; color: var(--green-200); }
.step h3 { font-size: 1.125rem; margin-bottom: var(--space-1); }
.step p { color: var(--text-muted); font-size: 0.9375rem; }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  aspect-ratio: 4 / 3;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.gallery-item:hover {
  border-color: var(--border);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,23,18,0.85) 100%);
  pointer-events: none;
}

.gallery-item figcaption {
  position: absolute;
  left: var(--space-4);
  bottom: var(--space-3);
  right: var(--space-4);
  color: var(--cream);
  font-weight: 600;
  font-size: 0.9375rem;
  z-index: 1;
}

/* ==========================================================================
   Quote panel
   ========================================================================== */
.quote-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
}

.quote-points { display: flex; flex-direction: column; gap: var(--space-2); margin-top: var(--space-4); }
.quote-points li { display: flex; align-items: center; gap: 0.6em; font-size: 0.9375rem; color: var(--cream-dim); }
.quote-points svg { width: 18px; height: 18px; color: var(--green-300); flex-shrink: 0; }

.quote-card {
  background: linear-gradient(160deg, var(--bg-elevated-2), var(--bg-elevated));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.7);
}

.field { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: var(--space-3); }
.field label { font-size: 0.8125rem; font-weight: 600; color: var(--cream-dim); letter-spacing: 0.02em; }
.field-row { display: grid; grid-template-columns: 1fr; gap: var(--space-3); }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1rem;
  background: rgba(10, 23, 18, 0.6);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  color: var(--cream);
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px;
  padding-right: 2.75rem;
}
.field textarea { min-height: 110px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.14);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--error);
}
.field-error {
  display: none;
  font-size: 0.8rem;
  color: var(--error);
}
.field.has-error .field-error { display: block; }

.quote-result {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-slow) var(--ease-out);
}
.quote-result.is-visible { grid-template-rows: 1fr; }
.quote-result-inner {
  overflow: hidden;
  text-align: center;
}
.quote-result.is-visible .quote-result-inner {
  padding-top: var(--space-4);
  margin-top: var(--space-4);
  border-top: 1px solid var(--border-soft);
}
.quote-result-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted-2);
  margin-bottom: 0.35rem;
}
.quote-result-price {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--gold-400);
  margin-bottom: 0.35rem;
}
.quote-result-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-3);
  max-width: 32ch;
  margin-inline: auto;
}

/* ==========================================================================
   Booking
   ========================================================================== */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: start;
}

.booking-form {
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}

.form-success {
  display: none;
  align-items: flex-start;
  gap: var(--space-3);
  margin-top: var(--space-4);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  background: rgba(95, 191, 135, 0.1);
  border: 1px solid rgba(95, 191, 135, 0.3);
}
.form-success.is-visible { display: flex; }
.form-success svg { width: 24px; height: 24px; color: var(--success); flex-shrink: 0; margin-top: 2px; }
.form-success strong { display: block; margin-bottom: 0.2rem; color: var(--cream); }
.form-success span { font-size: 0.875rem; color: var(--text-muted); }

.form-error {
  display: none;
  align-items: flex-start;
  gap: var(--space-3);
  margin-top: var(--space-4);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  background: rgba(224, 122, 95, 0.1);
  border: 1px solid rgba(224, 122, 95, 0.35);
}
.form-error.is-visible { display: flex; }
.form-error svg { width: 24px; height: 24px; color: #e07a5f; flex-shrink: 0; margin-top: 2px; }
.form-error strong { display: block; margin-bottom: 0.2rem; color: var(--cream); }
.form-error span { font-size: 0.875rem; color: var(--text-muted); }
.form-error a { color: var(--gold-400); font-weight: 600; }

.booking-side { display: flex; flex-direction: column; gap: var(--space-4); }
.side-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}
.side-card h3 { font-size: 1.0625rem; margin-bottom: var(--space-3); }
.side-list { display: flex; flex-direction: column; gap: var(--space-3); }
.side-list li { display: flex; align-items: flex-start; gap: 0.65em; font-size: 0.9rem; color: var(--text-muted); }
.side-list svg { width: 20px; height: 20px; color: var(--green-300); flex-shrink: 0; margin-top: 1px; }

.side-card-contact { background: linear-gradient(150deg, var(--bg-elevated-3), var(--bg-elevated-2)); }
.side-contact-link {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-weight: 600;
  padding-block: 0.6rem;
  border-bottom: 1px solid var(--border-soft);
  transition: color var(--dur-base) var(--ease-out);
}
.side-contact-link:last-child { border-bottom: none; }
.side-contact-link svg { width: 18px; height: 18px; color: var(--gold-400); }
.side-contact-link:hover { color: var(--gold-300); }

/* ==========================================================================
   Service area
   ========================================================================== */
.area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  align-items: stretch;
}

.area-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  min-height: 320px;
  filter: grayscale(0.3) invert(0.92) contrast(0.9);
}
.area-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

.area-list { display: flex; flex-direction: column; gap: var(--space-3); }
.area-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
  padding: var(--space-3);
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.area-item:hover { transform: translateX(4px); border-color: var(--border); }
.area-item:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 2px; }
.area-item svg { width: 24px; height: 24px; color: var(--gold-400); flex-shrink: 0; transition: color var(--dur-base) var(--ease-out); }
.area-item strong { display: block; font-size: 1rem; }
.area-item span { font-size: 0.85rem; color: var(--text-muted); }
.area-item.is-active {
  border-color: var(--gold-500);
  background: var(--bg-elevated-2);
  box-shadow: inset 3px 0 0 var(--gold-500);
}

.area-note { font-size: 0.9rem; color: var(--text-muted); margin-top: var(--space-2); }
.area-note a { color: var(--gold-400); font-weight: 600; }
.area-note a:hover { text-decoration: underline; }

/* ==========================================================================
   Why grid / reviews
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.why-card {
  padding: var(--space-4);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  transition: border-color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.why-card:hover { border-color: var(--border-green); transform: translateY(-4px); }
.why-card svg { width: 26px; height: 26px; color: var(--green-300); margin-bottom: var(--space-3); }
.why-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.why-card p { font-size: 0.9rem; color: var(--text-muted); }

.guarantee-banner {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.28);
  background:
    linear-gradient(120deg, rgba(212, 175, 55, 0.09), rgba(74, 144, 112, 0.06)),
    var(--bg-elevated);
}
.guarantee-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
}
.guarantee-icon svg { width: 28px; height: 28px; color: var(--gold-400); }
.guarantee-copy h3 { font-size: 1.15rem; margin-bottom: 0.3rem; color: var(--cream); }
.guarantee-copy p { font-size: 0.9375rem; color: var(--text-muted); max-width: 70ch; }

@media (max-width: 560px) {
  .guarantee-banner { flex-direction: column; text-align: center; align-items: center; }
}

.review-placeholder {
  text-align: center;
  padding: var(--space-6) var(--space-4);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
}
.review-placeholder-stars { display: flex; justify-content: center; gap: 0.35rem; margin-bottom: var(--space-3); }
.review-placeholder-stars svg { width: 22px; height: 22px; color: var(--gold-500); opacity: 0.45; }
.review-placeholder p { color: var(--text-muted); margin-bottom: var(--space-4); }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--bg-elevated-3) 45%, var(--green-600) 100%);
  padding-block: var(--space-7);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(212,175,55,0.18), transparent 55%);
}
.cta-banner-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  align-items: flex-start;
}
.cta-banner h2 { font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem); margin-bottom: var(--space-2); }
.cta-banner p { color: var(--cream-dim); max-width: 46ch; }
.cta-banner-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.cta-banner .btn-outline { border-color: rgba(245,241,232,0.35); color: var(--cream); background: rgba(245,241,232,0.06); }
.cta-banner .btn-outline:hover { border-color: var(--cream); background: rgba(245,241,232,0.14); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--ink-2);
  border-top: 1px solid var(--border-soft);
  padding-top: var(--space-7);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  padding-bottom: var(--space-6);
}
.footer-logo { height: 34px; margin-bottom: var(--space-3); }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; max-width: 32ch; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--space-3);
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a { color: var(--text-muted); font-size: 0.9rem; transition: color var(--dur-base) var(--ease-out); }
.footer-col a:hover { color: var(--gold-300); }
.footer-col li { color: var(--text-muted); font-size: 0.9rem; }

.footer-hours li { display: flex; justify-content: space-between; gap: var(--space-3); font-size: 0.875rem; }
.footer-hours span:first-child { color: var(--cream-dim); }
.footer-hours span:last-child { color: var(--text-muted); }

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-block: var(--space-4);
}
.footer-bottom p { font-size: 0.825rem; color: var(--text-muted-2); }

/* ==========================================================================
   Scroll to top
   ========================================================================== */
.scroll-top {
  position: fixed;
  right: var(--space-4);
  bottom: var(--space-4);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-elevated-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
  cursor: pointer;
}
.scroll-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { border-color: var(--gold-500); }
.scroll-top svg { width: 20px; height: 20px; color: var(--gold-400); }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-list { display: flex; flex-direction: column; gap: var(--space-3); }
.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease-out);
}
.faq-item[open] { border-color: var(--border-green); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-4);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--cream);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--gold-400);
  border-bottom: 2px solid var(--gold-400);
  transform: rotate(45deg);
  transition: transform var(--dur-base) var(--ease-out);
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item summary:hover { color: var(--gold-400); }
.faq-answer { padding: 0 var(--space-4) var(--space-4); }
.faq-answer p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.6; }
.faq-answer a { color: var(--gold-400); font-weight: 600; }
@media (prefers-reduced-motion: no-preference) {
  .faq-item[open] .faq-answer { animation: faq-open 260ms var(--ease-out); }
}
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Sticky mobile action bar (phones only)
   ========================================================================== */
.mobile-bar { display: none; }

@media (max-width: 767px) {
  .mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-soft);
    border-top: 1px solid var(--border);
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -8px 24px -12px rgba(0,0,0,0.7);
  }
  .mobile-bar-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 0.6rem 0.25rem;
    background: var(--bg-elevated-2);
    color: var(--cream);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
  }
  .mobile-bar-btn svg { width: 21px; height: 21px; color: var(--gold-400); }
  .mobile-bar-btn-primary { background: var(--gold-500); color: #1a1206; }
  .mobile-bar-btn-primary svg { color: #1a1206; }

  /* Keep the bar from covering page content */
  body { padding-bottom: 60px; }
  .scroll-top { bottom: calc(60px + var(--space-3)); }
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-x="left"] { transform: translateX(-56px); }
[data-reveal-x="right"] { transform: translateX(56px); }
[data-reveal-x].is-visible { transform: translateX(0); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Responsive — Tablet (>=768px)
   ========================================================================== */
@media (min-width: 768px) {
  .field-row { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item-wide { grid-column: 1 / -1; aspect-ratio: 21 / 9; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: 1.1fr 0.9fr; }
  .cta-banner-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .footer-inner { grid-template-columns: 1.4fr repeat(3, 1fr); }
}

/* ==========================================================================
   Responsive — Desktop (>=1024px)
   ========================================================================== */
@media (min-width: 1024px) {
  .nav-primary { display: block; }
  .header-phone { display: flex; }
  .nav-toggle { display: none; }

  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .quote-panel { grid-template-columns: 0.9fr 1.1fr; }
  .booking-grid { grid-template-columns: 1.5fr 1fr; }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================================
   Responsive — Large desktop (>=1440px)
   ========================================================================== */
@media (min-width: 1440px) {
  :root { --container-w: 1320px; }
}

/* ==========================================================================
   Small phone tightening (<=375px)
   ========================================================================== */
@media (max-width: 375px) {
  :root { --space-8: 4rem; --space-7: 3rem; }
  .hero-actions .btn { width: 100%; }
}
