:root {
  --background: 42 45% 96%;
  --page-gradient: linear-gradient(135deg, #fff3a3 0%, #ffd166 38%, #ff9f1c 72%, #f97316 100%);
  --foreground: 24 34% 12%;
  --primary: 18 77% 39%;
  --primary-foreground: 0 0% 100%;
  --secondary: 43 87% 56%;
  --secondary-foreground: 24 34% 12%;
  --muted: 37 35% 88%;
  --muted-foreground: 24 13% 42%;
  --destructive: 0 72% 48%;
  --destructive-foreground: 0 0% 100%;
  --border: 30 24% 80%;
  --card: 42 55% 98%;
  --shadow-sm: 0 8px 24px hsl(24 34% 12% / 0.08);
  --shadow-md: 0 16px 42px hsl(24 34% 12% / 0.12);
  --shadow-lg: 0 28px 80px hsl(24 34% 12% / 0.18);
  --transition-fast: 160ms ease;
  --transition-smooth: 320ms cubic-bezier(.2,.8,.2,1);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
}

.dark {
  --background: 24 34% 8%;
  --page-gradient: linear-gradient(135deg, #5b2a00 0%, #9a4f00 44%, #f59e0b 100%);
  --foreground: 42 45% 96%;
  --primary: 24 82% 56%;
  --primary-foreground: 0 0% 100%;
  --secondary: 43 87% 58%;
  --secondary-foreground: 24 34% 10%;
  --muted: 24 20% 16%;
  --muted-foreground: 35 18% 70%;
  --destructive: 0 72% 55%;
  --destructive-foreground: 0 0% 100%;
  --border: 24 18% 22%;
  --card: 24 30% 11%;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--page-gradient);
  background-attachment: fixed;
  color: hsl(var(--foreground));
}

a { text-decoration: none; }

@keyframes softPageIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes smoothSlideUp {
  from { opacity: 0; transform: translateY(34px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes imageFloatIn {
  from { opacity: 0; transform: scale(0.96) translateY(22px); filter: saturate(0.75) blur(6px); }
  to { opacity: 1; transform: scale(1) translateY(0); filter: saturate(1) blur(0); }
}
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes softGlow {
  0%, 100% { opacity: 0.42; transform: scale(1); }
  50% { opacity: 0.68; transform: scale(1.08); }
}

main { animation: softPageIn 700ms cubic-bezier(.2,.8,.2,1) both; }
section { animation: smoothSlideUp 760ms cubic-bezier(.2,.8,.2,1) both; }
section:nth-of-type(2) { animation-delay: 80ms; }
section:nth-of-type(3) { animation-delay: 140ms; }
section:nth-of-type(4) { animation-delay: 200ms; }
section:nth-of-type(5) { animation-delay: 260ms; }
section:nth-of-type(6) { animation-delay: 320ms; }
section:nth-of-type(7) { animation-delay: 380ms; }
.section-kicker,
.section-title,
.section-copy,
h1,
h2,
h3,
p {
  text-wrap: pretty;
}

.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
  background: #050505;
  border: 1px solid hsl(var(--secondary) / 0.5);
  box-shadow: var(--shadow-sm), inset 0 1px 0 hsl(43 87% 70% / 0.22);
}
.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
}
.brand-logo-header {
  width: 58px;
  height: 34px;
  border-radius: 13px;
  padding: 4px;
}
.brand-logo-hero {
  width: min(250px, 78vw);
  height: 112px;
  border-radius: 30px;
  padding: 12px;
  box-shadow: var(--shadow-lg), inset 0 1px 0 hsl(43 87% 70% / 0.24);
  animation: imageFloatIn 850ms cubic-bezier(.2,.8,.2,1) 80ms both;
}
.brand-logo-card {
  width: 84px;
  height: 48px;
  border-radius: 16px;
  padding: 6px;
  background: hsl(0 0% 0% / 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.brand-logo-footer {
  width: 68px;
  height: 40px;
  border-radius: 15px;
  padding: 5px;
}

.hero-orb {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.5;
  animation: softGlow 6s ease-in-out infinite;
}
.hero-orb-one {
  width: 360px;
  height: 360px;
  top: 110px;
  right: -120px;
  background: radial-gradient(circle, hsl(var(--secondary) / 0.55), transparent 65%);
}
.hero-orb-two {
  width: 300px;
  height: 300px;
  bottom: 40px;
  left: -120px;
  background: radial-gradient(circle, hsl(var(--primary) / 0.28), transparent 65%);
  animation-delay: 1.5s;
}

.metric-card {
  border: 1px solid hsl(var(--border) / 0.72);
  background: linear-gradient(180deg, hsl(var(--card) / 0.58), hsl(var(--card) / 0.4));
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm), inset 0 1px 0 hsl(0 0% 100% / 0.45);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}
.metric-card:hover { transform: translateY(-5px) scale(1.02); box-shadow: var(--shadow-md), inset 0 1px 0 hsl(0 0% 100% / 0.58); }
.metric-card strong {
  display: block;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 950;
}
.metric-card span {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: hsl(var(--muted-foreground));
  font-weight: 750;
}

.food-card {
  position: relative;
  overflow: hidden;
  border: 1px solid hsl(var(--border) / 0.75);
  background:
    linear-gradient(145deg, hsl(var(--card) / 0.72), hsl(var(--muted) / 0.48)),
    radial-gradient(circle at top right, hsl(var(--secondary) / 0.35), transparent 45%);
  backdrop-filter: blur(20px) saturate(1.18);
  -webkit-backdrop-filter: blur(20px) saturate(1.18);
  border-radius: calc(var(--radius-lg) * 1.35);
  padding: 28px;
  box-shadow: var(--shadow-lg), inset 0 1px 0 hsl(0 0% 100% / 0.42);
  animation: imageFloatIn 900ms cubic-bezier(.2,.8,.2,1) 160ms both;
}
.big-card { min-height: 520px; display: flex; flex-direction: column; justify-content: flex-end; }
.feast-card-no-image { min-height: 420px; justify-content: center; }
.feast-card-no-image::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  top: -70px;
  right: -65px;
  border-radius: 999px;
  background: radial-gradient(circle, hsl(var(--secondary) / 0.34), transparent 68%);
}
.feast-card-with-overlap { min-height: 520px; justify-content: flex-end; }
.feast-overlap-image {
  position: relative;
  min-height: 315px;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) * 0.95);
  border: 1px solid hsl(var(--border) / 0.72);
  background: hsl(var(--muted));
  box-shadow: var(--shadow-md), inset 0 1px 0 hsl(0 0% 100% / 0.38);
}
.feast-overlap-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, hsl(var(--foreground) / 0.04) 0%, hsl(var(--foreground) / 0.1) 40%, hsl(var(--foreground) / 0.56) 100%);
  pointer-events: none;
}
.feast-overlap-image img {
  width: 100%;
  height: 100%;
  min-height: 315px;
  display: block;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(.2,.8,.2,1), filter 900ms cubic-bezier(.2,.8,.2,1);
}
.feast-card-with-overlap:hover .feast-overlap-image img { transform: scale(1.06); filter: saturate(1.08); }
.feast-overlap-glass {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  border: 1px solid hsl(0 0% 100% / 0.36);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, hsl(var(--card) / 0.46), hsl(var(--card) / 0.24));
  backdrop-filter: blur(16px) saturate(1.18);
  -webkit-backdrop-filter: blur(16px) saturate(1.18);
  padding: 18px;
  color: white;
  text-shadow: 0 2px 14px hsl(var(--foreground) / 0.48);
  box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.38), var(--shadow-sm);
}
.feast-emoji-mark {
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  border-radius: 34px;
  background: linear-gradient(180deg, hsl(var(--secondary) / 0.3), hsl(var(--card) / 0.38));
  backdrop-filter: blur(12px) saturate(1.12);
  -webkit-backdrop-filter: blur(12px) saturate(1.12);
  font-size: 3.5rem;
  box-shadow: inset 0 0 0 1px hsl(var(--border) / 0.8), var(--shadow-sm);
  animation: gentleFloat 5s ease-in-out infinite;
}
.feast-image-wrap {
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 285px;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) * 0.95);
  background: hsl(var(--muted));
  box-shadow: inset 0 0 0 1px hsl(var(--border)), var(--shadow-md);
}
.feast-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, hsl(var(--foreground) / 0.2) 100%);
  pointer-events: none;
}
.feast-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  animation: gentleFloat 7s ease-in-out infinite;
}
.plate-art {
  position: absolute;
  top: 54px;
  left: 50%;
  width: 260px;
  height: 260px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: radial-gradient(circle, white 0 36%, hsl(var(--secondary) / 0.38) 37% 58%, hsl(var(--primary) / 0.14) 59% 100%);
  box-shadow: inset 0 0 0 18px hsl(var(--background) / 0.5), var(--shadow-md);
}
.plate-art span { font-size: 6rem; }

.about-overlap-image {
  position: relative;
  min-height: 295px;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 6px);
  border: 1px solid hsl(var(--border) / 0.72);
  background: hsl(var(--muted));
  box-shadow: var(--shadow-md), inset 0 1px 0 hsl(0 0% 100% / 0.38);
  animation: imageFloatIn 820ms cubic-bezier(.2,.8,.2,1) both;
}
.about-overlap-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, hsl(var(--foreground) / 0.06) 0%, hsl(var(--foreground) / 0.12) 38%, hsl(var(--foreground) / 0.5) 100%);
  pointer-events: none;
}
.about-overlap-image img {
  width: 100%;
  height: 100%;
  min-height: 295px;
  display: block;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(.2,.8,.2,1), filter 900ms cubic-bezier(.2,.8,.2,1);
}
.about-overlap-image:hover img { transform: scale(1.06); filter: saturate(1.08); }
.about-overlap-glass {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  border: 1px solid hsl(0 0% 100% / 0.34);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, hsl(var(--card) / 0.44), hsl(var(--card) / 0.22));
  backdrop-filter: blur(16px) saturate(1.18);
  -webkit-backdrop-filter: blur(16px) saturate(1.18);
  padding: 18px;
  color: white;
  text-shadow: 0 2px 14px hsl(var(--foreground) / 0.45);
  box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.38), var(--shadow-sm);
}

.section-kicker {
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsl(var(--primary));
}
.section-title {
  margin-top: 12px;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 950;
  text-align: center;
}
.section-copy {
  margin-top: 18px;
  color: hsl(var(--muted-foreground));
  line-height: 1.8;
}
.section-feature-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid hsl(var(--border) / 0.72);
  background: hsl(var(--muted) / 0.55);
  backdrop-filter: blur(18px) saturate(1.16);
  -webkit-backdrop-filter: blur(18px) saturate(1.16);
  box-shadow: var(--shadow-md), inset 0 1px 0 hsl(0 0% 100% / 0.38);
  aspect-ratio: 16 / 10;
  animation: imageFloatIn 800ms cubic-bezier(.2,.8,.2,1) both;
}
.section-feature-image-centered {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.section-feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, hsl(var(--foreground) / 0.18) 100%);
  pointer-events: none;
}
.section-feature-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(.2,.8,.2,1), filter 900ms cubic-bezier(.2,.8,.2,1);
}
.section-feature-image:hover img { transform: scale(1.06); filter: saturate(1.08); }

.feature-card,
.reason-card,
.menu-card,
.gallery-card {
  border: 1px solid hsl(var(--border) / 0.72);
  background: linear-gradient(180deg, hsl(var(--card) / 0.62), hsl(var(--card) / 0.44));
  backdrop-filter: blur(18px) saturate(1.16);
  -webkit-backdrop-filter: blur(18px) saturate(1.16);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm), inset 0 1px 0 hsl(0 0% 100% / 0.42);
  animation: smoothSlideUp 700ms cubic-bezier(.2,.8,.2,1) both;
  transition: transform 520ms cubic-bezier(.2,.8,.2,1), box-shadow 520ms cubic-bezier(.2,.8,.2,1), border-color 520ms cubic-bezier(.2,.8,.2,1);
}
.feature-card:hover,
.reason-card:hover,
.menu-card:hover,
.gallery-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: hsl(var(--primary) / 0.45);
  box-shadow: var(--shadow-md), inset 0 1px 0 hsl(0 0% 100% / 0.55);
}
.feature-card { padding: 24px; display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: hsl(var(--primary));
  color: white;
  font-weight: 950;
  transition: transform var(--transition-smooth);
}
.feature-card:hover .feature-icon { transform: rotate(-6deg) scale(1.08); }
.menu-card { padding: 14px; min-height: 265px; overflow: hidden; }
.menu-image-wrap,
.reason-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 10px);
  background: hsl(var(--muted));
}
.menu-image-wrap { height: 150px; }
.reason-image-wrap { height: 150px; margin: -12px -12px 0; }
.menu-image,
.reason-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 850ms cubic-bezier(.2,.8,.2,1), filter 850ms cubic-bezier(.2,.8,.2,1);
}
.menu-card:hover .menu-image,
.reason-card:hover .reason-image-wrap img { transform: scale(1.08); filter: saturate(1.08) contrast(1.02); }
.menu-image-badge,
.reason-image-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, hsl(var(--card) / 0.88), hsl(var(--card) / 0.64));
  backdrop-filter: blur(12px) saturate(1.16);
  -webkit-backdrop-filter: blur(12px) saturate(1.16);
  box-shadow: var(--shadow-sm), inset 0 1px 0 hsl(0 0% 100% / 0.45);
  font-size: 1.35rem;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}
.menu-card:hover .menu-image-badge,
.reason-card:hover .reason-image-badge { transform: scale(1.12) rotate(6deg); box-shadow: var(--shadow-md), inset 0 1px 0 hsl(0 0% 100% / 0.58); }
.reason-card { padding: 26px; overflow: hidden; }
.gallery-card {
  min-height: 310px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 80% 20%, hsl(var(--secondary) / 0.18), transparent 35%),
    linear-gradient(180deg, hsl(var(--card) / 0.62), hsl(var(--card) / 0.44));
}

.contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid hsl(var(--border) / 0.62);
  background: linear-gradient(180deg, hsl(var(--card) / 0.52), hsl(var(--muted) / 0.38));
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
  color: hsl(var(--muted-foreground));
  line-height: 1.65;
  font-weight: 650;
  box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.32);
  transition: transform var(--transition-smooth), background var(--transition-smooth), border-color var(--transition-smooth);
}
.contact-row:hover { transform: translateX(6px); background: linear-gradient(180deg, hsl(var(--secondary) / 0.22), hsl(var(--card) / 0.45)); border-color: hsl(var(--primary) / 0.3); }
.contact-row span { font-size: 1.35rem; }
.map-card {
  position: relative;
  height: 100%;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--radius-lg);
  padding: 32px;
  background:
    linear-gradient(135deg, hsl(var(--card) / 0.38), hsl(var(--secondary) / 0.16)),
    repeating-linear-gradient(45deg, hsl(var(--border) / 0.55) 0 1px, transparent 1px 18px);
  backdrop-filter: blur(18px) saturate(1.14);
  -webkit-backdrop-filter: blur(18px) saturate(1.14);
  overflow: hidden;
  box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.36);
  animation: imageFloatIn 820ms cubic-bezier(.2,.8,.2,1) both;
}
.map-pin {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: hsl(var(--primary));
  color: white;
  font-size: 2rem;
  box-shadow: var(--shadow-md);
  animation: gentleFloat 4.5s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 640px) {
  .brand-logo-header { width: 50px; height: 30px; border-radius: 11px; }
  .brand-logo-hero { width: min(210px, 72vw); height: 94px; border-radius: 24px; }
  .brand-logo-card { width: 72px; height: 42px; }
  .big-card { min-height: 500px; }
  .feast-card-no-image { min-height: 360px; }
  .feast-card-with-overlap { min-height: auto; }
  .feast-overlap-image { min-height: 260px; }
  .feast-overlap-image img { min-height: 260px; }
  .feast-overlap-glass { left: 12px; right: 12px; bottom: 12px; padding: 14px; }
  .feast-image-wrap { top: 24px; left: 24px; right: 24px; height: 245px; }
  .plate-art { width: 220px; height: 220px; top: 48px; }
  .plate-art span { font-size: 5rem; }
  .about-overlap-image { min-height: 250px; }
  .about-overlap-image img { min-height: 250px; }
  .about-overlap-glass { left: 12px; right: 12px; bottom: 12px; padding: 14px; }
  .section-title { text-align: left; }
  .section-feature-image-centered { margin-left: 0; margin-right: 0; }
}
