:root {
  color: #263025;
  background: #fffdf8;
  font-family: var(--sans);
  font-synthesis: none;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  --display: "Chewy", "Bubblegum Sans", "Arial Rounded MT Bold", ui-rounded, cursive;
  --sans: "Nunito", "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mango: #ffd44d;
  --mango-deep: #ffb829;
  --lime: #9bd23d;
  --lime-deep: #5b9c27;
  --leaf: #1f6b3a;
  --leaf-dark: #15502c;
  --strawberry: #ff4f8a;
  --berry-deep: #c72661;
  --mandarin: #ff8748;
  --cream: #fff8e9;
  --blush: #fff0f5;
  --mint: #f3ffe9;
  --ink: #263025;
  --soft-ink: rgba(38, 48, 37, 0.72);
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(255, 135, 72, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  min-width: 320px;
  background: #fffdf8;
  letter-spacing: 0;
}

body,
button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

main {
  overflow: hidden;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 0;
  color: white;
  font-size: clamp(3rem, 7.5vw, 6.8rem);
  line-height: 0.95;
  text-wrap: balance;
  text-shadow: 0 8px 30px rgba(74, 30, 11, 0.32);
}

h2 {
  margin-bottom: 18px;
  color: var(--berry-deep);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1;
  text-wrap: balance;
}

p {
  color: var(--soft-ink);
  font-size: 1.04rem;
}

strong {
  font-weight: 900;
}

.section-pad {
  padding: 96px max(20px, calc((100% - 1160px) / 2));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--mango);
  border: 0;
  box-shadow: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 36px));
  min-height: 84px;
  margin: 0 auto;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  min-height: 48px;
  color: #3f2410;
  font-family: var(--sans);
}

.brand img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 58px;
}

.logo-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(63, 36, 16, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.18);
  color: rgba(63, 36, 16, 0.46);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.logo-placeholder[hidden] {
  display: none;
}

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

.nav a,
.mobile-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 106px;
  min-height: 44px;
  padding: 11px 20px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: #47280f;
  font-weight: 900;
  box-shadow: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  transform: translateY(-2px) scale(1.02);
  background: var(--strawberry);
  color: white;
}

.hamburger {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  color: var(--berry-deep);
  box-shadow: none;
}

.hamburger span {
  position: absolute;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.hamburger span:nth-child(1) {
  transform: translateY(-7px);
}

.hamburger span:nth-child(3) {
  transform: translateY(7px);
}

.hamburger.is-open span:nth-child(1) {
  transform: rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero-slider {
  position: relative;
  padding: 0;
  background: #fffdf8;
}

.slider-stage {
  position: relative;
  min-height: clamp(560px, calc(100svh - 84px), 820px);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, #ffcf43, #ff6d9b 46%, #9bd23d);
  box-shadow: none;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
}

.slide.is-active {
  opacity: 1;
  z-index: 1;
}

.slide-image {
  position: absolute;
  inset: 0;
  background-image: var(--slide-image), var(--fallback-gradient);
}

.slide-image {
  background-position: center;
  background-size: cover;
  transform: scale(1.08);
  transform-origin: center;
}

.slide.is-active .slide-image {
  animation: heroZoom 4700ms ease-out forwards;
}

.hero-fallback {
  background-blend-mode: normal;
}

.hero-fallback--one {
  background-color: #ffd44d;
}

.hero-fallback--two {
  background-color: #ffefb4;
}

.hero-fallback--three {
  background-color: #ffd7e5;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--berry-deep);
  box-shadow: 0 14px 34px rgba(38, 48, 37, 0.18);
  transform: translateY(-50%);
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
  background: var(--mango);
  transform: translateY(-50%) scale(1.08);
}

.slider-arrow--prev {
  left: max(20px, calc((100% - 1180px) / 2));
}

.slider-arrow--next {
  right: max(20px, calc((100% - 1180px) / 2));
}

.slider-dots {
  position: absolute;
  right: 0;
  bottom: 26px;
  left: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.slider-dots button {
  width: 36px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  transition:
    width 180ms ease,
    background-color 180ms ease;
}

.slider-dots button.is-active {
  width: 58px;
  background: var(--mango);
}

.intro-section {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 240, 245, 0.78), rgba(255, 248, 233, 0.9) 46%, rgba(243, 255, 233, 0.72)),
    var(--white);
}

.intro-card {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 28px 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
  box-shadow: none;
}

.intro-card p:last-child,
.menu-card p {
  margin-bottom: 0;
  font-size: clamp(1.04rem, 2vw, 1.22rem);
}

.section-kicker {
  margin-bottom: 13px;
  color: var(--mandarin);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.parallax-band {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
  overflow: hidden;
  isolation: isolate;
}

.parallax-photo {
  position: absolute;
  inset: -90px 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
  will-change: transform;
  transition: transform 120ms linear;
}

.menu-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 0;
  align-items: center;
  background:
    linear-gradient(180deg, #fffdf8, #fff4d7 100%);
  padding-right: max(20px, calc((100% - 1160px) / 2));
  padding-left: 0;
}

.menu-preview__image-wrap {
  min-height: 620px;
  overflow: hidden;
  border: 0;
  border-radius: 0 36px 36px 0;
  background: linear-gradient(135deg, var(--mango), var(--strawberry));
  box-shadow: 24px 24px 70px rgba(255, 135, 72, 0.14);
}

.menu-preview__image-wrap img,
.menu-image-fallback {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.menu-image-fallback {
  background:
    linear-gradient(135deg, rgba(255, 212, 77, 0.94), rgba(255, 79, 138, 0.78)),
    linear-gradient(45deg, transparent 0 30%, rgba(155, 210, 61, 0.42) 30% 58%, transparent 58% 100%);
}

.menu-card {
  margin-left: clamp(24px, 5vw, 64px);
  padding: 54px;
  border: 1px solid rgba(255, 135, 72, 0.18);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 70px rgba(199, 38, 97, 0.12);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  margin-top: 30px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button--menu {
  background: var(--strawberry);
  color: white;
  box-shadow: 0 16px 36px rgba(255, 79, 138, 0.28);
}

.button--menu:hover,
.button--menu:focus-visible {
  background: var(--mandarin);
}

.contact-footer {
  position: relative;
  background:
    linear-gradient(135deg, #fff3c5 0%, #fffdf8 48%, #ffeaf2 100%);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: 54px;
  align-items: stretch;
}

.contact-info {
  padding: 46px;
  border-radius: 32px;
  background: white;
  box-shadow: 0 22px 60px rgba(255, 135, 72, 0.12);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 4px;
}

.contact-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(255, 135, 72, 0.18);
  border-radius: 20px;
  background: #fff8e9;
}

.contact-item svg {
  color: var(--strawberry);
}

.contact-item span {
  display: grid;
  color: var(--soft-ink);
}

.contact-item strong {
  color: var(--ink);
}

.button--directions {
  background: var(--lime-deep);
  color: white;
  box-shadow: 0 16px 36px rgba(91, 156, 39, 0.22);
}

.button--directions:hover,
.button--directions:focus-visible {
  background: var(--mandarin);
}

.map-shell {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 8px solid white;
  border-radius: 32px;
  background: linear-gradient(135deg, #ffdf68, #ff8fb4);
  box-shadow: var(--shadow);
}

.map-shell iframe,
.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 460px;
}

.map-shell iframe {
  position: relative;
  z-index: 1;
  border: 0;
}

.map-location-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  display: grid;
  gap: 2px;
  max-width: 460px;
  padding: 16px 18px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(199, 38, 97, 0.16);
  color: var(--ink);
}

.map-location-card strong {
  color: var(--berry-deep);
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1;
}

.map-location-card span {
  color: var(--soft-ink);
  font-weight: 800;
}

.map-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 212, 77, 0.82), rgba(255, 79, 138, 0.58));
  color: #4d2b0f;
  text-align: center;
}

.map-placeholder svg {
  color: var(--berry-deep);
}

.map-placeholder strong {
  font-family: var(--display);
  font-size: 1.7rem;
}

.map-placeholder span {
  max-width: 360px;
  color: rgba(77, 43, 15, 0.72);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px max(20px, calc((100% - 1160px) / 2));
  background: var(--leaf-dark);
  color: white;
  font-weight: 800;
}

.footer-bottom span:first-child {
  font-family: var(--display);
  font-size: 1.35rem;
}

.footer-bottom a {
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 180ms ease;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--mango);
}

.reveal {
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease var(--reveal-delay),
    transform 700ms ease var(--reveal-delay);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1.02);
  }
}

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

@media (max-width: 920px) {
  html {
    scroll-padding-top: 92px;
  }

  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .header-inner {
    min-height: 82px;
  }

  .mobile-nav {
    display: grid;
    width: min(1180px, calc(100% - 36px));
    max-height: 0;
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 0;
    transition:
      max-height 220ms ease,
      padding-bottom 220ms ease;
  }

  .mobile-nav.is-open {
    max-height: 220px;
    padding-bottom: 24px;
  }

  .mobile-nav a {
    width: 100%;
  }

  .mobile-nav {
    gap: 10px;
  }

  .slider-stage {
    min-height: 610px;
  }

  .menu-preview,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .menu-preview {
    gap: 34px;
    padding: 76px 20px;
  }

  .menu-preview__image-wrap,
  .menu-preview__image-wrap img,
  .menu-image-fallback {
    min-height: 420px;
  }

  .menu-preview__image-wrap {
    border-radius: 28px;
  }

  .menu-card {
    margin-left: 0;
  }

  .parallax-photo {
    transition: transform 180ms linear;
  }
}

@media (max-width: 620px) {
  .section-pad {
    padding: 70px 16px;
  }

  .brand {
    font-size: 1.18rem;
  }

  .hero-slider {
    padding: 0;
  }

  .slider-stage {
    min-height: 570px;
  }

  h1 {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3.1rem);
  }

  .slider-arrow {
    top: auto;
    bottom: 58px;
    width: 46px;
    height: 46px;
  }

  .slider-arrow--prev {
    left: 22px;
  }

  .slider-arrow--next {
    right: 22px;
  }

  .intro-card,
  .menu-card,
  .contact-info {
    padding: 34px 22px;
    border-radius: 24px;
  }

  .parallax-band {
    min-height: 340px;
  }

  .button,
  .nav a,
  .mobile-nav a {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
