/* ═══════════════════════════════════════════════════════════
   FL Pro Contractors — Master Design System v1.0
   Navy · Gold · White  |  Professional Trade Aesthetic
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@400;500;600;700&display=swap');

/* ── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  /* Core Palette */
  --navy:         #0D1B2E;
  --navy-mid:     #162640;
  --navy-light:   #1E3356;
  --navy-08:      rgba(13,27,46,0.08);
  --navy-15:      rgba(13,27,46,0.15);
  --navy-25:      rgba(13,27,46,0.25);
  --gold:         #C4922A;
  --gold-light:   #DFB560;
  --gold-dark:    #9E711A;
  --gold-bg:      rgba(196,146,42,0.08);
  --white:        #FFFFFF;
  --off-white:    #F8F9FB;
  --gray-light:   #F0F3F7;
  --gray-mid:     #D4DAE3;
  --gray:         #8A94A2;
  --text-dark:    #0D1B2E;
  --text-mid:     #334155;
  --text-soft:    #64748B;

  /* Typography */
  --font-disp:  'Cormorant Garamond', Georgia, serif;
  --font-body:  'Barlow', system-ui, sans-serif;
  --font-cond:  'Barlow Condensed', system-ui, sans-serif;

  /* Layout */
  --nav-h:      88px;
  --container:  1200px;
  --radius:     4px;
  --radius-lg:  8px;

  /* Motion */
  --t:          all 0.3s cubic-bezier(.4,0,.2,1);
  --ease:       cubic-bezier(.4,0,.2,1);

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(13,27,46,0.08);
  --shadow-md:  0 8px 32px rgba(13,27,46,0.12);
  --shadow-lg:  0 20px 64px rgba(13,27,46,0.16);
  --shadow-xl:  0 32px 96px rgba(13,27,46,0.20);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--white); color: var(--text-mid); line-height: 1.7; overflow-x: hidden; }
a { color: inherit; text-decoration: none; transition: var(--t); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
input, select, textarea, button { font-family: var(--font-body); font-size: 1rem; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-disp); font-weight: 300; color: var(--text-dark); line-height: 1.15; }
.display-xl  { font-size: clamp(52px, 7vw, 96px);  font-family: var(--font-disp); font-weight: 300; line-height: 1.0; }
.display-lg  { font-size: clamp(40px, 5.5vw, 72px); font-family: var(--font-disp); font-weight: 300; line-height: 1.06; }
.display-md  { font-size: clamp(32px, 3.5vw, 52px); font-family: var(--font-disp); font-weight: 300; line-height: 1.1; }
.display-sm  { font-size: clamp(26px, 2.5vw, 38px); font-family: var(--font-disp); font-weight: 300; line-height: 1.2; }

.label {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.eyebrow {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 16px;
}
.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
}
p { margin: 0 0 1rem; line-height: 1.8; }
strong { font-weight: 600; }
em { font-style: italic; }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container   { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 40px; }
.container--sm { max-width: 820px; }
.section     { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--lg { padding: 128px 0; }
.bg-navy     { background: var(--navy); color: var(--white); }
.bg-navy-mid { background: var(--navy-mid); color: var(--white); }
.bg-gray     { background: var(--gray-light); }
.bg-white    { background: var(--white); }
.bg-off-white { background: var(--off-white); }

.grid-2   { display: grid; grid-template-columns: 1fr 1fr;         gap: 32px; }
.grid-3   { display: grid; grid-template-columns: repeat(3,1fr);   gap: 28px; }
.grid-4   { display: grid; grid-template-columns: repeat(4,1fr);   gap: 24px; }

.max-560  { max-width: 560px; }
.max-680  { max-width: 680px; }
.center   { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

.section-hdr { margin-bottom: 56px; }
.section-hdr.center { text-align: center; }
.section-hdr.center .lead { margin: 0 auto; }

/* ── GOLD RULE ──────────────────────────────────────────────── */
.gold-rule { width: 40px; height: 2px; background: var(--gold); margin-bottom: 24px; }
.gold-rule.center { margin-left: auto; margin-right: auto; }

/* ── SKIP LINK ──────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--gold); color: var(--navy);
  padding: 8px 16px; border-radius: var(--radius);
  font-weight: 600; z-index: 10000;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: transform 0.35s var(--ease), background 0.3s, box-shadow 0.3s;
}
.nav-inner {
  display: flex; align-items: center; gap: 24px;
  height: var(--nav-h);
  padding: 0 40px;
  position: relative; z-index: 2;
}
.nav--hero .nav-inner { background: transparent; }
.nav--scrolled .nav-inner {
  background: var(--navy);
  box-shadow: var(--shadow-md);
}
.nav--hidden { transform: translateY(-100%); }

/* Wordmark */
.nav-wordmark { display: flex; flex-direction: column; line-height: 1.1; }
.nav-wordmark-main {
  font-family: var(--font-disp);
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.02em;
}
.nav-wordmark-main em { color: var(--gold); font-style: normal; font-weight: 400; }
.nav-wordmark-dba {
  font-family: var(--font-cond);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
.nav-wordmark-parent {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links > a,
.nav-dropdown > a {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.82);
  border-radius: var(--radius);
  transition: var(--t);
  display: flex; align-items: center; gap: 4px;
}
.nav-links > a:hover,
.nav-links > a.active,
.nav-dropdown > a:hover { color: #fff; background: rgba(255,255,255,0.08); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-panel {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 220px;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 8px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: var(--shadow-lg);
}
.nav-dropdown:hover .nav-dropdown-panel {
  opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-panel a {
  display: block; padding: 10px 16px;
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.78);
  border-radius: var(--radius);
  transition: var(--t);
}
.nav-dropdown-panel a:hover { background: rgba(255,255,255,0.06); color: #fff; }

/* CTA group */
.nav-cta-group { display: flex; align-items: center; gap: 12px; margin-left: 16px; }
.nav-phone {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.nav-phone:hover { color: var(--gold-light); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block; height: 2px; background: #fff;
  border-radius: 2px; transition: var(--t); transform-origin: center;
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed; top: 0; right: 0;
  width: min(360px, 90vw); height: 100%;
  background: var(--navy);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  z-index: 1100;
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
  z-index: 1099;
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }
.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.drawer-close {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: none; cursor: pointer;
  color: #fff; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.drawer-nav { padding: 16px; flex: 1; }
.drawer-nav a {
  display: block; padding: 14px 16px;
  font-size: 15px; font-weight: 400;
  color: rgba(255,255,255,0.82);
  border-radius: var(--radius);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--t);
}
.drawer-nav a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.drawer-contact {
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 12px;
}
.drawer-phone, .drawer-wa {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.85);
  padding: 10px 0;
}
.drawer-wa { color: #25D366; }

/* ── TRUST BAR ───────────────────────────────────────────────── */
.trust-bar {
  background: var(--gold);
  color: var(--navy);
  overflow: hidden;
  position: sticky; top: var(--nav-h); z-index: 900;
  height: 36px;
}
.trust-bar-track {
  display: flex; align-items: center;
  white-space: nowrap;
  animation: trustScroll 32s linear infinite;
  height: 100%;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0 28px;
  font-family: var(--font-cond);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy);
  flex-shrink: 0;
}
.trust-item svg { flex-shrink: 0; }
@keyframes trustScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.trust-bar:hover .trust-bar-track { animation-play-state: paused; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 32px;
  font-family: var(--font-cond);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer; transition: var(--t);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold); color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff; }

.btn-outline {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-navy {
  background: var(--navy); color: #fff;
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-light); }

.btn-sm { padding: 10px 22px; font-size: 12px; }
.btn-lg { padding: 18px 44px; font-size: 14px; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh; min-height: 620px;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s var(--ease);
}
.hero__slide--active { opacity: 1; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,27,46,0.82) 0%,
    rgba(13,27,46,0.55) 55%,
    rgba(13,27,46,0.35) 100%
  );
}
.hero__content {
  position: relative; z-index: 2;
  padding-top: 40px;
  max-width: 780px;
}
.hero__title {
  font-family: var(--font-disp);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 300;
  color: #fff;
  line-height: 1.02;
  margin-bottom: 24px;
}
.hero__title span { color: var(--gold-light); }
.hero__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 300;
}
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Progress bar */
.hero__progress {
  position: absolute; bottom: 0; left: 0;
  height: 3px; width: 0;
  background: var(--gold);
  z-index: 5;
}
/* Dots */
.hero__dots {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 5;
}
.hero__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none; cursor: pointer;
  transition: var(--t); padding: 0;
}
.hero__dot.active { background: var(--gold); width: 20px; border-radius: 3px; }

/* Scroll indicator */
.hero__scroll {
  position: absolute; bottom: 36px; right: 48px; z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll span {
  display: block; width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ── STATS STRIP ─────────────────────────────────────────────── */
.stats-strip {
  background: var(--navy-mid);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 24px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-item strong {
  display: block;
  font-family: var(--font-disp);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item span {
  font-family: var(--font-cond);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ── CARDS ───────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--t);
  border: 1px solid var(--gray-mid);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.card__img { aspect-ratio: 4/3; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card__img img { transform: scale(1.05); }

.card__body { padding: 28px; }
.card__label {
  font-family: var(--font-cond);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.card__title { font-size: 22px; margin-bottom: 10px; }
.card__text { font-size: 14px; color: var(--text-soft); line-height: 1.7; }
.card__link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px;
  font-family: var(--font-cond);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
}
.card__link svg { transition: transform 0.2s; }
.card__link:hover svg { transform: translateX(4px); }

/* ── SERVICE CARD (icon-led) ─────────────────────────────────── */
.svc-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.3s var(--ease);
}
.svc-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); transform: translateY(-2px); }
.svc-card:hover::before { height: 100%; }

.svc-card__icon {
  width: 52px; height: 52px;
  background: var(--gold-bg);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}
.svc-card__title { font-size: 20px; margin-bottom: 10px; }
.svc-card__text { font-size: 14px; color: var(--text-soft); line-height: 1.7; }
.svc-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px;
  font-family: var(--font-cond);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
}

/* ── PROCESS STEPS ───────────────────────────────────────────── */
.process-steps { counter-reset: steps; }
.process-step {
  display: grid; grid-template-columns: 64px 1fr;
  gap: 24px; padding: 32px 0;
  border-bottom: 1px solid var(--gray-mid);
  counter-increment: steps;
}
.process-step:last-child { border-bottom: none; }
.process-step__num {
  width: 48px; height: 48px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-cond);
  font-size: 16px; font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.process-step__num::before { content: counter(steps, decimal-leading-zero); }
.process-step__title { font-size: 22px; margin-bottom: 8px; }
.process-step__text { font-size: 15px; color: var(--text-soft); }

/* ── LEAD FORM ───────────────────────────────────────────────── */
.lead-form-wrap {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.lead-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: var(--font-cond);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: #fff; font-size: 15px;
  transition: border-color 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}
.form-group select option { background: var(--navy); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-error { color: #ff6b6b; font-size: 14px; margin-top: 4px; }
.form-success { text-align: center; padding: 40px 20px; color: #fff; }
.form-success strong { display: block; font-size: 24px; margin-bottom: 8px; color: var(--gold-light); }

/* ── CTA BAND ─────────────────────────────────────────────────── */
.cta-band {
  background: var(--gold);
  padding: 64px 0;
}
.cta-band__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-band__text h2 { color: var(--navy); font-size: clamp(28px, 3.5vw, 44px); }
.cta-band__text p { color: rgba(13,27,46,0.72); font-size: 16px; margin: 8px 0 0; }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonial {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border-left: 4px solid var(--gold);
}
.testimonial__stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial__text { font-family: var(--font-disp); font-size: 18px; font-weight: 300; line-height: 1.6; color: var(--text-dark); margin-bottom: 20px; }
.testimonial__author { font-size: 13px; font-weight: 600; color: var(--text-soft); letter-spacing: 0.04em; }

/* ── WHY-US FEATURE ──────────────────────────────────────────── */
.feature-item { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--gray-mid); }
.feature-item:last-child { border-bottom: none; }
.feature-item__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--gold-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.feature-item__title { font-size: 18px; margin-bottom: 4px; }
.feature-item__text { font-size: 14px; color: var(--text-soft); line-height: 1.65; }

/* ── LOCATION GRID ───────────────────────────────────────────── */
.loc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.loc-item {
  padding: 14px 16px;
  background: var(--off-white);
  border-radius: var(--radius);
  font-size: 13px; font-weight: 500;
  color: var(--text-mid);
  border: 1px solid var(--gray-mid);
  transition: var(--t);
  text-align: center;
}
.loc-item:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ── BREADCRUMB ──────────────────────────────────────────────── */
.breadcrumb {
  padding: 16px 0;
  font-size: 13px; color: var(--text-soft);
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { opacity: 0.4; }

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 120px 0 72px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; right: -120px; top: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,146,42,0.08) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero .lead { color: rgba(255,255,255,0.72); }

/* ── GALLERY GRID ────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.gallery-item { aspect-ratio: 4/3; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }

/* ── TRADES HUB (parent site) ────────────────────────────────── */
.trade-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--t);
  text-decoration: none; color: inherit;
}
.trade-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); transform: translateY(-3px); }
.trade-card__img { aspect-ratio: 16/9; overflow: hidden; }
.trade-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.trade-card:hover .trade-card__img img { transform: scale(1.05); }
.trade-card__body { padding: 24px; flex: 1; }
.trade-card__dba {
  font-family: var(--font-cond);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.trade-card__name { font-size: 20px; margin-bottom: 8px; }
.trade-card__text { font-size: 13px; color: var(--text-soft); }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--navy-mid);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr 1fr;
  gap: 48px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-wordmark {
  font-family: var(--font-disp);
  font-size: 26px; font-weight: 300;
  color: #fff; margin-bottom: 14px;
  line-height: 1.2;
}
.footer-wordmark em { color: var(--gold-light); font-style: normal; }
.footer-wordmark-sub { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-tagline { font-size: 14px; font-style: italic; color: rgba(255,255,255,0.45); margin-bottom: 24px; font-family: var(--font-disp); }
.footer-contact-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; opacity: 0.5; }
.footer-contact-item a { color: rgba(255,255,255,0.75); }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-hours { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 8px; }

.footer-col h5 {
  font-family: var(--font-cond);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: var(--t);
}
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.footer-view-all {
  display: inline-block; margin-top: 12px;
  font-size: 12px; font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
}

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding: 20px 40px;
  max-width: var(--container);
  margin: 0 auto;
  font-size: 12px; color: rgba(255,255,255,0.3);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.3); }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* WhatsApp FAB */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 990;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--t);
}
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal][data-delay="100"] { transition-delay: 0.1s; }
[data-reveal][data-delay="200"] { transition-delay: 0.2s; }
[data-reveal][data-delay="300"] { transition-delay: 0.3s; }
[data-reveal][data-delay="400"] { transition-delay: 0.4s; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .loc-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  :root { --nav-h: 70px; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-links, .nav-cta-group { display: none; }
  .hamburger { display: flex; }
  .section { padding: 64px 0; }
  .section--lg { padding: 80px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 0 20px 48px; }
  .footer-bottom { padding: 16px 20px; flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .loc-grid { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .lead-form-wrap { padding: 28px 20px; }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .hero__scroll { display: none; }
  .page-hero { padding: 100px 0 56px; }
}
@media (max-width: 480px) {
  .hero__title { font-size: clamp(38px, 9vw, 56px); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .loc-grid { grid-template-columns: 1fr 1fr; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
}

/* ── PRINT ───────────────────────────────────────────────────── */
@media print {
  .nav, .trust-bar, .wa-fab, .hero__dots, .hero__scroll { display: none; }
  .hero { min-height: auto; padding: 40px 0; }
}
