:root {
    --navy: #1e4d6b;
    --navy-deep: #143548;
    --navy-light: #e8eef3;
    --green: #7cb342;
    --green-hover: #689f38;
    --green-soft: #f1f7e8;
    --accent-red: #c0392b;
    --cream: #faf7f2;
    --cream-deep: #f3ede2;
    --paper: #ffffff;
    --ink: #1a1a1a;
    --ink-soft: #4a4a4a;
    --ink-mute: #8a8a8a;
    --border: #e8e2d6;
    --border-strong: #d0ccc4;
    --gold: #c89b3c;
    --gold-light: #fdf3d4;
    --star: #f5b301;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--cream);
    font-family: 'Manrope', -apple-system, sans-serif;
    color: var(--ink);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; display: block; }
  a { color: var(--navy); text-decoration: none; }

  .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
  }
  @media (max-width: 640px) {
    .container { padding: 0 20px; }
  }

  /* ============ TOP UTILITY BAR ============ */
  .utility-bar {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    padding: 10px 0;
  }
  .utility-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .utility-bar .nat-cov {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 11.5px;
  }
  .utility-bar .nat-cov::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(124,179,66,0.3);
  }
  .utility-contacts {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .utility-contacts a {
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
  }
  .utility-contacts a:hover { color: var(--green); }

  /* Free Assessment button for mobile utility bar (hidden on desktop).
     Higher-specificity selector needed to beat `.utility-contacts a`. */
  .utility-contacts .utility-cta { display: none; }

  @media (max-width: 640px) {
    /* Stack utility bar: NATIONAL COVERAGE centred on top,
       then WhatsApp + Phone + Free Assessment centred below */
    .utility-inner {
      flex-direction: column;
      justify-content: center;
      gap: 10px;
    }
    .utility-contacts {
      flex-wrap: wrap;
      justify-content: center;
      gap: 14px;
    }
    /* Show the smaller Free Assessment button next to the phone */
    .utility-contacts .utility-cta {
      display: inline-flex;
      align-items: center;
      background: var(--green);
      color: white;
      padding: 5px 12px;
      border-radius: 6px;
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: background 0.15s;
    }
    .utility-contacts .utility-cta:hover {
      background: var(--green-hover);
      color: white;
    }
    /* Hide the original header CTA on mobile (replaced by the utility-bar one) */
    .header-cta { display: none; }
    /* Centre the logo; burger sits top-right via absolute positioning so
       it doesn't disrupt the flex-based centring of the logo */
    .header-inner {
      justify-content: center !important;
      position: relative;
    }
    .menu-toggle {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
    }
  }

  /* ============ MAIN HEADER ============ */
  .site-header {
    background: var(--paper);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 32px;
    gap: 32px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
  }
  .logo img {
    max-height: 66px;
    width: auto;
    height: auto;
  }
  .logo-mark {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }
  .logo-text {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    color: var(--navy-deep);
    font-size: 22px;
    letter-spacing: 0.03em;
    line-height: 1;
  }
  .logo-tagline {
    font-size: 9.5px;
    letter-spacing: 0.22em;
    color: var(--ink-mute);
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 4px;
    display: block;
  }
  .nav-main {
    display: flex;
    gap: 4px;
    list-style: none;
    align-items: center;
  }
  .nav-main a {
    color: var(--ink-soft);
    font-weight: 600;
    font-size: 14.5px;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.15s;
    position: relative;
  }
  .nav-main a:hover {
    color: var(--navy-deep);
    background: var(--navy-light);
  }
  .nav-main a.active { color: var(--navy-deep); }
  .nav-main a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px; height: 4px;
    background: var(--green);
    border-radius: 50%;
  }
  .header-cta {
    background: var(--green);
    color: white;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.15s;
    white-space: nowrap;
  }
  .header-cta:hover {
    background: var(--green-hover);
    color: white;
    transform: translateY(-1px);
  }

  /* Mobile menu toggle (hamburger button) */
  .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 9px;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.15s;
  }
  .menu-toggle:hover { background: var(--navy-light); }
  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy-deep);
    border-radius: 2px;
    transition: all 0.25s ease;
    transform-origin: center;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (max-width: 980px) {
    /* Hide the inline nav; show the burger button */
    .nav-main { display: none; }
    .menu-toggle { display: flex; }

    /* When menu is open, show nav as a full-width dropdown below header */
    .site-header.menu-open .nav-main {
      display: flex;
      flex-direction: column;
      gap: 0;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--paper);
      padding: 8px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 12px 24px rgba(20,53,72,0.08);
    }
    .site-header.menu-open .nav-main li { width: 100%; }
    .site-header.menu-open .nav-main a {
      display: block;
      padding: 14px 32px;
      border-radius: 0;
      font-size: 15px;
    }
    .site-header.menu-open .nav-main a.active::after { display: none; }
  }

 /* ============ SECTION COMMONS ============ */
  section.block { padding: 88px 0; }
  @media (max-width: 760px) { section.block { padding: 60px 0; } }
  .section-head {
    text-align: center;
    margin-bottom: 56px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }
  .section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 16px;
    display: inline-block;
  }
  .section-eyebrow::before,
  .section-eyebrow::after {
    content: '—';
    margin: 0 10px;
    color: var(--border-strong);
  }
  .section-title {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: clamp(28px, 3.6vw, 42px);
    line-height: 1.1;
    color: var(--navy-deep);
    letter-spacing: -0.015em;
    margin-bottom: 16px;
  }
  .section-title em {
    font-style: italic;
    color: var(--green);
  }
  .section-lead {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.55;
  }


  /* ============ TESTIMONIALS ============ */
  .test-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  @media (max-width: 800px) {
    .test-grid { grid-template-columns: 1fr; }
  }
  .testimonial {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px;
    position: relative;
  }
  .test-quote-mark {
    font-family: 'Fraunces', serif;
    font-size: 80px;
    color: var(--navy-light);
    line-height: 0.7;
    position: absolute;
    top: 22px;
    right: 28px;
    font-weight: 700;
  }
  .test-stars {
    color: var(--star);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 14px;
  }
  .test-quote {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 19px;
    line-height: 1.5;
    color: var(--navy-deep);
    margin-bottom: 24px;
    letter-spacing: -0.005em;
    position: relative;
  }
  .test-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }
  .test-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 17px;
    flex-shrink: 0;
  }
  .test-name { font-weight: 700; color: var(--navy-deep); font-size: 15px; }
  .test-loc { font-size: 13px; color: var(--ink-mute); }
  .test-author-text { flex: 1; min-width: 0; }
  .test-photo {
    /*width: 72px;
    height: 72px;
    border-radius: 50%;*/
    margin-left: auto;
    flex-shrink: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    background: repeating-linear-gradient(45deg, var(--navy-light), var(--navy-light) 8px, var(--cream-deep) 8px, var(--cream-deep) 16px);
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
  }
  .test-photo-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--navy);
    text-transform: uppercase;
    background: rgba(255,255,255,0.9);
    padding: 3px 7px;
    border-radius: 3px;
  }
  .test-cta { text-align: center; margin-top: 40px; }
  .test-cta a {
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 2px solid var(--green);
    padding-bottom: 3px;
  }

  /* ============ MANUFACTURERS ============ */
  .makers-section {
    background: var(--cream-deep);
    padding: 64px 0;
  }
  .makers-title {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 36px;
  }
  .makers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
    align-items: center;
  }
  @media (max-width: 880px) {
    .makers-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
	  	.test-photo {
		width: 72px;
		height: 72px;
		border-radius: 50%;
	  }
  }
  @media (max-width: 480px) {
    .makers-grid { grid-template-columns: repeat(2, 1fr); }
  }
  .maker {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 17px;
    color: var(--ink-mute);
    text-align: center;
    padding: 12px;
    letter-spacing: 0.02em;
    transition: color 0.15s;
    cursor: pointer;
  }
  .maker:hover { color: var(--navy-deep); }
  .maker small {
    display: block;
    font-size: 9.5px;
    font-family: 'Manrope', sans-serif;
    letter-spacing: 0.15em;
    margin-top: 2px;
    font-weight: 700;
  }

  /* ============ FOOTER ============ */
  .site-footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.75);
    padding: 64px 0 32px;
    font-size: 14px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  @media (max-width: 880px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  }
  @media (max-width: 540px) {
    .footer-grid { grid-template-columns: 1fr; }
  }
  .footer-col h4 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    color: white;
    font-size: 16px;
    margin-bottom: 18px;
    letter-spacing: -0.005em;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a { color: rgba(255,255,255,0.7); transition: color 0.15s; }
  .footer-col a:hover { color: var(--green); }
  .footer-logo {
    font-family: 'Fraunces', serif;
    color: white;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 14px;
  }
  .footer-about {
    line-height: 1.55;
    margin-bottom: 18px;
    font-size: 13.5px;
  }
  .footer-bhta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .footer-bhta::before { content: '✓'; color: var(--green); font-weight: 700; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
  }
  .footer-bottom a { color: rgba(255,255,255,0.6); margin-left: 16px; }
  .footer-bottom a:hover { color: white; }