@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('./fonts/BricolageGrotesque-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('./fonts/BricolageGrotesque-800.woff2') format('woff2');
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter-500.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('./fonts/Inter-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

:root {
  --navy: #16245C;
  --orange: #E4611C;
  --orange-deep: #B8420E;
  --orange-ink: #8A3A10;
  --gold: #E9CD8A;
  --cream: #F7F1E6;
  --muted: #5C5852;
  --ink-warm: #2C2A26;
  --white: #FFFFFF;
  
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink-warm);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
}

.kicker {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange-ink);
  margin-bottom: 0.75rem;
}
.kicker.kicker-gold {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 4px;
  min-height: 44px;
  cursor: pointer;
  transition: opacity 0.2s;
  text-align: center;
}
.btn:hover { opacity: 0.9; }
.btn-primary {
  background: var(--orange-deep);
  color: var(--white);
}
.btn-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(22, 36, 92, 0.05);
}

/* Header */
.top-bar {
  background: var(--navy);
  color: var(--gold);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.header {
  background: var(--white);
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: relative;
  z-index: 10;
}
.logo {
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--orange-deep);
  line-height: 1;
}
.logo-sub {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-link {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9375rem;
}
.nav-link:hover {
  color: var(--orange-deep);
}
.nav-cta {
  background: var(--orange-deep);
  color: var(--white);
  padding: 0.625rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Fold / Hero */
.hero {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-content {
  max-width: 540px;
}
.heritage-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.seal {
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.1;
  flex-shrink: 0;
}
.seal-est {
  color: var(--gold);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.seal-year {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
}
.heritage-text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--orange-ink);
  line-height: 1.4;
  max-width: 200px;
}
.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}
.hero p {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.hero-proof {
  font-size: 0.875rem;
  color: var(--muted);
}
.hero-img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(22, 36, 92, 0.1);
  border: 4px solid var(--white);
}

/* Brands Strip */
.brands-strip {
  background: var(--white);
  padding: 2rem;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.brands-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.brands-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}
.brand-chip {
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.9375rem;
}
.brand-note {
  font-size: 0.875rem;
  color: var(--muted);
}

/* What We Fix */
.what-we-fix {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}
.fix-img {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 4px solid var(--white);
}
.fix-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.appliance-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.appliance-chip {
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
  border: 1px solid rgba(0,0,0,0.05);
}
.niche-cards {
  display: grid;
  gap: 1rem;
}
.niche-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-left: 4px solid var(--orange);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.niche-icon {
  color: var(--orange);
  flex-shrink: 0;
}
.niche-text {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4;
}

/* Service Area Board */
.service-board {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 2rem;
  text-align: center;
}
.service-board .kicker {
  color: var(--gold);
}
.service-board h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 3rem;
}
.towns-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2.5rem;
  max-width: 1000px;
  margin: 0 auto 3.5rem;
}
.town-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
}
.town-pin {
  color: var(--gold);
}
.locations-wrap {
  display: flex;
  justify-content: center;
  gap: 4rem;
  max-width: 800px;
  margin: 0 auto;
}
.loc-item h3 {
  color: var(--gold);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.loc-item p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9375rem;
}

/* Family Band */
.family-band {
  background: var(--white);
  padding: 5rem 2rem;
}
.family-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.family-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.family-content p {
  color: var(--muted);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}
.family-sig {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 2rem;
}
.family-sig span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--orange-deep);
  font-weight: 500;
  margin-top: 0.25rem;
}
.family-checks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy);
}
.check-icon {
  color: var(--orange);
}
.family-img {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Contact */
.contact-sec {
  background: var(--cream);
  padding: 5rem 2rem;
}
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
}
.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.contact-info > p {
  color: var(--muted);
  margin-bottom: 3rem;
  max-width: 500px;
}
.phones-grid {
  display: flex;
  gap: 3rem;
  margin-bottom: 2rem;
}
.phone-block h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.phone-block a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--orange-deep);
  font-weight: 800;
}
.payment-line {
  font-size: 0.875rem;
  color: var(--muted);
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 1.5rem;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.contact-form h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 4px;
  background: var(--cream);
}
.form-control:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
}
.form-submit {
  width: 100%;
  background: var(--orange-deep);
  color: var(--white);
  border: none;
  font-weight: 600;
  font-size: 1rem;
}
.form-thanks {
  display: none;
  background: #E8F5E9;
  color: #2E7D32;
  padding: 1rem;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
  margin-top: 1rem;
}
.contact-form.submitted form { display: none; }
.contact-form.submitted .form-thanks { display: block; }

/* Footer */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 3rem 2rem;
  font-size: 0.875rem;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

/* Ribbon */
.dev-ribbon {
  background: var(--navy);
  color: var(--white);
  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.dev-ribbon a {
  background: rgba(255,255,255,0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-weight: 600;
}
.dev-ribbon button {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 0.25rem;
}
.dev-ribbon button:hover { color: var(--white); }

/* Mobile Bottom Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--orange-deep);
  padding: 1rem;
  text-align: center;
  z-index: 50;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
}
.mobile-bottom-bar a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Reduced Motion */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .hero, .what-we-fix, .family-container, .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-content {
    order: 2;
  }
  .hero-img-wrap {
    order: 1;
  }
  .locations-wrap {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 1rem;
  }
  .nav-links {
    display: none;
  }
  details.mobile-nav {
    display: block;
  }
  details.mobile-nav summary {
    list-style: none;
    cursor: pointer;
    padding: 0.5rem;
  }
  details.mobile-nav summary::-webkit-details-marker { display: none; }
  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid rgba(0,0,0,0.05);
  }
  .mobile-menu a {
    padding: 0.75rem;
    font-weight: 600;
    color: var(--navy);
    display: block;
    min-height: 44px;
  }
  
  .hero h1 { font-size: 2.5rem; }
  .service-board h2, .family-content h2, .contact-info h2 { font-size: 2rem; }
  
  body {
    padding-bottom: 80px; /* for mobile bottom bar */
  }
  .mobile-bottom-bar {
    display: block;
  }
  
  .phones-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}
@media (min-width: 769px) {
  details.mobile-nav { display: none; }
}

@media (max-width: 768px) {
  .niche-cards { grid-template-columns: 1fr !important; }
}
