:root {
  --green: #21b537;
  --green-dark: #1a942b;
  --green-glow: rgba(33, 181, 55, 0.15);
  --green-glow-s: rgba(33, 181, 55, 0.4);
  --bg: #0a0a0a;
  --bg2: #141414;
  --bg3: #1a1a1a;
  --white: #fff;
  --t1: #fff;
  --t2: #9ca3af;
  --t3: #6b7280;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, sans-serif;
  --display: "Space Grotesk", sans-serif;
  --body: "Inter", -apple-system, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined" !important;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--t1);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  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.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--green);
}

#pc {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.page {
  min-height: 100vh;
  background: radial-gradient(1200px 600px at 90% -10%, rgba(33, 181, 55, 0.14), transparent 45%), var(--bg);
  color: var(--t1);
  padding-bottom: 56px;
}


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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 30px;
  border-radius: 999px;
  padding: 0 12px;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: #0a0a0a;
  background: var(--green);
  font-weight: 700;
  text-transform: uppercase;
}

.metaChip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 30px;
  border-radius: 999px;
  padding: 0 12px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #9ca3af;
  background: #202020;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.metaChip .material-symbols-outlined {
  font-size: 15px;
  color: var(--green);
}


.newHeroSection {
  max-width: 1400px;
  margin: 0 auto;
  min-height: 60vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 48px clamp(16px, 4vw, 56px);
  align-items: stretch;
}

@media (max-width: 900px) {
  .newHeroSection {
    grid-template-columns: 1fr;
    padding: 80px 16px 32px;
    gap: 32px;
    min-height: auto;
  }

  .portraitWrapper {
    height: 400px;
    position: relative;
    border-radius: 24px;
  }

  .heroImageWrap {
    height: 400px;
  }

  .heroLeft {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .newHeroSection {
    padding: 70px 16px 24px;
    gap: 24px;
  }

  .portraitWrapper {
    height: 300px;
  }

  .heroImageWrap {
    height: 300px;
  }

  .heroChips {
    top: 16px;
    right: 16px;
  }


  .btnNotify {
    width: 100%;
    padding: 14px 24px;
  }
}

.heroLeft {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.heroImageWrap {
  position: relative;
  width: 100%;
  flex: 1;
  
  min-height: 400px;
  
  border-radius: 0;
  overflow: hidden;
  border: none;
}

.heroChefImage {
  position: absolute;
  
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.heroChips {
  position: absolute;
  top: 24px;
  right: 24px;
  
  display: flex;
  flex-direction: row;
  
  gap: 12px;
}

.portraitVignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 10;
  pointer-events: none;
}


.newHeroContent {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.combinedHeroTitle {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  line-height: 0.9;
  color: #fff;
}

.ghostKitchenText {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(90deg, #fff 0%, var(--green) 50%, rgba(33, 181, 55, 0.5) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 8px;
}

.chefIdentityRow {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.chefNameLine {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.handleSpan {
  font-family: var(--body);
  color: #9ca3af;
  font-size: 16px;
  font-weight: 400;
}

.kitchenTag {
  color: var(--green);
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quoteBlock {
  border-left: 2px solid var(--green);
  padding: 8px 0 8px 24px;
  color: #9ca3af;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 24px);
  line-height: 1.625;
  background: rgba(22, 22, 22, 0.5);
  max-width: 672px;
}

.tagRow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.tagRow span {
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: #9ca3af;
  cursor: default;
  transition: color 0.2s;
}

.tagRow span:hover {
  color: #fff;
}


.btnNotify {
  background: #fff;
  color: #000;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: all 0.2s ease;
  width: 100%;
}

.btnNotify:hover {
  background: #e5e7eb;
}



.editorialGrid {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 40px clamp(16px, 4vw, 56px) 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.editorialCard,
.signatureCard,
.comingSoonCard {
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.editorialCard:hover {
  border-color: rgba(33, 181, 55, 0.3);
}

.editorialCard {
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.editorialHeading {
  font-family: var(--display);
  font-size: 20px;
  background: linear-gradient(90deg, #fff 0%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.editorialProse {
  color: #9ca3af;
  font-weight: 300;
  line-height: 1.625;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
  z-index: 2;
}

.specialtyRow {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.specLabel {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
}

.specValue {
  font-family: var(--display);
  font-weight: 500;
  background: linear-gradient(90deg, #fff 0%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.signatureCard {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.sigImageWrapper {
  position: absolute;
  inset: 0;
}

.sigImageWrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.signatureCard:hover .sigImageWrapper img {
  transform: scale(1.1);
}

.sigOverlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
}

.signatureCard:hover .sigOverlay {
  background: rgba(0, 0, 0, 0.4);
}

.sigContent {
  position: relative;
  z-index: 10;
  padding: 32px;
  background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.8) 50%, transparent 100%);
  width: 100%;
}

.sigPill {
  display: inline-block;
  padding: 4px 8px;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #000;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
}

.sigHeading {
  font-family: var(--serif);
  font-size: 30px;
  color: #fff;
  font-style: italic;
  font-weight: 500;
}

.sigDesc {
  font-size: 14px;
  color: #d1d5db;
  margin-top: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.comingSoonCard {
  padding: 32px;
  background: rgba(32, 32, 32, 0.3);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.csDots {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(var(--green) 1px, transparent 1px);
  background-size: 20px 20px;
}

.csContent {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.csIcon {
  width: 64px;
  height: 64px;
  background: #161616;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.csIcon .material-symbols-outlined {
  font-size: 30px;
  color: #9ca3af;
}

.csHeading {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.csDesc {
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 24px;
  max-width: 260px;
}




.estMain {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px clamp(16px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  
}

.estHeroWrapper {
  position: relative;
  
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-top: -100px;
  height: 600px;
  border-radius: 0;
  overflow: hidden;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.estHeroBg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #0f0f0f;
}

.estHeroOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.2) 0%, rgba(18, 18, 18, 0.7) 60%, #121212 100%);
}

.estHeroContent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px clamp(16px, 4vw, 56px);
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 768px) {
  .estHeroContent {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px clamp(16px, 4vw, 56px);
  }
}

.estHeroLeft {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 768px;
}

.estChips {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.estChipTop {
  background: var(--green);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  font-family: var(--display);
}

.estChipVerified {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  background: rgba(50, 205, 50, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid rgba(50, 205, 50, 0.2);
  font-family: var(--display);
}

.estChipRating {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--body);
}

.estChipHandle {
  color: #9ca3af;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--body);
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 8px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.estTitle {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 72px);
  color: #fff;
  line-height: 0.95;
  margin-bottom: 16px;
}

.estTitleSerif {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(32px, 5vw, 48px);
  color: var(--green);
  font-weight: 400;
  display: block;
  margin-top: 8px;
}

.estDesc {
  font-size: 18px;
  color: #d1d5db;
  max-width: 600px;
  font-weight: 300;
  line-height: 1.625;
  font-family: var(--body);
}

.estStatusBox {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 200px;
}

.estStatusRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.estStatusLabel {
  font-size: 12px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--display);
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }
}

.estStatusDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.estStatusText {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
}

.estStatusText .material-symbols-outlined {
  color: var(--green);
}


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

@media (max-width: 1024px) {
  .bentoGrid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bentoCol1,
  .bentoCol2,
  .bentoCol3 {
    grid-column: 1 / -1;
  }
}

.bentoCard {
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.bentoCard:hover {
  border-color: rgba(255, 255, 255, 0.1);
}


.bentoCol1 {
  grid-column: span 4 / span 4;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bentoStory {
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.bentoStoryTitle {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.25;
}

.bentoStoryTitle span {
  color: var(--green);
  font-style: italic;
}

.bentoStoryProse {
  color: #9ca3af;
  line-height: 1.625;
  font-weight: 300;
  font-size: 14px;
  overflow-y: auto;
  max-height: 400px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
  padding-right: 12px;
}

.bentoStoryProse::-webkit-scrollbar {
  width: 6px;
}

.bentoStoryProse::-webkit-scrollbar-track {
  background: transparent;
}

.bentoStoryProse::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 999px;
  transition: background 0.3s;
}

.bentoStoryProse:hover::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
}

.bentoStoryProse::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

.bentoStoryQuote {
  border-left: 2px solid var(--green);
  padding-left: 16px;
  margin: 16px 0;
  font-family: var(--serif);
  font-size: 20px;
  color: #fff;
  font-style: italic;
}

.bentoStoryMeta {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.bentoMetaItem {
  display: flex;
  flex-direction: column;
}

.bentoMetaLabel {
  font-size: 12px;
  color: #9ca3af;
  text-transform: uppercase;
  font-family: var(--display);
  font-weight: 600;
}

.bentoMetaValue {
  font-family: var(--body);
  font-size: 14px;
  white-space: normal;
  overflow-wrap: anywhere;
  background: linear-gradient(90deg, #fff 0%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

.bentoMetaDivider {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  height: 1px;
}


.bentoCol2 {
  grid-column: span 5 / span 5;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bentoStatsRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bentoStatCard {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 4px;
  height: 160px;
  position: relative;
}

.statIcon1 {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--green);
  background: rgba(50, 205, 50, 0.1);
  border-radius: 50%;
  padding: 4px;
}

.statIcon2 {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #fb923c;
  background: rgba(251, 146, 60, 0.1);
  border-radius: 50%;
  padding: 4px;
}

.statLabel {
  color: #9ca3af;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--body);
}

.statValueRow {
  margin-top: 0;
}

.statValue {
  font-size: 36px;
  font-family: var(--display);
  font-weight: 700;
  background: linear-gradient(90deg, #fff 0%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.statUnit {
  font-size: 14px;
  color: #9ca3af;
  margin-left: 4px;
  font-family: var(--body);
}

.statFastInfo {
  font-size: 12px;
  color: var(--green);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--display);
  font-weight: 600;
}

.bentoVideoCard {
  flex: 1;
  min-height: 300px;
  position: relative;
  cursor: pointer;
}

.bentoVideoCard.hasInlineVideo {
  cursor: default;
}

.bentoVideoBg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.bentoVideoCard:hover .bentoVideoBg {
  transform: scale(1.05);
}

.bentoInlineVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  background: #000;
}

.bentoVideoOverlayCenter {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.bentoVideoCard:hover .bentoVideoOverlayCenter {
  background: rgba(0, 0, 0, 0.3);
}

.playCircle {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease;
}

.bentoInlinePlayBtn {
  border: 0;
  padding: 0;
  cursor: pointer;
}

.bentoVideoCard:hover .playCircle {
  transform: scale(1.1);
}

.playCircle .material-symbols-outlined {
  color: #fff;
  font-size: 32px;
  margin-left: 4px;
}

.bentoVideoOverlayBottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.8) 50%, transparent 100%);
}

.bentoVideoCard.is-playing .bentoInlineVideo {
  opacity: 1;
  pointer-events: auto;
}

.bentoVideoCard.has-preview-frame .bentoInlineVideo {
  opacity: 1;
}

.bentoVideoCard.has-preview-frame .bentoVideoBg {
  opacity: 0;
}

.bentoVideoCard.is-playing .bentoVideoBg,
.bentoVideoCard.is-playing .bentoVideoOverlayCenter,
.bentoVideoCard.is-playing .bentoVideoOverlayBottom {
  opacity: 0;
  pointer-events: none;
}

.videoDealTag {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.vdLive {
  background: #e11d48;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  font-family: var(--display);
}

.vdTime {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--body);
}

.videoTitle {
  color: #fff;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
}


.bentoCol3 {
  grid-column: span 3 / span 3;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bentoDishes {
  padding: 20px;
}

.bentoDishesHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.dishesTitleH3 {
  color: #fff;
  font-family: var(--serif);
  font-size: 18px;
  white-space: nowrap;
  font-weight: 500;
}

.dishesViewAll {
  color: var(--green);
  font-size: 12px;
  font-family: var(--body);
  text-decoration: none;
}

.dishesViewAll:hover {
  text-decoration: underline;
}

.bentoDishesGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bdTile {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: #252525;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.bdTile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.bdTile:hover img {
  transform: scale(1.1);
}

.bdOverlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  padding: 8px;
}

.bdText {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--body);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bdAddTile {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: #252525;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
  cursor: pointer;
}

.bdAddTile:hover {
  border-color: rgba(50, 205, 50, 0.5);
  background: rgba(37, 37, 37, 0.8);
}

.bdAddTile .material-symbols-outlined {
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
}

.bdAddText {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  margin-top: 4px;
  font-family: var(--body);
}

.bentoCta {
  flex: 1;
  background: linear-gradient(to bottom right, #252525, #1e1e1e);
  border: 1px solid rgba(50, 205, 50, 0.2);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.simpleIconWrap {
  margin-bottom: 8px;
  color: var(--green);
  opacity: 0.8;
}

.simpleIconWrap .material-symbols-outlined {
  font-size: 28px;
}

.ctaTitle {
  color: #fff;
  font-family: var(--serif);
  font-size: 30px;
  font-style: italic;
  margin-bottom: 8px;
}

.ctaDesc {
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 24px;
  font-family: var(--body);
}

.bentoBtnPrimary {
  width: 100%;
  background: var(--green);
  color: #121712;
  font-weight: 600;
  font-family: var(--display);
  font-size: 15px;
  padding: 16px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(50, 205, 50, 0.3);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.bentoBtnPrimary:hover {
  background: #2ab32a;
  box-shadow: 0 0 30px rgba(50, 205, 50, 0.5);
  transform: translateY(-2px);
}

.bentoBtnPrimary .material-symbols-outlined {
  transition: transform 0.3s;
}

.bentoBtnPrimary:hover .material-symbols-outlined {
  transform: translateX(4px);
}

.ctaBottomInfo {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #9ca3af;
  font-size: 12px;
  font-family: var(--body);
}

.ctaBottomInfo .material-symbols-outlined {
  color: #22c55e;
  font-size: 14px;
}


.menuSection {
  width: min(1200px, calc(100% - 32px));
  margin: 40px auto 0;
  padding: 0 16px;
}

.menuHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.menuTitleH3 {
  font-family: var(--display);
  font-size: 24px;
  color: #fff;
  font-weight: 400;
}

.menuSubText {
  color: #9ca3af;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menuGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.menuMoreRow {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
}

.menuTile,
.fullMenuTile {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.menuTile {
  position: relative;
  background: #161616;
  cursor: pointer;
}

.menuTile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.menuTile:hover img {
  transform: scale(1.1);
  opacity: 1;
}

.menuOverlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
}

.similarChefName {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  font-family: var(--display);
  line-height: 1.2;
  margin-bottom: 4px;
}

.similarChefMeta {
  font-size: 11px;
  font-weight: 500;
  color: #cbd5e1;
  font-family: var(--body);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fullMenuTile {
  background: rgba(32, 32, 32, 0.5);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  color: #9ca3af;
  font-family: var(--display);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.fullMenuTile:hover {
  color: var(--green);
  border-color: rgba(33, 181, 55, 0.5);
}

.fullMenuTile .material-symbols-outlined {
  font-size: 32px;
}

.fmtText {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


@media (max-width: 1024px) {
  .editorialGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 768px) {
  .editorialGrid {
    grid-template-columns: 1fr;
    padding-top: 24px;
  }

  .estChips {
    order: 3;
    opacity: 0.8;
    flex-wrap: wrap;
    margin-top: 16px;
    margin-bottom: 0;
  }

  .estTitle {
    order: 1;
    font-size: clamp(32px, 8vw, 40px);
  }

  .estDesc {
    order: 2;
    font-size: 15px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .menuGrid {
    grid-template-columns: 1fr;
  }
}.portraitCard {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.portraitCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.estHeroRight {
  flex-shrink: 0;
}

.statProgressWrap {
  margin-top: auto;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.statProgressLine {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), #8aff9c);
}

.statQueueChart {
  margin-top: 8px;
  height: 40px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.statQueueBar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: rgba(255, 255, 255, 0.2);
}

.statQueueBar.active-half {
  background: rgba(50, 205, 50, 0.55);
}

.statQueueBar.active {
  background: rgba(50, 205, 50, 0.9);
}
