/* ============================================================
   David Obadimeji — Private Chef & Chauffeur
   Design tokens
   Color:
     --ink:        #0d0d0c   deep black background
     --panel:      #14130f   raised panel background
     --panel-2:    #1a1812   lighter panel for contrast rows
     --gold:       #b28c54   brand accent (from print collateral)
     --gold-dim:   rgba(178,140,84,0.35)
     --ivory:      #f5efe3   headline/primary text
     --sand:       #cbbfa5   secondary text
     --stone:      #8c8578   tertiary / meta text
   Type:
     Display: 'Cormorant Garamond' (serif) — headlines, numerals, quotes
     Body:    'Jost' (sans) — nav, body copy, labels
   Layout:
     Asymmetric left-aligned hero (not centered-card default).
     Two unequal service panels rather than matching card grid.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --ink: #0d0d0c;
  --panel: #14130f;
  --panel-2: #1a1812;
  --gold: #b28c54;
  --gold-bright: #cca972;
  --gold-dim: rgba(178,140,84,0.35);
  --ivory: #f5efe3;
  --sand: #cbbfa5;
  --stone: #8c8578;
  --hair: rgba(178,140,84,0.22);
  --max: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--ivory);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 480px) {
  .wrap { padding: 0 20px; }
}

/* ---------- Focus visibility ---------- */
a:focus-visible, button:focus-visible {
  outline: 1.5px solid var(--gold-bright);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ---------- Header / Nav ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13,13,12,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hair);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 12px;
}

.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: 0.5px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-mark {
  height: 34px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.brand span { color: var(--gold); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .nav-row { height: 68px; }
  .brand { font-size: 17px; gap: 7px; }
  .brand-mark { height: 24px; }
  .nav-right { gap: 8px; }
  .nav-book {
    font-size: 10.5px;
    letter-spacing: 0.5px;
    padding: 8px 11px;
  }
  .nav-toggle { width: 34px; height: 34px; font-size: 15px; }
}

nav.primary ul {
  list-style: none;
  display: flex;
  gap: 34px;
}

nav.primary a {
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--sand);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

nav.primary a:hover,
nav.primary a[aria-current="page"] { color: var(--ivory); }

nav.primary a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--hair);
  color: var(--ivory);
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
}

.nav-book {
  font-size: 12.5px;
  letter-spacing: 1px;
  padding: 11px 20px;
  border: 1px solid var(--gold);
  color: var(--ivory);
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-book:hover { background: var(--gold); color: var(--ink); }

@media (max-width: 860px) {
  nav.primary {
    position: fixed;
    top: 84px; left: 0; right: 0;
    background: var(--panel);
    border-bottom: 1px solid var(--hair);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  nav.primary.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  nav.primary ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 40px 24px;
  }
  nav.primary li { border-bottom: 1px solid var(--hair); }
  nav.primary a { display: block; padding: 16px 0; }
  .nav-toggle { display: block; }
}

@media (max-width: 480px) {
  nav.primary { top: 68px; }
  nav.primary ul { padding: 8px 20px 20px; }
}

/* ---------- Footer ---------- */
footer.site {
  border-top: 1px solid var(--hair);
  padding: 64px 0 40px;
  margin-top: 120px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
}

.footer-grid h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--ivory);
  margin-bottom: 16px;
}

.footer-grid p, .footer-grid a {
  font-size: 14px;
  color: var(--sand);
  display: block;
  margin-bottom: 8px;
}

.footer-grid a:hover { color: var(--gold-bright); }

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--hair);
  font-size: 12px;
  color: var(--stone);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 15px 28px;
  border: 1px solid var(--gold);
  color: var(--ivory);
  transition: background 0.2s ease, color 0.2s ease;
}

.btn:hover { background: var(--gold); color: var(--ink); }

.btn.solid {
  background: var(--gold);
  color: var(--ink);
}

.btn.solid:hover { background: var(--gold-bright); }

.btn.quiet {
  border-color: var(--hair);
  color: var(--sand);
}
.btn.quiet:hover { border-color: var(--gold); color: var(--ivory); background: transparent; }

/* ---------- Page hero shared ---------- */
.page-hero {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--hair);
}

.kicker {
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 18px;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
  max-width: 780px;
  color: var(--ivory);
}

.page-hero .lede {
  margin-top: 20px;
  max-width: 620px;
  font-size: 17px;
  color: var(--sand);
}

section { padding: 80px 0; }
section.tight { padding: 56px 0; }

.divider {
  width: 64px;
  height: 1px;
  background: var(--gold);
}

/* ---------- Utility ---------- */
.eyebrow {
  font-size: 12px;
  letter-spacing: 2.5px;
  color: var(--gold);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; }
}
