:root {
  --bg: #120e0d;
  --panel: rgba(28, 21, 19, 0.78);
  --panel-strong: rgba(24, 18, 16, 0.92);
  --panel-soft: rgba(255, 248, 242, 0.08);
  --text: #f9f3ed;
  --muted: #d6c5b8;
  --accent: #f3e7dc;
  --accent-strong: #d7b499;
  --border: rgba(255, 241, 227, 0.16);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Outfit", "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(169, 121, 88, 0.18), transparent 30%),
    linear-gradient(180deg, #1a1412 0%, #100c0b 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 55%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 88px
    );
  pointer-events: none;
  opacity: 0.45;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 540px);
  margin: 0 auto;
  padding: 12px 12px 32px;
}

.hero {
  animation: rise-in 950ms ease both;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 96vh;
  border: 1px solid var(--border);
  border-radius: 34px;
  box-shadow: var(--shadow);
  background: #120d0c;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(
    130deg,
    rgba(154, 108, 26, 0.28),
    rgba(246, 221, 121, 0.88),
    rgba(255, 241, 168, 0.72),
    rgba(169, 116, 24, 0.42),
    rgba(154, 108, 26, 0.28)
  );
  background-size: 220% 220%;
  animation: gold-border-flow 11s ease-in-out infinite;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero__background,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__background {
  background-image: url("./background02.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center top;
}

.hero__background::after {
  content: none;
}

.hero__overlay {
  background: none;
}

.hero__content {
  position: relative;
  display: flex;
  min-height: 96vh;
  flex-direction: column;
  justify-content: flex-end;
  padding: 500px 22px 28px;
  align-items: center;
  text-align: center;
}

.eyebrow,
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 14px;
  padding: 8px 14px;
  border: 1px solid rgba(166, 122, 38, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(
      120deg,
      #b8841f 0%,
      #f6dd79 18%,
      #fff1a8 34%,
      #d3a13a 52%,
      #f3d56d 70%,
      #a97418 100%
    );
  background-size: 220% 220%;
  color: #5b3a08;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 214, 0.65),
    inset 0 -8px 18px rgba(132, 85, 12, 0.18),
    0 10px 24px rgba(0, 0, 0, 0.12);
  text-shadow: 0 1px 0 rgba(255, 241, 198, 0.3);
  animation: eyebrow-glow 9s ease-in-out infinite;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

h1 {
  max-width: 8ch;
  font-size: clamp(3rem, 8vw, 4.7rem);
  line-height: 0.82;
  letter-spacing: 0;
  margin-bottom: 18px;
  animation: title-luxury-glow 8.2s ease-in-out infinite;
  will-change: transform, text-shadow, filter;
}

h2 {
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1;
}

.hero__tagline {
  color: var(--muted);
  line-height: 1.7;
}

.hero__tagline {
  max-width: 18rem;
  margin: 0 auto 18px;
  font-size: 0.98rem;
}

.hero__socials {
  position: absolute;
  top: 46%;
  right: 14px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(255, 233, 220, 0.12);
  border-radius: 10px;
  background: rgba(24, 15, 13, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 20px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
  animation: social-float 6.2s ease-in-out infinite;
}

.social-link:nth-child(2) {
  animation-delay: 180ms;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-3px) scale(1.04);
  border-color: rgba(231, 199, 102, 0.42);
  background: rgba(61, 43, 20, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(231, 199, 102, 0.14);
}

.social-link__icon {
  display: block;
  width: 15px;
  height: 15px;
  object-fit: contain;
  opacity: 0.92;
  filter: brightness(0) saturate(100%) invert(79%) sepia(33%) saturate(530%) hue-rotate(352deg) brightness(96%) contrast(92%);
  transition: transform 180ms ease, opacity 180ms ease, filter 180ms ease;
}

.social-link__icon--whatsapp {
  width: 14px;
  height: 14px;
}

.social-link:hover .social-link__icon,
.social-link:focus-visible .social-link__icon {
  transform: scale(1.08);
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(88%) sepia(33%) saturate(644%) hue-rotate(338deg) brightness(99%) contrast(95%);
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 52px;
  margin: 0 0 22px;
  padding: 0 24px;
  border: 1px solid rgba(166, 122, 38, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(
      120deg,
      #b8841f 0%,
      #f6dd79 18%,
      #fff1a8 34%,
      #d3a13a 52%,
      #f3d56d 70%,
      #a97418 100%
    );
  background-size: 220% 220%;
  color: #5b3a08;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 214, 0.65),
    inset 0 -8px 18px rgba(132, 85, 12, 0.18),
    0 12px 30px rgba(0, 0, 0, 0.16);
  animation: eyebrow-glow 9s ease-in-out infinite;
  transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
}

.hero__cta:hover,
.hero__cta:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 214, 0.72),
    inset 0 -8px 18px rgba(132, 85, 12, 0.18),
    0 16px 34px rgba(0, 0, 0, 0.22);
  filter: saturate(1.04) brightness(1.02);
}

.hero__description {
  max-width: 19rem;
  margin: 10px auto 0;
  color: rgba(249, 243, 237, 0.78);
  font-size: 0.92rem;
  line-height: 1.65;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 16px 0 18px;
}

.hero__chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border: 1px solid rgba(255, 233, 220, 0.16);
  border-radius: 999px;
  background: rgba(255, 240, 232, 0.05);
  color: rgba(249, 243, 237, 0.86);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0;
}

.menu-sections {
  display: grid;
  gap: 10px;
  margin-top: 8px;
  width: min(100%, 440px);
}

.menu-section__title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 12px;
}

.menu-section__title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  padding: 9px 18px;
  border: 1px solid rgba(255, 232, 220, 0.1);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 244, 238, 0.08) 0%, rgba(255, 244, 238, 0.03) 100%);
  color: #e7c766;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: none;
}

.menu-preview {
  display: grid;
  gap: 0;
  padding: 16px 18px 14px;
  position: relative;
  width: 100%;
  max-width: 29rem;
  border: 1px solid rgba(255, 233, 220, 0.14);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 241, 235, 0.11) 0%, rgba(255, 241, 235, 0.035) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 247, 0.06),
    0 14px 28px rgba(0, 0, 0, 0.14);
  text-align: left;
}

.menu-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(
    130deg,
    rgba(154, 108, 26, 0.22),
    rgba(246, 221, 121, 0.7),
    rgba(255, 241, 168, 0.56),
    rgba(169, 116, 24, 0.34),
    rgba(154, 108, 26, 0.22)
  );
  background-size: 220% 220%;
  animation: gold-border-flow 11s ease-in-out infinite;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.menu-preview--full {
  gap: 22px;
  padding: 20px 18px 18px;
}

.menu-preview--full .menu-section {
  display: grid;
  gap: 0;
}

.menu-preview--full .menu-section:not(:last-child) {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 233, 220, 0.08);
}

.menu-preview__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 6px;
  color: #e8cfb8;
  font-size: 0.96rem;
  position: relative;
  animation: row-rise 700ms ease both;
}

.menu-section:nth-child(1) .menu-preview__row:nth-child(2) { animation-delay: 40ms; }
.menu-section:nth-child(1) .menu-preview__row:nth-child(3) { animation-delay: 80ms; }
.menu-section:nth-child(1) .menu-preview__row:nth-child(4) { animation-delay: 120ms; }
.menu-section:nth-child(2) .menu-preview__row:nth-child(2) { animation-delay: 160ms; }
.menu-section:nth-child(2) .menu-preview__row:nth-child(3) { animation-delay: 200ms; }
.menu-section:nth-child(2) .menu-preview__row:nth-child(4) { animation-delay: 240ms; }
.menu-section:nth-child(3) .menu-preview__row:nth-child(2) { animation-delay: 280ms; }
.menu-section:nth-child(3) .menu-preview__row:nth-child(3) { animation-delay: 320ms; }
.menu-section:nth-child(3) .menu-preview__row:nth-child(4) { animation-delay: 360ms; }

.menu-preview__row span {
  padding-right: 10px;
}

.menu-preview__row:last-child {
  padding-bottom: 0;
}

.menu-preview__row:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 232, 220, 0.05) 12%,
    rgba(255, 232, 220, 0.16) 50%,
    rgba(255, 232, 220, 0.05) 88%,
    transparent 100%
  );
  animation: divider-flow 8.5s ease-in-out infinite;
}

.menu-preview__row strong {
  color: #f1cf69;
  font-size: 0.98rem;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  border: 1px solid rgba(255, 246, 239, 0.85);
  background: var(--accent);
  color: #1a120f;
}

.button--ghost {
  border: 1px solid rgba(255, 244, 234, 0.18);
  background: rgba(255, 247, 240, 0.12);
  color: var(--text);
  backdrop-filter: blur(8px);
}

.button--wide {
  width: 100%;
}

.hero__support {
  margin: 12px 2px 0;
  color: rgba(249, 243, 237, 0.72);
  font-size: 0.86rem;
  line-height: 1.5;
  max-width: 24rem;
}

.price-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 244, 234, 0.08);
  color: var(--muted);
}

.price-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.price-list strong {
  color: var(--text);
  font-size: 0.96rem;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes eyebrow-glow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes divider-flow {
  0% {
    opacity: 0.45;
    transform: scaleX(0.96);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }

  100% {
    opacity: 0.45;
    transform: scaleX(0.96);
  }
}

@keyframes gold-border-flow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes social-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-1px);
  }
}

@keyframes row-rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes title-luxury-glow {
  0%,
  100% {
    transform: translateY(0);
    text-shadow:
      0 0 0 rgba(255, 241, 214, 0),
      0 0 0 rgba(214, 171, 91, 0);
    filter: brightness(1);
  }

  50% {
    transform: translateY(-1px);
    text-shadow:
      0 0 10px rgba(255, 241, 214, 0.06),
      0 0 18px rgba(214, 171, 91, 0.05);
    filter: brightness(1.015);
  }
}

@media (max-width: 520px) {
  .page-shell {
    padding: 8px 8px 20px;
  }

  .hero,
  .hero__content {
    min-height: 96vh;
  }

  .hero__content {
    padding: 560px 16px 24px;
  }

  .hero__background {
    background-size: 100% auto;
    background-position: center top;
  }

  h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .hero__tagline {
    max-width: 15rem;
    font-size: 0.92rem;
  }

  .hero__description {
    max-width: 16rem;
    font-size: 0.86rem;
  }

  .hero__chips {
    gap: 8px;
  }

  .hero__socials {
    top: 44%;
    right: 10px;
    gap: 8px;
  }

  .social-link {
    width: 30px;
    height: 30px;
  }

  .hero__cta {
    min-width: 100%;
    margin: 0 0 18px;
  }

  .hero__chips span {
    padding: 8px 11px;
    font-size: 0.74rem;
  }

  .menu-preview {
    padding: 14px 14px 12px;
    border-radius: 18px;
  }

  .menu-preview--full {
    padding: 16px 14px 14px;
    gap: 18px;
  }

  .menu-preview__row {
    gap: 12px;
    padding: 14px 4px;
    flex-direction: row;
    align-items: center;
  }

  .hero__support {
    font-size: 0.82rem;
  }

  .price-list li {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 11px 0;
  }
}
