/* ===========================
   HALS SEALING — styles.css
   Aesthetic: Industrial / Bold / Local
   =========================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #0a0a0a;
  --near-black: #111111;
  --dark:       #1a1a1a;
  --dark-mid:   #222222;
  --mid:        #2e2e2e;
  --steel:      #3a3a3a;
  --grey:       #888;
  --light-grey: #c0c0c0;
  --off-white:  #f0ede8;
  --white:      #ffffff;
  --gold:       #c8922a;
  --gold-light: #e8ac42;
  --gold-dark:  #a07018;
  --asphalt:    #1c1c1e;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.35);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.5);

  --section-pad: 5rem 0;
  --container: 1140px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

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

/* ======= PAGE SYSTEM ======= */
.page { display: block; }
.page.hidden { display: none; }

/* ======= TOPBAR ======= */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.brand-logo-wrap {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-wrap img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(200,146,42,0.4));
}

.brand span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--light-grey);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.nav a:hover { color: var(--white); background: var(--mid); }
.nav a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  margin-left: 0.5rem;
}
.nav-cta:hover { background: var(--gold-light) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--near-black);
  border-bottom: 2px solid var(--gold);
  padding: 1rem 2rem;
  gap: 0.25rem;
  position: sticky;
  top: 64px;
  z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--light-grey);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--mid);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-cta {
  color: var(--gold) !important;
  margin-top: 0.5rem;
}

/* ======= BUTTONS ======= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,146,42,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-full { width: 100%; }

/* ======= HERO ======= */
.hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.asphalt-texture {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.015) 2px,
      rgba(255,255,255,0.015) 4px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.01) 2px,
      rgba(255,255,255,0.01) 4px
    );
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 60% 50%, rgba(200,146,42,0.08) 0%, transparent 70%),
              linear-gradient(135deg, rgba(0,0,0,0.6) 0%, transparent 60%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.badge {
  display: inline-block;
  background: rgba(200,146,42,0.15);
  border: 1px solid rgba(200,146,42,0.4);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

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

.hero-sub {
  font-size: 1.1rem;
  color: var(--light-grey);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--light-grey);
}

.trust-icon {
  color: var(--gold);
  font-weight: 700;
}

/* Hero card stack */
.hero-card-stack {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.shield-card {
  background: var(--dark-mid);
  border: 1px solid var(--steel);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(200,146,42,0.1);
  width: 240px;
}

.shield-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 0 16px rgba(200,146,42,0.5));
}

.shield-label {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shield-sub {
  font-size: 0.8rem;
  color: var(--grey);
  margin-top: 0.25rem;
}

.float-card {
  position: absolute;
  background: var(--dark);
  border: 1px solid var(--steel);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  box-shadow: var(--shadow);
  width: 220px;
  animation: float 4s ease-in-out infinite;
}

.fc-top { top: 20px; right: -20px; animation-delay: 0s; }
.fc-bottom { bottom: 20px; left: -20px; animation-delay: 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-card .fc-icon { font-size: 1.5rem; flex-shrink: 0; }
.float-card strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 0.15rem; }
.float-card p { font-size: 0.75rem; color: var(--grey); line-height: 1.4; margin: 0; }

/* ======= STRIP ======= */
.strip {
  background: var(--gold);
  padding: 0.85rem 0;
  overflow: hidden;
}

.strip-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  flex-wrap: wrap;
}

.strip-dot { color: rgba(0,0,0,0.4); }

/* ======= SECTIONS ======= */
.section-pad { padding: var(--section-pad); }

.dark-section {
  background: var(--near-black);
  color: var(--off-white);
}

.dark-section .section-label { color: var(--gold); }
.dark-section .section-h2 { color: var(--white); }

.section-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}

/* ======= WHY GRID ======= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,0.08);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
}

.dark-section .why-card {
  background: var(--dark-mid);
  border-color: var(--steel);
  border-top-color: var(--gold);
}

.dark-section .why-card h3 { color: var(--white); }
.dark-section .why-card p { color: var(--light-grey); }

.why-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.why-card p { font-size: 0.92rem; color: #555; line-height: 1.65; }

/* ======= SERVICES PREVIEW ======= */
.svc-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.svc-preview-card {
  background: var(--dark-mid);
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}

.svc-preview-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.featured-svc {
  background: var(--gold);
  border-color: var(--gold) !important;
}

.featured-svc h3, .featured-svc p, .featured-svc .card-link { color: var(--black); }
.featured-svc .svc-icon { color: var(--black); }

.svc-icon {
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.svc-preview-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.svc-preview-card p {
  font-size: 0.9rem;
  color: var(--light-grey);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.card-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: color 0.2s;
}
.featured-svc .card-link { color: var(--black); }
.card-link:hover { color: var(--white); }

/* ======= PROCESS PREVIEW ======= */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.proc-copy p { color: #555; font-size: 1.05rem; line-height: 1.7; }

.proc-steps { display: flex; flex-direction: column; gap: 1.5rem; }

.proc-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

.proc-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.proc-step strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark);
  display: block;
  margin-bottom: 0.25rem;
}

.proc-step p { font-size: 0.88rem; color: #666; margin: 0; line-height: 1.5; }

/* ======= COVERAGE PREVIEW ======= */
.coverage-towns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.coverage-towns span {
  background: var(--dark-mid);
  border: 1px solid var(--steel);
  color: var(--light-grey);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
}

.coverage-note {
  color: var(--grey);
  font-size: 0.9rem;
}

.coverage-note a { color: var(--gold-light); text-decoration: underline; }

/* ======= CTA BANNER ======= */
.cta-banner {
  background: var(--gold);
  padding: 5rem 0;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(0,0,0,0.7);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 2rem;
}

.cta-banner .btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.cta-banner .btn-primary:hover {
  background: var(--near-black);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ======= PAGE HERO (inner pages) ======= */
.page-hero {
  background: var(--black);
  padding: 5rem 0 4rem;
  border-bottom: 2px solid var(--gold);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--light-grey);
  max-width: 600px;
}

.page-hero .text-link-light { color: var(--gold-light); text-decoration: underline; }

/* ======= SERVICE DETAIL CARDS ======= */
.service-detail-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.service-detail-card:last-child { border-bottom: none; }

.sdc-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  opacity: 0.6;
  padding-top: 0.25rem;
}

.sdc-body h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.sdc-lead {
  font-size: 1.1rem;
  color: #444;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.sdc-body p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 0.85rem;
}

.sdc-details {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

.sdc-detail-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: #444;
}

.sdc-detail-item span {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ======= INCLUDED GRID ======= */
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--dark-mid);
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  color: var(--off-white);
}

.inc-check {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ======= TIMELINE BIG ======= */
.timeline-big {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.timeline-big::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(200,146,42,0.2));
}

.tlb-step {
  display: flex;
  gap: 2.5rem;
  padding: 2rem 0;
  position: relative;
}

.tlb-marker {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--off-white), 0 0 0 6px var(--gold);
}

.tlb-marker span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--black);
}

.tlb-content { padding-top: 0.5rem; }

.tlb-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.tlb-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.tlb-note {
  background: rgba(200,146,42,0.1);
  border-left: 3px solid var(--gold);
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
  color: #555;
  font-style: italic;
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ======= PREP TIPS ======= */
.prep-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.prep-tip {
  background: var(--dark-mid);
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.pt-icon { font-size: 2rem; margin-bottom: 0.75rem; }

.prep-tip h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.prep-tip p { font-size: 0.88rem; color: var(--light-grey); line-height: 1.6; }

/* ======= COVERAGE PAGE ======= */
.coverage-layout { align-items: start; }

.coverage-region { margin-bottom: 2rem; }

.coverage-region h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.town-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.town-list span {
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,0.1);
  color: var(--dark);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}

.map-placeholder {
  background: var(--dark);
  border: 2px solid var(--steel);
  border-radius: var(--radius-lg);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-inner {
  text-align: center;
  padding: 2rem;
}

.map-pin { font-size: 3rem; margin-bottom: 1rem; }

.map-inner strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.map-inner p { color: var(--grey); font-size: 0.9rem; margin-bottom: 1.25rem; }

.map-radius {
  display: inline-block;
  background: rgba(200,146,42,0.15);
  border: 1px solid rgba(200,146,42,0.4);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
}

.text-link { color: var(--gold); text-decoration: underline; }

/* ======= FAQ ======= */
.faq-container { max-width: 780px; margin: 0 auto; }

.faq-group { margin-bottom: 3.5rem; }

.faq-group-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--gold); }

.faq-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-q.open .faq-arrow { transform: rotate(180deg); }
.faq-q.open { color: var(--gold); }

.faq-a {
  display: none;
  padding: 0 0 1.5rem;
}

.faq-a.open { display: block; }
.faq-a p { color: #555; line-height: 1.7; }

/* ======= QUOTE PAGE ======= */
.quote-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
}

.quote-sidebar h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.expect-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.expect-num {
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  color: var(--black);
  flex-shrink: 0;
}

.expect-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.expect-item p { font-size: 0.88rem; color: #666; line-height: 1.5; margin: 0; }

.sidebar-contact {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--near-black);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

.sidebar-contact h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.sidebar-contact p { font-size: 0.85rem; color: var(--grey); margin-bottom: 0.75rem; }

.contact-link {
  display: block;
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}

.contact-link:hover { color: var(--white); }

/* Quote form */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.quote-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
}

.req { color: var(--gold); }

.quote-form input,
.quote-form select,
.quote-form textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--off-white);
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  padding: 0.7rem 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,146,42,0.15);
}

.quote-form textarea { resize: vertical; min-height: 100px; }

.form-note {
  font-size: 0.88rem;
  text-align: center;
  min-height: 1.2em;
  color: #555;
}

/* ======= FOOTER ======= */
.footer {
  background: var(--black);
  border-top: 2px solid var(--gold);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(200,146,42,0.35));
}

.footer-brand span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
  justify-content: center;
}

.footer-links a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 0.35rem 0.5rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-info p {
  font-size: 0.85rem;
  color: var(--grey);
  text-align: right;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid var(--dark-mid);
  padding-top: 1.25rem;
  text-align: center;
}

.footer-bottom p { font-size: 0.8rem; color: var(--steel); }

/* ======= RESPONSIVE ======= */
@media (max-width: 900px) {
  .nav { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 3rem;
    padding-bottom: 3rem;
    gap: 3rem;
  }

  .hero-card-stack { order: -1; min-height: 300px; }
  .fc-top { right: 0; }
  .fc-bottom { left: 0; }

  .svc-preview-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .coverage-layout { grid-template-columns: 1fr; }

  .service-detail-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .sdc-num { font-size: 2rem; }

  .quote-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-info p { text-align: left; }
}

@media (max-width: 600px) {
  .hero-copy h1 { font-size: 2.75rem; }
  .strip-inner { gap: 0.75rem; font-size: 0.75rem; }
  .timeline-big::before { left: 22px; }
  .tlb-marker { width: 46px; height: 46px; }
  .quote-form { padding: 1.5rem; }
  .topbar { padding: 0 1rem; }
}
