/* ==========================================================
   CSELECSI CSIBE - Underground Chicken Club
   css/style.css
   ========================================================== */

/* --- Custom Properties ----------------------------------- */
:root {
  --black:  #0A0A0A;
  --yellow: #F5CB98;
  --red:    #D60924;
  --white:  #F5F0E8;
  --gray:   rgba(10, 10, 10, 0.08);

  --font-display: 'Bebas Neue', sans-serif;
  --font-mono:    'Space Mono', monospace;
  --font-accent:  'Playfair Display', serif;
  --font-logo:    'Playfair Display', serif;

  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --nav-h:      74px;
  --menu-bar-h: 57px;
  --pad-x:      clamp(20px, 5vw, 80px);
}

/* --- Reset ----------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-mono);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img    { max-width: 100%; height: auto; display: block; }
a      { text-decoration: none; color: inherit; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
ul     { list-style: none; }
address { font-style: normal; }

/* --- Grain Overlay --------------------------------------- */
body::after {
  content: '';
  position: fixed;
  top: -200%; left: -200%;
  width: 500%; height: 500%;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: multiply;
}

@media (prefers-reduced-motion: no-preference) {
  body::after { animation: grainShift 0.35s steps(1) infinite; }
}

@keyframes grainShift {
  0%   { transform: translate(0,     0);   }
  25%  { transform: translate(-6px,  -9px);}
  50%  { transform: translate( 9px,  -4px);}
  75%  { transform: translate(-4px,   8px);}
}


/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  transition: background 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}

.nav.scrolled {
  background: rgba(245, 240, 232, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(10, 10, 10, 0.10);
}

.nav-inner {
  height: 100%;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  transition: color 0.35s var(--ease-out);
}

.nav.scrolled .nav-logo { color: var(--black); }

.nav-logo-text {
  font-family: var(--font-logo);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--white);
  transition: color 0.35s var(--ease-out);
}

.nav.scrolled .nav-logo-text { color: var(--black); }

.nav-logo-mark {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 42px;
  height: 42px;
  filter: brightness(0) invert(1);
  transition: filter 0.35s var(--ease-out);
}

.nav.scrolled .nav-logo-img { filter: none; }

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

.nav-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.22s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width 0.3s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .nav-link:hover { color: var(--white); }
  .nav-link:hover::after { width: 100%; }
}

.nav.scrolled .nav-link { color: rgba(10, 10, 10, 0.5); }
@media (hover: hover) and (pointer: fine) {
  .nav.scrolled .nav-link:hover { color: var(--black); }
}

.nav-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 9px 20px;
  border: 1px solid rgba(214, 9, 36, 0.5);
  color: var(--red);
  transition: background 0.22s, color 0.22s, border-color 0.22s;
}

@media (hover: hover) and (pointer: fine) {
  .nav-cta:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
  }
}

.nav-cta:active { transform: scale(0.97); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
  z-index: 201;
}

.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--black);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav.menu-open {
    height: 100dvh;
    background: var(--white) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .nav.menu-open .nav-inner {
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: center;
    height: 100%;
    overflow-y: auto;
  }

  .nav-links {
    display: none;
    position: static;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex: 0 0 100%;
    height: calc(100dvh - var(--nav-h));
    overflow-y: auto;
    padding: 24px;
  }

  .nav-links.open { display: flex; }

  .nav-link, .nav-cta { font-size: 15px; letter-spacing: 0.15em; }
  .nav-cta { padding: 14px 32px; }
  .lang-btn { font-size: 13px; padding: 10px 12px; }

  /* Mobilon a nyitva badge legyen legelső */
  li:has(#navStatusBadge) { order: -2; }

  /* Rendelj gomb ugyanolyan méretű mint a Belépés */
  .nav-order {
    font-size: 15px;
    letter-spacing: 0.15em;
    padding: 14px 32px;
    display: block;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }

  /* Belépés gomb is full-width mobilon */
  li:has(.nav-cta) { width: 100%; }
  .nav-cta { width: 100%; box-sizing: border-box; }

  /* Oldal tetején (nem scrolled) megnyílt menüben sötét szín kell */
  .nav.menu-open .nav-link          { color: rgba(10, 10, 10, 0.75) !important; }
  .nav.menu-open .nav-logo          { color: var(--black) !important; }
  .nav.menu-open .nav-logo-text     { color: var(--black) !important; }
  .nav.menu-open .nav-logo-img      { filter: none !important; }
  .nav.menu-open .lang-btn          { color: rgba(10, 10, 10, 0.5); }
  .nav.menu-open .lang-btn.active   { color: var(--black); border-color: rgba(214, 9, 36, 0.5); }
  .nav.menu-open .nav-toggle span   { background: var(--black); }
}


/* =========================================================
   LANGUAGE SWITCHER
   ========================================================= */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
}

.lang-btn {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.45);
  padding: 4px 6px;
  border: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  cursor: pointer;
  background: none;
  line-height: 1;
}

.lang-btn:hover { color: rgba(255, 255, 255, 0.9); }

.lang-btn.active {
  color: var(--red);
  border-color: rgba(214, 9, 36, 0.35);
}

.nav.scrolled .lang-btn { color: rgba(10, 10, 10, 0.4); }
.nav.scrolled .lang-btn:hover { color: rgba(10, 10, 10, 0.85); }

@media (max-width: 768px) {
  .lang-switch { gap: 4px; }
  .lang-btn {
    font-size: 12px;
    padding: 8px 10px;
    border-color: rgba(10, 10, 10, 0.12);
  }
  .lang-btn.active { border-color: rgba(214, 9, 36, 0.5); }
}


/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0 var(--pad-x) clamp(60px, 8vw, 120px);
  overflow: hidden;
  background: #0a0a0a;
}

.hero-bg {
  position: absolute;
  inset: 0 0 0 42%;
  z-index: 0;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.9) saturate(1.15);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #0a0a0a 0%,
    rgba(10, 10, 10, 0.5) 40%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(78px, 20vw, 310px);
  line-height: 0.86;
  letter-spacing: -0.01em;
  color: var(--white);
  display: flex;
  flex-wrap: nowrap;
  overflow: visible;
}

.hero-letter-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.hero-letter {
  display: inline-block;
  animation: letterIn 0.55s var(--ease-out) both;
  animation-delay: calc(var(--i) * 0.038s + 0.01s);
}

@keyframes letterIn {
  from { transform: translateY(112%) skewX(-7deg); opacity: 0; }
  to   { transform: translateY(0) skewX(0deg); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-letter { animation: none; opacity: 1; transform: none; }
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(22px, 4.2vw, 76px);
  color: var(--red);
  letter-spacing: 0.04em;
  margin-top: clamp(10px, 1.8vw, 28px);
  display: flex;
  gap: 0.28em;
}

.tagline-word {
  display: inline-block;
  animation: fadeUp 0.5s var(--ease-out) both;
}
.tagline-word:nth-child(1) { animation-delay: 0.18s; }
.tagline-word:nth-child(2) { animation-delay: 0.25s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .tagline-word { animation: none; opacity: 1; transform: none; }
}

.hero-category {
  font-family: var(--font-mono);
  font-size: clamp(10px, 1.1vw, 13px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: clamp(14px, 2vw, 22px);
  animation: fadeUp 0.4s var(--ease-out) both;
  animation-delay: 0.0s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (prefers-reduced-motion: reduce) {
  .hero-category { animation: none; opacity: 1; }
}

.hero-motto {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(17px, 2.2vw, 30px);
  color: rgba(255, 255, 255, 0.38);
  margin-top: clamp(14px, 2vw, 22px);
  letter-spacing: 0.03em;
  animation: fadeUp 0.5s var(--ease-out) both;
  animation-delay: 0.35s;
}

@media (prefers-reduced-motion: reduce) {
  .hero-motto { animation: none; opacity: 1; }
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: clamp(24px, 3.5vw, 40px);
  animation: fadeUp 0.5s var(--ease-out) both;
  animation-delay: 0.42s;
}

.hero-cta-btn {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.6vw, 18px);
  letter-spacing: 0.16em;
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.hero-cta-btn--primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}

.hero-cta-btn--primary:hover { background: #b5061e; border-color: #b5061e; }

.hero-cta-btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
}

.hero-cta-btn--outline:hover {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.hero-bottom-bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin-top: clamp(28px, 4vw, 52px);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  animation: fadeUp 0.5s var(--ease-out) both;
  animation-delay: 0.32s;
}

.hbb-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.hbb-sep { color: rgba(255, 255, 255, 0.2); }

.hbb-live {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.55);
}

.hbb-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: heroDotBlink 2s ease-in-out infinite;
}

.hbb-dot.closed { background: rgba(10, 10, 10, 0.2); animation: none; }

@keyframes heroDotBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

.hbb-cta {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(214, 9, 36, 0.4);
  padding: 11px 22px;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
}

@media (hover: hover) and (pointer: fine) {
  .hbb-cta:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
  }
}

@media (max-width: 600px) {
  .hero-bottom-bar { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 768px) {
  .hero-bg {
    inset: 0;
    opacity: 0.55;
  }
  .hero-bg::after {
    background: linear-gradient(
      to top,
      #0a0a0a 0%,
      rgba(10, 10, 10, 0.6) 40%,
      rgba(10, 10, 10, 0.3) 100%
    );
  }
  .hero-category {
    font-size: 9px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bottom-bar { animation: none; opacity: 1; }
}

.hero-scroll {
  position: absolute;
  right: var(--pad-x);
  bottom: clamp(40px, 6vw, 80px);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.indicator-track {
  width: 1px; height: 64px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.indicator-track::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 50%;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
  animation: indicatorSlide 1.9s ease-in-out infinite;
}

@keyframes indicatorSlide {
  0%   { top: -100%; }
  100% { top: 200%; }
}

@media (prefers-reduced-motion: reduce) {
  .indicator-track::after { animation: none; opacity: 0; }
}

.hero-sub {
  position: absolute;
  top: calc(var(--nav-h) + 32px);
  right: var(--pad-x);
  z-index: 1;
  transform: rotate(90deg);
  transform-origin: top right;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  white-space: nowrap;
}


/* =========================================================
   MANIFESTO
   ========================================================= */
.manifesto {
  padding: clamp(90px, 13vw, 200px) var(--pad-x);
  background: var(--yellow);
  position: relative;
  overflow: hidden;
  border-top: 2px solid rgba(0,0,0,0.1);
}

.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg, transparent, transparent 3px,
      rgba(0,0,0,0.015) 3px, rgba(0,0,0,0.015) 6px
    ),
    radial-gradient(ellipse 75% 65% at 15% 25%, rgba(214, 9, 36, 0.04) 0%, transparent 55%),
    radial-gradient(ellipse 55% 55% at 85% 75%, rgba(10, 10, 10, 0.02) 0%, transparent 55%);
  pointer-events: none;
  animation: ambientPulse 10s ease-in-out infinite alternate;
}

@keyframes ambientPulse {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0.55; transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .manifesto::before { animation: none; }
}

.manifesto-inner {
  max-width: 1100px;
  position: relative;
  z-index: 1;
}

.manifesto-text { }

.manifesto-line {
  display: block;
  margin-bottom: 0.04em;
  line-height: 1;
}

.m-word {
  font-family: var(--font-display);
  font-size: clamp(52px, 9.5vw, 148px);
  line-height: 0.95;
  color: var(--black);
  display: inline-block;
  margin-right: 0.18em;
}

.m-word--red { color: var(--red); }

.motion-enabled .m-word {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity  0.52s var(--ease-out),
    transform 0.52s var(--ease-out);
  transition-delay: calc(var(--wi) * 0.065s);
}

.motion-enabled .m-word.revealed {
  opacity: 1;
  transform: translateY(0);
}

.manifesto-note {
  margin-top: 52px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.manifesto-note::before {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

.manifesto-note-text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 15px;
  color: rgba(10, 10, 10, 0.38);
}


/* =========================================================
   MENU
   ========================================================= */
.menu {
  padding-top: clamp(80px, 10vw, 160px);
  padding-bottom: clamp(80px, 10vw, 160px);
  border-top: 1px solid rgba(10, 10, 10, 0.08);
  background: var(--white);
  position: relative;
}

.menu-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  position: relative;
  z-index: 1;
}

.menu-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 11vw, 160px);
  color: var(--black);
  line-height: 0.9;
  transform: rotate(-1.2deg);
  transform-origin: left bottom;
  margin-bottom: clamp(28px, 3.5vw, 48px);
}

.menu-sticky-bar {
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
  background: rgba(245, 240, 232, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10, 10, 10, 0.10);
  transition: box-shadow 0.3s, border-color 0.3s;
}

.menu-sticky-bar.is-stuck {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border-bottom-color: rgba(10, 10, 10, 0.18);
}

.menu-cats-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.menu-cats {
  display: flex;
  gap: 2px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 12px 0;
}

.menu-cats::-webkit-scrollbar { display: none; }

.menu-cat {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 9px 18px;
  border: 1px solid rgba(10, 10, 10, 0.14);
  color: rgba(10, 10, 10, 0.38);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

@media (hover: hover) and (pointer: fine) {
  .menu-cat:hover {
    color: var(--black);
    border-color: rgba(10, 10, 10, 0.38);
  }
}

.menu-cat.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.menu-body { margin-top: clamp(20px, 2.5vw, 36px); }

.menu-section { display: none; }
.menu-section.active { display: block; }

.menu-item-hidden { display: none !important; }

.menu-show-more {
  display: flex;
  justify-content: center;
  padding: 28px 0 4px;
}

.menu-show-more-btn {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.5);
  background: none;
  border: 1px solid rgba(10, 10, 10, 0.16);
  padding: 12px 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s, border-color 0.2s;
}

.menu-show-more-btn:hover {
  color: var(--black);
  border-color: rgba(10, 10, 10, 0.45);
}

.menu-show-more-btn svg { transition: transform 0.25s var(--ease-out); }
.menu-show-more-btn:hover svg { transform: translateY(2px); }

.menu-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  padding: clamp(22px, 3vw, 36px) 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: padding-left 0.32s var(--ease-out), border-color 0.25s;
}

.menu-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.32s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .menu-item:hover {
    padding-left: 22px;
    border-color: rgba(10, 10, 10, 0.14);
  }
  .menu-item:hover::before { transform: scaleY(1); }
  .menu-item:hover .menu-item-name { color: var(--red); }
}

.menu-item-left {
  display: flex;
  flex-direction: column;
  gap: 9px;
  justify-content: center;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 50px);
  color: var(--black);
  line-height: 0.95;
  transition: color 0.22s;
}

.menu-item-price {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--red);
  letter-spacing: 0.12em;
  font-weight: 700;
}

.menu-item-right { display: flex; align-items: center; }

.menu-item-desc {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(10, 10, 10, 0.45);
  line-height: 1.75;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .menu-item { grid-template-columns: 1fr; gap: 10px; }
  .menu-item-left { flex-direction: row !important; align-items: flex-start; gap: 12px; }
}


/* =========================================================
   WHY SECTION
   ========================================================= */
.why {
  padding: clamp(80px, 10vw, 160px) var(--pad-x);
  background: var(--white);
  border-top: 1px solid rgba(10, 10, 10, 0.07);
}

.why-inner { max-width: 1440px; margin: 0 auto; }

.why-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 11vw, 160px);
  color: var(--black);
  line-height: 0.9;
  margin-bottom: clamp(48px, 6vw, 80px);
  transform: rotate(0.8deg);
  transform-origin: left bottom;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 900px) { .why-cards { grid-template-columns: 1fr; } }

.why-card {
  perspective: 1200px;
  height: clamp(260px, 28vw, 400px);
  cursor: default;
}

.why-card-inner {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.72s var(--ease-in-out);
}

@media (hover: hover) and (pointer: fine) {
  .why-card:hover .why-card-inner { transform: rotateY(180deg); }
}

.why-card.flipped .why-card-inner { transform: rotateY(180deg); }

@media (prefers-reduced-motion: reduce) {
  .why-card-inner { transition: none; }
}

.why-card-front,
.why-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid rgba(10, 10, 10, 0.12);
  display: flex;
  flex-direction: column;
}

.why-card-front {
  background: var(--yellow);
  justify-content: flex-end;
}

.why-card-back {
  background: var(--black);
  transform: rotateY(180deg);
  justify-content: center;
}

.why-card-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: rgba(10, 10, 10, 0.28);
  margin-bottom: auto;
}

.why-card-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  color: var(--black);
  line-height: 0.92;
  margin-bottom: 14px;
}

.why-card-hint {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: rgba(10, 10, 10, 0.2);
  text-transform: uppercase;
}

.why-card-text {
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.85;
  color: var(--white);
  letter-spacing: 0.01em;
}


/* =========================================================
   CTA
   ========================================================= */
.cta-section {
  padding: clamp(80px, 11vw, 160px) var(--pad-x);
  background: var(--yellow);
  position: relative;
  overflow: hidden;
}


.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.cta-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.cta-status-dot {
  display: block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: dotBlink 1.6s ease-in-out infinite;
}

@keyframes dotBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.75); }
}

@media (prefers-reduced-motion: reduce) { .cta-status-dot { animation: none; } }

.cta-status-text {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: rgba(10, 10, 10, 0.5);
  text-transform: uppercase;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(88px, 19vw, 300px);
  color: var(--black);
  line-height: 0.88;
  letter-spacing: -0.02em;
  transform: rotate(-2deg);
  display: inline-block;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 28px);
  letter-spacing: 0.12em;
  color: var(--yellow);
  background: var(--black);
  padding: 18px 52px;
  border: 2px solid var(--black);
  transition: background 0.22s, color 0.22s, border-color 0.22s;
}

@media (hover: hover) and (pointer: fine) {
  .cta-btn:hover {
    animation: btnShake 0.52s var(--ease-out);
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
  }
}

@keyframes btnShake {
  0%   { transform: translateX(0)  rotate(0deg);    }
  14%  { transform: translateX(-9px) rotate(-1.2deg); }
  28%  { transform: translateX(9px)  rotate(1.2deg);  }
  43%  { transform: translateX(-6px) rotate(-0.7deg); }
  57%  { transform: translateX(6px)  rotate(0.7deg);  }
  71%  { transform: translateX(-3px) rotate(-0.3deg); }
  85%  { transform: translateX(3px)  rotate(0.3deg);  }
  100% { transform: translateX(0)  rotate(0deg);    }
}

@media (prefers-reduced-motion: reduce) { .cta-btn:hover { animation: none; } }

.cta-btn:active { transform: scale(0.97); }

.cta-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: 36px;
  border-top: 2px solid rgba(10, 10, 10, 0.14);
}

@media (max-width: 768px) { .cta-info { grid-template-columns: 1fr; gap: 28px; } }

.cta-info-item { display: flex; flex-direction: column; gap: 8px; }

.cta-info-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: rgba(10, 10, 10, 0.4);
  text-transform: uppercase;
}

.cta-info-value {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 34px);
  color: var(--black);
  line-height: 1.15;
}

.cta-info-value a { color: var(--black); transition: opacity 0.2s; }
.cta-info-value a:hover { opacity: 0.65; }


/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--white);
  padding: 48px var(--pad-x);
  border-top: 1px solid rgba(10, 10, 10, 0.08);
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr;
  align-items: start;
  gap: 20px 40px;
}

@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; gap: 32px; } }

.footer-brand { grid-column: 1; }

.footer-logo-img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  display: block;
}

.footer-logo {
  font-family: var(--font-logo);
  font-style: italic;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--black);
  display: block;
  margin-bottom: 12px;
}

.footer-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 15px;
  color: rgba(10, 10, 10, 0.65);
}

.footer-nav {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.75);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--red); }

.footer-social {
  grid-column: 3;
  display: flex;
  gap: 18px;
  justify-self: end;
}

.social-link {
  color: rgba(10, 10, 10, 0.38);
  transition: color 0.22s, transform 0.22s;
}

@media (hover: hover) and (pointer: fine) {
  .social-link:hover { color: var(--red); transform: translateY(-2px); }
}

.footer-copy {
  grid-column: 1 / -1;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: rgba(10, 10, 10, 0.2);
  text-transform: uppercase;
  padding-top: 24px;
  border-top: 1px solid rgba(10, 10, 10, 0.07);
}


/* =========================================================
   SCROLL REVEAL (generic)
   ========================================================= */
.motion-enabled .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

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

.motion-enabled .reveal:nth-child(2) { transition-delay: 0.07s; }
.motion-enabled .reveal:nth-child(3) { transition-delay: 0.14s; }
.motion-enabled .reveal:nth-child(4) { transition-delay: 0.21s; }


/* =========================================================
   DATA-SR: SMOOTH BIDIRECTIONAL SCROLL REVEAL
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {
  [data-sr] {
    transition:
      opacity  0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  [data-sr="fade"]  { opacity: 0; }
  [data-sr="up"]    { opacity: 0; transform: translateY(44px); }
  [data-sr="left"]  { opacity: 0; transform: translateX(-44px); }
  [data-sr="right"] { opacity: 0; transform: translateX(44px); }
  [data-sr="scale"] { opacity: 0; transform: scale(0.93) translateY(20px); }

  [data-sr].sr-visible { opacity: 1; transform: none; }
}
