/* site-chrome.css - header, nav, drawer and footer styling, extracted
 * from thesaltwaterrealtor/index.html's inline <style> on 2026-08-14.
 *
 * WHY: subpages carry the chrome MARKUP but the rules only ever existed
 * inline on the homepage, so the nav rendered as unstyled links. This
 * file is the shared copy. If you restyle the homepage header or footer,
 * re-run templates/tools/extract-site-chrome-css.py and bump the ?v= on
 * every page that links this file, or subpages keep the old look.
 *
 * Generated - do not hand-edit.
 */
:root {
    --navy: #0A1628;
    --navy-mid: #102341;
    --ocean: #0F4C75;
    --teal: #0D8B8B;
    --teal-light: #12A8A8;
    --brass: #C9A227;
    --brass-light: #E8BE4A;
    --cream: #F4EFE4;
    --cream-dark: #EAE3D4;
    --white: #FFFFFF;
    --text-dark: #0A1628;
    --text-mid: #2C3E50;
    --text-muted: #607080;
    --border: rgba(201,162,39,0.25);
  }
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    height: 72px;
    background: rgba(10,22,40,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,162,39,0.2);
    transition: background 0.3s;
  }
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }
nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
  }
nav ul a, nav ul summary {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
    cursor: pointer;
    list-style: none;
    padding: 0;
  }
nav ul summary::-webkit-details-marker { display: none; }
nav ul summary::after { content: ' ▾'; font-size: 9px; opacity: 0.6; margin-left: 3px; }
nav ul a:hover, nav ul summary:hover { color: var(--brass); }
nav ul details[open] > summary { color: var(--brass); }
nav .nav-dd { position: relative; }
nav .nav-dd-menu {
    display: block; position: absolute; top: calc(100% + 12px); left: -16px; min-width: 220px;
    background: rgba(10,22,40,0.98); backdrop-filter: blur(8px);
    border: 1px solid rgba(201,162,39,0.18); border-radius: 4px;
    padding: 10px 0; list-style: none; margin: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
nav .nav-dd-menu li { margin: 0; }
nav .nav-dd-menu a {
    display: block; padding: 10px 18px;
    color: rgba(255,255,255,0.78) !important;
    font-size: 12px; letter-spacing: 0.10em; text-transform: uppercase;
    text-decoration: none; transition: all .15s ease;
  }
nav .nav-dd-menu a:hover { color: var(--brass) !important; background: rgba(201,162,39,0.08); }
footer {
    background: #060D18;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }
.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,0.4);
  }
.footer-brand strong {
    color: rgba(255,255,255,0.7);
    font-weight: 600;
  }
.footer-legal {
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    text-align: right;
  }
nav { padding: 0 1.5rem; }
.social-strip, footer { padding: 1.5rem; }