/* ============================================================
   Sangha Garage Services — Design Tokens
   Palette grounded in the trade itself: graphite/steel darks,
   warm copper accent (brushed-metal warmth, not generic
   "contractor orange"), paper-warm light sections.
   ============================================================ */
:root {
  --color-ink: #16181d;
  --color-ink-soft: #1f232b;
  --color-graphite: #2b2e36;
  --color-steel: #7d838f;
  --color-steel-light: #a7adb8;
  --color-copper: #c6702f;
  --color-copper-dark: #a3592280;
  --color-copper-dark-solid: #a35922;
  --color-copper-light: #e8b184;
  --color-paper: #f7f5f2;
  --color-paper-dim: #efeae2;
  --color-white: #ffffff;
  --color-line: #e7e2db;
  --color-line-dark: #383c45;
  --color-text: #1d1f23;
  --color-text-muted: #5b5f68;
  --color-text-on-dark: #f3f1ed;
  --color-text-on-dark-muted: #b7bbc4;
  --color-danger: #b3432f;

  --font-display: 'Archivo', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  --shadow-sm: 0 1px 2px rgba(22, 24, 29, 0.06);
  --shadow-md: 0 8px 24px rgba(22, 24, 29, 0.10);
  --shadow-lg: 0 20px 48px rgba(22, 24, 29, 0.16);

  --ease-panel: cubic-bezier(0.22, 0.61, 0.36, 1);
  --duration-fast: 180ms;
  --duration-base: 320ms;
  --duration-door: 1100ms;

  --container-max: 1200px;
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { 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 {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0 0 var(--space-3); line-height: 1.15; letter-spacing: -0.01em; }
p { margin: 0 0 var(--space-4); }

h1 { font-size: clamp(2.2rem, 5vw + 1rem, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3vw + 1rem, 2.75rem); font-weight: 800; }
h3 { font-size: clamp(1.2rem, 1.2vw + 1rem, 1.5rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-copper);
  margin-bottom: var(--space-3);
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--color-copper);
  display: inline-block;
}

/* Focus visibility (keyboard nav) */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--color-copper);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--duration-fast) ease, box-shadow var(--duration-fast) ease, background var(--duration-fast) ease, color var(--duration-fast) ease, border-color var(--duration-fast) ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--color-copper); color: var(--color-white); }
.btn-primary:hover { background: var(--color-copper-dark-solid); box-shadow: var(--shadow-md); }
.btn-dark { background: var(--color-ink); color: var(--color-white); }
.btn-dark:hover { background: var(--color-graphite); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; border-color: currentColor; color: var(--color-white); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); }
.btn-outline-dark { background: transparent; border-color: var(--color-ink); color: var(--color-ink); }
.btn-outline-dark:hover { background: var(--color-ink); color: var(--color-white); }
.btn-block { width: 100%; white-space: normal; }

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(22, 24, 29, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: padding var(--duration-base) ease, box-shadow var(--duration-base) ease, border-color var(--duration-base) ease;
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--color-line-dark);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 0;
  transition: padding var(--duration-base) ease;
}
.site-header.is-scrolled .header-inner { padding: 0.85rem 0; }

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-white);
}
.brand-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.brand-name span {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--color-copper-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.nav-links a {
  color: var(--color-text-on-dark-muted);
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
  padding: 0.4rem 0.1rem;
  transition: color var(--duration-fast) ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--color-copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-base) var(--ease-panel);
}
.nav-links a:hover, .nav-links a.active { color: var(--color-white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: var(--space-4); }
.header-phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.95rem;
}
.header-phone svg { width: 18px; height: 18px; color: var(--color-copper); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  padding: 0;
  position: relative;
  z-index: 101;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: '';
  position: absolute;
  left: 8px; right: 8px;
  height: 2px;
  background: var(--color-white);
  transition: transform var(--duration-base) ease, opacity var(--duration-base) ease, top var(--duration-base) ease;
}
.nav-toggle span { top: 19px; }
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.is-open span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links, .desktop-only { display: none; }
  .nav-toggle { display: block; }
  .mobile-nav {
    position: fixed;
    inset: 0;
    top: 0;
    background: var(--color-ink);
    z-index: 99;
    display: flex;
    flex-direction: column;
    padding: 6.5rem var(--space-6) var(--space-6);
    transform: translateX(100%);
    transition: transform var(--duration-base) var(--ease-panel);
  }
  .mobile-nav.is-open { transform: translateX(0); }
  .mobile-nav a {
    display: block;
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--color-line-dark);
  }
  .mobile-nav .btn { margin-top: var(--space-6); }
}
@media (min-width: 901px) { .mobile-nav { display: none; } }

/* ============================================================
   Ambient background glow (subtle, professional, GPU-cheap)
   ============================================================ */
.bg-glow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.bg-glow span {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.28;
  will-change: transform;
  animation: bgDrift 22s ease-in-out infinite;
}
.bg-glow span:nth-child(1) {
  width: 30vw; height: 30vw; min-width: 320px; min-height: 320px;
  background: var(--color-copper);
  top: -10%; left: -8%;
  animation-delay: 0s;
}
.bg-glow span:nth-child(2) {
  width: 24vw; height: 24vw; min-width: 260px; min-height: 260px;
  background: #3a5068;
  top: 35%; right: -6%;
  animation-delay: -7s;
}
.bg-glow span:nth-child(3) {
  width: 20vw; height: 20vw; min-width: 220px; min-height: 220px;
  background: var(--color-copper-light);
  bottom: -8%; left: 28%;
  animation-delay: -14s;
}
@keyframes bgDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(3%, -4%) scale(1.08); }
  66% { transform: translate(-3%, 3%) scale(0.94); }
}
@media (prefers-reduced-motion: reduce) {
  .bg-glow span { animation: none; }
}

/* ============================================================
   Hero + Garage Door Reveal (signature interaction)
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--color-ink) 0%, var(--color-ink-soft) 100%);
  color: var(--color-white);
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-8);
  align-items: center;
  padding: var(--space-9) 0 var(--space-8);
  width: 100%;
}
.hero-copy p.lead {
  font-size: 1.15rem;
  color: var(--color-text-on-dark-muted);
  max-width: 46ch;
}
.hero-actions { display: flex; gap: var(--space-4); flex-wrap: wrap; margin-top: var(--space-6); }
.hero-trust {
  display: flex;
  gap: var(--space-6);
  margin-top: var(--space-8);
  flex-wrap: wrap;
}
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust strong { font-family: var(--font-display); font-size: 1.6rem; color: var(--color-copper-light); }
.hero-trust span { font-size: 0.78rem; color: var(--color-text-on-dark-muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* Visual: stylized door graphic (SVG panels), not a photo */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-line-dark);
}
.hero-visual .door-frame {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #3a3f49, #22252c 70%);
}
.door-panel-set {
  position: absolute;
  inset: 8%;
  display: flex;
  flex-direction: column;
  gap: 4%;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.door-panel-set .panel {
  flex: 1;
  background: linear-gradient(180deg, #565c68 0%, #454a55 45%, #383c46 100%);
  border-radius: 3px;
  position: relative;
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.08), inset 0 -3px 6px rgba(0,0,0,0.35);
}
.door-panel-set .panel::before, .door-panel-set .panel::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #cfd3da, #83899533);
  transform: translateY(-50%);
}
.door-panel-set .panel::before { left: 6%; }
.door-panel-set .panel::after { right: 6%; }

/* Load animation: door rolls up to reveal a real job photo beneath */
.hero-visual .reveal-plate {
  position: absolute;
  inset: 8%;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(15,17,20,0.05) 40%, rgba(15,17,20,0.85) 100%),
    url('../assets/gallery/carriage-house.jpg') center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: var(--space-5);
}
.reveal-plate .plate-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-copper-light);
}
.reveal-plate .plate-copy span {
  font-size: 0.8rem;
  color: var(--color-text-on-dark-muted);
}

.door-panel-set {
  transition: transform var(--duration-door) var(--ease-panel);
}
.hero-visual.js-armed .door-panel-set { transform: translateY(0); }
.hero-visual.door-open .door-panel-set { transform: translateY(-115%); }

@media (prefers-reduced-motion: reduce) {
  .hero-visual .door-panel-set { transform: translateY(-115%) !important; transition: none !important; }
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: var(--space-8); }
  .hero-visual { max-width: 420px; margin: 0 auto; }
}

/* ============================================================
   Sections / Layout
   ============================================================ */
.section { padding: var(--space-9) 0; }
.section-tight { padding: var(--space-8) 0; }
.section-dark { background: var(--color-ink); color: var(--color-white); }
.section-alt { background: var(--color-paper-dim); }
.section-head { max-width: 640px; margin-bottom: var(--space-8); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-dark .section-head p { color: var(--color-text-on-dark-muted); }

.grid {
  display: grid;
  gap: var(--space-6);
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  transition: transform var(--duration-base) var(--ease-panel), box-shadow var(--duration-base) var(--ease-panel), border-color var(--duration-base) ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .icon-badge { margin-bottom: var(--space-4); }
.card h3 { margin-bottom: var(--space-2); }
.card p { color: var(--color-text-muted); margin-bottom: 0; font-size: 0.95rem; }

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--color-copper) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-badge svg { width: 26px; height: 26px; color: var(--color-copper); }
.section-dark .icon-badge { background: rgba(198, 112, 47, 0.16); }

/* Service card variant with panel-stripe accent, echoes door panels */
.service-card {
  position: relative;
  padding-left: calc(var(--space-6) + 6px);
}
.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: var(--space-5); bottom: var(--space-5);
  width: 4px;
  border-radius: 4px;
  background: var(--color-copper);
  opacity: 0.35;
  transition: opacity var(--duration-base) ease;
}
.service-card:hover::before { opacity: 1; }

/* ============================================================
   Maintenance plan (subscription pricing card)
   ============================================================ */
.plan-card {
  position: relative;
  background: linear-gradient(155deg, var(--color-ink), var(--color-graphite));
  border-radius: var(--radius-lg);
  padding: var(--space-9) var(--space-8);
  color: var(--color-white);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-8);
  overflow: hidden;
}
.plan-card::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,112,47,0.28), transparent 70%);
  pointer-events: none;
}
.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(198,112,47,0.16);
  color: var(--color-copper-light);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  margin-bottom: var(--space-4);
}
.plan-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: var(--space-6) 0;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.95rem;
  color: var(--color-text-on-dark-muted);
}
.plan-features svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--color-copper); margin-top: 2px; }
.plan-price-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--color-line-dark);
  border-radius: var(--radius-md);
  padding: var(--space-7);
  text-align: center;
  align-self: center;
}
.plan-price {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}
.plan-price span { font-size: 1rem; font-weight: 500; color: var(--color-text-on-dark-muted); }
.plan-price-note { font-size: 0.82rem; color: var(--color-text-on-dark-muted); margin: var(--space-2) 0 var(--space-6); }
@media (max-width: 780px) {
  .plan-card { grid-template-columns: minmax(0, 1fr); padding: var(--space-7); }
}
@media (max-width: 640px) {
  /* keep the CTA button clear of the fixed WhatsApp/Call buttons in the bottom-right corner */
  .plan-price-box { padding-right: 90px; }
}
@media (max-width: 480px) {
  .plan-price-box { padding-right: 80px; }
}

/* ============================================================
   Trust bar
   ============================================================ */
.trust-bar {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-line);
}
.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
}
.trust-item svg { width: 18px; height: 18px; color: var(--color-copper); }

/* ============================================================
   FAQ (native <details>/<summary> accordion)
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  font-weight: 700;
  transition: background var(--duration-fast) ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--color-paper-dim); }
.faq-item summary svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--color-copper); transition: transform var(--duration-fast) ease; }
.faq-item[open] summary svg { transform: rotate(45deg); }
.faq-item p {
  padding: 0 var(--space-6) var(--space-5);
  color: var(--color-text-muted);
  margin: 0;
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonial {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: var(--space-6);
}
.testimonial .stars { color: var(--color-copper); margin-bottom: var(--space-3); letter-spacing: 2px; }
.testimonial p { font-size: 1rem; color: var(--color-text); }
.testimonial .author { display: flex; align-items: center; gap: var(--space-3); margin-top: var(--space-4); }
.testimonial .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(160deg, var(--color-copper-light), var(--color-copper));
  display: flex; align-items: center; justify-content: center;
  color: var(--color-white); font-weight: 700; font-family: var(--font-display);
}
.testimonial .author strong { display: block; font-size: 0.9rem; }
.testimonial .author span { font-size: 0.78rem; color: var(--color-text-muted); }
.testimonial-note {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: var(--space-3);
  font-style: italic;
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background: linear-gradient(120deg, var(--color-ink), var(--color-graphite));
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,112,47,0.35), transparent 70%);
}
.cta-band h2 { margin-bottom: var(--space-2); }
.cta-band p { color: var(--color-text-on-dark-muted); margin-bottom: 0; max-width: 46ch; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--color-ink);
  color: var(--color-text-on-dark-muted);
  padding: var(--space-9) 0 var(--space-6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-7);
  padding-bottom: var(--space-7);
  border-bottom: 1px solid var(--color-line-dark);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--color-white); margin-bottom: var(--space-4); }
.footer-grid ul li { margin-bottom: var(--space-2); }
.footer-grid a { transition: color var(--duration-fast) ease; }
.footer-grid a:hover { color: var(--color-white); }
.footer-brand p { max-width: 34ch; font-size: 0.9rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  padding-top: var(--space-5);
  font-size: 0.82rem;
}
.footer-social { display: flex; gap: var(--space-3); }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--color-line-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--duration-fast) ease, background var(--duration-fast) ease;
}
.footer-social a:hover { border-color: var(--color-copper); background: rgba(198,112,47,0.12); }
.footer-social svg { width: 16px; height: 16px; }

/* ============================================================
   Page hero (interior pages)
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-ink), var(--color-ink-soft));
  color: var(--color-white);
  padding: var(--space-8) 0 var(--space-7);
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  font-size: 0.82rem;
  color: var(--color-text-on-dark-muted);
  margin-bottom: var(--space-4);
}
.breadcrumb a:hover { color: var(--color-white); }

/* ============================================================
   Forms
   ============================================================ */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  /* keep fields clear of the fixed WhatsApp/Call buttons in the bottom-right corner */
  #contact-form { padding-right: 88px; }
}
@media (max-width: 480px) {
  #contact-form { padding-right: 76px; }
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--space-2);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--color-copper);
  box-shadow: 0 0 0 3px rgba(198, 112, 47, 0.15);
  outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.field .error-msg {
  display: none;
  color: var(--color-danger);
  font-size: 0.8rem;
  margin-top: var(--space-2);
}
.field.has-error input, .field.has-error select, .field.has-error textarea {
  border-color: var(--color-danger);
}
.field.has-error .error-msg { display: block; }

.form-note {
  background: var(--color-paper-dim);
  border: 1px dashed var(--color-line);
  border-radius: var(--radius-sm);
  padding: var(--space-4);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: var(--space-5);
}

.form-success {
  display: none;
  background: #eaf3ec;
  border: 1px solid #bfe0c6;
  color: #245c34;
  padding: var(--space-5);
  border-radius: var(--radius-md);
  margin-top: var(--space-5);
}
.form-success.is-visible { display: block; }

/* ============================================================
   Gallery (door style catalog — illustrative, not photos)
   ============================================================ */
.door-swatch {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-line);
}
.door-swatch .swatch-panels {
  position: absolute;
  inset: 10%;
  display: flex;
  flex-direction: column;
  gap: 6%;
}
.door-swatch .swatch-panels div {
  flex: 1;
  border-radius: 3px;
}
.door-swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-tag {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: rgba(22, 24, 29, 0.75);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  z-index: 1;
}
.swatch-caption {
  margin-top: var(--space-4);
}
.swatch-caption h3 { margin-bottom: 2px; font-size: 1.05rem; }
.swatch-caption p { font-size: 0.85rem; margin-bottom: 0; }

/* ============================================================
   Map embed
   ============================================================ */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 640px) {
  .map-embed { aspect-ratio: 4 / 5; }
}

/* ============================================================
   Floating action buttons (Call / WhatsApp)
   ============================================================ */
.float-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  color: var(--color-white);
  transition: transform var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
}
.float-btn:hover { transform: scale(1.08); box-shadow: 0 20px 40px rgba(0,0,0,0.28); }
.float-btn svg { width: 27px; height: 27px; }
.float-btn.whatsapp { background: #25d366; }
.float-btn.call { background: var(--color-copper); }
@media (max-width: 480px) {
  .float-actions { right: 14px; bottom: 14px; gap: 10px; }
  .float-btn { width: 50px; height: 50px; }
  .float-btn svg { width: 23px; height: 23px; }
}
@media (prefers-reduced-motion: reduce) {
  .float-btn:hover { transform: none; }
}

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease-panel), transform 700ms var(--ease-panel);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Utility
   ============================================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.badge-list { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  font-size: 0.85rem;
  font-weight: 600;
}
.badge svg { width: 14px; height: 14px; color: var(--color-copper); }
