:root {
  --navy: #152238;
  --navy-light: #24365a;
  --crimson: #8B1A1A;
  --gold: #B08D57;
  --off-white: #FAF8F5;
  --white: #FFFFFF;
  --ink: #1c1c1c;
  --max-width: 1120px;
  --radius: 10px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 16px;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 16px; }

a { color: var(--crimson); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  z-index: 100;
}
.skip-link:focus { left: 0; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--crimson);
  margin: 0 0 10px;
}
.eyebrow-light { color: var(--gold); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid #eee;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
.brand-logo { height: 56px; width: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}
.site-nav a:hover { color: var(--crimson); }
.nav-cta {
  background: var(--crimson);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--navy); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--crimson);
  color: var(--white);
}
.btn-primary:hover { background: var(--navy); }
.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-block { display: block; text-align: center; margin-bottom: 14px; }

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
  border-bottom: 3px solid var(--gold);
  padding: 72px 0;
  text-align: center;
}
.hero-sub {
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 1.15rem;
  color: #444;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sections */
.section { padding: 72px 0; }
.section-alt { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.about-highlights {
  display: grid;
  gap: 16px;
}
.highlight-card {
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.highlight-card h3 { margin-bottom: 6px; font-size: 1.05rem; }
.highlight-card p { margin: 0; color: #555; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.service-card {
  background: var(--white);
  border: 1px solid #e6e1d8;
  border-top: 4px solid var(--navy);
  border-radius: var(--radius);
  padding: 26px;
}
.service-card p { color: #555; }
.service-card .price {
  color: var(--crimson);
  font-weight: 700;
  margin-bottom: 0;
}
.service-card .price span { color: #777; font-weight: 400; }
.services-note {
  margin-top: 32px;
  font-size: 0.95rem;
  color: #666;
  text-align: center;
}

/* Service area band */
.area-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
}
.area-band h2 { color: var(--white); }
.area-band p { color: #d6dbe4; max-width: 640px; margin: 0 auto; }

/* Chef */
.chef-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.chef-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}
.chef-logo { max-width: 260px; margin: 0 auto; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.contact-card {
  background: var(--white);
  border: 1px solid #e6e1d8;
  border-radius: var(--radius);
  padding: 32px;
}
.contact-note {
  text-align: center;
  color: #666;
  margin: 0;
  font-size: 0.9rem;
}

/* Footer */
.site-footer {
  background: #0e1626;
  color: #cbd2e0;
  padding: 48px 0;
  text-align: center;
}
.footer-logo { max-width: 220px; margin: 0 auto 20px; }
.footer-links a { color: var(--gold); text-decoration: none; }
.footer-copyright { font-size: 0.85rem; color: #7c869c; margin-top: 20px; }

/* Responsive */
@media (max-width: 860px) {
  .about-grid, .chef-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .chef-grid { text-align: center; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 18px;
    border-bottom: 1px solid #eee;
    display: none;
  }
  .site-nav.open { display: flex; }
  .nav-cta { align-self: flex-start; }
}
