/* ═══════════════════════════════════════════════════════════
   FORTRESS ROOF CO. — HOME PAGE STYLES
   ═══════════════════════════════════════════════════════════ */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-h);
  overflow: hidden;
  position: relative;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--sp-20) var(--sp-12) var(--sp-20);
  padding-left: max(var(--sp-12), calc((100vw - var(--max-w)) / 2 + var(--sp-6)));
  background: var(--bg-mid);
  border-right: 1px solid var(--bdr-gold);
  position: relative; z-index: 1;
}
.hero-right {
  position: relative; overflow: hidden;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(0.38) saturate(0.7);
  transition: transform 14s ease;
  animation: hero-slow-zoom 20s ease-in-out infinite alternate;
}
@keyframes hero-slow-zoom { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero-right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--bg-mid) 0%, rgba(10,16,32,0.4) 40%, transparent 100%);
}

/* Hero badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  padding: var(--sp-2) var(--sp-5) var(--sp-2) var(--sp-3);
  background: rgba(212,168,50,0.1);
  border: 1px solid var(--bdr-gold);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-6);
  width: fit-content;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 8px var(--gold-400);
  animation: pulse-dot 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 6px var(--gold-400); transform: scale(1); }
  50%      { box-shadow: 0 0 18px var(--gold-300), 0 0 36px rgba(212,168,50,.3); transform: scale(1.2); }
}
.hero-badge-text {
  font-family: var(--font-condensed); font-size: .5625rem;
  font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-300);
}

.hero-headline {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1.0; letter-spacing: .06em;
  color: var(--text-primary);
  margin-bottom: var(--sp-6);
}
.hero-sub {
  font-size: 1.1rem; font-weight: 300; color: var(--text-secondary);
  line-height: 1.75; max-width: 480px; margin-bottom: var(--sp-10);
}
.hero-ctas { display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; margin-bottom: var(--sp-12); }
.hero-trust {
  display: flex; align-items: center; gap: var(--sp-6);
  padding-top: var(--sp-8); border-top: 1px solid var(--bdr-faint);
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: var(--sp-2);
  font-family: var(--font-condensed); font-size: .5625rem;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-muted);
}
.trust-icon { font-size: 1rem; }

/* Floating stat panel */
.hero-stat-panel {
  position: absolute; bottom: var(--sp-8); right: var(--sp-8);
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--bdr-gold);
  border-radius: var(--r-2xl);
  padding: var(--sp-5) var(--sp-6);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-4); z-index: 5;
  animation: float-panel 7s ease-in-out infinite;
}
@keyframes float-panel { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.hero-stat-num {
  font-family: var(--font-display); font-size: 1.75rem; font-weight: 900;
  background: var(--gold-text); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; line-height: 1;
}
.hero-stat-label {
  font-family: var(--font-condensed); font-size: .5rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); margin-top: 3px;
}

/* ── SERVICES STRIP ── */
.services-strip {
  background: var(--bg-deep);
  border-top: 1px solid var(--bdr-gold);
  border-bottom: 1px solid var(--bdr-gold);
  padding-block: var(--sp-5);
  overflow: hidden;
}
.services-strip-inner {
  display: flex; gap: var(--sp-12); align-items: center;
  animation: strip-scroll 30s linear infinite;
  width: max-content;
}
.strip-item {
  display: flex; align-items: center; gap: var(--sp-3);
  font-family: var(--font-condensed); font-size: .625rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted);
  white-space: nowrap;
}
.strip-gem {
  width: 6px; height: 6px; background: var(--gold-shimmer);
  background-size: 200%; transform: rotate(45deg);
  box-shadow: var(--gold-glow-sm); flex-shrink: 0;
}
@keyframes strip-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION EYEBROW ── */
.section-eyebrow { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.eyebrow-line { width: 36px; height: 1.5px; background: linear-gradient(90deg, var(--gold-500), transparent); flex-shrink: 0; }
.eyebrow-gem { width: 6px; height: 6px; background: var(--gold-500); transform: rotate(45deg); flex-shrink: 0; box-shadow: var(--gold-glow-sm); }
.eyebrow-text { font-family: var(--font-condensed); font-size: .5625rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-500); }

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--bdr-gold);
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  position: relative; overflow: hidden;
  transition: all var(--dur-slow) var(--ease-out);
  text-decoration: none; display: flex; flex-direction: column;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212,168,50,.05) 0%, transparent 60%);
  border-radius: inherit; pointer-events: none;
  opacity: 0; transition: opacity var(--dur-slow);
}
.service-card:hover { transform: translateY(-6px); border-color: var(--bdr-bright); box-shadow: var(--el-5); }
.service-card:hover::before { opacity: 1; }
.service-card-icon {
  width: 52px; height: 52px; border-radius: var(--r-xl);
  background: rgba(212,168,50,.1); border: 1px solid var(--bdr-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: var(--sp-5);
  transition: all var(--dur-base);
}
.service-card:hover .service-card-icon { background: rgba(212,168,50,.18); box-shadow: var(--gold-glow-sm); }
.service-card-name {
  font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: var(--sp-3);
  transition: color var(--dur-base);
}
.service-card:hover .service-card-name { color: var(--gold-300); }
.service-card-desc { font-size: .875rem; color: var(--text-secondary); line-height: 1.65; font-weight: 300; flex: 1; }
.service-card-arrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  margin-top: var(--sp-5); font-family: var(--font-condensed);
  font-size: .5625rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-500); transition: gap var(--dur-base), color var(--dur-base);
}
.service-card:hover .service-card-arrow { gap: var(--sp-4); color: var(--gold-300); }

/* ── STATS BAND ── */
.stats-band {
  background: var(--bg-void);
  border-top: 1px solid var(--bdr-gold);
  border-bottom: 1px solid var(--bdr-gold);
  padding-block: var(--sp-12);
  position: relative; overflow: hidden;
}
.stats-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(212,168,50,.04) 0%, transparent 70%);
  pointer-events: none;
}
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-8); text-align: center; }
.stat-num {
  font-family: var(--font-display); font-size: clamp(2rem,4vw,3.5rem); font-weight: 900;
  background: var(--gold-text); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; line-height: 1;
}
.stat-label {
  font-family: var(--font-condensed); font-size: .5625rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); margin-top: var(--sp-2);
}
.stat-sub { font-size: .75rem; color: var(--text-faint); font-weight: 300; margin-top: var(--sp-1); }

/* ── WHY Fortress ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); align-items: center; }
.why-image-wrap {
  border-radius: var(--r-3xl); overflow: hidden;
  border: 1px solid var(--bdr-gold); box-shadow: var(--el-5);
  position: relative;
}
.why-image-wrap img { width: 100%; height: 520px; object-fit: cover; filter: brightness(.75) saturate(.75); }
.why-image-badge {
  position: absolute; bottom: var(--sp-6); left: var(--sp-6);
  background: var(--bg-glass); backdrop-filter: blur(16px);
  border: 1px solid var(--bdr-gold); border-radius: var(--r-xl);
  padding: var(--sp-4) var(--sp-5);
  animation: float-panel 6s ease-in-out infinite 1s;
}
.why-image-badge-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; color: var(--gold-300); line-height: 1; }
.why-image-badge-label { font-family: var(--font-condensed); font-size: .5rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); margin-top: 3px; }
.why-features { display: flex; flex-direction: column; gap: var(--sp-5); }
.why-feature {
  display: flex; align-items: flex-start; gap: var(--sp-4);
  padding: var(--sp-5); background: var(--bg-card);
  border: 1px solid var(--bdr-faint); border-radius: var(--r-xl);
  transition: all var(--dur-base) var(--ease-deco);
}
.why-feature:hover { border-color: var(--bdr-gold); background: var(--bg-lift); }
.why-feature-icon {
  width: 44px; height: 44px; border-radius: var(--r-lg);
  background: rgba(212,168,50,.1); border: 1px solid var(--bdr-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.why-feature-title { font-family: var(--font-heading); font-size: .9375rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.why-feature-desc { font-size: .8125rem; color: var(--text-secondary); line-height: 1.6; font-weight: 300; }

/* ── PROCESS ── */
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; align-items: start; position: relative; }
.process-grid::before {
  content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), var(--gold-500), transparent);
  opacity: .4; pointer-events: none;
}
.process-step { text-align: center; padding: var(--sp-5) var(--sp-3); position: relative; }
.process-num {
  width: 64px; height: 64px; margin: 0 auto var(--sp-4);
  border-radius: 50%; background: var(--bg-card);
  border: 2px solid var(--bdr-gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 900;
  background: var(--gold-text); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  box-shadow: var(--gold-glow-sm);
  position: relative; z-index: 1;
}
.process-num-wrap {
  width: 64px; height: 64px; margin: 0 auto var(--sp-4);
  border-radius: 50%; background: var(--bg-surface);
  border: 2px solid var(--bdr-gold);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--gold-glow-sm); position: relative; z-index: 1;
}
.process-step-title { font-family: var(--font-heading); font-size: .875rem; font-weight: 700; color: var(--text-primary); margin-bottom: var(--sp-2); }
.process-step-desc { font-size: .75rem; color: var(--text-secondary); line-height: 1.6; font-weight: 300; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--bdr-gold);
  border-radius: var(--r-2xl); padding: var(--sp-8);
  position: relative; overflow: hidden;
  transition: all var(--dur-slow) var(--ease-out);
}
.testimonial-card:hover { border-color: var(--bdr-bright); box-shadow: var(--el-5); transform: translateY(-3px); }
.testimonial-quote {
  font-family: 'Georgia', serif; font-size: 4rem; line-height: .6;
  color: var(--gold-600); margin-bottom: var(--sp-4); user-select: none;
}
.testimonial-stars { color: var(--gold-400); font-size: .875rem; letter-spacing: 2px; margin-bottom: var(--sp-4); }
.testimonial-text { font-size: .9375rem; color: var(--text-secondary); line-height: 1.75; font-style: italic; font-weight: 300; margin-bottom: var(--sp-6); }
.testimonial-author { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--sp-4); padding-top: var(--sp-5); border-top: 1px solid var(--bdr-faint); flex-wrap: wrap; }
.testimonial-name { font-family: var(--font-heading); font-size: .9375rem; font-weight: 700; color: var(--text-primary); }
.testimonial-role { font-family: var(--font-condensed); font-size: .5rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); margin-top: 3px; }
.testimonial-project { font-family: var(--font-condensed); font-size: .5rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-600); text-align: right; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--bg-surface);
  border: 1px solid var(--bdr-gold);
  border-radius: var(--r-3xl);
  padding: var(--sp-16) var(--sp-20);
  display: grid; grid-template-columns: 1fr auto;
  gap: var(--sp-12); align-items: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(212,168,50,.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner-headline { font-family: var(--font-display); font-size: clamp(1.5rem,3vw,2.5rem); font-weight: 900; letter-spacing: .06em; color: var(--text-primary); margin-bottom: var(--sp-4); }
.cta-banner-sub { font-size: 1rem; color: var(--text-secondary); font-weight: 300; line-height: 1.7; max-width: 520px; }
.cta-banner-actions { display: flex; flex-direction: column; gap: var(--sp-3); flex-shrink: 0; }

/* ── MATERIALS PREVIEW ── */
.materials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }
.material-card {
  background: var(--bg-card); border: 1px solid var(--bdr-faint);
  border-radius: var(--r-2xl); padding: var(--sp-6);
  transition: all var(--dur-base) var(--ease-deco);
  cursor: pointer;
}
.material-card:hover { border-color: var(--bdr-gold); transform: translateY(-4px); box-shadow: var(--el-4); }
.material-icon { font-size: 1.75rem; margin-bottom: var(--sp-3); }
.material-name { font-family: var(--font-heading); font-size: .9375rem; font-weight: 700; color: var(--text-primary); margin-bottom: var(--sp-2); }
.material-life { font-family: var(--font-condensed); font-size: .5rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-500); margin-bottom: var(--sp-3); }
.material-desc { font-size: .8125rem; color: var(--text-secondary); line-height: 1.6; font-weight: 300; }
.material-cost { display: flex; gap: 3px; margin-top: var(--sp-3); }
.cost-dot { width: 8px; height: 8px; border-radius: 50%; }
.cost-dot.filled { background: var(--gold-500); }
.cost-dot.empty  { background: var(--bdr-faint); }

/* ── RESPONSIVE ── */
@media(max-width:1200px) { .cta-banner { grid-template-columns:1fr; padding:var(--sp-10); } .cta-banner-actions { flex-direction:row; } }
@media(max-width:1024px) { .hero { grid-template-columns:1fr; min-height:auto; } .hero-right { height:400px; } .hero-left { padding:var(--sp-16) var(--sp-6); } .services-grid { grid-template-columns:repeat(2,1fr); } .why-grid { grid-template-columns:1fr; } .process-grid { grid-template-columns:repeat(3,1fr); gap:var(--sp-5); } .process-grid::before { display:none; } .testimonials-grid { grid-template-columns:1fr; } .materials-grid { grid-template-columns:repeat(2,1fr); } .stats-inner { grid-template-columns:repeat(2,1fr); gap:var(--sp-6); } }
@media(max-width:768px) { .services-grid { grid-template-columns:1fr; } .hero-stat-panel { display:none; } .hero-headline { font-size:clamp(2rem,6vw,2.8rem); } }
@media(max-width:480px) { .materials-grid { grid-template-columns:1fr; } .process-grid { grid-template-columns:1fr 1fr; } .hero-trust { flex-direction:column; align-items:flex-start; gap:var(--sp-3); } }
