:root{
  /* palette drawn from the restaurant wordmark: deep indigo-navy + cream */
  --navy-deep:#0d1334;
  --navy-mid:#181f49;
  --navy-line:#333c6e;
  --cream:#f8f6f0;
  --cream-soft:#ece7d9;
  --paper:#fbf9f5;
  --wood:#4b5486;
  --wood-soft:#7d86ac;
  --rust:#0d1334;
  --rust-dark:#06081b;
  --gold:#f8f6f0;
  --ink:#12172c;
  --ink-soft:#4f5578;
  --on-navy:#f5f3ec;
  --on-navy-soft:#a9acc9;
  --shadow: 0 14px 34px -18px rgba(13,19,52,.45);
  --radius: 7px;
  --maxw: 1120px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
}

body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:"Work Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3,h4{
  font-family:"Fraunces", Georgia, "Times New Roman", serif;
  font-weight:600;
  color:var(--navy-deep);
  line-height:1.12;
  text-wrap:balance;
  margin:0;
}

p{ margin:0; }
a{ color:inherit; }
img{ max-width:100%; display:block; }
section{ position:relative; }

.wrap{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 clamp(1.25rem, 4vw, 2.5rem);
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.55em;
  font-size:.74rem;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gold);
}
.eyebrow::before{
  content:"";
  width:1.6em;
  height:2px;
  background:var(--gold);
  display:inline-block;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.6em;
  padding:.85em 1.6em;
  font-family:"Work Sans", sans-serif;
  font-weight:600;
  font-size:.98rem;
  text-decoration:none;
  border-radius:var(--radius);
  border:1.5px solid transparent;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn:focus-visible{ outline:3px solid var(--gold); outline-offset:2px; }
.btn-primary{
  background:var(--rust);
  color:#fff9f2;
  box-shadow: var(--shadow);
}
.btn-primary:hover{ background:var(--rust-dark); transform:translateY(-2px); }
.btn-ghost{
  background:transparent;
  color:var(--on-navy);
  border-color:rgba(238,243,245,.55);
}
.btn-ghost:hover{ border-color:var(--on-navy); background:rgba(238,243,245,.08); transform:translateY(-2px); }

/* ---------- Header ---------- */
header{
  position:fixed;
  inset:0 0 auto 0;
  z-index:100;
  background:rgba(13,19,52,0);
  border-bottom:1px solid transparent;
  transition:background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
header.scrolled{
  background:rgba(13,19,52,.94);
  border-color:rgba(255,255,255,.08);
  backdrop-filter:blur(6px);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:1.05rem clamp(1.25rem, 4vw, 2.5rem);
  max-width:var(--maxw);
  margin:0 auto;
}
.brand{
  display:flex;
  align-items:center;
  gap:.65rem;
  text-decoration:none;
  color:var(--on-navy);
}
.brand-logo{ height:30px; width:auto; display:block; }
.nav-links{
  display:flex;
  align-items:center;
  gap:2rem;
  list-style:none;
  margin:0;
  padding:0;
}
.nav-links a{
  text-decoration:none;
  font-size:.92rem;
  font-weight:500;
  color:var(--on-navy-soft);
  transition:color .15s ease;
}
.nav-links a:hover{ color:#fff; }
.nav-links a[aria-current="page"]{ color:#fff; }
.nav-cta{ display:flex; align-items:center; gap:.9rem; }
.nav-toggle{
  display:none;
  background:none;
  border:1.5px solid rgba(238,243,245,.5);
  border-radius:var(--radius);
  width:42px; height:38px;
  color:#fff;
  cursor:pointer;
}
@media (max-width: 900px){
  .nav-links{
    position:fixed;
    top:68px; left:0; right:0;
    background:var(--navy-deep);
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:.5rem 1.25rem 1.25rem;
    border-bottom:1px solid rgba(255,255,255,.08);
    transform:translateY(-8px);
    opacity:0;
    pointer-events:none;
    transition:opacity .18s ease, transform .18s ease;
  }
  .nav-links.open{ opacity:1; transform:translateY(0); pointer-events:auto; }
  .nav-links li{ width:100%; border-top:1px solid rgba(255,255,255,.07); }
  .nav-links a{ display:block; padding:.85rem 0; }
  .nav-cta .btn-ghost{ display:none; }
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }
}

#menu-toggle-icon-close{ display:none; }
.nav-toggle[aria-expanded="true"] #menu-toggle-icon-open{ display:none; }
.nav-toggle[aria-expanded="true"] #menu-toggle-icon-close{ display:block; }

/* ---------- Page hero (legal pages) ---------- */
.page-hero{
  background:linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  color:var(--on-navy);
  padding:calc(6.5rem + 3.5rem) 0 3.5rem;
}
.page-hero h1{
  color:#fff;
  font-size:clamp(2rem, 4vw, 2.9rem);
  margin-top:.7rem;
}
.page-hero .breadcrumb{
  margin-top:1rem;
  font-size:.85rem;
  color:var(--on-navy-soft);
}
.page-hero .breadcrumb a{ color:var(--on-navy-soft); text-decoration:none; }
.page-hero .breadcrumb a:hover{ color:#fff; text-decoration:underline; }

/* ---------- Legal content ---------- */
.legal-content{ padding:4rem 0 5.5rem; }
.legal-content .wrap{ max-width:780px; }
.legal-updated{
  display:inline-block;
  font-size:.8rem;
  color:var(--ink-soft);
  margin-bottom:.5rem;
}
.legal-content h2{
  font-size:1.4rem;
  margin:2.6rem 0 .9rem;
}
.legal-content h2:first-of-type{ margin-top:0; }
.legal-content p{ margin-bottom:1rem; color:var(--ink-soft); }
.legal-content ul{ margin:0 0 1rem 1.3rem; color:var(--ink-soft); }
.legal-content li{ margin-bottom:.5rem; }
.legal-content strong{ color:var(--ink); }
.legal-content a{ color:var(--navy-deep); font-weight:600; }
.legal-placeholder{
  background:var(--cream-soft);
  color:var(--navy-deep);
  padding:.05em .45em;
  border-radius:4px;
  font-weight:700;
  white-space:nowrap;
}

/* ---------- Footer ---------- */
footer{
  background:var(--navy-deep);
  color:var(--on-navy-soft);
  padding:3rem 0 2rem;
  border-top:4px solid var(--wood);
}
.footer-grid{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:2rem;
  flex-wrap:wrap;
  padding-bottom:2rem;
  border-bottom:1px solid rgba(238,243,245,.1);
}
.footer-brand{ display:flex; align-items:center; gap:.6rem; color:var(--cream); }
.footer-brand .brand-logo{ height:26px; }
.footer-social{ display:flex; gap:.8rem; }
.footer-social a{
  width:38px; height:38px;
  border-radius:50%;
  border:1px solid rgba(238,243,245,.25);
  display:flex; align-items:center; justify-content:center;
  text-decoration:none;
  color:var(--on-navy-soft);
  transition:border-color .15s ease, color .15s ease;
  position:relative;
}
.footer-social a:hover{ border-color:#fff; color:#fff; }
.footer-bottom{
  margin-top:1.6rem;
  display:flex;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
  font-size:.82rem;
}
.footer-bottom a{ text-decoration:none; color:var(--on-navy-soft); }
.footer-bottom a:hover{ color:#fff; }
.footer-legal{ display:flex; gap:1.4rem; flex-wrap:wrap; }
