* { box-sizing: border-box; }

:root {
  --black: #050505;
  --white: #f6f2ea;
  --gray: #9a9a9a;
  --line: rgba(246, 242, 234, 0.18);
  --soft: rgba(246, 242, 234, 0.06);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0.10;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.14) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 40%, rgba(255,255,255,0.10) 0 1px, transparent 1px);
  background-size: 34px 34px, 52px 52px;
}

.hero,
.section {
  position: relative;
  z-index: 2;
}

.page-bg-logo {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url('assets/logo-bg.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: min(92vw, 1100px) auto;
  opacity: 0.055;
  filter: grayscale(1) contrast(1.05);
}

.site-header, main, .footer {
  position: relative;
  z-index: 3;
}

.site-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 5vw;
  min-height: 86px;
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.brand-logo img {
  display: block;
  width: min(270px, 32vw);
  min-width: 160px;
  height: auto;
  filter: grayscale(1) brightness(1.05);
}

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

.nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.76;
}

.nav a:hover { opacity: 1; }

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
  padding: 70px 5vw 90px;
  border-bottom: 1px solid var(--line);
}

.hero-content,
.launch-panel {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gray);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

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

h1 {
  max-width: 980px;
  font-size: clamp(56px, 10vw, 148px);
  line-height: 0.82;
  letter-spacing: -0.085em;
  margin-bottom: 26px;
  text-transform: uppercase;
}

.lead {
  max-width: 760px;
  color: #d9d5ce;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
}

.hero-actions, .contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--black); background: var(--white); }
.btn-ghost { color: var(--white); border: 1px solid var(--line); }


.launch-panel {
  border: 1px solid var(--line);
  min-height: 560px;
  border-radius: 34px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(246,242,234,0.13), rgba(246,242,234,0.03)),
    radial-gradient(circle at 35% 18%, rgba(255,255,255,0.20), transparent 34%);
  box-shadow: 0 26px 80px rgba(0,0,0,0.45);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.panel-topline {
  display: inline-flex;
  width: fit-content;
  border: 2px solid var(--white);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

.panel-block { padding: 8px 0; }

.panel-label {
  color: var(--gray);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  margin-bottom: 12px;
}

.launch-panel h2 {
  font-size: clamp(48px, 7vw, 82px);
  line-height: 0.88;
  letter-spacing: -0.08em;
  margin-bottom: 0;
}

.panel-text {
  color: #e5dfd7;
  font-size: 20px;
  line-height: 1.5;
}

.small-text { font-size: 16px; }

.panel-divider {
  height: 1px;
  background: var(--line);
  margin: 16px 0;
}

.section {
  padding: 88px 5vw;
  border-bottom: 1px solid var(--line);
}

.strip, .split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.section h2 {
  font-size: clamp(38px, 6vw, 86px);
  line-height: 0.9;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.section p {
  color: #d9d5ce;
  font-size: 18px;
  line-height: 1.65;
}

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

.main-menu-grid { grid-template-columns: repeat(3, 1fr); }
.extras-grid { grid-template-columns: repeat(2, 1fr); }
.extras-heading { margin-top: 54px; }

.menu-item {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  background: var(--soft);
  display: flex;
  flex-direction: column;
}

.menu-item.compact { min-height: 190px; }

.menu-item span {
  color: var(--gray);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.menu-item h3 {
  margin-top: auto;
  font-size: 36px;
  letter-spacing: -0.07em;
}

.menu-item p {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--white);
}

.menu-item small {
  color: #d9d5ce;
  font-size: 15px;
  line-height: 1.45;
}

.contact { text-align: center; }
.contact h2, .contact p { margin-inline: auto; max-width: 840px; }
.contact-actions { justify-content: center; }

.footer {
  padding: 28px 5vw;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--gray);
  font-size: 14px;
}

.footer p { margin: 0; }
.small { opacity: 0.8; }

@media (max-width: 1100px) {
  .main-menu-grid, .extras-grid { grid-template-columns: 1fr; }
}

@media (max-width: 920px) {
  .hero, .strip, .split { grid-template-columns: 1fr; }
  .launch-panel { min-height: 460px; }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    gap: 10px;
    padding: 12px 20px;
    min-height: 108px;
  }

  .brand-logo img {
    width: 176px;
    min-width: 0;
  }

  .nav {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav a {
    font-size: 11px;
    letter-spacing: 0.08em;
  }

    .hero, .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero { min-height: calc(100vh - 108px); }
  .footer { display: grid; }
}


.price-card { min-height: 270px; }

.price {
  display: block;
  margin-top: 18px;
  color: #ffd400;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.ingredients-line {
  margin-top: 22px;
  padding: 18px 22px;
  border: 2px solid #ffd400;
  border-radius: 18px;
  color: var(--white);
  background: rgba(255, 212, 0, 0.05);
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.45;
}

.ingredients-line strong {
  color: #ffd400;
  text-transform: uppercase;
}

.sets-heading,
.fries-heading {
  margin-top: 62px;
  text-align: center;
}

.sets-heading p {
  margin-top: -12px;
  color: #d9d5ce;
  font-size: clamp(18px, 2vw, 24px);
}

.sets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.set-card,
.fries-card {
  border: 2px solid #ffd400;
  border-radius: 24px;
  background: rgba(5, 5, 5, 0.56);
  padding: 24px;
}

.set-card h3,
.fries-card h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.set-card p,
.fries-card small {
  display: block;
  margin-bottom: 16px;
  color: #d9d5ce;
  font-size: 16px;
  line-height: 1.35;
}

.set-card table {
  width: 100%;
  border-collapse: collapse;
  color: var(--white);
}

.set-card th,
.set-card td {
  padding: 12px 8px;
  border-top: 1px dashed rgba(246, 242, 234, 0.55);
  text-align: center;
  font-size: 18px;
}

.set-card th:first-child,
.set-card td:first-child {
  text-align: left;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.set-card th {
  color: #ffd400;
  text-transform: uppercase;
  font-size: 15px;
}

.set-card td:not(:first-child) {
  color: #ffd400;
  font-weight: 900;
  font-size: 24px;
}

.fries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.fries-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
}

.fries-card h3 {
  font-size: clamp(26px, 3vw, 38px);
}

.fries-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: auto;
  border-top: 1px solid #ffd400;
}

.fries-prices p {
  margin: 0;
  padding: 16px 10px 0;
  text-align: center;
  color: var(--white);
}

.fries-prices p + p {
  border-left: 1px dashed rgba(246, 242, 234, 0.55);
}

.fries-prices span {
  display: block;
  margin-bottom: 6px;
  color: #d9d5ce;
  font-size: 16px;
}

.fries-prices strong {
  display: block;
  color: #ffd400;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

@media (max-width: 1100px) {
  .sets-grid,
  .fries-grid {
    grid-template-columns: 1fr;
  }

  .set-card th,
  .set-card td {
    font-size: 15px;
  }

  .set-card td:not(:first-child) {
    font-size: 21px;
  }
}


/* Social media links */
.social-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.social-inline a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--white);
  background: var(--soft);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 12px;
  font-weight: 800;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.social-inline a:hover {
  transform: translateY(-2px);
  border-color: #ffd400;
  background: rgba(255, 212, 0, 0.08);
}

.social-inline svg,
.social-btn svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.social-inline svg rect,
.social-inline svg circle,
.social-btn svg rect,
.social-btn svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.social-inline svg path,
.social-btn svg path {
  fill: currentColor;
}

.social-btn {
  gap: 9px;
}

@media (max-width: 680px) {
  .social-inline {
    display: grid;
    grid-template-columns: 1fr;
  }

  .social-inline a {
    justify-content: center;
  }
}
