:root {
  --yellow: #f4cf4f;
  --yellow-dark: #c49d19;
  --black: #080808;
  --soft-black: #121212;
  --gray: #9a9a9a;
  --white: #f7f2df;
  --cream: #fff4c8;
  --line: rgba(255, 255, 255, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.45) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.3) 0 1px, transparent 1px);
  background-size: 24px 24px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 86px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  transition: 0.35s ease;
}

.header.scrolled {
  height: 72px;
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 58px;
  height: 58px;
  border: 2px solid var(--yellow);
  color: var(--yellow);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: 1px;
}

.brand strong {
  display: block;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand span {
  display: block;
  font-size: 12px;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav a {
  color: rgba(255, 255, 255, 0.72);
  transition: 0.25s;
}

.nav a:hover {
  color: var(--yellow);
}

.menu-btn {
  display: none;
  background: none;
  border: 0;
  width: 34px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  height: 2px;
  background: var(--yellow);
  margin: 8px 0;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 50px;
  padding: 140px 6vw 70px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  background: var(--yellow);
  right: -20vw;
  top: -15vw;
  opacity: 0.14;
  filter: blur(10px);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-label {
  color: var(--yellow);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 20px;
}

h1 {
  font-size: clamp(44px, 7vw, 94px);
  line-height: 0.9;
  letter-spacing: -4px;
  max-width: 900px;
}

h1 span {
  display: block;
  color: var(--yellow);
}

.hero-text {
  margin-top: 30px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.btn {
  border: 1px solid var(--line);
  padding: 15px 24px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  transition: 0.3s ease;
}

.btn.primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(244, 207, 79, 0.22);
}

.btn.ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.hero-stats {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 620px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-stats div {
  padding: 22px 18px;
  border-right: 1px solid var(--line);
}

.hero-stats div:last-child {
  border-right: none;
}

.hero-stats strong {
  display: block;
  color: var(--yellow);
  font-size: 22px;
}

.hero-stats span {
  color: var(--gray);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.hero-visual img {
  width: min(100%, 560px);
  height: 690px;
  object-fit: cover;
  border-radius: 44px;
  transform: rotate(2deg);
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.12);
}

.stamp {
  position: absolute;
  top: 55px;
  left: -10px;
  z-index: 3;
  width: 150px;
  height: 150px;
  border: 2px dashed var(--yellow);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 900;
  transform: rotate(-14deg);
  background: rgba(8, 8, 8, 0.7);
  backdrop-filter: blur(10px);
}

.floating-card {
  position: absolute;
  right: 0;
  bottom: 70px;
  background: var(--yellow);
  color: var(--black);
  padding: 22px;
  border-radius: 24px;
  max-width: 260px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}

.floating-card span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.floating-card strong {
  font-size: 22px;
  line-height: 1.05;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--yellow);
  color: var(--black);
  padding: 18px 0;
}

.marquee div {
  display: flex;
  gap: 44px;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee span {
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  padding: 110px 6vw;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: start;
}

h2 {
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: -3px;
}

.about p,
.section-head p,
.experience-card p,
.contact p {
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
  font-size: 17px;
  margin-bottom: 20px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.section-head p {
  max-width: 420px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.menu-card {
  min-height: 330px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  padding: 28px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244, 207, 79, 0.5);
}

.menu-card.featured {
  background: var(--yellow);
  color: var(--black);
}

.tag {
  align-self: flex-start;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
}

.menu-card h3 {
  font-size: 28px;
  line-height: 1;
  margin-top: auto;
}

.menu-card p {
  color: inherit;
  opacity: 0.7;
  line-height: 1.6;
  margin: 16px 0 24px;
}

.price {
  font-size: 24px;
  font-weight: 900;
}

.center-btn {
  display: block;
  margin: 44px auto 0;
}

.experience {
  padding: 0 6vw 110px;
}

.experience-card {
  background:
    linear-gradient(rgba(8,8,8,0.78), rgba(8,8,8,0.78)),
    url("hamburguer.png") center/cover;
  border-radius: 44px;
  min-height: 680px;
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border: 1px solid var(--line);
}

.experience-card h2 {
  max-width: 720px;
}

.experience-card > p {
  max-width: 660px;
  margin-top: 24px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
  gap: 16px;
}

.steps div {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  backdrop-filter: blur(14px);
}

.steps span {
  color: var(--yellow);
  font-weight: 900;
}

.steps strong {
  display: block;
  font-size: 22px;
  margin: 12px 0;
}

.steps p {
  font-size: 14px;
  margin: 0;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.contact h2 {
  margin-bottom: 24px;
}

.contact-box {
  display: grid;
  gap: 14px;
}

.contact-link {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 28px;
  font-weight: 900;
  transition: 0.3s ease;
}

.contact-link span {
  color: var(--gray);
  font-size: 14px;
  font-weight: 400;
  align-self: center;
}

.contact-link:hover {
  background: var(--yellow);
  color: var(--black);
}

.contact-link:hover span {
  color: rgba(0,0,0,0.65);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 34px 6vw;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: var(--gray);
}

.footer strong {
  display: block;
  color: var(--white);
  margin-bottom: 6px;
}

.footer a {
  color: var(--yellow);
}

.whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  background: var(--yellow);
  color: var(--black);
  padding: 16px 22px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0,0,0,0.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.active {
  display: flex;
}

.modal-content {
  position: relative;
  max-width: 650px;
  background: var(--soft-black);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 44px;
}

.modal-content h2 {
  margin-bottom: 22px;
}

.modal-content p:last-child {
  color: var(--gray);
  line-height: 1.7;
}

.close-modal {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: 0;
  color: var(--yellow);
  font-size: 36px;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .hero,
  .about-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-visual img {
    height: 620px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .header {
    padding: 0 22px;
  }

  .nav {
    position: fixed;
    inset: 86px 18px auto 18px;
    background: rgba(18,18,18,0.96);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 24px;
    display: none;
    flex-direction: column;
    backdrop-filter: blur(16px);
  }

  .nav.active {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .hero {
    padding: 120px 22px 60px;
  }

  h1 {
    letter-spacing: -2px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .hero-stats div:last-child {
    border-bottom: none;
  }

  .hero-visual img {
    height: 480px;
    border-radius: 30px;
  }

  .stamp {
    width: 110px;
    height: 110px;
    font-size: 11px;
    left: 4px;
  }

  .floating-card {
    right: 10px;
    bottom: 24px;
  }

  .section,
  .experience {
    padding-left: 22px;
    padding-right: 22px;
  }

  .menu-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .experience-card {
    padding: 34px 22px;
    border-radius: 30px;
  }

  .contact-link {
    flex-direction: column;
    font-size: 24px;
  }

  .footer {
    flex-direction: column;
    padding: 30px 22px;
  }
}