/* ==========================================================================
   Superfoil Roofing — Main Stylesheet
   Font: Atkinson Hyperlegible
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
  --brand-navy: #0b2545;
  --brand-steel: #13315c;
  --brand-copper: #c0392b;
  --brand-copper-dark: #922b21;
  --brand-gold: #d4a24c;
  --brand-cream: #f6f2ea;
  --brand-charcoal: #1a1a1a;
  --brand-grey: #5c6773;
  --brand-light-grey: #e8eaed;
  --brand-white: #ffffff;
  --brand-success: #2e7d32;
  --shadow-sm: 0 2px 6px rgba(11, 37, 69, 0.08);
  --shadow-md: 0 6px 18px rgba(11, 37, 69, 0.12);
  --shadow-lg: 0 12px 36px rgba(11, 37, 69, 0.18);
  --radius: 6px;
  --max-width: 1200px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: 'Atkinson Hyperlegible', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--brand-charcoal);
  background: var(--brand-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--brand-copper);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover,
a:focus {
  color: var(--brand-copper-dark);
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Atkinson Hyperlegible', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--brand-navy);
  margin-bottom: 0.6em;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 4vw, 2.25rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1.1em; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--brand-navy);
  color: var(--brand-white);
  padding: 8px 16px;
  z-index: 9999;
}
.skip-link:focus { top: 0; color: #fff; }

/* ========== HEADER ========== */
.site-header {
  background: var(--brand-white);
  border-bottom: 3px solid var(--brand-copper);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-top {
  background: var(--brand-navy);
  color: var(--brand-white);
  font-size: 0.9rem;
  padding: 0.5rem 0;
}

.header-top-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.header-top a { color: var(--brand-white); }
.header-top a:hover { color: var(--brand-gold); }

.header-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--brand-navy);
}

.site-logo:hover { text-decoration: none; color: var(--brand-navy); }

.site-logo svg {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.site-logo .logo-text {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--brand-navy);
}

.site-logo .logo-text small {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--brand-copper);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Navigation */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.main-nav a {
  display: block;
  padding: 0.6rem 1rem;
  color: var(--brand-navy);
  font-weight: 700;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--brand-navy);
  color: var(--brand-white);
  text-decoration: none;
}

.main-nav .cta-nav a {
  background: var(--brand-copper);
  color: var(--brand-white);
}

.main-nav .cta-nav a:hover {
  background: var(--brand-copper-dark);
  color: var(--brand-white);
}

/* Mobile menu toggle */
.mobile-toggle {
  display: none;
  background: var(--brand-navy);
  color: var(--brand-white);
  border: none;
  padding: 0.6rem 0.9rem;
  cursor: pointer;
  border-radius: var(--radius);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  align-items: center;
  gap: 0.5rem;
}

.mobile-toggle:hover { background: var(--brand-copper); }

.hamburger {
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
}
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

/* ========== BREADCRUMB ========== */
.breadcrumb {
  background: var(--brand-cream);
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--brand-light-grey);
  font-size: 0.9rem;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 0.5rem;
  color: var(--brand-grey);
}

.breadcrumb a {
  color: var(--brand-steel);
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb li[aria-current] { color: var(--brand-grey); }

/* ========== HERO ========== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-steel) 100%);
  color: var(--brand-white);
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0 50 L50 0 L100 50 L50 100 Z" fill="none" stroke="rgba(255,255,255,0.04)" stroke-width="1"/></svg>');
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.hero h1 {
  color: var(--brand-white);
  margin-bottom: 1rem;
}

.hero .tagline {
  color: var(--brand-gold);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  max-width: 55ch;
  color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255, 255, 255, 0.15);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.95rem 1.9rem;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  text-align: center;
}

.btn-primary {
  background: var(--brand-copper);
  color: var(--brand-white);
  border-color: var(--brand-copper);
}
.btn-primary:hover {
  background: var(--brand-copper-dark);
  border-color: var(--brand-copper-dark);
  color: var(--brand-white);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--brand-white);
  border-color: var(--brand-white);
}
.btn-secondary:hover {
  background: var(--brand-white);
  color: var(--brand-navy);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--brand-navy);
  border-color: var(--brand-navy);
}
.btn-outline:hover {
  background: var(--brand-navy);
  color: var(--brand-white);
  text-decoration: none;
}

/* ========== SECTIONS ========== */
section {
  padding: 4rem 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading .eyebrow {
  color: var(--brand-copper);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: block;
}

.section-heading h2 {
  margin-bottom: 1rem;
}

.section-heading .lead {
  max-width: 65ch;
  margin: 0 auto;
  color: var(--brand-grey);
  font-size: 1.1rem;
}

/* ========== FEATURE GRID ========== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.feature-card {
  background: var(--brand-white);
  border: 1px solid var(--brand-light-grey);
  border-top: 4px solid var(--brand-copper);
  padding: 2rem 1.6rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--brand-navy);
}

.feature-card .icon {
  width: 54px;
  height: 54px;
  background: var(--brand-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--brand-copper);
}

.feature-card .icon svg {
  width: 28px;
  height: 28px;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.feature-card p {
  color: var(--brand-grey);
  margin-bottom: 0;
  font-size: 0.98rem;
}

/* ========== IMAGE + TEXT BLOCKS ========== */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.split-block.reverse { direction: rtl; }
.split-block.reverse > * { direction: ltr; }

.split-block img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.split-block h2 {
  margin-bottom: 1.2rem;
}

/* ========== ALT SECTION ========== */
.section-alt { background: var(--brand-cream); }
.section-dark {
  background: var(--brand-navy);
  color: var(--brand-white);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--brand-white); }

/* ========== GALLERY ========== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery figure {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--brand-white);
  border: 1px solid var(--brand-light-grey);
}

.gallery figure img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery figure:hover img { transform: scale(1.05); }

.gallery figcaption {
  padding: 1rem;
  font-size: 0.95rem;
  color: var(--brand-grey);
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--brand-white);
  border: 1px solid var(--brand-light-grey);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 1.2rem 1.4rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brand-navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--brand-copper);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item[open] summary::after { content: "−"; }
.faq-item[open] summary { border-bottom: 1px solid var(--brand-light-grey); }

.faq-item .faq-body {
  padding: 1.2rem 1.4rem;
  color: var(--brand-charcoal);
}

.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* ========== TESTIMONIALS ========== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--brand-white);
  padding: 1.8rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--brand-copper);
  box-shadow: var(--shadow-sm);
}

.stars { color: var(--brand-gold); margin-bottom: 0.5rem; letter-spacing: 2px; }

.testimonial blockquote {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--brand-charcoal);
  border-left: none;
  padding: 0;
}

.testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: var(--brand-navy);
}

.testimonial cite small {
  display: block;
  font-weight: 400;
  color: var(--brand-grey);
  font-size: 0.85rem;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-copper) 0%, var(--brand-copper-dark) 100%);
  color: var(--brand-white);
  text-align: center;
  padding: 3.5rem 1.5rem;
}

.cta-banner h2 { color: var(--brand-white); }
.cta-banner p { max-width: 60ch; margin: 0 auto 1.6rem; font-size: 1.1rem; }
.cta-banner .btn-primary {
  background: var(--brand-white);
  color: var(--brand-copper);
  border-color: var(--brand-white);
}
.cta-banner .btn-primary:hover {
  background: var(--brand-navy);
  color: var(--brand-white);
  border-color: var(--brand-navy);
}

/* ========== CONTACT FORM ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form {
  background: var(--brand-white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--brand-light-grey);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--brand-light-grey);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition);
  background: var(--brand-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-copper);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-note {
  font-size: 0.85rem;
  color: var(--brand-grey);
  margin-top: 0.25rem;
}

.contact-details {
  padding: 0;
}

.contact-info-block {
  margin-bottom: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--brand-light-grey);
}

.contact-info-block:last-child { border-bottom: none; }

.contact-info-block h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-info-block svg {
  width: 22px;
  height: 22px;
  color: var(--brand-copper);
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--brand-navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 3.5rem 0 1.5rem;
  font-size: 0.95rem;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-grid h4 {
  color: var(--brand-white);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--brand-copper);
  display: inline-block;
}

.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 0.5rem; }

.footer-grid a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.footer-grid a:hover { color: var(--brand-gold); text-decoration: underline; }

.footer-logo { margin-bottom: 1rem; }

.footer-bottom {
  max-width: var(--max-width);
  margin: 2.5rem auto 0;
  padding: 1.5rem 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.88rem;
}

/* ========== LOCATION/SERVICE PAGES ========== */
.page-hero {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-steel) 100%);
  color: var(--brand-white);
  padding: 3rem 0;
  position: relative;
}

.page-hero h1 { color: var(--brand-white); }
.page-hero .lead {
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  margin-bottom: 1.6rem;
}

.info-bar {
  background: var(--brand-cream);
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--brand-light-grey);
}

.info-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brand-navy);
}

.info-bar-inner > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.info-bar-inner svg {
  width: 20px;
  height: 20px;
  color: var(--brand-copper);
  flex-shrink: 0;
}

/* Map wrapper */
.map-wrapper {
  position: relative;
  padding-bottom: 50%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Service list */
.service-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.6rem;
}

.service-list li {
  background: var(--brand-white);
  padding: 0.8rem 1rem;
  border-left: 3px solid var(--brand-copper);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-list li::before {
  content: "✓";
  color: var(--brand-success);
  font-weight: 700;
}

/* Location grid */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.location-card {
  background: var(--brand-white);
  border: 1px solid var(--brand-light-grey);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
}

.location-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-copper);
  text-decoration: none;
}

.location-card h3 {
  color: var(--brand-navy);
  margin-bottom: 0.3rem;
  font-size: 1.15rem;
}

.location-card p {
  color: var(--brand-grey);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Content block for rich pages */
.content-block {
  max-width: 820px;
  margin: 0 auto;
}

.content-block h2 {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 3px solid var(--brand-copper);
  display: inline-block;
  padding-right: 3rem;
}

.content-block h3 { margin-top: 1.8rem; }

.content-block ul, .content-block ol {
  margin: 0 0 1.2em 1.4rem;
}

.content-block li { margin-bottom: 0.4em; }

/* Success/error messages */
.alert {
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.alert-success {
  background: #e8f5e9;
  color: var(--brand-success);
  border: 1px solid var(--brand-success);
}

.alert-error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #c62828;
}

/* ========== MOBILE RESPONSIVENESS ========== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .split-block { grid-template-columns: 1fr; gap: 1.5rem; }
  .split-block.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  section { padding: 2.8rem 0; }
  .hero { padding: 2.5rem 0 3rem; }
  .header-main { padding: 0.8rem 1rem; }
  .site-logo svg { width: 44px; height: 44px; }
  .site-logo .logo-text { font-size: 1.1rem; }

  .mobile-toggle { display: inline-flex; }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 85%;
    max-width: 340px;
    background: var(--brand-navy);
    padding: 4.5rem 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1100;
    overflow-y: auto;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.25);
  }

  .main-nav.is-open { transform: translateX(0); }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
  }

  .main-nav a {
    color: var(--brand-white);
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
  }

  .main-nav a:hover,
  .main-nav a.active {
    background: var(--brand-copper);
    color: var(--brand-white);
  }

  .main-nav .cta-nav a {
    margin-top: 1rem;
    border-radius: var(--radius);
    background: var(--brand-copper);
  }

  .nav-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: 2px solid var(--brand-white);
    color: var(--brand-white);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    font-family: inherit;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .nav-overlay.is-open { opacity: 1; pointer-events: auto; }

  body.menu-open { overflow: hidden; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
}

@media (min-width: 769px) {
  .nav-close { display: none; }
  .nav-overlay { display: none; }
}

/* Print styles */
@media print {
  .site-header, .site-footer, .cta-banner, .mobile-toggle { display: none; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Additional components: contact form, sitemap, legal copy,
   footer two-col list, contact cards, form styles
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.contact-form-wrap h2 { margin-top: 0; }
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-form .form-row { display: flex; flex-direction: column; gap: 0.35rem; }
.contact-form .form-row label {
  font-weight: 600; color: var(--navy);
  font-size: 0.95rem;
}
.contact-form .form-row label span[aria-hidden="true"] { color: var(--copper); }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid #cfd4dc;
  border-radius: 6px;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .form-row-split {
  flex-direction: row; gap: 1rem;
}
.contact-form .form-row-split > div { flex: 1; display: flex; flex-direction: column; gap: 0.35rem; }
@media (max-width: 520px) {
  .contact-form .form-row-split { flex-direction: column; }
}
.contact-form .form-check {
  flex-direction: row; align-items: flex-start; gap: 0.6rem;
}
.contact-form .form-check input { margin-top: 0.25rem; }
.contact-form .form-check label { font-weight: 400; font-size: 0.9rem; line-height: 1.5; }
.contact-form button[type="submit"] { align-self: flex-start; margin-top: 0.5rem; }
.contact-form .form-note { font-size: 0.85rem; color: #5a6470; margin: 0.6rem 0 0; }

.contact-aside { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  background: #fff;
  border: 1px solid #e3e6ec;
  border-left: 4px solid var(--copper);
  padding: 1.1rem 1.2rem;
  border-radius: 6px;
}
.contact-card h3 { margin: 0 0 0.4rem; font-size: 1.05rem; color: var(--navy); }
.contact-card p { margin: 0; line-height: 1.55; }
.contact-card small { color: #5a6470; display: inline-block; margin-top: 0.2rem; }
.contact-card.trust-card { border-left-color: var(--gold); background: var(--cream); }
.contact-card .big-link {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--copper);
  text-decoration: none;
}
.contact-card .big-link:hover { text-decoration: underline; }

.sitemap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 700px) {
  .sitemap-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
.sitemap-col h2 { margin-top: 0; }
.sitemap-col h2:not(:first-child) { margin-top: 2rem; }
.sitemap-col ul { list-style: none; padding-left: 0; }
.sitemap-col li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed #e0dfd8;
}
.sitemap-col li:last-child { border-bottom: none; }

.legal-copy h2 {
  margin-top: 2.2rem;
  padding-top: 0.5rem;
  border-top: 2px solid var(--gold);
}
.legal-copy h2:first-of-type { border-top: none; padding-top: 0; margin-top: 1.5rem; }
.legal-copy ul { padding-left: 1.4rem; }
.legal-copy li { margin-bottom: 0.5rem; line-height: 1.55; }

/* Two-column list used in footer "Areas We Cover" */
.site-footer ul.two-col {
  column-count: 2;
  column-gap: 1.2rem;
}
.site-footer ul.two-col li { break-inside: avoid; }

/* ============================================================
   Image rows and captioned figures for content pages
   ============================================================ */
.image-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin: 2rem 0 2.5rem;
}
.image-row figure {
  margin: 0;
  background: #fff;
  border: 1px solid #e3e6ec;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.image-row figure img {
  width: 100%;
  height: auto;
  display: block;
  background: linear-gradient(135deg, #f6f2ea 0%, #eee5d3 100%);
}
.image-row figure figcaption {
  padding: 0.7rem 0.9rem 0.8rem;
  font-size: 0.85rem;
  line-height: 1.45;
  color: #4a5361;
  font-weight: 500;
  border-top: 2px solid var(--copper);
  background: var(--cream);
}
@media (max-width: 780px) {
  .image-row { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
  .image-row figure:nth-child(3) { display: none; }
}
@media (max-width: 500px) {
  .image-row { grid-template-columns: 1fr; }
  .image-row figure:nth-child(3) { display: flex; }
}

.image-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin: 2rem 0 2.5rem;
}
.image-row-2 figure {
  margin: 0;
  background: #fff;
  border: 1px solid #e3e6ec;
  border-radius: 8px;
  overflow: hidden;
}
.image-row-2 figure img {
  width: 100%;
  height: auto;
  display: block;
  background: linear-gradient(135deg, #f6f2ea 0%, #eee5d3 100%);
}
.image-row-2 figure figcaption {
  padding: 0.7rem 0.9rem 0.8rem;
  font-size: 0.85rem;
  color: #4a5361;
  font-weight: 500;
  border-top: 2px solid var(--gold);
  background: var(--cream);
}
@media (max-width: 620px) {
  .image-row-2 { grid-template-columns: 1fr; }
}
