:root {
      --night: #1a120d;
      --coffee: #241811;
      --walnut: #3a2619;
      --cedar: #553923;
      --bark: #725033;
      --copper: #b97736;
      --copper-light: #d69a56;
      --ember: #f0b768;
      --paper: #f3eadc;
      --paper-deep: #e8d8bf;
      --cream: #fff7ea;
      --ink: #25180f;
      --muted: #77604c;
      --soft: #b99f82;
      --line: rgba(255, 236, 204, 0.18);
      --line-dark: rgba(58, 38, 25, 0.18);
      --shadow: 0 16px 42px rgba(0,0,0,.28);
      --shadow-soft: 0 7px 24px rgba(42, 25, 15, .14);
      --radius: 10px;
      --max: 1120px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Source Sans 3', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      color: var(--paper);
      background:
        radial-gradient(circle at top left, rgba(185,119,54,.22), transparent 32rem),
        linear-gradient(180deg, #1a120d 0%, #241811 40%, #1a120d 100%);
      line-height: 1.55;
      font-size: 16px;
    }
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .08;
      background-image:
        linear-gradient(45deg, rgba(255,255,255,.6) 1px, transparent 1px),
        linear-gradient(-45deg, rgba(255,255,255,.45) 1px, transparent 1px);
      background-size: 38px 38px, 53px 53px;
      mix-blend-mode: screen;
      z-index: 0;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    h1, h2, h3, h4 { font-family: 'Libre Baskerville', Georgia, serif; line-height: 1.16; }
    .site-shell { position: relative; z-index: 1; }

    .top-strip {
      background: #120c08;
      border-bottom: 1px solid var(--line);
      color: var(--soft);
      font-size: .78rem;
    }
    .top-strip-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 5px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      text-align: center;
    }
    .top-strip strong { color: var(--ember); }
    .service-alert {
      background: linear-gradient(180deg, rgba(58,38,25,.96), rgba(36,24,17,.98));
      border-bottom: 1px solid rgba(240,183,104,.24);
      color: var(--paper-deep);
      font-size: .91rem;
    }
    .service-alert-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 10px 20px;
      text-align: center;
    }
    .service-alert strong { color: var(--ember); }


    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: #17100b;
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--line);
      box-shadow: 0 6px 24px rgba(0,0,0,.25);
    }
    .nav-inner {
      max-width: var(--max);
      margin: 0 auto;
      min-height: 70px;
      padding: 0 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .brand { display: flex; align-items: center; gap: 12px; }
    .brand img { width: 46px; height: 46px; border-radius: 6px; object-fit: cover; }
    .brand-name { font-family: 'Libre Baskerville', Georgia, serif; font-size: 1rem; font-weight: 700; color: var(--ember); display: block; }
    .brand-tag { font-size: .7rem; color: var(--soft); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; display: block; }
    .nav-links { list-style: none; display: flex; gap: 4px; align-items: center; }
    .nav-links a { padding: 6px 12px; border-radius: 6px; font-size: .88rem; font-weight: 700; color: var(--soft); transition: color .15s, background .15s; }
    .nav-links a:hover { color: var(--cream); background: rgba(255,236,204,.07); }
    .nav-book { background: var(--ember) !important; color: var(--ink) !important; padding: 7px 16px !important; border-radius: 7px !important; }
    .hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
    .hamburger span { display: block; width: 22px; height: 2px; background: var(--paper); border-radius: 2px; }
    .mobile-menu { display: none; flex-direction: column; background: #17100b; border-top: 1px solid var(--line); padding: 12px 20px 18px; gap: 4px; }
    .mobile-menu a { padding: 10px 12px; border-radius: 7px; font-weight: 700; color: var(--soft); font-size: .95rem; }
    .mobile-menu a:hover { background: rgba(255,236,204,.07); color: var(--cream); }
    .mobile-menu.open { display: flex; }
    @media(max-width:780px) { .nav-links { display: none; } .hamburger { display: flex; } }

    /* Page layout */
    .page-header {
      padding: 64px 20px 48px;
      text-align: center;
      max-width: var(--max);
      margin: 0 auto;
    }
    .section-label {
      font-size: .75rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--copper);
      margin-bottom: 10px;
    }
    .page-header h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: var(--cream); margin-bottom: 16px; }
    .page-header p { color: var(--soft); font-size: 1.05rem; max-width: 640px; margin: 0 auto; }

    .areas-wrap {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 20px 72px;
    }

    .areas-group { margin-bottom: 44px; }
    .areas-group h2 {
      font-size: 1.15rem;
      color: var(--ember);
      border-bottom: 1px solid var(--line);
      padding-bottom: 10px;
      margin-bottom: 18px;
    }
    .areas-list {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
      gap: 10px;
    }
    .area-item {
      background: rgba(255,236,204,.04);
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 11px 15px;
      font-size: .93rem;
      color: var(--paper-deep);
      font-weight: 600;
    }

    .soft-boundary {
      background: rgba(185,119,54,.08);
      border: 1px solid var(--copper);
      border-radius: 10px;
      padding: 20px 24px;
      margin-bottom: 44px;
      color: var(--paper-deep);
      font-size: .95rem;
      line-height: 1.6;
    }
    .soft-boundary strong { color: var(--ember); }

    .cta-strip {
      text-align: center;
      padding: 20px 20px 0;
    }
    .btn {
      display: inline-block;
      padding: 13px 28px;
      border-radius: 8px;
      font-weight: 800;
      font-size: .97rem;
      cursor: pointer;
      transition: opacity .15s, transform .12s;
    }
    .btn:hover { opacity: .88; transform: translateY(-1px); }
    .btn-primary { background: var(--ember); color: var(--ink); }

    footer {
      background: #120c08;
      border-top: 1px solid var(--line);
      padding: 48px 20px 28px;
    }
    .footer-inner { max-width: var(--max); margin: 0 auto; }
    .footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
    .footer-brand { font-family: 'Libre Baskerville', Georgia, serif; font-size: 1.05rem; color: var(--ember); margin-bottom: 8px; }
    .footer-top p { color: var(--soft); font-size: .88rem; line-height: 1.6; }
    .footer-col h4 { font-size: .75rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; color: var(--copper); margin-bottom: 12px; }
    .footer-col a { display: block; color: var(--soft); font-size: .88rem; margin-bottom: 6px; }
    .footer-col a:hover { color: var(--cream); }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; border-top: 1px solid var(--line); padding-top: 20px; color: var(--muted); font-size: .8rem; }
    .footer-legal { display: flex; gap: 16px; }
    .footer-legal a { color: var(--muted); }
    .footer-legal a:hover { color: var(--soft); }
    .disclaimer { margin-top: 16px; color: var(--muted); font-size: .75rem; }
    @media(max-width:640px) { .footer-top { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; align-items: flex-start; } }

    .skip-link {
      position: fixed;
      top: -60px;
      left: 20px;
      background: var(--ember);
      color: var(--ink);
      padding: 10px 18px;
      border-radius: 0 0 8px 8px;
      font-size: .88rem;
      font-weight: 900;
      z-index: 9999;
      opacity: 0;
      pointer-events: none;
      transition: transform .12s ease, opacity .12s ease;
    }
    .skip-link:focus { transform: translateY(60px); opacity: 1; pointer-events: auto; outline: 2px solid var(--cream); }
