:root {
  --red: #8f1d1d;
  --red-dark: #6e1414;
  --gold: #e9b83c;
  --gold-soft: #f3d27a;
  --lemon: #f5d94e;
  --green: #2e5b3e;
  --green-deep: #234731;
  --cream: #faf5e8;
  --cream-dark: #f3ead3;
  --ink: #3a2e22;
  --serif-display: "Playfair Display", Georgia, serif;
  --serif-body: "Lora", Georgia, serif;
  --serif-accent: "Cormorant Garamond", Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
}

.container { max-width: 1060px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 760px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 22px;
  background: var(--red);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 12px rgba(60, 20, 10, 0.25);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--gold-soft);
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-brand img { height: 40px; width: auto; }

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

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-family: var(--serif-accent);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
}

.nav-links a:hover { color: var(--gold-soft); }

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--red-dark);
  padding: 7px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.nav-links .nav-cta:hover { background: var(--gold-soft); color: var(--red-dark); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 50% -20%, rgba(245, 217, 78, 0.35), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  text-align: center;
  padding: 56px 24px 96px;
}

.hero-inner { max-width: 820px; margin: 0 auto; }

.hero-logo {
  width: min(560px, 92%);
  height: auto;
  filter: drop-shadow(0 14px 28px rgba(80, 40, 10, 0.28));
}

.hero-kicker {
  margin-top: 26px;
  font-family: var(--serif-accent);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green);
}

.hero-tagline {
  margin-top: 10px;
  font-family: var(--serif-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--red);
  line-height: 1.15;
}

.hero-tagline em { color: var(--green-deep); }

.hero-sub {
  margin: 18px auto 0;
  max-width: 560px;
  font-size: 1.12rem;
  color: #5a4a38;
}

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

.hero-socials {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
}

.hero-socials a {
  color: var(--green-deep);
  display: inline-flex;
  transition: color 0.15s ease, transform 0.15s ease;
}

.hero-socials a:hover {
  color: var(--red);
  transform: translateY(-2px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 13px 30px;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--red);
  color: var(--gold-soft);
  box-shadow: 0 6px 16px rgba(143, 29, 29, 0.35);
}

.btn-primary:hover { background: var(--red-dark); }

.btn-outline {
  border: 2px solid var(--green);
  color: var(--green-deep);
}

.btn-outline:hover { background: var(--green); color: var(--cream); }

.btn-gold {
  background: var(--gold);
  color: var(--red-dark);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

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

/* ---------- Ribbon divider ---------- */
.ribbon-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 26px;
  background:
    linear-gradient(135deg, var(--red) 25%, transparent 25%) 0 0 / 26px 26px,
    linear-gradient(225deg, var(--red) 25%, transparent 25%) 0 0 / 26px 26px;
  background-repeat: repeat-x;
}

/* ---------- Sections ---------- */
section { padding: 84px 0; }

.section-kicker {
  text-align: center;
  font-family: var(--serif-accent);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold);
  letter-spacing: 0.12em;
}

.story .section-kicker,
.menu .section-kicker,
.reserve .section-kicker { color: #b98a2b; }

.section-title {
  text-align: center;
  font-family: var(--serif-display);
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  font-weight: 800;
  color: var(--red);
  margin-top: 4px;
}

.section-title.light { color: var(--cream); }

.section-title { margin-bottom: 22px; }

/* ---------- Story ---------- */
.story { background: var(--cream); }

.story .container { max-width: 1360px; }

.story-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 240px;
  gap: 44px;
  align-items: start;
  max-width: 1320px;
  margin: 0 auto;
}

.story-photo {
  margin: 0;
}

.story-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  border: 8px solid #fff;
  box-shadow: 0 10px 24px rgba(80, 40, 10, 0.25);
}

.story-photo.photo-left {
  align-self: start;
  margin-top: -34px;
  transform: rotate(-4deg);
}

.story-photo.photo-right {
  align-self: end;
  margin-bottom: -10px;
  transform: rotate(4deg);
}

.story p { margin-bottom: 20px; font-size: 1.13rem; text-align: center; }

@media (max-width: 900px) {
  .story-layout { grid-template-columns: 1fr; }
  .story-photo,
  .story-photo.photo-left,
  .story-photo.photo-right {
    height: auto;
    max-width: 300px;
    margin: 10px auto;
    transform: rotate(-2deg);
  }
  .story-photo.photo-right { transform: rotate(2deg); }
}

.story .story-close {
  font-family: var(--serif-accent);
  font-size: 1.3rem;
  color: var(--green-deep);
}

/* ---------- Menu ---------- */
.menu {
  background:
    radial-gradient(ellipse at 15% 10%, rgba(245, 217, 78, 0.16), transparent 45%),
    radial-gradient(ellipse at 85% 90%, rgba(245, 217, 78, 0.16), transparent 45%),
    var(--cream-dark);
}

.menu-group-title {
  text-align: center;
  font-family: var(--serif-display);
  font-size: 1.7rem;
  color: var(--green-deep);
  margin: 8px 0 26px;
}

.panini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}

.menu-card {
  background: var(--cream);
  border: 1px solid rgba(143, 29, 29, 0.18);
  border-top: 4px solid var(--red);
  border-radius: 10px;
  padding: 22px 24px;
  box-shadow: 0 4px 14px rgba(80, 40, 10, 0.08);
}

.menu-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.menu-card h4 {
  font-family: var(--serif-display);
  font-size: 1.22rem;
  color: var(--red-dark);
}

.menu-card .price {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--green-deep);
  white-space: nowrap;
}

.menu-card p { font-size: 1rem; color: #5a4a38; }

.menu-extras {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  max-width: 980px;
  margin: 42px auto 0;
  text-align: center;
}

.extra {
  background: rgba(46, 91, 62, 0.07);
  border: 1px solid rgba(46, 91, 62, 0.22);
  border-radius: 10px;
  padding: 20px 18px;
}

.extra h3 {
  font-family: var(--serif-display);
  color: var(--green-deep);
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.menu-note {
  text-align: center;
  margin-top: 36px;
  font-style: italic;
  color: var(--red);
  font-size: 0.98rem;
}

/* ---------- Catering ---------- */
.catering {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(233, 184, 60, 0.18), transparent 55%),
    linear-gradient(180deg, var(--green-deep), var(--green));
  text-align: center;
}

.catering .section-kicker { color: var(--gold-soft); }

.catering-sub {
  color: #e8eedd;
  max-width: 540px;
  margin: 18px auto 40px;
  font-size: 1.1rem;
}

.catering-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 22px;
  max-width: 1010px;
  margin: 0 auto;
  text-align: left;
}

.cat-card {
  background: var(--cream);
  border-radius: 10px;
  border-top: 4px solid var(--gold);
  padding: 24px 26px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.cat-card h3 {
  font-family: var(--serif-display);
  font-size: 1.3rem;
  color: var(--red);
  margin-bottom: 10px;
}

.cat-desc {
  font-size: 0.99rem;
  color: #5a4a38;
  margin-bottom: 12px;
}

.cat-desc:last-child { margin-bottom: 0; }

.price-list {
  list-style: none;
  margin: 0 0 12px;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(46, 91, 62, 0.3);
}

.price-list li:last-child { border-bottom: none; }

.price-list li > span:first-child { color: var(--green-deep); }

.price-list em {
  display: block;
  font-family: var(--serif-accent);
  font-size: 0.95rem;
  color: #6d5d49;
}

.cat-price {
  font-family: var(--serif-display);
  font-weight: 700;
  color: var(--green-deep);
  white-space: nowrap;
}

.cat-fine {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--red);
}

.catering-cta { text-align: center; margin-top: 38px; }

/* ---------- Reserve ---------- */
.reserve { background: var(--cream); text-align: center; }

.reserve p { font-size: 1.12rem; max-width: 560px; margin: 0 auto; }

.reserve-actions { margin: 28px 0 36px; }

.socials {
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
}

.socials a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-deep);
  text-decoration: none;
  font-family: var(--serif-accent);
  font-weight: 600;
  font-size: 1.15rem;
}

.socials a:hover { color: var(--red); }

/* ---------- Footer ---------- */
.footer {
  background: var(--red-dark);
  text-align: center;
  padding: 46px 24px 34px;
  border-top: 4px solid var(--gold);
}

.footer-logo { width: 170px; height: auto; }

.footer-tag {
  margin-top: 12px;
  font-family: var(--serif-accent);
  font-size: 1.25rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.footer-fine {
  margin-top: 10px;
  color: rgba(250, 245, 232, 0.75);
  font-size: 0.92rem;
}

/* ---------- Mobile ---------- */
@media (max-width: 640px) {
  .nav { padding: 6px 10px; }
  .nav-brand span { display: none; }
  .nav-brand img { height: 34px; }
  .nav-links { gap: 9px; }
  .nav-links a { font-size: 0.88rem; white-space: nowrap; }
  .nav-links .nav-cta { padding: 5px 10px; }
  section { padding: 60px 0; }
  .hero { padding: 36px 18px 76px; }
  .socials { flex-direction: column; align-items: center; gap: 16px; }
}
