:root {
  --wine: #5a1626;
  --wine-deep: #3d0f1b;
  --wine-2: #7a1f34;
  --gold: #c9a24b;
  --gold-soft: #e2c885;
  --cream: #f7f1e7;
  --cream-2: #efe6d6;
  --charcoal: #241a1c;
  --ink: #2a2023;
  --muted: #6b5c5f;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(61, 15, 27, 0.15);
  --radius: 18px;
  --maxw: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Heebo", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  overflow-x: hidden;
}
h1, h2, h3, .brand__text { font-family: "Frank Ruhl Libre", "Heebo", serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.gold { color: var(--gold); }
.kicker {
  display: inline-block; font-size: .82rem; font-weight: 700; letter-spacing: .18em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 14px;
}
.section { padding: 96px 0; }
.section__title { font-size: clamp(1.8rem, 4vw, 2.9rem); line-height: 1.2; font-weight: 900; color: var(--wine-deep); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section__lead, .section__head p { color: var(--muted); margin-top: 14px; font-size: 1.08rem; }

/* Buttons */
.btn {
  display: inline-block; padding: 14px 30px; border-radius: 999px; font-weight: 700;
  font-size: 1rem; cursor: pointer; border: 2px solid transparent; transition: all .3s ease;
}
.btn--gold { background: linear-gradient(135deg, var(--gold), var(--gold-soft)); color: var(--wine-deep); box-shadow: 0 10px 26px rgba(201,162,75,.4); }
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(201,162,75,.55); }
.btn--ghost { border-color: rgba(247,241,231,.5); color: var(--cream); }
.btn--ghost:hover { background: rgba(247,241,231,.12); border-color: var(--cream); }
.btn--full { width: 100%; text-align: center; }

/* NAV */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50; transition: all .35s ease;
  padding: 18px 0;
}
.nav.scrolled { background: rgba(61,15,27,.96); backdrop-filter: blur(10px); box-shadow: 0 6px 24px rgba(0,0,0,.2); padding: 12px 0; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--cream); }
.brand__mark {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft)); color: var(--wine-deep);
  font-weight: 900; font-size: 1.4rem; font-family: "Frank Ruhl Libre", serif;
}
.brand__text { font-size: 1.25rem; font-weight: 700; }
.brand__text em { font-style: normal; color: var(--gold); }
.brand--light { color: var(--cream); }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { color: var(--cream); font-weight: 500; font-size: 1rem; position: relative; transition: color .25s; }
.nav__links a:not(.nav__cta):hover { color: var(--gold); }
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; bottom: -6px; right: 0; width: 0; height: 2px;
  background: var(--gold); transition: width .3s;
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta { background: var(--gold); color: var(--wine-deep) !important; padding: 9px 22px; border-radius: 999px; font-weight: 700; }
.nav__cta:hover { background: var(--gold-soft); transform: translateY(-2px); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; }
.nav__toggle span { width: 26px; height: 2px; background: var(--cream); transition: .3s; }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: var(--cream); overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(201,162,75,.22), transparent 60%),
    radial-gradient(800px 500px at 10% 110%, rgba(122,31,52,.6), transparent 60%),
    linear-gradient(160deg, var(--wine-deep) 0%, var(--wine) 55%, var(--charcoal) 100%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0; opacity: .06;
  background-image: radial-gradient(rgba(255,255,255,.8) 1px, transparent 1px);
  background-size: 26px 26px;
}
/* Food background image OVER the gradient, blended */
.hero__bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  opacity: .25;
  mix-blend-mode: soft-light;
  filter: brightness(0.9) saturate(1.1);
}
.hero__inner { position: relative; z-index: 2; padding-top: 90px; max-width: 780px; }
.hero__eyebrow { color: var(--gold-soft); font-weight: 700; letter-spacing: .12em; margin-bottom: 18px; font-size: 1rem; }
.hero__title { font-size: clamp(2.6rem, 8vw, 5.4rem); font-weight: 900; line-height: 1.05; margin-bottom: 24px; }
.hero__sub { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: rgba(247,241,231,.85); max-width: 620px; margin-bottom: 36px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2;
  color: var(--gold); font-size: 1.5rem; animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,10px)} }

/* ABOUT */
.about { background: var(--cream); }
.about__grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: 56px; align-items: center; }
.about__text p { color: var(--muted); margin-top: 16px; font-size: 1.06rem; }
.about__list { list-style: none; margin-top: 26px; display: grid; gap: 12px; }
.about__list li { position: relative; padding-inline-start: 30px; font-weight: 500; }
.about__list li::before { content: "✦"; position: absolute; inset-inline-start: 0; color: var(--gold); font-size: 1rem; }
.about__card {
  background: linear-gradient(160deg, var(--wine) 0%, var(--wine-deep) 100%);
  color: var(--cream); border-radius: var(--radius); padding: 44px 38px; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.about__card::before { content: "„"; position: absolute; top: -30px; inset-inline-start: 20px; font-size: 10rem; color: rgba(201,162,75,.18); font-family: serif; }
.about__quote { font-family: "Frank Ruhl Libre", serif; font-size: 1.4rem; line-height: 1.6; position: relative; z-index: 1; }
.about__sign { margin-top: 22px; color: var(--gold-soft); font-weight: 700; }

/* SERVICES */
.services { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--white); border-radius: var(--radius); padding: 34px 30px;
  box-shadow: 0 10px 30px rgba(61,15,27,.07); border: 1px solid rgba(201,162,75,.15);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 26px 50px rgba(61,15,27,.16); border-color: var(--gold); }
.card__icon {
  width: 62px; height: 62px; border-radius: 16px; display: grid; place-items: center; font-size: 1.7rem;
  background: linear-gradient(135deg, rgba(201,162,75,.18), rgba(122,31,52,.1)); margin-bottom: 20px;
}
.card h3 { font-size: 1.3rem; color: var(--wine-deep); margin-bottom: 10px; font-weight: 700; }
.card p { color: var(--muted); font-size: 1rem; }

/* GALLERY */
.gallery { background: var(--white); }
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.gallery__card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 12px 36px rgba(61,15,27,.1); transition: transform .4s ease, box-shadow .4s ease;
  aspect-ratio: 4 / 3;
}
.gallery__card:hover { transform: scale(1.03); box-shadow: 0 24px 48px rgba(61,15,27,.2); }
.gallery__card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.gallery__card:hover img { transform: scale(1.08); }
.gallery__caption {
  position: absolute; bottom: 0; inset-inline: 0; padding: 18px 20px;
  background: linear-gradient(transparent, rgba(61,15,27,.85));
  color: var(--cream); font-weight: 700; font-size: 1.05rem; opacity: 0;
  transform: translateY(10px); transition: all .35s ease;
}
.gallery__card:hover .gallery__caption { opacity: 1; transform: translateY(0); }

/* STATS */
.stats { background: linear-gradient(150deg, var(--wine-deep), var(--wine) 60%, var(--charcoal)); color: var(--cream); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat__num { display: block; font-family: "Frank Ruhl Libre", serif; font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 900; color: var(--gold-soft); }
.stat__label { color: rgba(247,241,231,.8); font-weight: 500; margin-top: 6px; display: block; }

/* TESTIMONIALS */
.testimonials { background: var(--cream); }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote {
  background: var(--white); border-radius: var(--radius); padding: 34px 30px; box-shadow: 0 10px 30px rgba(61,15,27,.07);
  border-top: 4px solid var(--gold); transition: transform .35s ease, box-shadow .35s;
}
.quote:hover { transform: translateY(-6px); box-shadow: 0 24px 46px rgba(61,15,27,.15); }
.quote p { font-family: "Frank Ruhl Libre", serif; font-size: 1.16rem; color: var(--ink); line-height: 1.65; }
.quote footer { margin-top: 18px; color: var(--wine-2); font-weight: 700; }

/* CONTACT */
.contact { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact__intro p { color: var(--muted); margin-top: 14px; }
.contact__details { list-style: none; margin-top: 28px; display: grid; gap: 16px; }
.contact__details li { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.contact__details span { display: inline-block; min-width: 62px; color: var(--gold); font-weight: 700; }
.contact__details a { color: var(--wine-deep); font-weight: 600; }
.contact__details a:hover { color: var(--gold); }
.contact__details em { color: var(--muted); font-style: italic; font-size: .9rem; }
.contact__note { font-size: .88rem; color: var(--muted); margin-top: 18px; }
.contact__form { background: var(--white); border-radius: var(--radius); padding: 38px 34px; box-shadow: var(--shadow); }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; margin-bottom: 8px; color: var(--wine-deep); }
.field input, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid rgba(90,22,38,.15); border-radius: 12px;
  font-family: inherit; font-size: 1rem; background: var(--cream); color: var(--ink); transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,162,75,.15); }

/* FOOTER */
.footer { background: var(--wine-deep); color: var(--cream); padding: 54px 0 34px; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center; }
.footer__links { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; }
.footer__links a { color: rgba(247,241,231,.8); font-weight: 500; transition: color .25s; }
.footer__links a:hover { color: var(--gold); }
.footer__copy { color: rgba(247,241,231,.55); font-size: .9rem; }

/* REVEAL ANIMATION */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 940px) {
  .about__grid, .contact__grid { grid-template-columns: 1fr; }
  .cards, .quotes, .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
}
@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 0 0 0 30%; flex-direction: column; justify-content: center; gap: 26px;
    background: rgba(61,15,27,.98); backdrop-filter: blur(12px); transform: translateX(100%); transition: transform .35s ease;
  }
  .nav__links.open { transform: translateX(0); }
  .cards, .quotes, .gallery__grid { grid-template-columns: 1fr; }
}