.custom-header{

    --navy:#1a1f2e;
    --navy-light:#252c3d;
    --gold:#b8965a;
    --gold-light:#d4af7a;
    --gold-pale:#f0e4cc;
    --cream:#faf7f2;
    --white:#ffffff;
    --gray:#6b7280;
    --gray-light:#e8e2d9;

    --font-serif:'Playfair Display', Georgia, serif;
    --font-sans:'Lato', sans-serif;

    font-family:var(--font-sans);
}


/* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(8px);
    padding: 0 6vw; display: flex; align-items: center; justify-content: space-between;
    height: 100px; border-bottom: 3px solid #3b2314;
  }
  .nav-logo { text-decoration: none; display: flex; align-items: center; }
  .nav-logo-img { height: 88px; width: auto; }
  .nav-phone { font-size: 0.85rem; font-weight: 700; color: var(--navy); text-decoration: none; display: flex; align-items: center; gap: 8px; }
  .nav-cta { background: var(--gold); color: var(--white); font-family: var(--font-sans); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; padding: 10px 22px; border-radius: 2px; transition: background 0.25s; }
  .nav-cta:hover { background: var(--gold-light); }
  @media (max-width: 600px) { .nav-cta { display: none; } }