  /* ── SHARED BASE — loaded before each page stylesheet ── */
  :root {
    --green: #1a7a2e;
    --green-light: #2ca84a;
    --green-dark: #0f4d1c;
    --red: #c0272d;
    --red-dark: #8b1a1e;
    --cream: #fdf6e3;
    --gold: #f5c842;
    --text-dark: #1a1a1a;
    --text-mid: #3d3d3d;
    --nav-h: 64px;
    --space-section: clamp(3.5rem, 8vw, 6rem);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Libre Baskerville', Georgia, serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: var(--nav-h);
    box-shadow: 0 2px 16px rgba(0,0,0,.4);
  }

  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(.7rem, 2.5vw, 1.3rem);
    color: var(--gold);
    letter-spacing: .05em;
    text-decoration: none;
  }

  .nav-logo span { color: #fff; font-weight: 400; }

  nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  nav ul a {
    color: #e8ffe0;
    text-decoration: none;
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color .2s;
  }

  nav ul a:hover { color: var(--gold); }

  .nav-dropdown-btn {
    background: var(--red);
    color: #fff;
    font-family: 'Libre Baskerville', serif;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    user-select: none;
    padding: .5rem 1.1rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background .2s;
  }

  .nav-dropdown-btn:hover { background: var(--red-dark); }

  /* ── HAMBURGER + MOBILE MENU ── */
  .nav-right { display: flex; align-items: center; gap: .8rem; }

  .nav-hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.4rem;
    cursor: pointer;
    padding: .2rem .4rem;
    flex-shrink: 0;
  }

  .nav-mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--green-dark);
    flex-direction: column;
    z-index: 99;
    border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }

  .nav-mobile-menu.open { display: flex; }

  .nav-mobile-menu a {
    color: var(--gold);
    text-decoration: none;
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: background .15s;
  }

  .nav-mobile-menu a:last-child { border-bottom: none; }
  .nav-mobile-menu a:hover { background: rgba(255,255,255,.06); }

  .mobile-order-link { color: #FF3008 !important; font-weight: 700; }

  /* ── BUTTONS ── */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    border-radius: 4px;
    font-family: 'Libre Baskerville', serif;
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform .15s, box-shadow .15s;
  }

  .btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.3); }

  .btn-green { background: var(--green); color: #fff; }

  .btn-red { background: var(--red); color: #fff; }

  .btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.6);
  }

  .btn-outline:hover { border-color: #fff; }

  /* ── SECTION SHARED ── */
  .section-label {
    font-family: 'Dancing Script', cursive;
    font-size: 1.3rem;
    color: var(--green);
    margin-bottom: .3rem;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--text-dark);
  }

  .section-title .accent { color: var(--red); }

  .divider {
    width: 60px;
    height: 4px;
    background: var(--green);
    margin: 1.2rem 0 2rem;
    border-radius: 2px;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--green-dark);
    color: #b8d9b0;
    text-align: center;
    padding: 2.5rem 1.5rem;
    font-size: .82rem;
    letter-spacing: .04em;
  }

  .footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
  }

  .footer-links a {
    color: var(--gold);
    text-decoration: none;
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color .2s;
  }

  .footer-links a:hover { color: #fff; }

  /* ── FOCUS / ADA ── */
  :focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
  }

  .skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--green-dark);
    color: var(--gold);
    padding: .6rem 1.2rem;
    border-radius: 0 0 6px 6px;
    font-size: .85rem;
    font-weight: 700;
    text-decoration: none;
    z-index: 9999;
    transition: top .2s;
  }

  .skip-link:focus { top: 0; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }

  /* ── RESPONSIVE NAV ── */
  @media (max-width: 900px) {
    nav ul { display: none; }
    .nav-hamburger { display: flex; }
  }

  @media (max-width: 480px) {
    nav { padding: 0 1rem; }
    .btn { padding: .7rem 1.4rem; font-size: .85rem; }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: .8rem; }
    footer { font-size: .78rem; padding: 1.5rem 1rem; }
  }
