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

:root {
  --navy:#0F1F3D; --red:#C8102E; --gold:#D4A017; --slate:#E8EDF4;
  --mid:#5A6A82; --white:#FFFFFF; --offwhite:#F7F9FC; --text:#1A2A40;
}

html { scroll-behavior: smooth; }
body { font-family:'Inter',sans-serif; color:var(--text); background:var(--white); overflow-x:hidden; }

/* NAV */
nav { position:fixed; top:0; left:0; right:0; z-index:100; background:rgba(15,31,61,0.97); backdrop-filter:blur(8px);
  display:flex; align-items:center; justify-content:space-between; padding:0 5%; height:68px; border-bottom:2px solid var(--red); }
.nav-logo { display:flex; align-items:center; gap:10px; text-decoration:none; }
.nav-logo-icon { width:36px; height:36px; background:var(--red); border-radius:6px; display:flex; align-items:center; justify-content:center; }
.nav-logo-icon svg { width:22px; height:22px; fill:white; }
.nav-logo-text { font-family:'Playfair Display',serif; font-size:1.35rem; font-weight:700; color:var(--white); letter-spacing:-0.02em; }
.nav-logo-text span { color:var(--gold); }
.nav-links { display:flex; gap:2rem; list-style:none; }
.nav-links a { color:rgba(255,255,255,0.85); text-decoration:none; font-size:0.88rem; font-weight:500; letter-spacing:0.03em; text-transform:uppercase; transition:color 0.2s; }
.nav-links a:hover { color:var(--gold); }
.nav-cta { background:var(--red); color:var(--white)!important; padding:9px 22px; border-radius:4px; font-weight:600!important; transition:background 0.2s!important; }
.nav-cta:hover { background:#a50d24!important; color:white!important; }

/* HERO */
.hero { min-height:100vh; background:var(--navy); display:flex; align-items:center; position:relative; overflow:hidden; padding-top:68px; }
.hero-bg { position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.hero-bg-circle { position:absolute; border-radius:50%; opacity:0.07; }
.hero-bg-circle.c1 { width:700px; height:700px; background:var(--red); top:-200px; right:-180px; animation:pulse 8s ease-in-out infinite; }
.hero-bg-circle.c2 { width:400px; height:400px; background:var(--gold); bottom:-100px; left:-100px; animation:pulse 10s ease-in-out infinite reverse; }
.hero-bg-lines { position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,0.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.03) 1px,transparent 1px); background-size:60px 60px; }
@keyframes pulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.08);} }
.hero-inner { max-width:1200px; margin:0 auto; padding:80px 5%; display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; position:relative; z-index:1; }
.hero-eyebrow { display:inline-flex; align-items:center; gap:8px; background:rgba(200,16,46,0.15); border:1px solid rgba(200,16,46,0.4); border-radius:20px; padding:5px 14px; font-size:0.75rem; font-weight:600; text-transform:uppercase; letter-spacing:0.1em; color:#ff8fa0; margin-bottom:1.5rem; }
.hero-eyebrow::before { content:''; width:6px; height:6px; background:var(--red); border-radius:50%; display:inline-block; animation:blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.hero-headline { font-family:'Playfair Display',serif; font-size:clamp(2.2rem,4.5vw,3.6rem); font-weight:900; line-height:1.1; color:var(--white); letter-spacing:-0.02em; margin-bottom:1.25rem; }
.hero-headline .accent { color:var(--gold); }
.hero-headline .underline-red { position:relative; display:inline-block; }
.hero-headline .underline-red::after { content:''; position:absolute; bottom:-4px; left:0; right:0; height:4px; background:var(--red); border-radius:2px; }
.hero-sub { font-size:1.05rem; line-height:1.7; color:rgba(255,255,255,0.75); margin-bottom:2rem; }
.hero-trust-row { display:flex; gap:1.5rem; flex-wrap:wrap; }
.trust-badge { display:flex; align-items:center; gap:6px; font-size:0.82rem; font-weight:600; color:rgba(255,255,255,0.7); }
.trust-badge svg { width:16px; height:16px; fill:none; stroke:var(--gold); stroke-width:2; stroke-linecap:round; stroke-linejoin:round; flex-shrink:0; }

/* QUOTE CARD */
.quote-card { background:var(--white); border-radius:16px; padding:36px 32px; box-shadow:0 30px 80px rgba(0,0,0,0.5); position:relative; }
.quote-card::before { content:''; position:absolute; top:0; left:32px; right:32px; height:4px; background:linear-gradient(90deg,var(--red),var(--gold)); border-radius:0 0 4px 4px; }
.quote-card-title { font-family:'Playfair Display',serif; font-size:1.3rem; font-weight:700; color:var(--navy); margin-bottom:0.25rem; }
.quote-card-sub { font-size:0.82rem; color:var(--mid); margin-bottom:1.5rem; }
.form-group { margin-bottom:1rem; }
.form-label { display:block; font-size:0.78rem; font-weight:600; text-transform:uppercase; letter-spacing:0.06em; color:var(--navy); margin-bottom:5px; }
.form-input,.form-select,.form-textarea { width:100%; padding:10px 14px; border:1.5px solid #dde3ed; border-radius:7px; font-family:'Inter',sans-serif; font-size:0.92rem; color:var(--text); background:var(--white); transition:border-color 0.2s,box-shadow 0.2s; outline:none; appearance:none; }
.form-input:focus,.form-select:focus,.form-textarea:focus { border-color:var(--red); box-shadow:0 0 0 3px rgba(200,16,46,0.1); }
.form-input.invalid,.form-select.invalid,.form-textarea.invalid { border-color:var(--red); background:#fff6f7; }
.form-textarea { resize:vertical; min-height:80px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:0.75rem; }
.type-pills { display:flex; gap:8px; flex-wrap:wrap; }
.type-pill { padding:7px 14px; border:1.5px solid #dde3ed; border-radius:20px; font-size:0.8rem; font-weight:500; cursor:pointer; transition:all 0.15s; background:var(--white); color:var(--mid); font-family:'Inter',sans-serif; }
.type-pill:hover,.type-pill.active { border-color:var(--red); background:rgba(200,16,46,0.06); color:var(--red); }
.type-pill:focus-visible { outline:2px solid var(--red); outline-offset:2px; }

/* Consent + honeypot */
.consent-group { display:flex; align-items:flex-start; gap:9px; margin-top:0.5rem; }
.consent-group input { margin-top:3px; width:16px; height:16px; flex-shrink:0; accent-color:var(--red); }
.consent-label { font-size:0.78rem; line-height:1.5; color:var(--mid); }
.consent-label a { color:var(--red); }
.hp-field { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

.btn-primary { width:100%; padding:14px; background:var(--red); color:var(--white); border:none; border-radius:8px; font-family:'Inter',sans-serif; font-size:1rem; font-weight:700; cursor:pointer; letter-spacing:0.02em; transition:background 0.2s,transform 0.15s; margin-top:1.25rem; }
.btn-primary:hover { background:#a50d24; transform:translateY(-1px); }
.btn-primary:disabled { background:#8a95a6; cursor:not-allowed; transform:none; }
.form-status { text-align:center; font-size:0.82rem; margin-top:0.75rem; min-height:1em; }
.form-status.error { color:var(--red); }
.form-status.success { color:#2a7d4f; font-weight:600; }
.form-note { text-align:center; font-size:0.75rem; color:var(--mid); margin-top:0.75rem; }
.form-note svg { width:12px; height:12px; fill:var(--mid); vertical-align:middle; margin-right:3px; }

/* STATS */
.stats-banner { background:var(--red); padding:28px 5%; }
.stats-inner { max-width:1200px; margin:0 auto; display:flex; justify-content:space-around; flex-wrap:wrap; gap:1.5rem; }
.stat-item { text-align:center; }
.stat-number { font-family:'Playfair Display',serif; font-size:2rem; font-weight:900; color:var(--white); line-height:1; }
.stat-label { font-size:0.78rem; font-weight:500; color:rgba(255,255,255,0.8); text-transform:uppercase; letter-spacing:0.07em; margin-top:4px; }

/* SECTIONS */
.section { padding:90px 5%; }
.section-inner { max-width:1200px; margin:0 auto; }
.section-eyebrow { font-size:0.75rem; font-weight:700; text-transform:uppercase; letter-spacing:0.12em; color:var(--red); margin-bottom:0.75rem; }
.section-title { font-family:'Playfair Display',serif; font-size:clamp(1.8rem,3vw,2.6rem); font-weight:900; color:var(--navy); line-height:1.15; margin-bottom:1rem; }
.section-sub { font-size:1rem; color:var(--mid); line-height:1.7; max-width:560px; margin-bottom:3rem; }

.steps-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:var(--slate); border-radius:14px; overflow:hidden; box-shadow:0 4px 30px rgba(15,31,61,0.07); }
.step-card { background:var(--white); padding:40px 32px; transition:background 0.2s; }
.step-card:hover { background:var(--offwhite); }
.step-num { font-family:'Playfair Display',serif; font-size:4rem; font-weight:900; color:var(--slate); line-height:1; margin-bottom:0.5rem; }
.step-icon { width:48px; height:48px; background:rgba(200,16,46,0.08); border-radius:10px; display:flex; align-items:center; justify-content:center; margin-bottom:1.25rem; }
.step-icon svg { width:26px; height:26px; stroke:var(--red); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.step-title { font-weight:700; font-size:1.05rem; color:var(--navy); margin-bottom:0.5rem; }
.step-desc { font-size:0.9rem; line-height:1.65; color:var(--mid); }

.services-bg { background:var(--offwhite); }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; }
.service-card { background:var(--white); border-radius:12px; overflow:hidden; border:1.5px solid #e0e7f0; transition:border-color 0.2s,transform 0.2s,box-shadow 0.2s; }
.service-card:hover { border-color:var(--red); transform:translateY(-4px); box-shadow:0 12px 40px rgba(15,31,61,0.1); }
.service-img { height:160px; display:flex; align-items:center; justify-content:center; font-size:4rem; overflow:hidden; }
.service-body { padding:20px; }
.service-name { font-weight:700; font-size:0.98rem; color:var(--navy); margin-bottom:5px; }
.service-desc { font-size:0.82rem; color:var(--mid); line-height:1.5; }
.svc-paint{background:linear-gradient(135deg,#f0f4ff,#dce7ff);} .svc-ext{background:linear-gradient(135deg,#fff4f0,#ffe0d9);} .svc-wall{background:linear-gradient(135deg,#f0fff4,#d9ffe3);} .svc-floor{background:linear-gradient(135deg,#fffaf0,#fff0cc);} .svc-render{background:linear-gradient(135deg,#f5f0ff,#e8d9ff);} .svc-refurb{background:linear-gradient(135deg,#fff0f5,#ffd9e8);}

.why-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.why-graphic { position:relative; height:480px; }
.house-wrap { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; }
.house-svg-container { width:340px; height:340px; }
.why-features { display:flex; flex-direction:column; gap:1.5rem; }
.feature-item { display:flex; gap:1rem; align-items:flex-start; }
.feature-icon-wrap { width:44px; height:44px; flex-shrink:0; background:rgba(200,16,46,0.08); border-radius:10px; display:flex; align-items:center; justify-content:center; }
.feature-icon-wrap svg { width:22px; height:22px; stroke:var(--red); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.feature-text h4 { font-weight:700; font-size:0.97rem; color:var(--navy); margin-bottom:4px; }
.feature-text p { font-size:0.87rem; color:var(--mid); line-height:1.6; }

.testimonials-bg { background:var(--navy); }
.testimonials-bg .section-title { color:var(--white); }
.testimonials-bg .section-sub { color:rgba(255,255,255,0.7); }
.testimonials-bg .section-eyebrow { color:var(--gold); }

.tradesmen-grid { display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center; }
.trades-panel { background:white; border-radius:16px; padding:36px; box-shadow:0 8px 40px rgba(15,31,61,0.08); border:1.5px solid #e0e7f0; }
.trades-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; }
.trade-card { background:var(--white); border:1.5px solid #e0e7f0; border-radius:10px; padding:20px 16px; text-align:center; transition:all 0.2s; }
.trade-card:hover { border-color:var(--navy); background:var(--navy); }
.trade-card:hover .trade-name { color:white; }
.trade-icon { font-size:2rem; margin-bottom:8px; }
.trade-name { font-weight:600; font-size:0.9rem; color:var(--navy); }

.cta-band { background:linear-gradient(135deg,var(--red),#8b0d20); padding:80px 5%; text-align:center; position:relative; overflow:hidden; }
.cta-band-inner { position:relative; z-index:1; max-width:700px; margin:0 auto; }
.cta-band h2 { font-family:'Playfair Display',serif; font-size:clamp(1.8rem,3.5vw,2.8rem); font-weight:900; color:white; line-height:1.15; margin-bottom:1rem; }
.cta-band p { font-size:1rem; color:rgba(255,255,255,0.85); margin-bottom:2rem; line-height:1.6; }
.cta-buttons { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.btn-white { padding:14px 32px; background:white; color:var(--red); border:none; border-radius:7px; font-family:'Inter',sans-serif; font-size:0.95rem; font-weight:700; cursor:pointer; transition:transform 0.15s,box-shadow 0.15s; text-decoration:none; display:inline-block; }
.btn-white:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,0.25); }
.btn-outline-white { padding:14px 32px; background:transparent; color:white; border:2px solid rgba(255,255,255,0.5); border-radius:7px; font-family:'Inter',sans-serif; font-size:0.95rem; font-weight:600; cursor:pointer; transition:border-color 0.15s,background 0.15s; text-decoration:none; display:inline-block; }
.btn-outline-white:hover { border-color:white; background:rgba(255,255,255,0.08); }

footer { background:#07121e; color:rgba(255,255,255,0.6); padding:60px 5% 30px; }
.footer-inner { max-width:1200px; margin:0 auto; }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:3rem; padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,0.08); margin-bottom:28px; }
.footer-brand p { font-size:0.88rem; line-height:1.7; margin-top:0.75rem; max-width:260px; }
.footer-col h2 { font-size:0.78rem; font-weight:700; text-transform:uppercase; letter-spacing:0.1em; color:white; margin-bottom:1rem; font-family:'Inter',sans-serif; }
.footer-col a { display:block; color:rgba(255,255,255,0.55); text-decoration:none; font-size:0.88rem; margin-bottom:0.5rem; transition:color 0.15s; }
.footer-col a:hover { color:var(--gold); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1rem; font-size:0.8rem; }
.footer-bottom a { color:rgba(255,255,255,0.45); text-decoration:none; }
.footer-bottom a:hover { color:rgba(255,255,255,0.7); }

.reveal { opacity:0; transform:translateY(30px); transition:opacity 0.6s ease,transform 0.6s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:0.1s; } .reveal-delay-2 { transition-delay:0.2s; } .reveal-delay-3 { transition-delay:0.3s; }

@media (max-width:960px) {
  .hero-inner { grid-template-columns:1fr; gap:40px; }
  .steps-grid { grid-template-columns:1fr; }
  .services-grid { grid-template-columns:1fr 1fr; }
  .why-grid,.tradesmen-grid { grid-template-columns:1fr; }
  .why-graphic { height:280px; }
  .trades-grid { grid-template-columns:1fr 1fr; }
  .footer-top { grid-template-columns:1fr 1fr; }
  .nav-links { display:none; }
}
@media (max-width:600px) {
  .services-grid,.footer-top,.form-row { grid-template-columns:1fr; }
  .trades-grid { grid-template-columns:1fr 1fr; }
}
@media (prefers-reduced-motion:reduce) {
  .reveal { opacity:1; transform:none; transition:none; }
  .hero-bg-circle,.hero-eyebrow::before { animation:none; }
}
