@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@500;600;700&family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@700;800;900&display=swap');

:root {
  --green: #1f7a12;
  --green-dark: #14590d;
  --green-soft: #eaf5e6;
  --orange: #c56b24;
  --orange-dark: #a54f12;
  --cream: #fbf7ef;
  --paper: #ffffff;
  --ink: #171717;
  --text: #2d2d2d;
  --muted: #6d6d6d;
  --line: rgba(31, 122, 18, .13);
  --line-warm: rgba(197, 107, 36, .18);
  --shadow: 0 18px 48px rgba(25, 57, 18, .12);
  --shadow-soft: 0 10px 30px rgba(25, 57, 18, .09);
  --radius: 14px;
  --container: min(1180px, calc(100vw - 56px));
  --orange-dark: #a54f12;
  --bg: var(--cream);
  --surface: var(--paper);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
section,
[id] { scroll-margin-top: 116px; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 84% 9%, rgba(31, 122, 18, .08), transparent 21%),
    radial-gradient(circle at 12% 28%, rgba(197, 107, 36, .06), transparent 24%),
    linear-gradient(180deg, #fff 0%, var(--cream) 58%, #fff 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button,
input,
textarea,
select { font: inherit; }
button { cursor: pointer; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

.top-strip {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px calc((100vw - var(--container)) / 2);
  background: #fff;
  color: #302b28;
  font-size: 13px;
  border-bottom: 1px solid rgba(31, 122, 18, .1);
}

.top-item { display: inline-flex; align-items: center; gap: 7px; }
.top-left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.top-center { margin-left: auto; font-weight: 800; color: var(--green-dark); }
.top-item a:hover,
.top-social a:hover { color: var(--green); }
.top-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.top-icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: var(--orange);
  font-size: 15px;
  font-weight: 900;
  font-style: normal;
  text-transform: uppercase;
}
.top-social { display: flex; align-items: center; gap: 10px; }
.top-social a {
  display: inline-grid;
  place-items: center;
  width: 28px;
  min-width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
}
.top-social a.instagram { background: linear-gradient(135deg, #f7b733, #d6249f, #285aeb); }
.top-social a.facebook { background: #2f5db8; }
.top-social a.youtube { background: #ff0033; }
.top-social svg,
.social-icon svg {
  width: 15px;
  height: 15px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.top-social a.facebook svg,
.top-social a.youtube svg,
.social-icon.facebook svg,
.social-icon.youtube svg {
  fill: currentColor;
  stroke: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 calc((100vw - var(--container)) / 2);
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(31, 122, 18, .08);
  backdrop-filter: blur(18px);
}

.brand { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand-logo {
  width: 66px;
  height: 58px;
  object-fit: contain;
  filter: contrast(1.08);
}
.brand-text { display: grid; line-height: 1.02; }
.brand-text strong {
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 29px;
  font-weight: 900;
}
.brand-text small {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}
.site-nav a,
.nav-dropdown > a {
  position: relative;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  padding: 31px 0 27px;
  transition: color .2s;
}
.site-nav a::after,
.nav-dropdown > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--orange);
  transform: translateX(-50%);
  transition: width .2s;
}
.site-nav a:hover,
.site-nav a.active,
.nav-dropdown:hover > a,
.nav-dropdown > a.active { color: var(--orange); }
.site-nav a:hover::after,
.site-nav a.active::after,
.nav-dropdown:hover > a::after,
.nav-dropdown > a.active::after { width: 100%; }
.nav-dropdown {
  position: relative;
}
.nav-dropdown-panel {
  position: absolute;
  left: 50%;
  top: calc(100% - 6px);
  z-index: 60;
  width: 280px;
  max-height: min(68vh, 540px);
  overflow-y: auto;
  padding: 12px;
  border: 1px solid rgba(197, 107, 36, .16);
  border-radius: 16px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 24px 60px rgba(25, 57, 18, .14);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav-dropdown-panel a {
  display: block;
  padding: 11px 14px;
  border-radius: 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}
.nav-dropdown-panel a::after {
  content: none;
}
.nav-dropdown-panel a:hover,
.nav-dropdown-panel a.active {
  background: #fff1e4;
  color: var(--orange);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--green);
  min-height: 42px;
  padding: 0 16px;
  font-weight: 800;
}

.mobile-nav {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  top: 86px;
  z-index: 45;
  flex-direction: column;
  background: rgba(255, 255, 255, .98);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 18px;
  border-bottom: 1px solid rgba(31, 122, 18, .08);
  color: var(--ink);
  font-weight: 700;
}
.mobile-nav > a:last-child { border-bottom: 0; background: var(--orange); color: #fff; }
.mobile-nav-group {
  border-bottom: 1px solid rgba(31, 122, 18, .08);
}
.mobile-nav-trigger {
  position: relative;
  width: 100%;
  min-height: 47px;
  padding: 12px 46px 12px 18px;
  border: 0;
  background: #fff;
  color: var(--ink);
  text-align: left;
  font-weight: 800;
}
.mobile-nav-trigger::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  color: var(--orange);
  font-size: 20px;
  font-weight: 900;
  transform: translateY(-50%);
}
.mobile-nav-group.open .mobile-nav-trigger {
  color: var(--green);
  background: #fff8ed;
}
.mobile-nav-group.open .mobile-nav-trigger::after {
  content: "-";
}
.mobile-nav-panel {
  display: none;
  max-height: 52vh;
  overflow-y: auto;
  padding: 6px 10px 10px;
  background: #fffdf8;
}
.mobile-nav-group.open .mobile-nav-panel {
  display: grid;
  gap: 6px;
}
.mobile-nav-panel a {
  padding: 10px 12px;
  border: 1px solid rgba(31, 122, 18, .08);
  border-radius: 10px;
  background: #fff;
  color: var(--green-dark);
  font-size: 13px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  box-shadow: 0 14px 30px rgba(31, 122, 18, .23);
}
.btn-light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: 0 8px 20px rgba(25, 57, 18, .06);
}
.btn-light:hover {
  border-color: rgba(31, 122, 18, .35);
  color: var(--green);
}
.btn[href$="booking.php"],
.btn[href*="booking.php"] {
  border-color: rgba(239, 107, 25, .38);
  background: linear-gradient(135deg, #fff8ed, #ffffff 44%, #ffe3c2);
  color: #9b3d07;
  box-shadow: 0 12px 28px rgba(197, 107, 36, .16);
}
.btn[href$="booking.php"]:hover,
.btn[href*="booking.php"]:hover {
  border-color: rgba(239, 107, 25, .58);
  color: #fff;
  background: linear-gradient(135deg, #ff9d24, #ef6b19 48%, #b73f08);
}
.header-cta {
  min-height: 44px;
  padding: 0 22px;
  border-color: rgba(255, 255, 255, .45);
  background: linear-gradient(135deg, #ff9d24, #ef6b19 48%, #b73f08);
  color: #fff;
  box-shadow: 0 16px 34px rgba(239, 107, 25, .32);
}
.header-whatsapp {
  display: inline-grid;
  place-items: center;
  width: 48px;
  min-width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  border: 3px solid #fff;
  background: radial-gradient(circle at 32% 24%, #7dffa7 0 18%, #25d366 42%, #0a9f4b 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(37, 211, 102, .34);
}
.header-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.hero {
  position: relative;
  width: var(--container);
  min-height: calc(100svh - 124px);
  margin: 0 auto;
  padding: 58px 0 44px;
  display: grid;
  grid-template-columns: minmax(330px, 485px) minmax(360px, 1fr);
  align-items: center;
  gap: 58px;
}
.video-hero {
  width: 100%;
  min-height: calc(100svh - 124px);
  padding: 70px calc((100vw - var(--container)) / 2) 72px;
  grid-template-columns: minmax(320px, 620px) minmax(260px, 1fr);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #15110d;
}
.video-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(16, 9, 5, .86) 0%, rgba(16, 9, 5, .68) 42%, rgba(16, 9, 5, .34) 72%, rgba(16, 9, 5, .55) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .34));
}
.video-hero::after {
  content: none;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #111;
}
.hero-video-bg iframe,
.hero-video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  border: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-video-bg video {
  object-fit: cover;
}
.hero-video-bg iframe {
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
}
.video-hero .hero-copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.video-hero .eyebrow {
  color: #ffad4a;
}
.video-hero h1,
.video-hero h2,
.video-hero .subtitle {
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .36);
}
.video-hero h1 span:last-child {
  color: #91ff75;
}
.video-hero .subtitle {
  max-width: 600px;
}
.video-hero .btn-light {
  border-color: rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .94);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background: var(--green);
  opacity: .11;
  border-radius: 58% 42% 48% 52%;
}
.hero::before {
  width: 88px;
  height: 42px;
  right: 8%;
  bottom: 18%;
  transform: rotate(-22deg);
}
.hero::after {
  width: 56px;
  height: 30px;
  right: 39%;
  top: 18%;
  transform: rotate(28deg);
}
.video-hero::before {
  width: auto;
  height: auto;
  inset: 0;
  right: auto;
  bottom: auto;
  top: auto;
  opacity: 1;
  border-radius: 0;
  transform: none;
  background:
    linear-gradient(90deg, rgba(16, 9, 5, .86) 0%, rgba(16, 9, 5, .68) 42%, rgba(16, 9, 5, .34) 72%, rgba(16, 9, 5, .55) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .34));
}
.video-hero::after {
  content: none;
}
.hero-copy { max-width: 610px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero .eyebrow:first-child,
.page-hero .eyebrow:first-child {
  font-family: Caveat, cursive;
  text-transform: none;
  letter-spacing: 0;
  font-size: 28px;
  font-weight: 700;
}
.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(52px, 7vw, 86px);
  line-height: .98;
  color: var(--ink);
  letter-spacing: 0;
}
.hero h1 span { display: block; }
.hero h1 span:last-child { color: var(--green); }
.hero h2 {
  margin: 18px 0 0;
  max-width: 560px;
  font-family: Caveat, cursive;
  color: var(--orange);
  font-size: clamp(28px, 3vw, 39px);
  line-height: 1;
  font-weight: 700;
}
.subtitle,
.page-hero p {
  margin: 18px 0 0;
  max-width: 570px;
  color: var(--text);
  font-size: 15px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 28px;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(92px, 1fr));
  gap: 10px;
  margin-top: 30px;
}
.hero-meta span,
.stats span {
  display: block;
  padding: 15px;
  background: var(--paper);
  border: 1px solid rgba(31, 122, 18, .1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.hero-meta strong,
.stats strong {
  display: block;
  color: var(--green);
  font-size: 18px;
  font-weight: 900;
}
.hero-meta small,
.stats small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}
.hero-visual { position: relative; }
.hero-card {
  position: relative;
  min-height: 470px;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  box-shadow: none;
  background: transparent;
}
.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: contain;
}
.hero-card iframe,
.hero-card video {
  display: block;
  width: 100%;
  min-height: 470px;
  height: 100%;
  border: 0;
  border-radius: 26px;
  box-shadow: var(--shadow);
  background: #111;
}
.hero-card video {
  object-fit: cover;
}
.hero-video-card {
  border-radius: 26px;
  background: #111;
  box-shadow: var(--shadow);
}
.hero-card::after {
  content: none;
}
.hero-badge {
  display: none;
  position: absolute;
  left: -18px;
  top: 48px;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 2px;
  width: 118px;
  height: 118px;
  padding: 16px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  border: 2px dashed rgba(31, 122, 18, .45);
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.hero-badge strong {
  color: var(--green);
  font-family: "Playfair Display", serif;
  font-size: 21px;
  line-height: 1;
}
.hero-badge small {
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.section-pad {
  width: var(--container);
  margin: 0 auto;
  padding: 60px 0;
}
.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}
.section-title.centered {
  display: block;
  text-align: center;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}
.section-title h2,
.policy-strip h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: 0;
}
.section-title.centered .eyebrow::before,
.section-title.centered .eyebrow::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  margin: 0 10px 4px;
  background: var(--orange);
}

.trust-bar {
  width: var(--container);
  margin: -12px auto 28px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(31, 122, 18, .08);
}
.trust-bar article {
  min-height: 96px;
  padding: 20px 18px;
  border-right: 1px solid rgba(31, 122, 18, .08);
}
.trust-bar article:last-child { border-right: 0; }
.trust-bar span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 900;
}
.trust-bar strong { display: block; font-weight: 900; }
.trust-bar small { color: var(--muted); font-size: 12px; font-weight: 600; }

.about {
  display: grid;
  grid-template-columns: minmax(300px, 410px) 1fr;
  gap: 34px;
  align-items: center;
}
.about-home {
  grid-template-columns: minmax(280px, .85fr) minmax(360px, 1.15fr) minmax(240px, .72fr);
  align-items: stretch;
}
.about-copy h2 {
  margin: 0 0 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 3.3vw, 44px);
  line-height: 1.12;
  color: var(--ink);
}
.about-copy p { color: var(--text); margin: 0 0 20px; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0 26px;
}
.about-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  min-height: 300px;
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 5px solid #fff;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}
.about-visual img:nth-child(2) {
  object-fit: contain;
  padding: 34px;
  background: #f6f3ea;
}
.why-card {
  align-self: center;
  padding: 28px 24px;
  border-radius: var(--radius);
  background: #f3f4ea;
  border: 1px solid rgba(31, 122, 18, .08);
  box-shadow: var(--shadow-soft);
}
.why-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.why-card li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
}
.why-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
}
.why-card li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 6px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.menu-row,
.package-grid,
.promo-grid,
.testimonial-grid,
.choice-grid {
  display: grid;
  gap: 18px;
}
.menu-row { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.menu-card,
.package-card,
.promo-card,
.testimonial-card,
.choice-card,
.menu-list-card,
.policy-strip,
.booking-card,
.lead-form-js {
  border-radius: var(--radius);
  border: 1px solid rgba(31, 122, 18, .08);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}
.menu-card {
  overflow: hidden;
  transition: transform .22s, box-shadow .22s;
}
.menu-section .menu-card {
  min-height: 276px;
}
.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.clickable-card {
  cursor: pointer;
}
.clickable-card:focus-visible {
  outline: 3px solid rgba(239, 107, 25, .38);
  outline-offset: 4px;
}
.dish {
  height: 118px;
  background:
    linear-gradient(135deg, rgba(31, 122, 18, .12), rgba(197, 107, 36, .12)),
    url('../images/restaurant-collage.jpg') center / cover;
  background-size: cover;
  background-position: center;
}
.compact-actions {
  justify-content: center;
  margin-top: 12px;
}
.menu-item { padding: 17px 15px 20px; text-align: center; }
.menu-item small {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
}
.menu-item h3 {
  margin: 7px 0 8px;
  min-height: 42px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}
.menu-link-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 22px;
}
.menu-item span {
  display: block;
  color: var(--green);
  font-weight: 900;
}
.menu-whatsapp,
.text-action,
.promo-action {
  margin-top: 12px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  min-height: 36px;
  padding: 0 14px;
  font-size: 11px;
  font-weight: 800;
}
.text-action,
.promo-action { display: inline-flex; align-items: center; width: max-content; }

.page-hero {
  width: var(--container);
  margin: 0 auto;
  padding: 72px 0 30px;
}
.about-hero-pro,
.service-hero-pro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: 38px;
  align-items: center;
  padding: 74px 0 62px;
}
.about-hero-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 18px;
  border: 8px solid #fff;
  box-shadow: var(--shadow);
  background: #fff;
}
.about-hero-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.about-hero-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-soft);
}
.about-hero-card strong {
  display: block;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
}
.about-hero-card span { font-weight: 800; color: var(--ink); }
.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 24px;
  align-items: start;
}
.about-panel {
  padding: 34px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(31,122,18,.09);
  box-shadow: var(--shadow-soft);
}
.about-service-stack {
  display: grid;
  gap: 14px;
}
.about-service-stack article {
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #fff8ed);
  border: 1px solid var(--line-warm);
  box-shadow: var(--shadow-soft);
}
.about-service-stack span,
.service-tile span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 900;
}
.about-service-stack h3,
.service-tile h3 { margin: 0 0 8px; color: var(--ink); font-size: 20px; }
.about-service-stack p,
.service-tile p { margin: 0; color: var(--text); }
.service-hero-stats {
  display: grid;
  gap: 14px;
}
.service-hero-stats span {
  display: block;
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.service-hero-stats strong {
  display: block;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
}
.service-hero-stats small { color: var(--muted); font-weight: 800; }
.service-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.service-tile {
  min-height: 250px;
  padding: 26px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(31,122,18,.09);
  box-shadow: var(--shadow-soft);
  transition: transform .22s, box-shadow .22s;
}
.service-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.package-grid-pro {
  align-items: stretch;
}
.package-card-pro {
  position: relative;
  overflow: hidden;
  padding: 26px;
  background: linear-gradient(180deg, #fff, #fff8ed);
  border-color: var(--line-warm);
}
.package-card-pro::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--green), var(--orange));
}
.page-hero h1 {
  max-width: 910px;
  font-size: clamp(40px, 5vw, 64px);
}

.menu-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.menu-filter {
  position: sticky;
  top: 88px;
  z-index: 30;
  padding-top: 22px;
  padding-bottom: 18px;
  background: rgba(251, 247, 239, .9);
  backdrop-filter: blur(14px);
}
.catering-filter {
  position: sticky;
  top: 88px;
  z-index: 30;
  padding-top: 18px;
  padding-bottom: 14px;
  background: rgba(251, 247, 239, .9);
  backdrop-filter: blur(14px);
}
.category-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 8px 4px 12px;
  scrollbar-width: none;
}
.category-tabs::-webkit-scrollbar {
  display: none;
}
.category-tabs a {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}
.category-tabs a.active,
.category-tabs a:hover {
  background: var(--green);
  color: #fff;
}
.menu-category-section:target,
.catering-package-card:target,
.choice-card:target,
.extra-price-section:target {
  outline: 3px solid rgba(239, 107, 25, .34);
  outline-offset: 8px;
}
.menu-category-section {
  padding-top: 28px;
}
.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.dish-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 15px;
  align-items: center;
  min-height: 140px;
  padding: 16px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(31, 122, 18, .08);
  box-shadow: var(--shadow-soft);
}
.dish-card img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 16px;
  background: #fff8ed;
  padding: 0;
}
.dish-card h3 {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}
.dish-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
}
.dish-card strong {
  display: block;
  color: var(--green);
  font-weight: 900;
}
.dish-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.mini-btn[href*="wa.me"]::before,
.btn[href*="wa.me"]::before,
.footer-cta[href*="wa.me"] span svg,
.whatsapp-button svg {
  flex: 0 0 auto;
}
.mini-btn[href*="wa.me"],
.hero-actions .btn[href*="wa.me"].whatsapp-icon-btn {
  width: 42px;
  min-width: 42px;
  padding: 0;
  font-size: 0;
  gap: 0;
  border-radius: 50%;
}
.mini-btn[href*="wa.me"],
.hero-actions .btn[href*="wa.me"].whatsapp-icon-btn {
  border-color: #19b957;
  background: linear-gradient(135deg, #2df06d, #18b957 55%, #087f3a);
  color: #fff;
  box-shadow: 0 10px 22px rgba(37, 211, 102, .3);
}
.mini-btn[href*="wa.me"]::before {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3a8.8 8.8 0 0 0-7.6 13.3L3.3 21l4.8-1.1A8.8 8.8 0 1 0 12 3Zm0 15.8c-1.4 0-2.7-.4-3.8-1.1l-.3-.2-2.5.6.6-2.4-.2-.4A7 7 0 1 1 12 18.8Zm4-5.2c-.2-.1-1.3-.6-1.5-.7-.2-.1-.4-.1-.5.1l-.7.8c-.1.2-.3.2-.5.1a5.8 5.8 0 0 1-2.8-2.5c-.1-.2 0-.4.1-.5l.4-.5c.1-.2.2-.3.3-.5.1-.2 0-.4 0-.5l-.7-1.6c-.2-.4-.4-.4-.6-.4h-.5c-.2 0-.5.1-.7.3-.2.2-.9.9-.9 2.1 0 1.3.9 2.5 1 2.7.1.2 1.8 2.9 4.5 4 .6.3 1.1.4 1.5.5.6.2 1.2.1 1.6.1.5-.1 1.3-.5 1.5-1 .2-.5.2-1 .1-1.1 0-.2-.2-.3-.4-.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3a8.8 8.8 0 0 0-7.6 13.3L3.3 21l4.8-1.1A8.8 8.8 0 1 0 12 3Zm0 15.8c-1.4 0-2.7-.4-3.8-1.1l-.3-.2-2.5.6.6-2.4-.2-.4A7 7 0 1 1 12 18.8Zm4-5.2c-.2-.1-1.3-.6-1.5-.7-.2-.1-.4-.1-.5.1l-.7.8c-.1.2-.3.2-.5.1a5.8 5.8 0 0 1-2.8-2.5c-.1-.2 0-.4.1-.5l.4-.5c.1-.2.2-.3.3-.5.1-.2 0-.4 0-.5l-.7-1.6c-.2-.4-.4-.4-.6-.4h-.5c-.2 0-.5.1-.7.3-.2.2-.9.9-.9 2.1 0 1.3.9 2.5 1 2.7.1.2 1.8 2.9 4.5 4 .6.3 1.1.4 1.5.5.6.2 1.2.1 1.6.1.5-.1 1.3-.5 1.5-1 .2-.5.2-1 .1-1.1 0-.2-.2-.3-.4-.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.btn[href*="wa.me"]::before {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3a8.8 8.8 0 0 0-7.6 13.3L3.3 21l4.8-1.1A8.8 8.8 0 1 0 12 3Zm0 15.8c-1.4 0-2.7-.4-3.8-1.1l-.3-.2-2.5.6.6-2.4-.2-.4A7 7 0 1 1 12 18.8Zm4-5.2c-.2-.1-1.3-.6-1.5-.7-.2-.1-.4-.1-.5.1l-.7.8c-.1.2-.3.2-.5.1a5.8 5.8 0 0 1-2.8-2.5c-.1-.2 0-.4.1-.5l.4-.5c.1-.2.2-.3.3-.5.1-.2 0-.4 0-.5l-.7-1.6c-.2-.4-.4-.4-.6-.4h-.5c-.2 0-.5.1-.7.3-.2.2-.9.9-.9 2.1 0 1.3.9 2.5 1 2.7.1.2 1.8 2.9 4.5 4 .6.3 1.1.4 1.5.5.6.2 1.2.1 1.6.1.5-.1 1.3-.5 1.5-1 .2-.5.2-1 .1-1.1 0-.2-.2-.3-.4-.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3a8.8 8.8 0 0 0-7.6 13.3L3.3 21l4.8-1.1A8.8 8.8 0 1 0 12 3Zm0 15.8c-1.4 0-2.7-.4-3.8-1.1l-.3-.2-2.5.6.6-2.4-.2-.4A7 7 0 1 1 12 18.8Zm4-5.2c-.2-.1-1.3-.6-1.5-.7-.2-.1-.4-.1-.5.1l-.7.8c-.1.2-.3.2-.5.1a5.8 5.8 0 0 1-2.8-2.5c-.1-.2 0-.4.1-.5l.4-.5c.1-.2.2-.3.3-.5.1-.2 0-.4 0-.5l-.7-1.6c-.2-.4-.4-.4-.6-.4h-.5c-.2 0-.5.1-.7.3-.2.2-.9.9-.9 2.1 0 1.3.9 2.5 1 2.7.1.2 1.8 2.9 4.5 4 .6.3 1.1.4 1.5.5.6.2 1.2.1 1.6.1.5-.1 1.3-.5 1.5-1 .2-.5.2-1 .1-1.1 0-.2-.2-.3-.4-.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.footer-cta[href*="wa.me"]::before,
.social-pill[href*="wa.me"]::before,
.social-icon[href*="wa.me"]::before,
.header-whatsapp[href*="wa.me"]::before {
  content: none;
}
.mini-btn.outline {
  background: #fff;
  color: var(--green);
}
.catering-hero {
  background:
    linear-gradient(120deg, rgba(255,255,255,.92), rgba(255,248,237,.86)),
    url('../images/restaurant-collage.jpg') center / cover;
  border-radius: 0 0 28px 28px;
}
.catering-package-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.catering-package-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #fff8ed);
  border: 1px solid var(--line-warm);
  box-shadow: var(--shadow-soft);
}
.catering-package-card h3 {
  margin: 0 0 14px;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
}
.package-price {
  display: inline-flex;
  width: max-content;
  margin: -4px 0 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 13px;
}
.catering-package-card ul,
.choice-card ul,
.terms-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.catering-package-card li {
  padding: 7px 0;
  border-bottom: 1px dashed rgba(31,122,18,.16);
  font-size: 13px;
}
.catering-package-card .dish-actions { margin-top: auto; padding-top: 14px; }
.extra-price-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.extra-price-grid article {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  min-height: 72px;
  align-items: center;
  padding: 18px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.extra-price-grid span { font-weight: 800; }
.extra-price-grid strong { color: var(--green); white-space: nowrap; }
.catering-choice-grid .choice-card {
  min-height: 100%;
}
.choice-card li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(31,122,18,.08);
  color: var(--text);
  font-size: 13px;
}
.choice-card li:last-child { border-bottom: 0; }
.terms-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.terms-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
}
.terms-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
}
.menu-list-card { overflow: hidden; }
.menu-list-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
}
.menu-list-head h3 { margin: 0; font-size: 18px; }
.menu-list-head small { color: rgba(255, 255, 255, .78); font-size: 11px; font-weight: 800; }
.priced-list {
  list-style: none;
  margin: 0;
  padding: 8px 18px 18px;
}
.priced-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(31, 122, 18, .18);
  font-size: 14px;
}
.priced-list li:last-child { border-bottom: 0; }
.priced-list strong { color: var(--green); white-space: nowrap; }

.package-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.package-card { padding: 20px; }
.package-card h3 {
  margin: 0 0 12px;
  color: var(--green);
  font-family: "Playfair Display", serif;
  font-size: 22px;
}
.package-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-size: 13px;
}
.package-card li { padding: 7px 0; border-bottom: 1px solid rgba(31, 122, 18, .08); }
.package-card li:last-child { border-bottom: 0; }

.choice-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.choice-card { padding: 20px; }
.choice-card h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 23px;
}
.choice-card p { margin: 0; color: var(--muted); font-size: 13px; }

.promo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.promo-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(255, 239, 221, .96), rgba(255, 246, 235, .84)),
    url('../images/restaurant-collage.jpg') center / cover;
}
.offer-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, .85fr) 128px minmax(360px, 1fr);
  align-items: center;
  gap: 28px;
  min-height: 260px;
  padding: 38px 46px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, #fff2e1 0%, #fff7ee 56%, #ffead2 100%);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.offer-banner h2 {
  margin: 0 0 20px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(31px, 3.2vw, 46px);
  line-height: .98;
}
.offer-slider {
  position: relative;
  width: 100%;
  height: 245px;
  border-radius: 18px;
  border: 6px solid rgba(255,255,255,.86);
  box-shadow: 0 18px 36px rgba(25, 57, 18, .13);
  overflow: hidden;
  background: #fff;
}
.offer-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity .55s ease, transform 3.8s ease;
}
.offer-slide.active {
  opacity: 1;
  transform: scale(1);
}
.offer-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}
.offer-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .62);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .18);
}
.offer-dots span.active {
  width: 22px;
  border-radius: 999px;
  background: #fff;
}
.offer-stamp {
  display: grid;
  place-items: center;
  align-content: center;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  border: 2px dashed rgba(197, 107, 36, .5);
  color: var(--ink);
  background: rgba(255, 255, 255, .45);
  text-align: center;
}
.offer-stamp strong { display: block; font-weight: 900; }
.offer-stamp small { color: var(--orange); font-weight: 800; }
.offers-hidden { display: none; }
.promo-card::before {
  content: "";
  position: absolute;
  inset: auto -8% -18% auto;
  width: 48%;
  height: 70%;
  border-radius: 50%;
  background: rgba(197, 107, 36, .12);
}
.promo-card > * { position: relative; z-index: 1; }
.promo-card h3 {
  margin: 0 0 8px;
  max-width: 440px;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: 30px;
  line-height: 1.05;
}
.promo-card p { margin: 0 0 10px; max-width: 500px; color: var(--text); }

.gallery-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.gallery-link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  border: 5px solid #fff;
  box-shadow: var(--shadow-soft);
}
.gallery-link img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  transition: transform .45s;
}
.gallery-link:hover img { transform: scale(1.05); }
.gallery-link span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 16px;
}
.gallery-masonry .gallery-link img { height: 250px; }
.gallery-masonry .gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-masonry .gallery-large img { height: 516px; }

.testimonial-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.testimonial-card { padding: 24px; }
.testimonial-card strong { color: var(--orange); letter-spacing: .14em; }
.testimonial-card p { color: var(--text); }
.testimonial-card span { color: var(--green); font-weight: 800; }
.testimonial-marquee {
  overflow: hidden;
  padding: 6px 0 18px;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.testimonial-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: testimonialSlide 42s linear infinite;
}
.testimonial-track:hover { animation-play-state: paused; }
.testimonial-track .testimonial-card {
  flex: 0 0 380px;
  min-height: 190px;
}
@keyframes testimonialSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.testimonial-carousel .testimonial-card {
  display: none;
  min-height: 190px;
  opacity: 0;
}
.testimonial-carousel .testimonial-card.carousel-visible {
  display: block;
  opacity: 1;
  animation: testimonialFade .45s ease;
}
.testimonials-section .testimonial-grid.testimonial-carousel {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.showcase-carousel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
@keyframes testimonialFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.rich-copy {
  display: grid;
  gap: 14px;
  color: var(--text);
}
.premium-band {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 18px;
  align-items: stretch;
}
.premium-band article,
.contact-card {
  padding: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,248,237,.92));
  border: 1px solid rgba(197, 107, 36, .16);
  box-shadow: var(--shadow-soft);
}
.premium-band h2,
.contact-card h2,
.booking-intro h1 {
  margin: 0 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--ink);
  line-height: 1.08;
}
.premium-band h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 20px;
}
.service-card {
  min-height: 270px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,248,237,.9)),
    url('../images/restaurant-collage.jpg') center / cover;
}
.service-card .dish-actions { margin-top: 16px; }
.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(360px, 1.2fr);
  gap: 22px;
  align-items: start;
}
.contact-card p { margin: 0 0 16px; }
.contact-card strong { color: var(--orange); }
.contact-form {
  background: #fff;
}
.page-hero.services-hero,
.page-hero.gallery-hero,
.page-hero.testimonials-hero,
.page-hero.contact-hero,
.page-hero.menu-hero {
  padding-bottom: 58px;
  border-bottom: 1px solid rgba(31, 122, 18, .08);
}
.menu-hero h1,
.catering-hero h1,
.services-hero h1 {
  max-width: 780px;
}
.menu-hero p,
.catering-hero p,
.services-hero p {
  max-width: 690px;
}

.policy-strip {
  padding: 30px;
  margin-bottom: 56px;
  background: #fff8ed;
}
.policy-strip h2 { color: var(--ink); font-size: clamp(26px, 3vw, 38px); }
.policy-strip p { color: var(--text); max-width: 900px; }
.content-page p {
  max-width: 980px;
  font-size: 15px;
  line-height: 1.85;
}

.site-footer {
  padding: 34px 0 0;
  background:
    linear-gradient(135deg, rgba(13, 78, 10, .88), rgba(24, 31, 13, .82)),
    url('../images/footer-chefs-aroma.png') center left / cover;
  color: #fff;
  border-top: 1px solid rgba(31, 122, 18, .1);
}
.footer-cta-row {
  width: var(--container);
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #de6f19, #f08b2a);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(0,0,0,.16);
}
.footer-cta span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  text-transform: uppercase;
}
.footer-cta svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
}
.footer-cta[href*="wa.me"] svg { fill: #fff; stroke: none; }
.footer-grid,
.footer-grid-wide,
.footer-bottom {
  width: var(--container);
  margin: 0 auto;
}
.footer-grid-wide {
  display: grid;
  grid-template-columns: 1.05fr .85fr 1fr 1.15fr;
  gap: 38px;
  padding-bottom: 22px;
}
.footer-logo-img {
  width: 112px;
  margin-bottom: 16px;
  padding: 8px;
  border-radius: 12px;
  background: rgba(255,255,255,.94);
}
.footer-grid h3 {
  margin: 0 0 14px;
  color: #ffdc9b;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-grid p,
.footer-grid li,
.footer-grid a {
  color: rgba(255,255,255,.88);
  font-size: 14px;
}
.footer-grid ul { padding: 0; margin: 0; list-style: none; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid strong { color: #ffdc9b; }
.footer-social-inline {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: #fff !important;
  font-weight: 900;
}
.social-pill span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}
.social-pill svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.social-pill.facebook svg,
.social-pill.youtube svg {
  fill: currentColor;
  stroke: none;
}
.social-pill.instagram { background: linear-gradient(135deg, #f7b733, #d6249f, #285aeb); }
.social-pill.facebook { background: #2f5db8; }
.social-pill.youtube { background: #ff0033; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 0;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  min-width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
}
.top-social .social-icon {
  width: 28px;
  min-width: 28px;
  height: 28px;
  padding: 0;
}
.social-icon.instagram { background: linear-gradient(135deg, #f7b733, #d6249f, #285aeb); }
.social-icon.facebook { background: #2f5db8; }
.social-icon.youtube { background: #ff0033; }
.site-legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px calc((100vw - var(--container)) / 2);
  padding-right: max(calc((100vw - var(--container)) / 2), 180px);
  background: #0f430a;
  color: #fff;
  font-size: 12px;
}

.order-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(20, 89, 13, .42);
  backdrop-filter: blur(8px);
}
.order-modal.active { display: flex; }
.order-modal-card {
  position: relative;
  width: min(480px, 100%);
  padding: 28px;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.order-close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 24px;
}
.order-modal-card h2 { margin: 0 0 16px; font-family: "Playfair Display", serif; }
#quickInquiryForm { display: grid; gap: 10px; }
#quickInquiryForm input,
#quickInquiryForm textarea,
.lead-form-js input,
.lead-form-js textarea,
.lead-form-js select,
.chat-popup input,
.chat-popup textarea,
.chat-popup select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(31, 122, 18, .18);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  padding: 0 13px;
  outline: none;
}
#quickInquiryForm textarea,
.lead-form-js textarea,
.chat-popup textarea {
  min-height: 110px;
  padding-top: 12px;
  resize: vertical;
}
.order-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-status { min-height: 18px; margin: 0; color: var(--green); font-size: 13px; }

.chat-button {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(31,122,18,.14);
  border-radius: 999px;
  background: var(--paper);
  color: var(--green);
  padding: 8px 16px 8px 9px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(22, 87, 14, .18);
  animation: floatHelp 3s ease-in-out infinite;
}
.chat-button img {
  width: 42px;
  height: 42px;
  display: block;
}
.chat-button span { white-space: nowrap; }
@keyframes floatHelp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.whatsapp-button {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 80;
}
.whatsapp-button a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}
.whatsapp-button svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.chat-popup {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 98px;
  z-index: 90;
  width: min(340px, calc(100vw - 32px));
  max-height: min(620px, calc(100vh - 122px));
  overflow-y: auto;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.chat-popup.active { display: block; }
.chat-popup-header { display: flex; align-items: center; justify-content: space-between; }
.chat-popup-header button { border: 0; background: transparent; font-size: 20px; }
.chat-popup p { color: var(--text); font-size: 13px; }
.chat-cancel {
  width: 100%;
  min-height: 40px;
  margin-top: 14px;
  margin-bottom: 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--green);
  font-weight: 800;
}
.chat-popup .btn {
  width: 100%;
}

.booking-page {
  min-height: calc(100vh - 230px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.booking-card,
.lead-form-js {
  padding: 24px;
}
.lead-form-js label { color: var(--ink); font-weight: 800; font-size: 13px; }
.lead-form-js input,
.lead-form-js textarea,
.lead-form-js select { margin: 5px 0 12px; }

@media (max-width: 1120px) {
  :root { --container: min(960px, calc(100vw - 36px)); }
  .hero,
  .about { grid-template-columns: 1fr; }
  .about-hero-pro,
  .service-hero-pro,
  .about-story-grid { grid-template-columns: 1fr; }
  .hero-card,
  .hero-card img,
  .hero-card iframe,
  .hero-card video { min-height: 390px; }
  .hero-card { border-radius: 24px; }
  .about-home,
  .offer-banner { grid-template-columns: 1fr; }
  .offer-banner {
    gap: 20px;
  }
  .offer-stamp {
    justify-self: start;
  }
  .offer-slider {
    height: 320px;
  }
  .menu-row,
  .package-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .menu-category-grid,
  .dish-grid,
  .service-tile-grid,
  .choice-grid,
  .catering-package-grid,
  .footer-grid-wide,
  .gallery-masonry,
  .premium-band,
  .contact-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .extra-price-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  .top-strip { display: none; }
  .site-header { min-height: 76px; padding-top: 8px; padding-bottom: 8px; }
  .site-nav,
  .nav-dropdown,
  .header-cta,
  .header-whatsapp { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; margin-left: auto; }
  .brand-logo { width: 56px; height: 50px; }
  .brand-text strong { font-size: 24px; }
  .brand-text small { font-size: 13px; }
  .menu-filter,
  .catering-filter { top: 76px; }
  .category-tabs a {
    min-height: 34px;
    padding: 7px 13px;
    font-size: 12px;
  }
  .trust-bar,
  .promo-grid,
  .testimonial-grid,
  .gallery-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  :root { --container: calc(100vw - 28px); }
  .hero { min-height: 0; padding-top: 34px; gap: 30px; }
  .hero h1,
  .page-hero h1 { font-size: 44px; }
  .hero-meta,
  .stats,
  .trust-bar,
  .menu-row,
  .menu-category-grid,
  .dish-grid,
  .catering-package-grid,
  .package-grid,
  .choice-grid,
  .promo-grid,
  .extra-price-grid,
  .testimonial-grid,
  .showcase-carousel,
  .gallery-masonry,
  .premium-band,
  .contact-layout,
  .gallery-row,
  .footer-grid-wide,
  .footer-cta-row,
  .booking-page { grid-template-columns: 1fr; }
  .testimonial-track .testimonial-card { flex-basis: min(330px, calc(100vw - 56px)); }
  .section-title { display: block; }
  .section-title .btn,
  .section-title button { margin-top: 16px; }
  .about-visual { grid-template-columns: 1fr; min-height: 0; }
  .about-visual img { min-height: 240px; }
  .hero-card,
  .hero-card img,
  .hero-card iframe,
  .hero-card video { min-height: 300px; }
  .hero-card iframe,
  .hero-card video { border-radius: 18px; }
  .offer-banner {
    padding: 26px 20px;
    min-height: 0;
  }
  .offer-slider {
    height: 230px;
    border-width: 4px;
  }
  .hero-actions,
  .footer-bottom,
  .site-legal { align-items: stretch; flex-direction: column; }
  .hero-actions .btn,
  .footer-bottom .btn { width: 100%; }
  .order-actions { grid-template-columns: 1fr; }
  .dish-card { grid-template-columns: 78px 1fr; }
  .dish-card img { width: 78px; height: 78px; }
  .gallery-masonry .gallery-link,
  .gallery-masonry .gallery-large {
    grid-column: auto;
    grid-row: auto;
  }
  .gallery-masonry .gallery-link img,
  .gallery-masonry .gallery-large img { height: 260px; }
  .chat-button,
  .whatsapp-button { right: 14px; }
}
