/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #3a4430;
  --green-mid:    #4a5a3a;
  --yellow:       #d4e34a;
  --yellow-hover: #bfd13a;
  --text:         #1a1a1a;
  --text-muted:   #555;
  --bg:           #ffffff;
  --bg-soft:      #f7f5f0;
  --radius:       12px;
  --radius-lg:    20px;
  --nav-h:        72px;
  --transition:   .25s ease;
  --shadow:       0 4px 24px rgba(0,0,0,.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.label      { font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1.1; margin-bottom: 16px; }
.section-sub   { color: var(--text-muted); max-width: 560px; margin: 0 auto 48px; }

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn--yellow        { background: var(--yellow); color: var(--green-dark); }
.btn--yellow:hover  { background: var(--yellow-hover); }
.btn--dark          { background: var(--green-dark); color: #fff; }
.btn--dark:hover    { background: var(--green-mid); }
.btn--outline-white { background: transparent; border-color: #fff; color: #fff; }
.btn--outline-white:hover { background: rgba(255,255,255,.12); }
.btn--sm { padding: 9px 22px; font-size: .88rem; }

/* ── Nav ──────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--green-dark);
  height: var(--nav-h);
}
.nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__brand { display: flex; align-items: center; gap: 10px; color: #fff; flex-shrink: 0; }
.nav__logo  { width: 52px; height: 52px; object-fit: contain; border-radius: 50%; background: #F7F3EC; padding: 2px; }
.nav__name  { font-weight: 600; font-size: 1rem; white-space: nowrap; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav__link {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.85);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav__link--dropdown { display: flex; align-items: center; gap: 4px; }
.chevron { font-size: .7rem; }

.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 190px;
  padding: 8px 0;
  z-index: 200;
}
.nav__dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: .9rem;
  color: var(--text);
  transition: background var(--transition);
}
.nav__dropdown-menu a:hover { background: var(--bg-soft); }
.nav__dropdown:hover .nav__dropdown-menu { display: block; }

.nav__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* ── Hero ─────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  margin-top: var(--nav-h);
  overflow: hidden;
}
.hero__slides, .hero__slide {
  position: absolute; inset: 0;
}
.hero__slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero__slide--active { opacity: 1; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom right, rgba(30,40,20,.65) 0%, rgba(0,0,0,.3) 100%);
  z-index: 1;
}
.hero__content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: left;
  width: 100%;
  padding: 0 24px;
  max-width: 100%;
}
.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 7vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 36px;
  max-width: 700px;
}
.hero__btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__watermark {
  position: absolute;
  bottom: -20px; right: -10px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(6rem, 18vw, 16rem);
  font-weight: 900;
  color: rgba(255,255,255,.07);
  line-height: .9;
  pointer-events: none;
  z-index: 2;
  user-select: none;
}
.hero__nav {
  position: absolute;
  bottom: 32px; right: 32px;
  z-index: 3;
  display: flex; gap: 8px;
}
.hero__arrow {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: 1.4rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.hero__arrow:hover { background: rgba(255,255,255,.3); }

/* ── Intro ────────────────────────────────────── */
.intro { background: var(--bg-soft); }
.intro__heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.intro__sub { color: var(--text-muted); max-width: 520px; font-size: 1.05rem; }

/* ── Products Grid ────────────────────────────── */
.products { background: var(--bg); }
.products__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 24px;
  align-items: start;
}

.product-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  margin-bottom: 24px;
}
.product-card:last-child { margin-bottom: 0; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.14); }
.product-card img { height: 200px; }
.product-card__body { padding: 16px 20px 20px; }
.product-card__body h3 { font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.product-card__body p  { font-size: .88rem; color: var(--text-muted); }

.products__feature { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.products__feature img { height: 560px; }
.products__feature-label {
  padding: 20px 24px;
  background: var(--bg-soft);
}
.products__feature-label h3 { font-weight: 700; font-size: 1.15rem; margin-bottom: 6px; }
.products__feature-label p  { font-size: .9rem; color: var(--text-muted); }

.products__list { padding-top: 8px; }
.products__list li {
  padding: 18px 0;
  border-bottom: 1px solid #e8e4dc;
}
.products__list li:first-child { border-top: 1px solid #e8e4dc; }
.products__list h4 { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.products__list p  { font-size: .88rem; color: var(--text-muted); }

/* ── Menu Preview ─────────────────────────────── */
.menu-preview { background: var(--bg-soft); }
.dishes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.dish-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.dish-card:hover { transform: translateY(-4px); }
.dish-card__img-wrap { height: 340px; overflow: hidden; }
.dish-card__img-wrap img { transition: transform .4s ease; }
.dish-card:hover .dish-card__img-wrap img { transform: scale(1.04); }
.dish-card__body { padding: 24px 28px 28px; }
.dish-card__body h3 { font-weight: 700; font-size: 1.15rem; margin-bottom: 8px; }
.dish-card__body p  { color: var(--text-muted); font-size: .92rem; margin-bottom: 20px; }

/* ── About Strip ──────────────────────────────── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.about-strip__img { overflow: hidden; }
.about-strip__img img { height: 100%; }
.about-strip__text {
  background: var(--green-dark);
  color: #fff;
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.about-strip__text .label { color: rgba(255,255,255,.6); }
.about-strip__text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
}
.about-strip__text p { color: rgba(255,255,255,.8); font-size: .97rem; max-width: 440px; }

/* ── CTA Banner ───────────────────────────────── */
.cta-banner {
  background: var(--yellow);
  padding: 72px 24px;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 12px;
}
.cta-banner p { font-size: 1.05rem; color: rgba(0,0,0,.65); margin-bottom: 32px; }

/* ── Footer ───────────────────────────────────── */
.footer { background: var(--green-dark); color: rgba(255,255,255,.75); padding: 60px 0 24px; }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__brand { display: flex; flex-direction: column; gap: 8px; }
.footer__logo  { width: 52px; height: 52px; object-fit: contain; border-radius: 50%; background: #F7F3EC; padding: 2px; }
.footer__brand span { color: #fff; font-weight: 600; font-size: 1rem; }
.footer__brand p    { font-size: .88rem; }
.footer__col h5  { color: #fff; font-weight: 600; font-size: .9rem; margin-bottom: 16px; }
.footer__col a   { display: block; font-size: .88rem; margin-bottom: 10px; transition: color var(--transition); }
.footer__col a:hover { color: #fff; }
.footer__bottom { padding-top: 24px; font-size: .82rem; }

/* ── Menu Page ────────────────────────────────── */
.page-hero {
  background: var(--green-dark);
  color: #fff;
  padding: calc(var(--nav-h) + 60px) 24px 60px;
  text-align: center;
}
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,.75); font-size: 1.05rem; }

.menu-section { padding: 64px 0; border-bottom: 1px solid #ebe7e0; }
.menu-section:last-of-type { border-bottom: none; }
.menu-section h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; margin-bottom: 8px; }
.menu-section__sub { color: var(--text-muted); margin-bottom: 40px; }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.menu-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: transform var(--transition);
}
.menu-item:hover { transform: translateY(-4px); }
.menu-item img  { height: 220px; }
.menu-item__body { padding: 18px 20px 22px; }
.menu-item__body h3 { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.menu-item__body p  { font-size: .87rem; color: var(--text-muted); margin-bottom: 16px; }
.menu-item__price { font-weight: 700; color: var(--green-mid); font-size: 1rem; }

/* ── Shared form field styles (catering card) ── */
.cf-group { margin-bottom: 16px; }
.cf-group label {
  display: block;
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.cf-group input,
.cf-group textarea,
.cf-group select {
  display: block;
  width: 100%;
  padding: 13px 16px;
  background: #F2F0EB;
  border: none;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--text);
  transition: background var(--transition), box-shadow var(--transition);
  appearance: auto;
}
.cf-group input:focus,
.cf-group textarea:focus,
.cf-group select:focus {
  outline: none;
  background: #E8E5DF;
  box-shadow: 0 0 0 3px rgba(74,90,58,.12);
}
.cf-group input::placeholder,
.cf-group textarea::placeholder { color: #aaa; }
.cf-group textarea { height: 110px; resize: vertical; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.cf-checks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-top: 8px;
}
.cf-check {
  display: flex; align-items: center; gap: 10px;
  font-size: .93rem; color: var(--text); cursor: pointer;
}
.cf-check input[type="checkbox"] { width: 17px; height: 17px; accent-color: var(--green-mid); flex-shrink: 0; border-radius: 4px; }

.cf-radios { display: flex; gap: 28px; margin-top: 8px; }
.cf-radio { display: flex; align-items: center; gap: 9px; font-size: .93rem; color: var(--text); cursor: pointer; }
.cf-radio input[type="radio"] { width: 17px; height: 17px; accent-color: var(--green-mid); flex-shrink: 0; }

.cf-submit { width: 100%; margin-top: 8px; border-radius: 10px; font-size: 1rem; padding: 14px 28px; }

/* ── Event Catering Section ───────────────────── */
.catering-section {
  background: var(--green-dark);
  padding: 0;
}
.catering-inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  min-height: 600px;
}
.catering-left {
  padding: 80px 56px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.catering-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.catering-left p { color: rgba(255,255,255,.72); line-height: 1.75; margin-bottom: 14px; font-size: .97rem; }
.catering-perks { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.catering-perks li { color: var(--yellow); font-size: .94rem; font-weight: 500; letter-spacing: .01em; }

.catering-right {
  background: var(--bg-soft);
  padding: 64px 56px 64px 48px;
  display: flex;
  align-items: center;
}
.catering-form-card {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,.10);
}
.catering-form-header { margin-bottom: 28px; }
.catering-form-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.catering-form-header p { font-size: .9rem; color: var(--text-muted); }

/* ── Get In Touch Section ─────────────────────── */
.touch-section { background: #F2EFE8; padding: 96px 0; }
.touch-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 80px;
  align-items: start;
}
.touch-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: .73rem; font-weight: 700; letter-spacing: .12em;
  color: var(--text-muted); text-transform: uppercase; margin-bottom: 18px;
}
.touch-dash { color: var(--green-mid); font-size: 1.1rem; line-height: 1; }
.touch-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 18px;
}
.touch-text h2 em { font-style: italic; font-weight: 900; color: #8B7355; }
.touch-text > p { color: var(--text-muted); font-size: .97rem; line-height: 1.75; margin-bottom: 36px; }

.touch-info { display: flex; flex-direction: column; gap: 22px; }
.touch-info-item { display: flex; align-items: flex-start; gap: 16px; }
.touch-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: #E8E4DC; display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.touch-info-item div { display: flex; flex-direction: column; gap: 3px; padding-top: 2px; }
.touch-info-item strong {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-muted);
}
.touch-info-item a, .touch-info-item span { font-size: .97rem; color: var(--text); font-weight: 500; }
.touch-info-item a:hover { color: var(--green-mid); }

.touch-form { display: flex; flex-direction: column; }
.touch-form .cf-group { margin-bottom: 16px; }
.touch-form .cf-group label {
  display: block; font-size: .69rem; font-weight: 700;
  letter-spacing: .12em; color: var(--text-muted);
  text-transform: uppercase; margin-bottom: 8px;
}
.touch-form .cf-group input,
.touch-form .cf-group textarea {
  width: 100%; padding: 14px 16px;
  background: #ECEAE4; border: none; border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: .97rem;
  color: var(--text); transition: background var(--transition), box-shadow var(--transition);
}
.touch-form .cf-group input:focus,
.touch-form .cf-group textarea:focus {
  outline: none; background: #E4E0D8;
  box-shadow: 0 0 0 3px rgba(74,90,58,.15);
}
.touch-form .cf-group input::placeholder,
.touch-form .cf-group textarea::placeholder { color: #aaa; }
.touch-form .cf-group textarea { height: 140px; resize: vertical; }
.touch-submit {
  width: 100%; padding: 16px 24px; margin-top: 8px;
  background: var(--text); color: #fff;
  border: none; border-radius: 10px; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: .88rem;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  transition: background var(--transition);
}
.touch-submit:hover { background: var(--green-dark); }

/* ── Responsive ───────────────────────────────── */
@media (max-width: 1024px) {
  .products__grid { grid-template-columns: 1fr 1fr; }
  .products__list { display: none; }
  .footer__inner  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav__links { display: none; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--green-dark); padding: 20px 24px 32px; gap: 8px; z-index: 99; }
  .nav__links.open { display: flex; }
  .nav__hamburger { display: flex; }
  .nav__logo { width: 40px; height: 40px; }
  .nav__dropdown-menu { position: static; box-shadow: none; background: rgba(255,255,255,.08); border-radius: 8px; margin-top: 4px; }
  .nav__dropdown-menu a { color: rgba(255,255,255,.85); }
  .nav__dropdown-menu a:hover { background: rgba(255,255,255,.1); }
  /* Hero mobile */
  .hero { height: 100svh; min-height: 500px; }
  .hero__content { padding: 0 20px; top: 50%; }
  .hero__title { font-size: clamp(1.8rem, 8vw, 3rem); margin-bottom: 24px; }
  .hero__btns { gap: 12px; }
  .hero__btns .btn { padding: 11px 22px; font-size: .9rem; }
  .hero__watermark { display: none; }
  .hero__nav { bottom: 20px; right: 16px; }
  /* Sections */
  .section { padding: 56px 0; }
  .products__grid { grid-template-columns: 1fr; }
  .products__feature img { height: 280px; }
  .dishes { grid-template-columns: 1fr; }
  .dish-card__img-wrap { height: 240px; }
  .about-strip { grid-template-columns: 1fr; }
  .about-strip__text { padding: 40px 24px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 52px 20px; }
}

@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; }
  .menu-grid     { grid-template-columns: 1fr; }
  .hero__title   { font-size: clamp(1.7rem, 9vw, 2.4rem); }
  .nav__name     { font-size: .88rem; }
  .cf-row        { grid-template-columns: 1fr; }
  .cf-checks-grid { grid-template-columns: 1fr; }
  .catering-form-card { padding: 28px 20px; }
  .touch-form    { padding: 28px 20px; }
  .touch-section { padding: 64px 0; }
}

@media (max-width: 900px) {
  .catering-inner { grid-template-columns: 1fr; }
  .catering-left  { padding: 56px 24px 40px; }
  .catering-right { padding: 0 24px 56px; }
}

@media (max-width: 768px) {
  .touch-grid    { grid-template-columns: 1fr; gap: 48px; }
  .touch-section { padding: 64px 0; }
  .touch-form .cf-row { grid-template-columns: 1fr; }
}
