
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #1a1f5e; --navy-dark: #12165a; --gold: #c9a227; --gold-light: #e0b93a;
  --white: #ffffff; --off-white: #f5f6fa; --text: #2d2d2d; --text-muted: #666;
  --border: #dde2f0;
}
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: var(--text); background: var(--white); }

.placeholder {
  background: rgba(201,162,39,0.12); border: 1.5px dashed var(--gold); border-radius: 4px;
  color: #7a6010; font-size: 0.78rem; font-style: italic; display: inline-block; padding: 2px 8px;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--navy); display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 64px; box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
nav .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
nav .logo img { height: 38px; border-radius: 3px; }
nav .logo-text { color: var(--white); font-size: 1rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.2; }
nav .logo-text span { display: block; font-size: 0.65rem; font-weight: 400; color: var(--gold); letter-spacing: 0.15em; }
nav ul { list-style: none; display: flex; gap: 6px; align-items: center; }
nav ul li a {
  color: var(--white); text-decoration: none; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase; padding: 8px 12px; border-radius: 3px;
  transition: color 0.2s, background 0.2s;
}
nav ul li a:hover { color: var(--gold); }
nav ul li a.active { color: var(--gold); }
nav ul li.cta a { background: var(--gold); color: var(--navy); border-radius: 4px; padding: 8px 16px; }
nav ul li.cta a:hover { background: var(--gold-light); color: var(--navy); }

/* ── HERO (home) ── */
.hero {
  position: relative; height: 100vh; min-height: 560px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden; background: var(--navy);
}
.hero video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,31,94,0.6) 0%, rgba(26,31,94,0.4) 60%, rgba(26,31,94,0.75) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 24px; }
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--white); line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero-content h1 span { color: var(--gold); }
.hero-content p { color: rgba(255,255,255,0.9); font-size: 1.15rem; margin-top: 16px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--navy); padding: 110px 0 52px; }
.page-hero .breadcrumb { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-bottom: 10px; }
.page-hero .breadcrumb a { color: var(--gold); text-decoration: none; }
.page-hero .breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--white); line-height: 1.1;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-top: 12px; max-width: 560px; line-height: 1.7; }

/* ── SUB NAV (for-your-home) ── */
.sub-nav { background: var(--off-white); border-bottom: 2px solid var(--border); position: sticky; top: 64px; z-index: 50; }
.sub-nav ul { display: flex; list-style: none; gap: 0; padding: 0 40px; }
.sub-nav ul li a {
  display: block; padding: 14px 20px; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); text-decoration: none;
  border-bottom: 3px solid transparent; transition: color 0.2s, border-color 0.2s;
}
.sub-nav ul li a:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold); color: var(--navy); border: none;
  font-size: 0.9rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 32px; border-radius: 4px; text-decoration: none; cursor: pointer; display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.75);
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 13px 32px; border-radius: 4px; text-decoration: none; cursor: pointer; display: inline-block;
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ── LAYOUT ── */
section { padding: 80px 0; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.section-label { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.15; color: var(--navy); }
h2.light { color: var(--white); }
.subtext { font-size: 1rem; color: var(--text-muted); margin-top: 12px; max-width: 560px; line-height: 1.7; }
.subtext.light { color: rgba(255,255,255,0.8); }

/* ── AUDIENCE SPLIT ── */
.split { background: var(--off-white); }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.split-card { border-radius: 8px; overflow: hidden; position: relative; height: 380px; text-decoration: none; display: block; }
.split-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.split-card:hover img { transform: scale(1.04); }
.split-card .card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,31,94,0.92) 0%, rgba(26,31,94,0.3) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 32px;
}
.split-card .card-overlay h3 { color: var(--white); font-size: 1.5rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.split-card .card-overlay p { color: rgba(255,255,255,0.85); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }
.split-card .card-overlay .arrow { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.split-card .card-overlay .arrow::after { content: '\2192'; font-size: 1.1rem; }

/* ── WHY ── */
.why { background: var(--navy); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.why-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 28px 24px; }
.why-card .icon { font-size: 2rem; margin-bottom: 16px; }
.why-card h4 { color: var(--gold); font-size: 0.9rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.75); font-size: 0.88rem; line-height: 1.65; }

/* ── GALLERY STRIP ── */
.gallery-strip { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 40px; }
.gallery-item { border-radius: 6px; overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; display: block; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-cta { text-align: center; margin-top: 36px; }

/* ── HOME SERVICES ── */
.home-services { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.service-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.07); text-decoration: none; display: block; transition: transform 0.2s, box-shadow 0.2s; }
.service-card:hover { transform: translateY(-3px); box-shadow: 0 6px 28px rgba(0,0,0,0.12); }
.service-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.service-card .card-body { padding: 24px 28px 28px; }
.service-card .card-body h3 { color: var(--navy); font-size: 1.1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.service-card .card-body p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; }
.service-card .card-body .link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; color: var(--navy); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.service-card .card-body .link::after { content: '\2192'; }

/* ── BEFORE AFTER ── */
.before-after { background: var(--navy); }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-top: 40px; border-radius: 8px; overflow: hidden; }
.ba-item { position: relative; }
.ba-item img { width: 100%; height: 400px; object-fit: cover; display: block; }
.ba-label { position: absolute; top: 16px; left: 16px; background: var(--navy); color: var(--white); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 12px; border-radius: 3px; }
.ba-label.after { background: var(--gold); color: var(--navy); }

/* ── COMMERCIAL ── */
.commercial { background: var(--white); }
.commercial-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.commercial-inner img { width: 100%; height: 420px; object-fit: cover; border-radius: 8px; display: block; }
.commercial-text .tag { color: var(--gold); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 12px; display: block; }
.commercial-text h2 { color: var(--navy); }
.commercial-text p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.75; margin-top: 16px; }
.commercial-text ul { margin-top: 20px; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.commercial-text ul li { display: flex; align-items: flex-start; gap: 10px; color: var(--text); font-size: 0.9rem; }
.commercial-text ul li::before { content: '\2713'; color: var(--gold); font-weight: 900; flex-shrink: 0; }
.commercial-text .btn-primary { display: inline-block; margin-top: 28px; }

/* ── VIDEO SECTION ── */
.video-section { background: var(--off-white); }
.video-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-top: 40px; }
.video-item { border-radius: 8px; overflow: hidden; }
.video-item video { width: 100%; display: block; border-radius: 8px; }
.video-item p { font-size: 0.82rem; color: var(--text-muted); margin-top: 10px; text-align: center; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--navy); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testimonial-card { background: rgba(255,255,255,0.07); border-radius: 8px; padding: 28px; border: 1px solid rgba(255,255,255,0.1); }
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 3px; margin-bottom: 14px; }
.testimonial-card p { color: rgba(255,255,255,0.85); font-size: 0.9rem; line-height: 1.7; font-style: italic; }
.testimonial-card cite { display: block; margin-top: 16px; color: var(--gold); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; font-style: normal; }

/* ── MATERIALS ── */
.materials { background: var(--navy); }
.brand-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.brand-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 32px 28px; }
.brand-card .brand-tag { display: inline-block; margin-bottom: 14px; background: var(--gold); color: var(--navy); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; padding: 4px 12px; border-radius: 3px; }
.brand-card h3 { color: var(--white); font-size: 1.15rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 14px; }
.brand-card p { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.72; }
.brand-card p + p { margin-top: 10px; }
.materials-note { margin-top: 32px; padding: 20px 24px; background: rgba(255,255,255,0.06); border-radius: 6px; border-left: 3px solid var(--gold); }
.materials-note p { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.7; }
.materials-note a { color: var(--gold); }

/* ── FAQ ── */
.faq { background: var(--off-white); }
.faq-list { margin-top: 40px; max-width: 820px; display: flex; flex-direction: column; gap: 6px; }
.faq-category { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-top: 32px; margin-bottom: 10px; }
details.faq-item { background: var(--white); border-radius: 6px; border: 1.5px solid var(--border); }
details.faq-item summary { padding: 18px 24px; font-size: 0.95rem; font-weight: 700; color: var(--navy); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: '+'; font-size: 1.25rem; color: var(--gold); font-weight: 400; flex-shrink: 0; margin-left: 12px; }
details.faq-item[open] > summary::after { content: '\2212'; }
details.faq-item[open] > summary { border-bottom: 1.5px solid var(--border); }
.faq-answer { padding: 18px 24px; color: var(--text-muted); font-size: 0.9rem; line-height: 1.78; }
.faq-answer a { color: var(--navy); font-weight: 700; }

/* ── ABOUT ── */
.about { background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-text h2 { color: var(--navy); }
.about-text p { color: var(--text-muted); line-height: 1.75; margin-top: 14px; font-size: 0.93rem; }
.team-row { display: flex; gap: 20px; margin-top: 32px; }
.team-card { text-align: center; flex: 1; }
.team-card .avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; overflow: hidden; }
.team-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h5 { color: var(--navy); font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
.team-card span { color: var(--text-muted); font-size: 0.75rem; }
.drc-card { background: var(--navy); border-radius: 8px; padding: 28px; margin-top: 32px; }
.drc-card h4 { color: var(--gold); font-size: 0.85rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; }
.drc-card p { color: rgba(255,255,255,0.8); font-size: 0.88rem; line-height: 1.65; }
.drc-card a { color: var(--gold); text-decoration: none; font-weight: 700; }
.drc-card a:hover { text-decoration: underline; }
.about-img { border-radius: 8px; overflow: hidden; }
.about-img img { width: 100%; height: 340px; object-fit: cover; display: block; border-radius: 8px; }

/* ── COVERAGE ── */
.coverage { background: var(--off-white); text-align: center; }
.coverage h2 { color: var(--navy); margin-bottom: 14px; }
.coverage p { color: var(--text-muted); max-width: 600px; margin: 0 auto 32px; line-height: 1.7; }
.towns { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.town-tag { background: var(--navy); color: var(--white); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 7px 16px; border-radius: 20px; }

/* ── CTA BAND ── */
.cta-band { background: var(--gold); padding: 60px 0; text-align: center; }
.cta-band h2 { color: var(--navy); font-size: clamp(1.5rem, 3vw, 2rem); }
.cta-band p { color: rgba(26,31,94,0.8); margin-top: 10px; margin-bottom: 28px; font-size: 1rem; }
.cta-band .btn-navy { background: var(--navy); color: var(--white); border: none; font-size: 0.9rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 14px 36px; border-radius: 4px; text-decoration: none; display: inline-block; transition: background 0.2s; }
.cta-band .btn-navy:hover { background: var(--navy-dark); }

/* ── CONTACT ── */
.contact-section { background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h2 { color: var(--white); }
.contact-info p { color: rgba(255,255,255,0.75); margin-top: 12px; line-height: 1.7; font-size: 0.93rem; }
.contact-details { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.contact-row { display: flex; align-items: center; gap: 14px; }
.contact-icon { width: 42px; height: 42px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-row h5 { color: var(--gold); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 3px; }
.contact-row p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.contact-form { background: var(--white); border-radius: 10px; padding: 36px; }
.contact-form h3 { color: var(--navy); font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--navy); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: 5px; font-size: 0.9rem; color: var(--text); background: var(--white); outline: none; transition: border-color 0.2s; font-family: inherit; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 90px; }
.contact-form .btn-primary { width: 100%; margin-top: 4px; font-size: 0.88rem; padding: 13px; }

/* ── SECTION REVIEW STRIP ── */
.section-review { margin-top: 48px; padding: 20px 28px; border-left: 4px solid var(--gold); background: var(--off-white); border-radius: 0 8px 8px 0; display: flex; align-items: flex-start; gap: 18px; }
.section-review.on-dark { background: rgba(255,255,255,0.07); border-left-color: var(--gold); }
.section-review .review-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; white-space: nowrap; padding-top: 2px; }
.section-review .review-body p { font-size: 0.9rem; font-style: italic; line-height: 1.65; color: var(--text-muted); }
.section-review.on-dark .review-body p { color: rgba(255,255,255,0.75); }
.section-review .review-body cite { display: block; margin-top: 8px; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; font-style: normal; color: var(--navy); }
.section-review.on-dark .review-body cite { color: var(--gold); }

/* ── DIVIDER ── */
.divider { height: 4px; background: linear-gradient(to right, var(--navy), var(--gold), var(--navy)); }

/* ── FOOTER ── */
footer { background: #0e1240; padding: 40px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo img { height: 36px; border-radius: 3px; }
.footer-logo-text { color: var(--white); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-logo-text span { display: block; font-size: 0.6rem; color: var(--gold); letter-spacing: 0.15em; font-weight: 400; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.78rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: rgba(255,255,255,0.35); font-size: 0.75rem; text-align: right; }
.footer-social { display: flex; align-items: center; }
.social-table { border-collapse: collapse; border: none; }
.social-table td { border: none; padding: 0; vertical-align: middle; }
.social-table td.social-label { color: rgba(255,255,255,0.6); font-size: 0.78rem; padding-right: 20px; white-space: nowrap; }
.social-link { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.78rem; padding: 5px 14px 5px 0; white-space: nowrap; transition: color 0.2s; }
.social-link:hover { color: var(--gold); }
.social-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ── PROTOTYPE BANNER ── */
.prototype-banner { background: var(--gold); color: var(--navy); text-align: center; padding: 10px 24px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; }

@media (max-width: 900px) {
  .split-grid, .services-grid, .commercial-inner, .about-inner, .contact-grid, .ba-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: 1fr; }
  nav ul { display: none; }
  .container { padding: 0 20px; }
  .sub-nav ul { padding: 0 20px; overflow-x: auto; }
}
