/* styles.css — shared across index.html, about.html, services.html,
   small-business-help.html, and audit.html. Extracted from what was
   previously duplicated inline in every page's <style> block: CSS
   variables, reset, base typography, nav (incl. dropdown + mobile
   toggle), and the shared footer layout. Page-specific styling stays
   in each page's own <style> block. */

/* ── Reset & Base ─────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
      --sage:  #9BB19B;
      --rust:  #B85C38;
      --blush: #E4A49C;
      --cream: #F4EFE6;
      --deep:  #1E1510;
      --white: #FFFFFF;
      --sage-dark: #7A9B7A;
      --cream-dark: #EAE2D6;
    }

html { scroll-behavior: smooth; }

body {
      font-family: 'Jost', sans-serif;
      font-weight: 400;
      color: var(--deep);
      background: var(--cream);
      font-size: 17px;
      line-height: 1.7;
    }

h1, h2, h3, h4 {
      font-family: 'Fraunces', serif;
      font-weight: 400;
      font-optical-sizing: auto;
      line-height: 1.2;
    }

a { color: inherit; text-decoration: none; }

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

/* ── Navigation ───────────────────────────────────────────── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--cream);
      border-bottom: 1px solid rgba(30,21,16,0.1);
      padding: 0 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

.nav-logo {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }

.nav-logo-primary {
      font-family: 'Fraunces', serif;
      font-size: 22px;
      font-weight: 500;
      color: var(--deep);
      letter-spacing: 0.01em;
    }

.nav-logo-sub {
      font-family: 'Jost', sans-serif;
      font-size: 9px;
      font-weight: 400;
      letter-spacing: 0.25em;
      color: var(--rust);
      text-transform: uppercase;
      margin-top: 2px;
    }

.nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
    }

.nav-links a {
      font-family: 'Jost', sans-serif;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--deep);
      opacity: 0.7;
      transition: opacity 0.2s;
    }

.nav-links a:hover { opacity: 1; }

.nav-cta {
      background: var(--rust);
      color: var(--cream) !important;
      opacity: 1 !important;
      padding: 10px 24px;
      border-radius: 2px;
      transition: background 0.2s !important;
    }

.nav-cta:hover { background: #9A4A2B !important; }

/* ── Nav Dropdown ─────────────────────────────────────────── */
    .nav-dropdown { position: relative; }

.nav-dropdown-trigger {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-family: 'Jost', sans-serif;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--deep);
      opacity: 0.7;
      cursor: default;
      transition: opacity 0.2s;
    }

.nav-dropdown-trigger::after {
      content: '';
      width: 5px;
      height: 5px;
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      transform: rotate(45deg);
      margin-top: -3px;
      opacity: 0.7;
    }

.nav-dropdown:hover .nav-dropdown-trigger,
    .nav-dropdown.active .nav-dropdown-trigger,
    .nav-dropdown:focus-within .nav-dropdown-trigger { opacity: 1; }

.nav-dropdown-menu {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%) translateY(4px);
      background: var(--cream);
      border: 1px solid rgba(30,21,16,0.1);
      border-radius: 2px;
      box-shadow: 0 12px 32px rgba(30,21,16,0.12);
      list-style: none;
      min-width: 170px;
      padding: 20px 8px 8px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
    }

@media (min-width: 601px) {
      .nav-dropdown:hover .nav-dropdown-menu,
      .nav-dropdown:focus-within .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
      }
    }

.nav-dropdown-menu li a {
      display: block;
      padding: 10px 14px;
      border-radius: 2px;
      font-size: 12px;
      opacity: 0.75;
      white-space: nowrap;
    }

.nav-dropdown-menu li a:hover,
    .nav-dropdown-menu li a.active {
      opacity: 1;
      background: rgba(30,21,16,0.05);
    }

/* ── Mobile Nav Toggle ────────────────────────────────────── */
    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 32px;
      height: 32px;
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
      z-index: 101;
    }

.nav-toggle span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--deep);
      transition: transform 0.25s ease, opacity 0.2s ease;
    }

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }

.nav-toggle.open span:nth-child(2) { opacity: 0; }

.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.footer-inner {
      max-width: 1080px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
