:root {
  --navy: #10233d;
  --navy-light: #1c3a5e;
  --cream: #faf6ee;
  --sand: #f1e7d2;
  --gold: #d1a441;
  --coral: #c1483b;
  --text: #1f2a33;
  --muted: #5c6b75;
  --border: #e4dcc9;
  --shadow: 0 10px 30px rgba(16, 35, 61, 0.12);
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  margin: 0 0 0.5em;
}

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

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: #fff;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links > a {
  color: #eef2f6;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.nav-links > a:hover,
.nav-links > a.active {
  color: var(--gold);
  border-color: var(--gold);
}

.nav-dropdown { position: relative; }

.nav-dropdown-label {
  color: #eef2f6;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 8px 0;
  display: inline-block;
}

.nav-dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 8px;
  min-width: 190px;
  display: none;
  flex-direction: column;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  display: flex;
}

.nav-dropdown-panel a {
  color: var(--navy);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.92rem;
}

.nav-dropdown-panel a:hover,
.nav-dropdown-panel a.active {
  background: var(--sand);
  color: var(--coral);
}

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 999px;
  border-bottom: none !important;
}

.nav-cta:hover { background: #e2b558; }

.nav-toggle, .nav-burger { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: #e2b558; box-shadow: var(--shadow); transform: translateY(-1px); }

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.65);
  color: #fff;
}
.btn-outline:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); }

.btn-coral { background: var(--coral); color: #fff; }
.btn-coral:hover { background: #a83b30; }

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(circle at 20% 20%, var(--navy-light), var(--navy) 65%);
  color: #fff;
  padding: 90px 0 70px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(209, 164, 65, 0.18);
  color: var(--gold);
  border: 1px solid rgba(209, 164, 65, 0.4);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 18px;
}

.hero p.lede {
  max-width: 640px;
  margin: 0 auto 32px;
  color: #d7e0ea;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Showcase photo strip ---------- */
.showcase {
  margin: -40px auto 0;
  max-width: 1040px;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.showcase img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section-alt { background: #fff; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.section-head p { color: var(--muted); }

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.two-col img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(16, 35, 61, 0.08);
  border: 1px solid var(--border);
  transition: transform 0.15s, box-shadow 0.15s;
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.card-media {
  height: 150px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-media img { width: 100%; height: 100%; object-fit: cover; }

.card-body { padding: 18px 20px 22px; }

.card-body h3 { font-size: 1.15rem; margin-bottom: 6px; }
.card-body .price { color: var(--coral); font-weight: 600; }
.card-body p { color: var(--muted); font-size: 0.94rem; margin: 6px 0 0; }

/* ---------- Menu pages ---------- */
.menu-intro { text-align: center; max-width: 680px; margin: 0 auto 48px; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
}

.menu-category h3 {
  border-bottom: 2px solid var(--gold);
  padding-bottom: 10px;
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.menu-category .note {
  color: var(--muted);
  font-size: 0.85rem;
  font-style: italic;
  margin: -10px 0 14px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
}

.menu-item:last-child { border-bottom: none; }

.menu-item-name { font-weight: 600; color: var(--navy); }
.menu-item-desc { display: block; font-weight: 400; color: var(--muted); font-size: 0.88rem; margin-top: 2px; }
.menu-item-price { color: var(--coral); font-weight: 600; white-space: nowrap; }

.menu-category { margin-bottom: 8px; }

/* ---------- Catering pricing table ---------- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 0.94rem;
}

.pricing-table th {
  background: var(--navy);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table td:last-child { text-align: right; color: var(--coral); font-weight: 600; white-space: nowrap; }

/* ---------- Info blocks (directions / contact) ---------- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.info-card h3 { margin-top: 0; }
.info-card .lead-icon { font-size: 1.6rem; }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 0;
}

.map-embed iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

.hours-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sand);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--coral), #a83b30);
  color: #fff;
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
}

.cta-banner h2 { color: #fff; }
.cta-banner p { color: #ffe3df; max-width: 560px; margin: 0 auto 26px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #cfd9e3; padding: 56px 0 0; }

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col h3 {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.footer-col p { margin: 0 0 8px; font-size: 0.92rem; }
.footer-col a:hover { color: var(--gold); }

.social-links { display: flex; flex-direction: column; gap: 6px; }

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.82rem;
  color: #91a0ae;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .two-col, .info-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav-burger {
    display: block;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
  }

  .nav-toggle { display: none; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 24px 20px;
    gap: 10px;
    display: none;
  }

  .nav-toggle:checked ~ .nav-links { display: flex; }

  .nav-dropdown-panel {
    position: static;
    box-shadow: none;
    background: transparent;
    padding: 0 0 0 12px;
  }

  .nav-dropdown:hover .nav-dropdown-panel { display: none; }
  .nav-toggle:checked ~ .nav-links .nav-dropdown .nav-dropdown-panel { display: flex; }

  .nav-cta { align-self: flex-start; }

  .footer-inner { grid-template-columns: 1fr; }
}
