:root {
  --black: #0a0a0a;
  --dark: #111418;
  --panel: #161b22;
  --steel: #1e252e;
  --gold: #c9963a;
  --gold-light: #e8b460;
  --white: #f0ede8;
  --gray: #8a9ab0;
  --light-gray: #c5cdd8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,150,58,0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-icon { width: 38px; height: 38px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-text .brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 1.35rem;
  letter-spacing: 0.08em; color: var(--white); text-transform: uppercase;
}
.nav-logo-text .sub {
  font-size: 0.6rem; letter-spacing: 0.2em;
  color: var(--gold); text-transform: uppercase; font-weight: 600;
}

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--light-gray); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--black) !important;
  padding: 8px 20px; font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 14px 32px; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s; text-decoration: none;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 13px 28px; border: 1px solid rgba(240,237,232,0.35);
  cursor: pointer; transition: border-color 0.2s, color 0.2s; text-decoration: none;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-dark {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--black); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 16px 36px; border: none; cursor: pointer;
  white-space: nowrap; transition: background 0.2s; text-decoration: none; flex-shrink: 0;
}
.btn-dark:hover { background: var(--dark); }

/* ── SECTION BASE ── */
section { padding: 100px 8%; }

.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 700; margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::before {
  content: ''; display: block; width: 30px; height: 2px;
  background: var(--gold); flex-shrink: 0;
}

h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800; text-transform: uppercase;
  line-height: 0.95; letter-spacing: -0.01em;
}

/* ── HERO ── */
#hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(10,10,10,0.25) 0%, rgba(10,10,10,0.7) 55%, rgba(10,10,10,0.92) 100%),
    url('Landing_Page_Background.jpg') center/cover no-repeat;
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,150,58,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,150,58,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 120px 8% 0; max-width: 700px;
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 700; margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 40px; height: 2px; background: var(--gold);
}
h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 800; line-height: 1.1;
  text-transform: uppercase; letter-spacing: 0.01em; margin-bottom: 28px;
}
h1 em { font-style: normal; color: var(--gold); display: inline; }
.hero-desc {
  font-size: 1.1rem; color: var(--light-gray);
  font-weight: 300; line-height: 1.7; max-width: 520px; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-stats {
  position: absolute; bottom: 10%; right: 8%;
  display: flex; gap: 40px; z-index: 2;
}
.stat { text-align: right; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem; font-weight: 800; color: var(--gold); line-height: 1;
}
.stat-label {
  font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gray); font-weight: 600;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--panel);
  border-top: 1px solid rgba(201,150,58,0.3);
  border-bottom: 1px solid rgba(201,150,58,0.15);
  padding: 18px 8%;
  display: flex; align-items: center; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 28px;
  font-size: 0.78rem; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 600; color: var(--light-gray);
  border-right: 1px solid rgba(255,255,255,0.08);
}
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: none; }
.trust-icon { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* ── SERVICES GRID ── */
.services-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start; margin-bottom: 64px;
}
.services-intro p {
  color: var(--light-gray); line-height: 1.8;
  font-weight: 300; font-size: 1.05rem; margin-top: 24px;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--steel);
}
.service-card {
  background: var(--panel); padding: 48px 36px;
  cursor: pointer; transition: background 0.25s;
  position: relative; overflow: hidden; text-decoration: none; color: inherit; display: block;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.service-card:hover { background: var(--steel); }
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.3em; color: var(--gold);
  font-weight: 700; margin-bottom: 20px;
}
.service-icon-wrap {
  width: 52px; height: 52px;
  border: 1px solid rgba(201,150,58,0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; color: var(--gold);
}
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.45rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 14px;
}
.service-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* ── WHY US ── */
.why-us { background: var(--panel); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-top: 60px;
}
.why-image { position: relative; height: 480px; }
.why-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(10%); }
.why-image-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 120px; height: 120px; background: var(--gold); z-index: -1;
}
.why-points { display: flex; flex-direction: column; gap: 32px; }
.why-point {
  display: flex; gap: 20px; align-items: flex-start;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.why-point:last-child { border-bottom: none; padding-bottom: 0; }
.why-point-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem; font-weight: 800; color: var(--gold); line-height: 1; min-width: 48px;
}
.why-point h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px;
}
.why-point p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* ── ROOF TYPES ── */
.roofing-types {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 56px;
}
.roof-type-card {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 36px 28px; position: relative; overflow: hidden;
}
.roof-type-card::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: var(--gold);
}
.roof-type-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 12px; padding-left: 16px;
}
.roof-type-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; padding-left: 16px; }

/* ── PROCESS ── */
.process-section { background: var(--dark); }
.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 2px; background: var(--steel); margin-top: 56px;
}
.process-step { background: var(--panel); padding: 40px 28px; position: relative; }
.process-step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem; font-weight: 800;
  color: rgba(201,150,58,0.15); line-height: 1; margin-bottom: 16px;
}
.process-step h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px;
}
.process-step p { font-size: 0.85rem; color: var(--gray); line-height: 1.65; }
.process-connector {
  position: absolute; top: 40px; right: -1px;
  width: 24px; height: 24px; background: var(--gold);
  clip-path: polygon(0 50%, 100% 0, 100% 100%); z-index: 2;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--gold); padding: 64px 8%;
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px;
}
.cta-band h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; text-transform: uppercase;
  color: var(--black); line-height: 1;
}
.cta-band p { color: rgba(10,10,10,0.65); margin-top: 8px; font-size: 0.95rem; }

/* ── CONTACT ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; margin-top: 60px;
}
.contact-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem; font-weight: 700;
  text-transform: uppercase; margin-bottom: 32px;
}
.contact-detail {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 28px; padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px; background: var(--steel);
  border: 1px solid rgba(201,150,58,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold);
}
.contact-detail-label {
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 700; margin-bottom: 6px;
}
.contact-detail-value { font-size: 1rem; color: var(--white); line-height: 1.5; }
.contact-detail-value a { color: var(--white); text-decoration: none; transition: color 0.2s; }
.contact-detail-value a:hover { color: var(--gold); }

.contact-form {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 48px 44px;
}
.contact-form h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gray);
  font-weight: 600; margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--steel);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white); font-family: 'Barlow', sans-serif;
  font-size: 0.95rem; padding: 12px 16px;
  outline: none; transition: border-color 0.2s; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--steel); }

/* ── PAGE HEADERS ── */
.page-header { padding-top: 140px; padding-bottom: 72px; }
.page-header p {
  color: var(--light-gray); max-width: 580px;
  margin-top: 20px; font-weight: 300; line-height: 1.75;
}

/* ── SERVICES DETAIL ── */
.services-detail-hero {
  padding-top: 140px; padding-bottom: 80px;
  background:
    linear-gradient(to right, rgba(10,10,10,0.95) 50%, rgba(10,10,10,0.7) 100%),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') center/cover;
}
.service-detail-list { margin-top: 64px; }
.service-detail-item {
  display: grid; grid-template-columns: 340px 1fr;
  gap: 0; margin-bottom: 3px;
  background: var(--steel); overflow: hidden;
}
.service-detail-item:nth-child(even) { background: var(--panel); }
.service-detail-img { height: 280px; overflow: hidden; }
.service-detail-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s; filter: grayscale(30%);
}
.service-detail-item:hover .service-detail-img img { transform: scale(1.04); }
.service-detail-content {
  padding: 40px 48px; display: flex;
  flex-direction: column; justify-content: center;
}
.service-detail-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 16px;
}
.service-detail-content p {
  color: var(--gray); line-height: 1.75;
  font-size: 0.95rem; margin-bottom: 20px;
}
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  background: rgba(201,150,58,0.1);
  border: 1px solid rgba(201,150,58,0.3);
  color: var(--gold); font-size: 0.72rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 700; padding: 5px 12px;
}

/* ── ABOUT ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-top: 60px;
}
.about-image { height: 500px; position: relative; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--gold); color: var(--black);
  padding: 16px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.06em; font-size: 0.85rem; line-height: 1.3;
}
.about-text h2 { margin-bottom: 24px; }
.about-text p {
  color: var(--light-gray); line-height: 1.8;
  font-weight: 300; font-size: 1rem; margin-bottom: 20px;
}
.cert-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 40px;
}
.cert-item {
  background: var(--steel);
  border: 1px solid rgba(201,150,58,0.2);
  padding: 20px 16px; text-align: center;
}
.cert-item .cert-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold);
}
.cert-item .cert-desc { font-size: 0.78rem; color: var(--gray); margin-top: 4px; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,150,58,0.2);
  padding: 64px 8% 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr;
  gap: 60px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px;
}
.footer-brand .brand-tag {
  font-size: 0.65rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 700; margin-bottom: 20px;
}
.footer-brand p { font-size: 0.88rem; color: var(--gray); line-height: 1.75; margin-bottom: 20px; }
.footer-parent-note {
  display: flex; gap: 10px; align-items: flex-start;
  background: rgba(201,150,58,0.07);
  border: 1px solid rgba(201,150,58,0.2);
  padding: 14px 16px; font-size: 0.78rem;
  color: var(--light-gray); line-height: 1.55;
}
.footer-parent-note strong { color: var(--gold); }
.footer-col h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 700; margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.88rem; color: var(--gray);
  text-decoration: none; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  padding: 24px 0; display: flex;
  justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom-left { font-size: 0.78rem; color: var(--gray); line-height: 1.6; }
.footer-bottom-left a { color: var(--gold); text-decoration: none; }
.license-badge { display: flex; gap: 12px; align-items: center; }
.license-chip {
  background: rgba(201,150,58,0.1);
  border: 1px solid rgba(201,150,58,0.3);
  color: var(--gold); font-size: 0.68rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700; padding: 5px 10px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeUp 0.7s ease both; }
.hero-eyebrow { animation-delay: 0.1s; }
h1 { animation-delay: 0.25s; }
.hero-desc { animation-delay: 0.4s; }
.hero-actions { animation-delay: 0.55s; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .roofing-types { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .services-intro { grid-template-columns: 1fr; gap: 30px; }
  .about-grid { grid-template-columns: 1fr; }
  .service-detail-item { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .cta-band { flex-direction: column; gap: 24px; }
  .nav-links { display: none; }
  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
}
