@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --background:#efe2d5;
  --surface:#fbf4ec;
  --burgundy:#5a170f;
  --burgundy-light:#762017;
  --text:#2e201b;
  --muted:#73584d;
  --line:rgba(90,23,15,.18);
  --shadow:0 18px 45px rgba(46,32,27,.10);
  --radius:24px;
  --max-width:1120px;
}

* { box-sizing:border-box; }

body {
  margin:0;
  font-family:"Inter", sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,249,241,.7), transparent 32rem),
    linear-gradient(180deg,#f6ede4 0%,var(--background) 100%);
  line-height:1.6;
}

a { color:inherit; text-decoration:none; }
p { margin-top:0; }

h1, h2, h3 {
  font-family:"Cormorant Garamond", serif;
  color:var(--burgundy);
  font-weight:600;
  letter-spacing:-.035em;
}

h1 {
  margin:0 0 18px;
  font-size:clamp(3.4rem,9vw,6.7rem);
  line-height:.92;
}

h2 {
  margin:0 0 14px;
  font-size:clamp(2.2rem,4vw,3.45rem);
  line-height:1;
}

h3 {
  margin:0 0 10px;
  font-size:1.55rem;
  line-height:1.1;
}

.site-header {
  position:sticky;
  top:14px;
  z-index:50;
  width:min(calc(100% - 32px),var(--max-width));
  margin:16px auto 0;
  background:rgba(251,244,236,.94);
  border:1px solid var(--line);
  border-radius:999px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(12px);
}

.navbar {
  height:82px;
  padding:0 34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.logo-mark {
  width:190px;
  height:auto;
  display:block;
}

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

.nav-links a {
  font-size:.86rem;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  transition:opacity .25s ease, color .25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color:var(--burgundy);
  opacity:.7;
}

.mobile-toggle {
  display:none;
  width:42px;
  height:42px;
  border:1px solid var(--line);
  border-radius:50%;
  background:transparent;
  color:var(--burgundy);
  font-size:1.15rem;
}

.order-btn,
.primary-btn,
.secondary-btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 24px;
  border-radius:999px;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.13em;
  text-transform:uppercase;
  transition:background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.order-btn,
.primary-btn {
  background:var(--burgundy);
  color:#fff8ef;
  box-shadow:0 12px 26px rgba(90,23,15,.2);
}

.secondary-btn {
  border:1px solid var(--burgundy);
  color:var(--burgundy);
}

.order-btn:hover,
.primary-btn:hover {
  background:var(--burgundy-light);
  transform:translateY(-2px);
}

.secondary-btn:hover {
  background:var(--burgundy);
  color:#fff8ef;
  transform:translateY(-2px);
}

.hero {
  max-width:var(--max-width);
  margin:0 auto;
  padding:74px 22px 48px;
  text-align:center;
}

.eyebrow {
  margin-bottom:14px;
  color:var(--burgundy);
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.22em;
  text-transform:uppercase;
}

.hero p,
.page-hero p,
.section-heading p,
.card p,
.menu-item p,
.contact-card p,
.story-card p,
.notice-card p {
  color:var(--muted);
}

.hero p {
  max-width:660px;
  margin-left:auto;
  margin-right:auto;
  font-size:1.06rem;
}

.hero-actions {
  margin-top:28px;
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

.section {
  max-width:var(--max-width);
  margin:0 auto;
  padding:42px 22px;
}

.section-heading {
  max-width:700px;
  margin:0 auto 26px;
  text-align:center;
}

.divider {
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 22px;
  display:flex;
  align-items:center;
  gap:14px;
  color:var(--burgundy);
}

.divider::before,
.divider::after {
  content:"";
  flex:1;
  height:1px;
  background:var(--line);
}

.cards,
.menu-grid,
.contact-grid {
  display:grid;
  gap:18px;
}

.cards,
.menu-grid {
  grid-template-columns:repeat(3,1fr);
}

.menu-grid.two,
.contact-grid {
  grid-template-columns:repeat(2,1fr);
}

.card,
.menu-item,
.contact-card,
.story-card,
.notice-card {
  background:rgba(251,244,236,.82);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  transition:transform .25s ease, box-shadow .25s ease;
}

.card:hover,
.menu-item:hover,
.contact-card:hover,
.story-card:hover,
.notice-card:hover {
  transform:translateY(-4px);
  box-shadow:0 24px 55px rgba(46,32,27,.13);
}

.card,
.menu-item,
.contact-card,
.story-card,
.notice-card {
  padding:26px;
}

.card-top,
.menu-item-top {
  display:flex;
  justify-content:space-between;
  gap:18px;
}

.price {
  color:var(--burgundy);
  font-weight:700;
  white-space:nowrap;
}

.mini-link {
  margin-top:12px;
  display:inline-block;
  color:var(--burgundy);
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.13em;
  text-transform:uppercase;
}

.story-card {
  max-width:820px;
  margin:0 auto;
  text-align:center;
  padding:34px;
}

.page-hero {
  max-width:var(--max-width);
  margin:0 auto;
  padding:62px 22px 24px;
  text-align:center;
}

.page-hero p {
  max-width:640px;
  margin-left:auto;
  margin-right:auto;
}

.menu-section {
  margin-bottom:38px;
}

.menu-section-title {
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:18px;
}

.menu-section-title h2 { margin:0; }

.menu-section-title::after {
  content:"";
  flex:1;
  height:1px;
  background:var(--line);
}

.menu-item {
  min-height:176px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.menu-item.full { min-height:0; }

.notice-card {
  margin-top:26px;
  text-align:center;
}

.notice-card p {
  max-width:620px;
  margin-left:auto;
  margin-right:auto;
}

.contact-grid { align-items:start; }

.contact-card h2 {
  font-size:clamp(2.2rem,4vw,3rem);
}

.contact-list {
  display:grid;
  gap:16px;
}

.contact-list p { margin-bottom:0; }

.facebook-link {
  color:var(--burgundy);
  font-weight:700;
  border-bottom:1px solid currentColor;
}

.footer {
  margin-top:38px;
  background:var(--burgundy);
  color:#fff8ef;
}

.footer-inner {
  max-width:var(--max-width);
  margin:0 auto;
  padding:38px 22px;
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr;
  gap:28px;
}

.footer-logo {
  width:230px;
  height:auto;
  display:block;
}

.footer h3 {
  color:#fff8ef;
  font-family:"Inter",sans-serif;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.footer p,
.footer a {
  color:rgba(255,248,239,.82);
}

.footer-bottom {
  border-top:1px solid rgba(255,248,239,.18);
  padding:18px 22px;
  text-align:center;
  color:rgba(255,248,239,.72);
  font-size:.86rem;
}

@media (max-width:900px) {
  .navbar {
    height:76px;
    padding:0 22px;
  }

  .logo-mark { width:160px; }

  .mobile-toggle {
    display:inline-grid;
    place-items:center;
  }

  .nav-links {
    display:none;
    position:absolute;
    left:16px;
    right:16px;
    top:88px;
    padding:20px;
    flex-direction:column;
    align-items:stretch;
    gap:16px;
    background:var(--surface);
    border:1px solid var(--line);
    border-radius:22px;
    box-shadow:var(--shadow);
  }

  .nav-links.open { display:flex; }

  .cards,
  .menu-grid,
  .menu-grid.two,
  .contact-grid,
  .footer-inner {
    grid-template-columns:1fr;
  }
}

@media (max-width:560px) {
  .site-header {
    width:calc(100% - 20px);
    top:8px;
    margin-top:10px;
  }

  .navbar {
    height:72px;
    gap:12px;
  }

  .logo-mark { width:135px; }

  h1 { font-size:clamp(3rem,16vw,4.5rem); }

  .hero { padding-top:48px; }
  .section { padding:34px 18px; }
  .page-hero { padding-top:48px; }

  .card,
  .menu-item,
  .contact-card,
  .story-card {
    padding:24px;
  }
}