/* ============================================
   LOGISTIC ROOFING GROUP — v3 (dark + orange)
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video, canvas { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Tokens ---------- */
:root {
  --bg: #0a0a0a;
  --bg-charcoal: #141414;
  --bg-panel: #1c1c1c;
  --orange: #ff5a1f;
  --orange-dark: #c04515;
  --orange-deep: #8a2e0d;
  --fg: #f5f5f5;
  --fg-muted: rgba(255, 255, 255, 0.65);
  --fg-dim: rgba(255, 255, 255, 0.45);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.22);

  --font-display: 'Archivo Black', -apple-system, sans-serif;
  --font-body: 'Manrope', -apple-system, sans-serif;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --container: 1240px;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }

section { padding: 90px 0; }
@media (min-width: 768px) { section { padding: 120px 0; } }

/* ---------- Typography ---------- */
.hero-headline,
.section-title,
.section-title-orange,
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.hero-headline {
  font-size: clamp(48px, 9vw, 112px);
  color: var(--fg);
  max-width: 11ch;
}
.hero-headline .accent { color: var(--orange); display: inline; }
.section-title {
  font-size: clamp(32px, 5.5vw, 64px);
  color: var(--fg);
  max-width: 18ch;
}
.section-title .accent { color: var(--orange); }
.section-title-orange {
  font-size: clamp(32px, 5vw, 56px);
  color: #0a0a0a;
  max-width: 14ch;
}

.lead {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(15px, 1.7vw, 19px);
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 540px;
}

/* chips */
.chip {
  display: inline-block;
  padding: 6px 11px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.2;
}
.chip-orange { background: var(--orange); color: #0a0a0a; }
.chip-black { background: #0a0a0a; color: var(--orange); }

/* ---------- Header (theme-adaptive) ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.45s var(--ease), border-color 0.45s var(--ease), color 0.45s var(--ease);
}
.site-header[data-theme="dark"] { background: rgba(10, 10, 10, 0.75); color: var(--fg); }
.site-header[data-theme="charcoal"] { background: rgba(20, 20, 20, 0.82); color: var(--fg); border-bottom-color: var(--border); }
.site-header[data-theme="orange"] { background: rgba(255, 90, 31, 0.95); color: #0a0a0a; }
.site-header.scrolled { border-bottom-color: var(--border); }

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: inherit;
}
.brand img { height: 32px; width: auto; }
.brand-text { display: none; }
@media (min-width: 640px) { .brand-text { display: inline; } }
/* brand mark fallback: orange tile with L */
.brand::before {
  content: 'L';
  width: 32px; height: 32px;
  background: var(--orange);
  color: #0a0a0a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  flex-shrink: 0;
  transition: background 0.45s var(--ease), color 0.45s var(--ease);
}
.brand img[src]:not([src=""]) + * { /* if logo img loaded, hide fallback via JS on error cleanup */ }
.brand img:not([src=""])[src]:not([onerror]) {}
/* hide ::before when img loads — simple solution: img absorbs space, ::before also renders; fine */
.brand img { display: none; } /* hide img by default; show only if it loads */
.brand img[data-loaded] { display: block; }

.site-header[data-theme="orange"] .brand::before { background: #0a0a0a; color: var(--orange); }

.nav-primary {
  display: none;
  gap: 28px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (min-width: 940px) { .nav-primary { display: flex; } }
.nav-primary a {
  position: relative;
  padding: 6px 0;
  color: inherit;
  opacity: 0.82;
  transition: opacity 0.2s var(--ease);
}
.nav-primary a:hover { opacity: 1; }
.nav-primary a.active { opacity: 1; }
.nav-primary a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: currentColor;
}
.site-header[data-theme="dark"] .nav-primary a.active,
.site-header[data-theme="charcoal"] .nav-primary a.active { color: var(--orange); }
.site-header[data-theme="dark"] .nav-primary a.active::after,
.site-header[data-theme="charcoal"] .nav-primary a.active::after { background: var(--orange); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.lang-toggle {
  display: inline-flex;
  border: 2px solid currentColor;
  font-size: 10px;
  font-weight: 800;
  font-family: var(--font-body);
  letter-spacing: 0.06em;
}
.lang-toggle button {
  padding: 4px 9px;
  background: transparent;
  color: inherit;
  transition: all 0.2s var(--ease);
}
.lang-toggle button.active { background: currentColor; color: var(--bg); }
.site-header[data-theme="orange"] .lang-toggle button.active { color: var(--orange); }

.cta-phone {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: var(--orange);
  color: #0a0a0a;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s var(--ease);
}
.site-header[data-theme="orange"] .cta-phone { background: #0a0a0a; color: var(--orange); }
.cta-phone:hover { background: var(--orange-dark); color: white; }
@media (min-width: 640px) { .cta-phone { display: inline-flex; } }

.menu-toggle {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}
@media (min-width: 940px) { .menu-toggle { display: none; } }
.menu-toggle svg { width: 24px; height: 24px; }

.mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 99;
  padding: 100px 32px 40px;
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 34px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--fg);
}
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav .cta-phone { margin-top: 28px; display: inline-flex; align-self: flex-start; font-size: 13px; padding: 12px 20px; }

/* ---------- Hero: scroll-scrub ---------- */
.scrub-hero {
  position: relative;
  height: 260vh;
  background: var(--bg);
}
.scrub-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--bg);
}
.scrub-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}
.scrub-canvas.loaded { opacity: 1; }
.scrub-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}
.scrub-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.78) 100%);
  pointer-events: none;
}

/* Hero accent strips (orange bars) */
.hero-accents { position: absolute; inset: 0; pointer-events: none; }
.accent-strip { position: absolute; background: var(--orange); }
.accent-top { top: 0; right: 0; width: 160px; height: 8px; }
.accent-right { top: 8px; right: 0; width: 42px; height: 220px; }
.accent-bottom { bottom: 0; left: 0; width: 240px; height: 4px; }
.hero-ghost {
  position: absolute;
  top: 40px; left: 30px;
  font-family: var(--font-display);
  font-size: clamp(180px, 32vw, 420px);
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: rgba(255, 90, 31, 0.07);
  user-select: none;
}

.scrub-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 24px 90px;
  color: var(--fg);
  max-width: var(--container);
  margin: 0 auto;
}
@media (min-width: 768px) { .scrub-content { padding: 0 40px 120px; } }
.scrub-content .lead { color: rgba(255, 255, 255, 0.78); margin-top: 22px; }
.scrub-content .btn-row { margin-top: 32px; }

.scrub-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  animation: bobble 2.2s ease-in-out infinite;
}
@keyframes bobble {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.7; }
  50%     { transform: translate(-50%, 6px); opacity: 1; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  text-align: center;
  justify-content: center;
}
.btn-primary { background: var(--orange); color: #0a0a0a; }
.btn-primary:hover { background: white; color: var(--orange-dark); }
.btn-black { background: #0a0a0a; color: var(--orange); }
.btn-black:hover { background: white; color: var(--orange-dark); }
.btn-ghost-light { background: transparent; color: var(--fg); border: 2px solid rgba(255, 255, 255, 0.35); }
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.7); }
.btn-full { width: 100%; }

.btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--bg-charcoal);
  padding: 36px 0;
  border-bottom: 4px solid var(--orange);
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  text-align: center;
}
@media (min-width: 768px) { .trust-bar-inner { grid-template-columns: repeat(4, 1fr); gap: 0; } }
.trust-item {
  padding: 0 16px;
}
@media (min-width: 768px) {
  .trust-item + .trust-item { border-left: 1px solid var(--border); }
}
.trust-item .num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  color: var(--orange);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.trust-item .lbl {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

/* ---------- Section Head ---------- */
.section-head {
  max-width: 880px;
  margin-bottom: 56px;
}
.section-head .lead { margin-top: 20px; }

/* ---------- About section ---------- */
.about-section { background: var(--bg); }
.story {
  display: grid;
  gap: 40px;
  align-items: start;
}
@media (min-width: 900px) { .story { grid-template-columns: 1fr 1.2fr; gap: 72px; } }
.story-media {
  aspect-ratio: 4/5;
  background: var(--bg-charcoal);
  overflow: hidden;
  position: relative;
}
.story-media::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100px; height: 6px;
  background: var(--orange);
  z-index: 2;
}
.story-media img { width: 100%; height: 100%; object-fit: cover; }
.story-text p {
  margin-bottom: 22px;
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
}
.story-text p strong { color: var(--fg); font-weight: 800; }

/* ---------- Services ---------- */
.services-section { background: var(--bg); }
.service-cards {
  display: grid;
  gap: 14px;
}
@media (min-width: 900px) { .service-cards { grid-template-columns: repeat(3, 1fr); } }

.svc-card {
  padding: 32px 26px;
  border-top: 4px solid var(--orange);
  display: flex;
  flex-direction: column;
}
.svc-dark { background: var(--bg-charcoal); color: var(--fg); }
.svc-charcoal { background: var(--bg-panel); color: var(--fg); }
.svc-orange { background: var(--orange); color: #0a0a0a; border-top-color: #0a0a0a; }

.svc-icon {
  width: 48px; height: 48px;
  background: var(--orange);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 20px;
}
.svc-orange .svc-icon { background: #0a0a0a; color: var(--orange); }

.svc-card h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.05;
}
.svc-card p {
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
  margin-bottom: 20px;
  opacity: 0.85;
}
.svc-orange p { opacity: 0.92; font-weight: 600; color: #0a0a0a; }

.svc-list {
  list-style: none;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.svc-orange .svc-list { border-top-color: rgba(0, 0, 0, 0.18); }
.svc-list li {
  font-size: 13px;
  font-weight: 600;
  padding: 9px 0;
  padding-left: 16px;
  position: relative;
}
.svc-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 8px; height: 2px;
  background: var(--orange);
}
.svc-orange .svc-list li::before { background: #0a0a0a; }

/* ---------- Insurance Banner (ORANGE) ---------- */
.insurance-banner {
  background: var(--orange);
  color: #0a0a0a;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.insurance-banner .bg-ghost {
  position: absolute;
  bottom: -80px;
  right: -30px;
  font-family: var(--font-display);
  font-size: clamp(280px, 42vw, 560px);
  line-height: 0.8;
  color: rgba(0, 0, 0, 0.08);
  user-select: none;
  pointer-events: none;
}
.insurance-banner-inner {
  position: relative;
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) { .insurance-banner-inner { grid-template-columns: 1.1fr 1fr; gap: 72px; } }
.insurance-banner p {
  color: #0a0a0a;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.55;
  margin-top: 20px;
  max-width: 480px;
}
.claim-steps {
  list-style: none;
  background: rgba(0, 0, 0, 0.1);
  border: 2px solid #0a0a0a;
}
.claim-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.45;
  color: #0a0a0a;
  border-top: 2px solid #0a0a0a;
}
.claim-steps li:first-child { border-top: none; }
.claim-steps .step-num {
  font-family: var(--font-display);
  font-size: 18px;
  flex-shrink: 0;
  width: 30px;
  color: #0a0a0a;
  line-height: 1.1;
}

/* ---------- Before/After ---------- */
.ba-section { background: var(--bg-charcoal); }
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  background: #222;
  border: 2px solid var(--orange);
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-slider .ba-after-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  will-change: width;
}
.ba-slider .ba-after-wrap img { width: 100vw; max-width: 1100px; }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--orange);
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-handle::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 48px; height: 48px;
  background: var(--orange);
  transform: translate(-50%, -50%);
}
.ba-handle::before {
  content: '⟷';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 20px;
  font-weight: 900;
  color: #0a0a0a;
}
.ba-label {
  position: absolute;
  top: 18px;
  padding: 6px 12px;
  background: #0a0a0a;
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ba-label.before { left: 18px; }
.ba-label.after { right: 18px; background: var(--orange); color: #0a0a0a; }
.ba-hint {
  text-align: center;
  margin-top: 20px;
  font-family: var(--font-display);
  color: var(--fg-dim);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ---------- Testimonials ---------- */
.reviews-section { background: var(--bg); }
.testimonial-grid {
  display: grid;
  gap: 14px;
}
@media (min-width: 700px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  background: var(--bg-charcoal);
  padding: 28px;
  border-left: 3px solid var(--orange);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.testimonial:hover { background: var(--bg-panel); transform: translateY(-2px); }
.testimonial .stars {
  color: var(--orange);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.testimonial blockquote {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: 18px;
}
.testimonial cite {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 11px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.testimonial cite span { color: var(--fg-dim); }

/* ---------- Contact ---------- */
.contact-section { background: var(--bg); padding-bottom: 140px; }
.contact-grid {
  display: grid;
  gap: 40px;
  margin-top: 20px;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 72px; } }

.contact-info .info-block {
  padding: 24px 0;
  border-top: 1px solid var(--border);
}
.contact-info .info-block:first-child { border-top: none; padding-top: 0; }
.contact-info .info-block h4 {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--orange);
  margin-bottom: 8px;
}
.contact-info .info-block .big {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 32px);
  color: var(--fg);
  letter-spacing: -0.02em;
}
.contact-info .info-block .big:hover { color: var(--orange); }
.contact-info .info-block p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
}

.contact-form {
  background: var(--bg-charcoal);
  padding: 36px;
  border-top: 4px solid var(--orange);
}
@media (min-width: 768px) { .contact-form { padding: 44px; } }
.contact-form h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--fg);
  margin-bottom: 26px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--fg-dim); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.15);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; gap: 16px; }
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; gap: 16px; } }
.form-note {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--fg-dim);
  margin-top: 14px;
  text-align: center;
  letter-spacing: 0.04em;
}
.hp-field { display: none; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg);
  color: var(--fg-muted);
  padding: 80px 0 32px;
  font-size: 14px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1.2fr; } }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--orange);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-weight: 600; }
.footer-col a:hover { color: var(--orange); }
.footer-brand img { height: 36px; margin-bottom: 16px; }
.footer-brand p {
  max-width: 340px;
  line-height: 1.55;
  font-weight: 500;
  font-size: 14px;
}
.phone-pair { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.phone-pair .phone {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--fg);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.phone-pair .phone span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 3px;
}
.phone-pair .phone:hover { color: var(--orange); }
.address { margin-top: 20px; font-size: 13px; font-weight: 500; line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 10px;
  color: var(--fg-dim);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-bottom .badges { color: var(--orange); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }

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