:root {
  --bg: #fff9f6;
  --bg-soft: #fff3ee;
  --text: #2c2927;
  --muted: #6e6661;
  --line: rgba(60, 42, 36, 0.08);
  --white: rgba(255, 255, 255, 0.72);
  --white-strong: rgba(255, 255, 255, 0.92);
  --green: #96c8a7;
  --green-deep: #79b78f;
  --peach: #f3c7b8;
  --rose: #f6d9d0;
  --shadow: 0 20px 60px rgba(71, 45, 38, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.55), transparent 30%),
    linear-gradient(180deg, #fffaf7 0%, #fff4ef 100%);
  color: var(--text);
  overflow-x: hidden;
}

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

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

.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.bg-blobs span {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.75;
  animation: floatBlob 16s ease-in-out infinite;
}

.bg-blobs span:nth-child(1) {
  width: 340px;
  height: 340px;
  top: -40px;
  left: -20px;
  background: rgba(150, 200, 167, 0.6);
}

.bg-blobs span:nth-child(2) {
  width: 360px;
  height: 360px;
  top: 220px;
  right: -100px;
  background: rgba(243, 199, 184, 0.58);
  animation-delay: -5s;
}

.bg-blobs span:nth-child(3) {
  width: 280px;
  height: 280px;
  bottom: 120px;
  left: 20%;
  background: rgba(246, 217, 208, 0.6);
  animation-delay: -9s;
}

.bg-blobs span:nth-child(4) {
  width: 220px;
  height: 220px;
  bottom: -40px;
  right: 15%;
  background: rgba(150, 200, 167, 0.4);
  animation-delay: -12s;
}

.site-header,
.hero,
.stats,
.section,
.site-footer {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  margin-top: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(77, 49, 43, 0.08);
  border-radius: 999px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--peach));
  box-shadow: 0 12px 24px rgba(121, 183, 143, 0.25);
  font-size: 18px;
}

.brand-text {
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.nav {
  display: none;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--text);
}

.header-cta {
  display: none;
}

.hero {
  min-height: calc(100vh - 110px);
  padding: 44px 0 24px;
  display: grid;
  align-items: center;
  gap: 28px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero h1,
.section-head h2,
.footer-copy h2,
.cta-card h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(42px, 11vw, 78px);
  max-width: 12ch;
}

.hero p,
.section-head p,
.panel-top p,
.footer-copy p,
.menu-card p,
.cta-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy p {
  max-width: 540px;
  margin: 18px 0 0;
}

.hero-actions,
.location-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green-deep), var(--peach));
  box-shadow: 0 14px 28px rgba(121, 183, 143, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(121, 183, 143, 0.2);
  color: var(--text);
}

.hero-points {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  position: relative;
}

.truck-card {
  position: relative;
  padding: 18px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.55));
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.65);
}

.truck-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 28px;
  position: relative;
}

.truck-photo img {
  height: 100%;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 32px rgba(58, 37, 31, 0.12);
  display: grid;
  gap: 4px;
  min-width: 150px;
  animation: floatCard 6s ease-in-out infinite;
}

.floating-badge strong {
  font-size: 14px;
}

.floating-badge span {
  font-size: 13px;
  color: var(--muted);
}

.badge-top {
  top: 18px;
  left: -6px;
}

.badge-bottom {
  right: -6px;
  bottom: 24px;
  animation-delay: -3s;
}

.stats {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.stat-card,
.menu-card,
.glass-card,
.gallery-card,
.cta-card {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  display: grid;
  gap: 4px;
}

.stat-card strong {
  font-size: 28px;
  letter-spacing: -0.05em;
}

.stat-card span {
  color: var(--muted);
}

.section {
  padding: 84px 0 0;
}

.section-head {
  margin-bottom: 28px;
  max-width: 720px;
}

.section-head h2,
.footer-copy h2,
.cta-card h2 {
  font-size: clamp(34px, 7vw, 58px);
}

.menu-grid {
  display: grid;
  gap: 14px;
}

.menu-card {
  padding: 22px 22px 20px;
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  transition: transform 180ms ease;
}

.menu-card:hover,
.insta-item:hover,
.gallery-card:hover {
  transform: translateY(-4px);
}

.menu-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.menu-card p {
  margin: 0;
}

.menu-card strong {
  font-size: 24px;
  white-space: nowrap;
}

.menu-card.featured {
  background: linear-gradient(135deg, rgba(150, 200, 167, 0.32), rgba(243, 199, 184, 0.4));
}

.map-feed-layout {
  display: grid;
  gap: 16px;
}

.glass-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.panel-top {
  padding: 24px 24px 18px;
}

.panel-top h3 {
  margin: 10px 0 8px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.panel-top p {
  margin: 0;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(121, 183, 143, 0.16);
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 700;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #52b36c;
  box-shadow: 0 0 0 8px rgba(82, 179, 108, 0.15);
  animation: pulseDot 1.8s ease-out infinite;
}

.map-embed {
  padding-inline: 12px;
}

.map-embed iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 22px;
}

.location-actions {
  padding: 20px 24px 24px;
}

.insta-grid {
  padding: 0 12px 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.insta-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 150px;
  aspect-ratio: 1 / 1;
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 16px 32px rgba(77, 49, 43, 0.10);
}

.insta-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(36, 20, 14, 0.58) 100%);
}

.insta-item img {
  height: 100%;
  object-fit: cover;
}

.insta-item span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: lowercase;
}

.gallery-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 78%;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
}

.gallery-scroll::-webkit-scrollbar {
  height: 8px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
  background: rgba(121, 183, 143, 0.35);
  border-radius: 999px;
}

.gallery-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  scroll-snap-align: start;
  transition: transform 180ms ease;
}

.gallery-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.cta-card {
  padding: 32px;
  border-radius: 36px;
}

.site-footer {
  padding-bottom: 110px;
}

.footer-copy {
  margin-bottom: 18px;
}

.footer-copy p {
  margin: 14px 0 0;
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--green-deep), var(--peach));
  box-shadow: 0 18px 36px rgba(121, 183, 143, 0.34);
  font-size: 24px;
  transition: transform 180ms ease;
}

.floating-cta:hover {
  transform: translateY(-3px) scale(1.02);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatBlob {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -22px, 0); }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(82, 179, 108, 0.3); }
  100% { box-shadow: 0 0 0 10px rgba(82, 179, 108, 0); }
}

@media (min-width: 760px) {
  .site-header {
    padding-inline: 22px;
  }

  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 38px;
    padding-top: 58px;
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-feed-layout {
    grid-template-columns: 1.03fr 0.97fr;
    align-items: stretch;
  }

  .gallery-scroll {
    grid-auto-columns: 36%;
  }
}

@media (min-width: 980px) {
  .nav {
    display: inline-flex;
  }

  .header-cta {
    display: inline-flex;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(121, 183, 143, 0.12);
    color: var(--green-deep);
    font-size: 14px;
    font-weight: 700;
  }

  .section {
    padding-top: 108px;
  }

  .map-embed iframe {
    min-height: 420px;
  }

  .gallery-scroll {
    grid-auto-columns: calc((100% - 28px) / 3);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
