﻿:root {
  --bg: #130d0a;
  --panel: #1f1510;
  --panel-soft: #2a1c15;
  --gold: #e5ad42;
  --gold-bright: #ffc96a;
  --cream: #fff3d8;
  --muted: rgba(255, 243, 216, 0.68);
  --green: #0d6d47;
  --red: #a62b1f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background: var(--bg);
  font-family: Inter, Arial, sans-serif;
}

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

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

.topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  padding: 8px clamp(18px, 3vw, 34px);
  background: rgba(19, 13, 10, 0.96);
  border-bottom: 1px solid rgba(255, 243, 216, 0.06);
}

.logo-link {
  display: block;
  width: clamp(132px, 17vw, 230px);
}

.logo-link img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.42));
}

.topbar nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}

.topbar nav a {
  padding: 8px 0;
  border: 0;
  border-radius: 0;
  color: rgba(255, 243, 216, 0.78);
  font-size: 16px;
  font-weight: 800;
}

.topbar nav a:hover {
  color: var(--gold-bright);
}

.topbar nav a.order-online,
.btn.order-online {
  padding: 10px 18px;
  color: #1a100b;
  background: linear-gradient(135deg, #ffd36a, var(--gold));
  border: 1px solid rgba(255, 233, 171, 0.8);
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(255, 201, 106, 0.52), 0 10px 28px rgba(0, 0, 0, 0.3);
  animation: order-pulse 2.2s infinite;
}

.topbar nav a.order-online:hover,
.btn.order-online:hover {
  color: #1a100b;
  background: #ffe19a;
  transform: translateY(-2px);
}

@keyframes order-pulse {
  70% { box-shadow: 0 0 0 10px rgba(255, 201, 106, 0), 0 10px 28px rgba(0, 0, 0, 0.3); }
  100% { box-shadow: 0 0 0 0 rgba(255, 201, 106, 0), 0 10px 28px rgba(0, 0, 0, 0.3); }
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 82px;
  min-height: 38px;
  padding: 4px;
  color: rgba(255, 243, 216, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 243, 216, 0.18);
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.lang-toggle span {
  display: grid;
  width: 34px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
}

.lang-toggle.is-en [data-lang-option="en"],
.lang-toggle.is-es [data-lang-option="es"] {
  color: #7c1f16;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
}

.social-rail {
  position: fixed;
  top: 50%;
  left: 14px;
  z-index: 30;
  display: grid;
  gap: 8px;
  transform: translateY(-50%);
}

.social-rail a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: rgba(19, 13, 10, 0.72);
  border: 1px solid rgba(255, 243, 216, 0.2);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.social-rail a:hover {
  color: #1a100b;
  background: var(--gold);
  transform: translateX(3px);
}

.social-rail svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hero-premium {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  background:
    radial-gradient(circle at 72% 18%, rgba(229, 173, 66, 0.2), transparent 28%),
    linear-gradient(135deg, #130d0a, #21140d 48%, #130d0a);
}

.hero-copy-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 680px;
  align-items: center;
  overflow: hidden;
  padding: 142px clamp(34px, 7vw, 92px) 74px clamp(34px, 7vw, 92px);
}

.hero-copy-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(19, 13, 10, 0.9), rgba(19, 13, 10, 0.58) 62%, rgba(19, 13, 10, 0.78)),
    linear-gradient(0deg, rgba(19, 13, 10, 0.8), transparent 42%);
}

.hero-panel-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(1.1) contrast(1.08);
}

.hero-panel {
  position: relative;
  display: grid;
  min-height: 680px;
  align-items: center;
  justify-items: center;
  padding: 142px clamp(26px, 5vw, 72px) 74px clamp(24px, 4vw, 54px);
  background:
    linear-gradient(45deg, transparent 49.4%, rgba(244, 207, 136, 0.055) 49.5% 50.5%, transparent 50.6%) 0 0 / 52px 52px,
    linear-gradient(-45deg, transparent 49.4%, rgba(244, 207, 136, 0.055) 49.5% 50.5%, transparent 50.6%) 0 0 / 52px 52px,
    radial-gradient(ellipse at 50% 34%, rgba(229, 173, 66, 0.16), transparent 42%),
    radial-gradient(ellipse at 100% 100%, rgba(13, 109, 71, 0.13), transparent 48%),
    linear-gradient(145deg, #21150f 0%, #160f0b 55%, #0e0a08 100%);
  overflow: hidden;
  isolation: isolate;
}

.hero-panel::after,
.signature::after,
.split-feature::after,
.contact-premium::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: clamp(360px, 48vw, 760px);
  aspect-ratio: 1;
  background: url("palm-gold-transparent.png") center / contain no-repeat;
  opacity: 0.09;
  pointer-events: none;
}

.hero-panel::after {
  display: none;
}

.hero-panel > *,
.signature > *,
.split-feature > *,
.contact-premium > * {
  position: relative;
  z-index: 2;
}

.hero-logo-video,
.signature-video,
.split-feature-video {
  position: relative;
  z-index: 3;
  isolation: isolate;
}



.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-logo {
  width: min(520px, 100%);
  margin: 0 0 24px;
  border-radius: 6px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
}

.kicker {
  margin: 0 0 12px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0 0 18px;
  font-family: Cinzel, Georgia, serif;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  font-size: clamp(44px, 6vw, 86px);
}

h2 {
  font-size: clamp(34px, 4.6vw, 62px);
}

h3,
p {
  margin-top: 0;
}


.hero-logo-video {
  display: block;
  width: min(520px, 92%);
  height: auto;
  object-fit: contain;
  background: rgba(19, 13, 10, 0.45);
}
.hero-panel p,
.signature p,
.split-feature p,
.menu-list p,
.contact-premium p,
dd {
  color: var(--muted);
  line-height: 1.65;
}


.hero-copy h1 {
  max-width: 680px;
  font-size: clamp(44px, 6vw, 86px);
}

.hero-copy > p {
  max-width: 580px;
  font-size: 19px;
}
.hero-panel > p {
  max-width: 580px;
  font-size: 19px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
}

.btn.gold {
  color: #1a100b;
  background: var(--gold);
}

.btn.outline {
  border: 1px solid rgba(255, 243, 216, 0.34);
}

.signature,
.menu-preview,
.contact-premium {
  padding: clamp(70px, 9vw, 124px) clamp(20px, 6vw, 78px);
}

.signature {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(32px, 6vw, 76px);
  background:
    linear-gradient(45deg, transparent 49.4%, rgba(244, 207, 136, 0.045) 49.5% 50.5%, transparent 50.6%) 0 0 / 56px 56px,
    linear-gradient(-45deg, transparent 49.4%, rgba(244, 207, 136, 0.045) 49.5% 50.5%, transparent 50.6%) 0 0 / 56px 56px,
    radial-gradient(ellipse at 12% 20%, rgba(166, 43, 31, 0.13), transparent 38%),
    radial-gradient(ellipse at 82% 58%, rgba(13, 109, 71, 0.23), transparent 48%),
    linear-gradient(135deg, #180e0a 0%, #10271e 56%, #090706 100%);
}

.hero-panel::before,
.signature::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-panel::before {
  inset: 28px;
  border: 1px solid rgba(244, 207, 136, 0.11);
  border-radius: 12px 4px 12px 4px;
  box-shadow: inset 0 0 70px rgba(229, 173, 66, 0.035);
}

.signature {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.signature::before {
  inset: 28px clamp(20px, 4vw, 58px);
  z-index: -1;
  border-top: 1px solid rgba(244, 207, 136, 0.09);
  border-bottom: 1px solid rgba(244, 207, 136, 0.09);
}

.signature::after {
  display: block;
  right: -12%;
  bottom: -30%;
  left: auto;
  z-index: 0;
  opacity: 0.09;
}

.signature-intro {
  display: grid;
  gap: 24px;
  align-content: start;
}

.signature-video {
  display: block;
  width: min(82%, 390px);
  height: auto;
  object-fit: contain;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
  background: transparent;
}
.signature-grid {
  display: grid;
  gap: 14px;
}

.signature-grid article {
  padding: 24px;
  border: 1px solid rgba(255, 243, 216, 0.11);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.signature-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.signature-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  padding: clamp(66px, 8vw, 110px) clamp(20px, 6vw, 78px);
  background:
    repeating-linear-gradient(45deg, transparent 0 27px, rgba(255, 217, 145, 0.075) 27px 28px, transparent 28px 55px),
    repeating-linear-gradient(-45deg, transparent 0 27px, rgba(255, 217, 145, 0.075) 27px 28px, transparent 28px 55px),
    radial-gradient(circle at 16% 20%, rgba(20, 112, 76, 0.25), transparent 34%),
    linear-gradient(135deg, #0b362a 0%, #10251d 54%, #1a0f0b 100%);
}

.split-feature {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.split-feature::after {
  display: block;
  right: -15%;
  top: 4%;
  bottom: auto;
  z-index: 0;
  opacity: 0.11;
}

.split-feature-extra::after {
  display: block;
  right: auto;
  left: -15%;
  top: auto;
  bottom: 4%;
  transform: scaleX(-1);
}

.split-feature-extra {
  background:
    repeating-linear-gradient(45deg, transparent 0 27px, rgba(255, 217, 145, 0.065) 27px 28px, transparent 28px 55px),
    repeating-linear-gradient(-45deg, transparent 0 27px, rgba(255, 217, 145, 0.065) 27px 28px, transparent 28px 55px),
    radial-gradient(circle at 82% 24%, rgba(166, 43, 31, 0.2), transparent 36%),
    linear-gradient(135deg, #1b100b 0%, #15271e 58%, #0a2c22 100%);
}



.split-feature img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.section-title {
  max-width: 780px;
  margin-bottom: 34px;
}



.split-feature-video {
  display: block;
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  border: 1px solid rgba(255, 243, 216, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  background: rgba(19, 13, 10, 0.55);
}

.split-video-frame {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-radius: 8px;
}

.split-video-frame::after {
  content: "";
  position: absolute;
  right: -13%;
  bottom: -28%;
  z-index: 0;
  width: min(76%, 560px);
  aspect-ratio: 1;
  display: none;
  background: url("palm-gold-transparent.png") center / contain no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.split-feature-extra .split-video-frame::after {
  right: auto;
  left: -13%;
  transform: scaleX(-1);
}

.split-video-frame .split-feature-video {
  position: relative;
  z-index: 2;
}

@media (max-width: 700px) {
  .split-video-frame::after {
    right: -18%;
    bottom: -18%;
    width: 78%;
    opacity: 0.2;
  }

  .split-feature-extra .split-video-frame::after {
    right: auto;
    left: -18%;
  }

  .split-feature::after {
    right: -34%;
    top: 5%;
    bottom: auto;
    width: 520px;
    opacity: 0.1;
  }

  .split-feature-extra::after {
    right: auto;
    left: -34%;
    top: auto;
    bottom: 5%;
  }
}

.split-feature-video-contain {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
}
.split-feature.split-feature-extra img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
  background: rgba(19, 13, 10, 0.55);
}
.menu-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.menu-list article {
  overflow: hidden;
  border: 1px solid rgba(255, 243, 216, 0.12);
  border-radius: 8px;
  background: var(--panel-soft);
}

.menu-list img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.menu-list div {
  padding: 22px;
}

.menu-list h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.gallery-carousel {
  position: relative;
  overflow: hidden;
  padding-block: 16px;
  background:
    radial-gradient(circle at 12% 50%, rgba(229, 173, 66, 0.14), transparent 28%),
    radial-gradient(circle at 88% 40%, rgba(13, 109, 71, 0.2), transparent 30%),
    #0f0a08;
  perspective: 900px;
}

.gallery-carousel::before,
.gallery-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(120px, 18vw);
  pointer-events: none;
}

.gallery-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.gallery-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.gallery-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: gallery-scroll 34s linear infinite;
  will-change: transform;
}

.gallery-carousel:hover .gallery-track {
  animation-play-state: paused;
}

.gallery-track img {
  flex: 0 0 clamp(260px, 33vw, 520px);
  width: clamp(260px, 33vw, 520px);
  height: clamp(260px, 34vw, 480px);
  object-fit: cover;
  border: 1px solid rgba(255, 243, 216, 0.12);
  border-radius: 8px 28px 8px 28px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
  filter: saturate(1.08) contrast(1.06);
  transform: translateY(0) rotateY(-5deg) scale(0.98);
  transition: transform 420ms ease, filter 420ms ease, box-shadow 420ms ease;
}

.gallery-track img:nth-child(even) {
  border-radius: 28px 8px 28px 8px;
  transform: translateY(18px) rotateY(5deg) scale(0.96);
}

.gallery-track img:nth-child(3n) {
  transform: translateY(-10px) rotateY(-3deg) scale(1.02);
}

.gallery-track img:hover {
  z-index: 3;
  filter: saturate(1.24) contrast(1.12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
  transform: translateY(-14px) rotateY(0deg) scale(1.04);
}

@keyframes gallery-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.contact-premium {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.85fr);
  gap: clamp(30px, 6vw, 80px);
  background:
    linear-gradient(rgba(19, 13, 10, 0.88), rgba(19, 13, 10, 0.88)),
    url("log01.png") center / cover;
}

.contact-premium {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.contact-premium::after {
  right: -15%;
  bottom: -45%;
  opacity: 0.08;
}

@media (max-width: 700px) {
  .hero-panel::after,
  .signature::after,
  .split-feature::after,
  .contact-premium::after {
    width: 520px;
    opacity: 0.07;
  }

  .signature::after {
    right: -40%;
    bottom: -12%;
    opacity: 0.09;
  }

}

.location-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.location-list > div {
  padding: 0;
  border: 0;
  background: transparent;
}

.location-link,
.phone-card {
  position: relative;
  display: block;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 243, 216, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.location-link::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -46px;
  width: 118px;
  height: 118px;
  background: rgba(229, 173, 66, 0.16);
  border-radius: 999px;
  transition: transform 220ms ease, background 220ms ease;
}

.location-link:hover {
  background: linear-gradient(135deg, rgba(229, 173, 66, 0.18), rgba(13, 109, 71, 0.12));
  border-color: rgba(255, 201, 106, 0.48);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.24);
  transform: translateX(6px);
}

.location-link:hover::after {
  background: rgba(13, 109, 71, 0.32);
  transform: scale(1.12);
}

.location-link > dt,
.location-link > dd {
  position: relative;
  z-index: 1;
  transition: transform 200ms ease, opacity 160ms ease;
}

.location-cta {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 16px;
  color: #1a100b;
  background: var(--gold-bright);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  font-size: 13px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(12px) scale(0.94);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.location-cta::after {
  content: " →";
  margin-left: 7px;
}

.location-link:hover .location-cta,
.location-link:focus-visible .location-cta {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.location-link:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 3px;
}

@media (hover: none) {
  .location-cta {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 14px;
    opacity: 1;
    transform: none;
  }
}

dt {
  margin-bottom: 7px;
  color: var(--gold-bright);
  font-weight: 900;
}

dd {
  margin: 0;
}

.location-card dd {
  color: rgba(255, 243, 216, 0.86);
  line-height: 1.55;
}

.phone-card span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  color: #1a100b;
  background: var(--gold);
  border-radius: 999px;
  font-weight: 900;
}

.anchor-target {
  position: relative;
  top: -80px;
  display: block;
  height: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 920px) {
  .hero-premium,
  .signature,
  .split-feature,
  .contact-premium {
    grid-template-columns: 1fr;
  }

  .hero-copy-panel,
  .hero-panel {
    min-height: 56svh;
  }

  .hero-copy-panel {
    padding: 92px clamp(24px, 6vw, 58px) 62px;
  }

  .hero-panel {
    padding: 66px clamp(24px, 6vw, 58px) 70px;
  }

  .hero-logo-video {
    width: min(520px, 92%);
  }

  .gallery-track img {
    flex-basis: clamp(240px, 48vw, 420px);
    width: clamp(240px, 48vw, 420px);
  }
}

@media (max-width: 620px) {
  .topbar {
    position: absolute;
    align-items: center;
    gap: 10px;
  }

  .topbar nav {
    flex: 1;
    gap: 13px;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .topbar nav a {
    flex: 0 0 auto;
    font-size: 13px;
  }

  .hero-copy-panel {
    min-height: auto;
    padding: 118px 24px 54px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 16vw, 72px);
  }

  .hero-panel {
    min-height: auto;
    padding: 52px 24px 62px;
  }

  .hero-logo-video {
    width: min(460px, 100%);
  }

  .actions,
  .btn {
    width: 100%;
  }

  .gallery-track img {
    flex-basis: 82vw;
    width: 82vw;
    height: 300px;
  }
}











