/* ============================================
   U Kudrnatého Honzíka — Premium Stylesheet
   ============================================ */

:root {
  --bg: #0a0908;
  --bg-elevated: #141210;
  --bg-card: #1a1714;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --amber: #d4822a;
  --cream: #f5efe6;
  --text: #e8e0d4;
  --text-muted: #9a9080;
  --border: rgba(201, 168, 76, 0.12);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.1rem, 4vw, 2rem);
}

.container--narrow {
  max-width: 640px;
}

/* ---- Typography ---- */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  font-weight: 300;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--bg);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease;
}

.nav--scrolled {
  background: rgba(10, 9, 8, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.07);
}

.nav__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.35rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  transition: padding 0.35s ease;
}

.nav--scrolled .nav__inner {
  padding: 1rem 2.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.nav__logo-img {
  flex-shrink: 0;
  width: auto;
  height: 56px;
  object-fit: contain;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.2;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.75rem;
  list-style: none;
}

.nav__links a {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(232, 224, 212, 0.62);
  transition: color 0.25s ease;
}

.nav__links a:hover {
  color: var(--cream);
}

.nav__cta {
  padding: 0.7rem 1.75rem;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--bg) !important;
  transition: filter 0.25s ease, transform 0.25s ease;
}

.nav__cta:hover {
  filter: brightness(1.08);
  color: var(--bg) !important;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 75%, rgba(107, 31, 42, 0.12) 0%, transparent 55%),
    var(--bg);
}

.hero__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero--interactive {
  cursor: default;
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.hero__glow {
  position: absolute;
  top: 15%;
  right: 10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.14) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: pulse-glow 6s ease-in-out infinite;
  pointer-events: none;
}

.hero__glow--warm {
  top: 50%;
  right: auto;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 130, 42, 0.1) 0%, transparent 70%);
  animation-delay: 3s;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  max-width: 620px;
}

/* Hero intro animations */
.hero-anim {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-fade-in 1s ease-out forwards;
}

.hero-anim--1 { animation-delay: 0.2s; }
.hero-anim--2 { animation-delay: 0.4s; }
.hero-anim--3 { animation-delay: 0.58s; }
.hero-anim--4 { animation-delay: 0.76s; }
.hero-anim--5 { animation-delay: 0.92s; }
.hero-anim--6 { animation-delay: 1.08s; }
.hero-anim--7 { animation-delay: 1.2s; }

@keyframes hero-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.hero__eyebrow-dash {
  color: var(--amber);
  font-style: normal;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.4vw, 5.3rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.01em;
  color: var(--cream);
  margin-bottom: 0.2rem;
}

.hero__title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--gold-light), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
}

.hero__desc {
  font-size: 1.02rem;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 0.55rem;
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
}

.hero__trust-item,
.hero__metrics,
.hero__metric,
.hero__metric-value,
.hero__metric-label,
.hero__subtitle {
  display: none;
}

.hero__text .btn--ghost {
  border-color: rgba(201, 168, 76, 0.28);
}

.hero__text .btn--ghost span {
  font-weight: 500;
}

.hero__text .btn--primary {
  box-shadow: 0 12px 26px rgba(201, 168, 76, 0.22);
}

.hero__text .btn {
  font-size: 0.78rem;
  letter-spacing: 0.09em;
}

.hero__text .btn svg {
  flex-shrink: 0;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.hero__trust-item svg {
  color: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.hero__metric {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(212, 130, 42, 0.18);
  background: rgba(20, 18, 16, 0.72);
}

.hero__metric-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.1;
}

.hero__metric-label {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Hero visual — Klasik Honzík lying, opening left */
.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 420px;
  opacity: 0;
  transform: translateX(40px) scale(0.95);
  animation: hero-visual-in 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
}

.hero__caption {
  margin-top: 0.75rem;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  opacity: 0.75;
  text-align: center;
}

@keyframes hero-visual-in {
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.hero__image-wrap {
  position: relative;
  width: 100%;
  max-width: 700px;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: gentle-float 7s ease-in-out infinite;
}

.hero__image {
  width: 100%;
  max-width: 700px;
  height: auto;
  position: relative;
  z-index: 3;
  border-radius: 0;
  background: transparent;
  filter:
    drop-shadow(0 28px 55px rgba(0, 0, 0, 0.6))
    drop-shadow(0 8px 24px rgba(201, 168, 76, 0.18))
    drop-shadow(0 0 80px rgba(201, 168, 76, 0.08));
  transition: filter 0.6s ease;
}

.hero__image-glow {
  position: absolute;
  bottom: 12%;
  left: 8%;
  width: 55%;
  height: 35%;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.25) 0%, rgba(212, 130, 42, 0.08) 50%, transparent 70%);
  filter: blur(45px);
  z-index: 1;
  pointer-events: none;
  animation: glow-pulse 5s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes gentle-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---- Realistic food steam (thin wisps, backlit) ---- */
.steam {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  overflow: visible;
}

.steam::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 70px;
  height: 50px;
  background: radial-gradient(ellipse, rgba(255, 230, 180, 0.25) 0%, transparent 70%);
  filter: blur(14px);
  z-index: -1;
}

.steam--opening {
  left: 4%;
  bottom: 32%;
  width: 160px;
  height: 260px;
}

.steam--mid {
  left: 32%;
  bottom: 48%;
  width: 160px;
  height: 260px;
}

.steam--top {
  left: 48%;
  bottom: 52%;
  width: 160px;
  height: 260px;
}

.steam--right {
  left: 68%;
  bottom: 44%;
  width: 160px;
  height: 260px;
}

.steam-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: blur(18px);
}

.steam-wisp {
  fill: none;
  stroke: rgba(255, 250, 240, 0.95);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  opacity: 0;
}

.steam-wisp--1 { animation: food-steam-rise 4s ease-out infinite, steam-sway-a 3.2s ease-in-out infinite; }
.steam-wisp--2 { animation: food-steam-rise 4.6s ease-out 0.5s infinite, steam-sway-b 3.8s ease-in-out 0.3s infinite; }
.steam-wisp--3 { animation: food-steam-rise 3.8s ease-out 1s infinite, steam-sway-a 2.9s ease-in-out 0.6s infinite; }
.steam-wisp--4 { animation: food-steam-rise 5s ease-out 0.2s infinite, steam-sway-b 3.5s ease-in-out 0.1s infinite; }
.steam-wisp--5 { animation: food-steam-rise 4.3s ease-out 1.5s infinite, steam-sway-a 4.1s ease-in-out 0.8s infinite; }
.steam-wisp--6 { animation: food-steam-rise 5.2s ease-out 2s infinite, steam-sway-b 3s ease-in-out 1.1s infinite; }

@keyframes food-steam-rise {
  0% {
    stroke-dashoffset: 220;
    opacity: 0;
  }
  15% {
    opacity: 0.55;
    stroke-dashoffset: 180;
  }
  40% {
    opacity: 0.38;
    stroke-dashoffset: 100;
  }
  70% {
    opacity: 0.2;
    stroke-dashoffset: 30;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

@keyframes steam-sway-a {
  0%, 100% { transform: translateX(0) translateY(8px); }
  25% { transform: translateX(14px) translateY(-20px); }
  50% { transform: translateX(-12px) translateY(-55px); }
  75% { transform: translateX(16px) translateY(-90px); }
}

@keyframes steam-sway-b {
  0%, 100% { transform: translateX(0) translateY(8px); }
  25% { transform: translateX(-16px) translateY(-18px); }
  50% { transform: translateX(14px) translateY(-52px); }
  75% { transform: translateX(-12px) translateY(-95px); }
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__mouse {
  color: var(--gold);
  opacity: 0.75;
}

.hero__mouse-icon {
  width: 22px;
  height: 36px;
  display: block;
}

.hero__mouse-wheel {
  animation: mouse-wheel 1.8s ease-in-out infinite;
}

@keyframes mouse-wheel {
  0%, 100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(6px);
  }
}

/* ---- Ingredients Strip ---- */
.ingredients {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}

.ingredients__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
  align-items: start;
  gap: 1rem;
}

.ingredient {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
}

.ingredient__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
}

.ingredient__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  opacity: 0.95;
  transition: opacity var(--transition), transform var(--transition);
}

.ingredient:hover .ingredient__icon img {
  opacity: 1;
  transform: translateY(-2px);
}

.ingredient__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---- Menu ---- */
.menu {
  padding: clamp(4.5rem, 10vw, 8rem) 0;
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.menu-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: default;
}

.menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.menu-card--featured {
  border-color: rgba(201, 168, 76, 0.25);
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.06) 0%, var(--bg-card) 40%);
}

.menu-card__image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.menu-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transition: transform 0.6s ease;
}

.menu-card:hover .menu-card__image img {
  transform: scale(1.08);
}

.menu-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-card) 0%, transparent 50%);
  pointer-events: none;
}

.menu-card__tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  z-index: 2;
}

.menu-card__tag--hot {
  background: rgba(220, 50, 50, 0.9);
  color: white;
}

.menu-card__tag--new {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--bg);
}

.menu-card__caption {
  padding: 0.55rem 1.5rem 0;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  opacity: 0.75;
}

.menu-card__body {
  padding: 0.85rem 1.5rem 1.5rem;
}

.menu-card__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.menu-card__header h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
}

.menu-card__price {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold-light);
  white-space: nowrap;
}

.menu-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
}

/* ---- Story ---- */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.story__visual {
  position: relative;
  overflow: hidden;
}

.story__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--bg) 100%);
}

.story__content {
  display: flex;
  align-items: center;
  padding: 6rem 4rem;
  background: var(--bg);
}

.story__text p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.story__signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-light) !important;
  margin-top: 1.5rem !important;
}

.story__quote {
  margin-top: 2.5rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
}

/* ---- Values ---- */
.values {
  padding: clamp(4.5rem, 10vw, 8rem) 0;
  background: var(--bg-elevated);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.value-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  overflow: hidden;
  transform-style: preserve-3d;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
  --mx: 50%;
  --my: 50%;
  --rx: 0deg;
  --ry: 0deg;
}

.value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    320px circle at var(--mx) var(--my),
    rgba(232, 201, 106, 0.16),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.value-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(232, 201, 106, 0);
  transition: box-shadow 0.35s ease;
  pointer-events: none;
}

.value-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.08) 0%, var(--bg-card) 55%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transform: perspective(800px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(-6px);
}

.value-card:hover::before {
  opacity: 1;
}

.value-card:hover::after {
  box-shadow: inset 0 0 0 1px rgba(232, 201, 106, 0.18);
}

.value-card__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  transition: transform 0.35s ease;
}

.value-card__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  opacity: 0.95;
  transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease;
}

.value-card:hover .value-card__icon {
  transform: translateY(-4px) scale(1.08);
}

.value-card:hover .value-card__icon img {
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(232, 201, 106, 0.35));
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.value-card:hover h3 {
  color: var(--gold-light);
}

.value-card p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  transition: color 0.3s ease;
}

.value-card:hover p {
  color: var(--text);
}

/* ---- Ingredients detail ---- */
.produce {
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  border-top: 1px solid var(--border);
}

.produce__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.produce-card {
  position: relative;
  padding: 2rem 1.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform-style: preserve-3d;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
  --mx: 50%;
  --my: 50%;
  --rx: 0deg;
  --ry: 0deg;
}

.produce-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    280px circle at var(--mx) var(--my),
    rgba(232, 201, 106, 0.16),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.produce-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(232, 201, 106, 0);
  transition: box-shadow 0.35s ease;
  pointer-events: none;
}

.produce-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.08) 0%, var(--bg-card) 55%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transform: perspective(800px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(-6px);
}

.produce-card:hover::before {
  opacity: 1;
}

.produce-card:hover::after {
  box-shadow: inset 0 0 0 1px rgba(232, 201, 106, 0.18);
}

.produce-card__icon {
  position: relative;
  width: 48px;
  height: 48px;
  margin-bottom: 1.2rem;
  transition: transform 0.35s ease;
}

.produce-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.95;
  transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease;
}

.produce-card:hover .produce-card__icon {
  transform: translateY(-4px) scale(1.08);
}

.produce-card:hover .produce-card__icon img {
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(232, 201, 106, 0.35));
}

.produce-card h3 {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.65rem;
  transition: color 0.3s ease;
}

.produce-card:hover h3 {
  color: var(--gold-light);
}

.produce-card p {
  position: relative;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  transition: color 0.3s ease;
}

.produce-card:hover p {
  color: var(--text);
}

/* ---- Events ---- */
.events {
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.events__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}

.event-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.35rem 1.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.event-card__date {
  width: 4.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.4rem;
  border-radius: 14px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.event-card__day {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1;
  color: var(--gold-light);
}

.event-card__month {
  margin-top: 0.25rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.event-card__place {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.event-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.25;
}

.event-card__meta {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.event-card__status {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.28);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  white-space: nowrap;
}

.events__note {
  max-width: 560px;
  margin: 2rem auto 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.events__note a {
  color: var(--gold-light);
  border-bottom: 1px solid rgba(232, 201, 106, 0.35);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.events__note a:hover {
  color: var(--cream);
  border-bottom-color: rgba(232, 201, 106, 0.7);
}

/* ---- Allergens ---- */
.allergens {
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  border-top: 1px solid var(--border);
}

.allergens .section-header {
  margin-bottom: 1.5rem;
}

.allergens__legal {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.6;
}

.allergens__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.allergen-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.allergen-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.allergen-card__num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--bg);
  font-size: 0.9rem;
  font-weight: 700;
}

.allergen-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}

.allergen-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.allergen-card__text h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.25;
}

.allergen-card__text p {
  margin-top: 0.2rem;
  font-size: 0.8rem;
  color: var(--gold);
}

.allergens__variants {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 2.2rem;
  border: 1px solid rgba(201, 168, 76, 0.14);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.05) 0%, rgba(20, 18, 16, 0.55) 100%);
}

.allergens__variants-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  text-align: center;
}

.allergens__variants-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.allergens__variants-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.allergens__variants-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.allergens__variant-name {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.4;
}

.allergens__codes {
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
}

.allergens__codes b {
  width: 1.7rem;
  height: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.45);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
}

.allergens__note {
  margin-top: 1.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.allergens__thanks {
  margin-top: 1.1rem;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-light);
}

/* ---- Contact ---- */
.contact {
  position: relative;
  padding: clamp(4.5rem, 10vw, 8rem) 0;
  overflow: hidden;
  background: var(--bg-elevated);
}

.contact__glow {
  position: absolute;
  top: 40%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.14) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.contact__glow--soft {
  top: 70%;
  left: 30%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(212, 130, 42, 0.1) 0%, transparent 70%);
}

.contact__panel {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 3.5rem 3rem;
  text-align: center;
  border: 1px solid rgba(201, 168, 76, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(201, 168, 76, 0.07) 0%, rgba(26, 23, 20, 0.7) 45%, rgba(20, 18, 16, 0.85) 100%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.contact__panel .section-title {
  margin-bottom: 0.5rem;
}

.contact__desc {
  max-width: 460px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.contact__phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: min(100%, 360px);
  padding: 1.4rem 2.5rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--amber));
  border-radius: 999px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact__phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201, 168, 76, 0.4);
}

.contact__phone-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(10, 9, 8, 0.55);
}

.contact__phone-number {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 600;
  color: var(--bg);
  line-height: 1.2;
}

.contact__social-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.contact__social-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact__social {
  display: flex;
  gap: 0.85rem;
}

.social-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50%;
  color: var(--text-muted);
  background: rgba(10, 9, 8, 0.35);
  transition: all 0.3s ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: var(--gold-dim);
  transform: translateY(-2px);
}

.contact__handle {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ---- Footer ---- */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  text-align: center;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
}

.footer__brand p {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.footer__thanks {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  font-style: italic;
}

.footer__legal {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.5;
}

/* ---- Reveal animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ----
   Content-driven breakpoints (~480 / 768 / 1024 / 1100)
   tuned so layout quality matches the desktop composition.
*/

/* Nav overflows before tablet — switch to burger early */
@media (max-width: 1100px) {
  .nav__inner {
    gap: 1.25rem;
    padding: 1.1rem clamp(1.1rem, 3vw, 1.75rem);
  }

  .nav--scrolled .nav__inner {
    padding: 0.85rem clamp(1.1rem, 3vw, 1.75rem);
  }

  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 9, 8, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.75rem;
    z-index: 99;
    padding: max(2rem, env(safe-area-inset-top)) 1.5rem max(2rem, env(safe-area-inset-bottom));
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links a {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 5vw, 1.85rem);
    font-weight: 400;
    color: var(--cream);
  }

  .nav__cta {
    font-family: var(--font-body);
    font-size: 1.05rem;
    padding: 0.8rem 1.9rem;
    margin-top: 0.5rem;
  }

  .nav__burger {
    display: flex;
    z-index: 101;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .nav__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav__burger.active span:nth-child(2) {
    opacity: 0;
  }

  .nav__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* Tablet / small laptop */
@media (max-width: 1024px) {
  .section-header {
    margin-bottom: 3rem;
  }

  .menu__grid,
  .values__grid,
  .produce__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.35rem;
  }

  .allergens__list {
    grid-template-columns: 1fr;
  }

  .ingredients__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem 1rem;
  }

  .event-card {
    grid-template-columns: auto 1fr;
    gap: 1.1rem;
  }

  .event-card__status {
    grid-column: 2;
    justify-self: start;
  }

  .hero {
    min-height: auto;
    padding: 7rem clamp(1.1rem, 4vw, 2rem) 3.5rem;
  }

  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .hero__text {
    max-width: 640px;
    margin: 0 auto;
  }

  .hero__eyebrow {
    justify-content: center;
  }

  .hero__tagline {
    text-align: center;
  }

  .hero__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
    min-height: 0;
    width: 100%;
  }

  .hero__image-wrap {
    height: auto;
    max-width: min(560px, 100%);
    margin: 0 auto;
  }

  .steam--opening,
  .steam--mid,
  .steam--top,
  .steam--right {
    width: 110px;
    height: 170px;
  }

  .steam--opening {
    left: 3%;
    bottom: 24%;
  }

  .steam--mid {
    left: 30%;
    bottom: 40%;
  }

  .steam--top {
    left: 48%;
    bottom: 44%;
  }

  .steam--right {
    left: 66%;
    bottom: 36%;
  }

  .story {
    grid-template-columns: 1fr;
  }

  .story__visual {
    height: min(420px, 55vw);
    min-height: 280px;
  }

  .story__visual-overlay {
    background: linear-gradient(to top, var(--bg) 0%, transparent 60%);
  }

  .story__content {
    padding: clamp(3rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 2.5rem);
  }

  .contact__panel {
    padding: clamp(2rem, 5vw, 2.75rem) clamp(1.2rem, 4vw, 1.75rem);
    border-radius: 22px;
  }

  .value-card,
  .produce-card {
    padding: 2rem 1.4rem;
  }
}

/* Phones — single column cards */
@media (max-width: 640px) {
  .menu__grid,
  .values__grid,
  .produce__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
    gap: 1.25rem;
  }
}

/* Large phones / tablet portrait */
@media (max-width: 768px) {
  .hero__particles {
    display: none !important;
  }

  .steam {
    display: none !important;
  }

  .hero__image-wrap {
    animation: none;
  }

  .hero__image-glow {
    animation: none;
  }

  .hero__glow {
    animation: none;
  }

  .nav__logo-img {
    height: 46px;
  }

  .section-title {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .section-desc {
    font-size: 0.98rem;
  }

  .allergens__variants {
    padding: 1.5rem 1.2rem;
  }

  .allergens__variants-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .hero {
    padding-top: 5.75rem;
    padding-bottom: 3rem;
  }

  .hero__title {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .hero__desc {
    font-size: 0.95rem;
  }

  .hero__tagline {
    font-size: 1rem;
  }

  .hero__scroll {
    display: none;
  }

  .hero__image-wrap {
    height: auto;
    max-width: min(480px, 100%);
  }

  .btn {
    padding: 0.85rem 1.55rem;
  }

  .hero__actions {
    width: 100%;
  }

  .hero__actions .btn {
    flex: 1 1 auto;
    justify-content: center;
    min-width: min(100%, 160px);
  }

  .menu-card__body {
    padding: 0.85rem 1.25rem 1.35rem;
  }

  .story__visual {
    height: 300px;
  }

  .story__quote {
    font-size: 1.15rem;
  }

  .event-card {
    padding: 1.2rem 1.15rem;
  }

  .event-card__day {
    font-size: 1.45rem;
  }

  .event-card__body h3 {
    font-size: 1.1rem;
  }

  .contact__phone {
    width: 100%;
    min-width: 0;
    padding: 1.2rem 1.5rem;
    border-radius: 22px;
  }

  .contact__phone-number {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
  }

  .footer {
    padding: 2.5rem 0 max(2.5rem, env(safe-area-inset-bottom));
  }
}

/* Small phones */
@media (max-width: 480px) {
  .nav__inner {
    padding: 0.9rem 1rem;
  }

  .nav--scrolled .nav__inner {
    padding: 0.75rem 1rem;
  }

  .nav__logo {
    gap: 0.65rem;
  }

  .nav__logo-img {
    height: 42px;
  }

  .ingredients__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 0.75rem;
  }

  .ingredient__icon {
    width: 48px;
    height: 48px;
  }

  .ingredient__icon img {
    width: 40px;
    height: 40px;
  }

  .ingredient__label {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .menu__grid,
  .values__grid,
  .produce__grid {
    max-width: none;
  }

  .value-card,
  .produce-card {
    padding: 1.6rem 1.2rem;
  }

  .event-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .event-card__date {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 0.45rem;
    width: fit-content;
    padding: 0.35rem 0.7rem;
  }

  .event-card__month {
    margin-top: 0;
  }

  .event-card__status {
    grid-column: 1;
  }

  .contact__panel {
    padding: 1.75rem 1rem;
    border-radius: 18px;
  }

  .social-link {
    width: 44px;
    height: 44px;
  }
}

/* Touch / no-hover: keep lift, drop 3D tilt */
@media (hover: none), (pointer: coarse) {
  .value-card:hover,
  .produce-card:hover,
  .menu-card:hover {
    transform: translateY(-4px);
  }

  .value-card:hover .value-card__icon,
  .produce-card:hover .produce-card__icon {
    transform: translateY(-2px) scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-anim {
    opacity: 1;
    transform: none;
    animation: none;
  }
}