/* Waldorf Roofing — Rank & Rent Site */
:root {
  --navy: #2c3e50;
  --blue: #2e7d32;
  --blue-dark: #1b5e20;
  --orange: #bf360c;
  --orange-light: #e64a19;
  --bg: #f8fafc;
  --white: #ffffff;
  --text: #1e293b;
  --text-light: #64748b;
  --border: #e2e8f0;
  --radius: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.7; }
a { color: var(--blue); text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Top Bar */
.topbar { background: var(--navy); color: #cbd5e1; font-size: 0.82rem; padding: 8px 0; text-align: center; }
.topbar strong { color: #fff; }

/* Header */
.site-header { background: var(--white); border-bottom: 1px solid var(--border); padding: 0; position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; max-width: 1100px; margin: 0 auto; }
.site-logo { font-size: 1.3rem; font-weight: 800; color: var(--navy); }
.site-logo span { color: var(--blue); }
.site-nav { display: flex; gap: 24px; align-items: center; }
.site-nav a { color: var(--text); font-size: 0.9rem; font-weight: 600; transition: color 0.2s; }
.site-nav a:hover { color: var(--blue); }
.site-nav .btn-cta { background: var(--orange); color: #fff; padding: 10px 22px; border-radius: var(--radius); font-weight: 700; font-size: 0.9rem; transition: background 0.2s; }
.site-nav .btn-cta:hover { background: var(--orange-light); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: 0.3s; }
.mobile-menu { display: none; background: var(--white); border-top: 1px solid var(--border); padding: 16px 20px; }
.mobile-menu a { display: block; padding: 10px 0; font-weight: 600; color: var(--text); border-bottom: 1px solid var(--border); }
.mobile-menu .btn-cta { display: inline-block; margin-top: 12px; background: var(--orange); color: #fff; padding: 12px 24px; border-radius: var(--radius); text-align: center; width: 100%; font-weight: 700; }
@media (max-width: 768px) {
  .site-nav { display: none; }
  .hamburger { display: block; }
  .mobile-menu.open { display: block; }
}

/* Hero */
.hero { background: linear-gradient(135deg, var(--navy) 0%, #0f172a 100%); color: #fff; padding: 80px 0 72px; text-align: center; position: relative; overflow: hidden; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; line-height: 1.15; margin-bottom: 16px; }
.hero h1 .highlight { color: var(--orange-light); }
.hero p { font-size: 1.15rem; color: #94a3b8; max-width: 600px; margin: 0 auto 28px; }
.hero .btn-hero { display: inline-block; background: var(--orange); color: #fff; padding: 16px 36px; border-radius: var(--radius); font-weight: 800; font-size: 1.1rem; transition: background 0.2s, transform 0.15s; }
.hero .btn-hero:hover { background: var(--orange-light); transform: translateY(-2px); }
.hero-phone { font-size: 1.4rem; font-weight: 800; color: #fff; margin-top: 20px; }
.hero-phone a { color: var(--orange-light); }

/* Trust Bar */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 20px 0; }
.trust-items { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 600; color: var(--text); }
.trust-icon { width: 36px; height: 36px; background: rgba(46,125,50,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* Section */
.section { padding: 72px 0; }
.section-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; text-align: center; margin-bottom: 12px; color: var(--navy); }
.section-sub { text-align: center; color: var(--text-light); max-width: 560px; margin: 0 auto 48px; }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; transition: box-shadow 0.2s, transform 0.2s; }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; }
.service-icon { width: 44px; height: 44px; background: rgba(46,125,50,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }

/* Why Choose Us */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 640px) { .why-grid { grid-template-columns: 1fr; } }
.why-card { display: flex; gap: 16px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.why-num { font-size: 1.5rem; font-weight: 900; color: var(--blue); line-height: 1; min-width: 36px; }
.why-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.why-card p { font-size: 0.85rem; color: var(--text-light); }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.testimonial-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-text { font-size: 0.9rem; color: var(--text); font-style: italic; margin-bottom: 12px; line-height: 1.7; }
.testimonial-name { font-size: 0.82rem; font-weight: 700; color: var(--navy); }
.testimonial-loc { font-size: 0.78rem; color: var(--text-light); }

/* CTA Strip */
.cta-strip { background: var(--navy); text-align: center; padding: 64px 20px; color: #fff; }
.cta-strip h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 800; margin-bottom: 12px; }
.cta-strip p { color: #94a3b8; margin-bottom: 28px; }
.cta-strip .btn-hero { background: var(--orange); }

/* Areas */
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 640px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
.area-tag { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 18px; font-weight: 600; font-size: 0.9rem; text-align: center; }

/* Contact Form */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: start; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h2 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.contact-info p { color: var(--text-light); margin-bottom: 24px; }
.info-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.info-row strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-light); }
.info-row p { font-weight: 700; color: var(--navy); }
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-lg); }
.contact-form h2 { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.03em; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: var(--font); font-size: 0.92rem; background: var(--bg); transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); background: #fff; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 14px; background: var(--orange); color: #fff; border: none; border-radius: var(--radius); font-family: var(--font); font-size: 1rem; font-weight: 700; cursor: pointer; transition: background 0.2s; }
.form-submit:hover { background: var(--orange-light); }

/* Footer */
.site-footer { background: var(--navy); color: #94a3b8; padding: 48px 0 24px; font-size: 0.88rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { margin-top: 8px; line-height: 1.7; }
.footer-links h4, .footer-contact h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.footer-links a { display: block; color: #94a3b8; padding: 3px 0; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 0.8rem; color: #64748b; }
