:root {
  --felt: #0d4a3a;
  --felt-deep: #082b22;
  --mahogany: #232323;
  --rail: #141414;
  --cream: #ece0c6;
  --sand: #dfd0a8;
  --coral: #e76f4a;
  --gold: #f0b94a;
  --chalk: #cfe9d8;
  --ink: #1a0f08;
  --shadow: 0 20px 50px -20px rgba(0,0,0,0.5);
  --shadow-sm: 0 8px 24px -8px rgba(0,0,0,0.3);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* paper grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.3 0 0 0 0 0.2 0 0 0 0 0.1 0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  mix-blend-mode: multiply;
}

h1, h2, h3 { margin: 0; line-height: 1.05; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
*:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.9rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(8, 43, 34, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(240, 185, 74, 0.2);
  color: var(--cream);
  transition: padding 0.3s ease;
}
.nav.scrolled { padding: 0.65rem 2rem; }

.nav__logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: opacity 0.2s;
}
.nav__logo:hover { opacity: 0.85; }
.nav__logo svg { width: 24px; height: 24px; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav__links a {
  position: relative;
  transition: color 0.25s;
}
.nav__links a:hover { color: var(--gold); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 2px;
  background: var(--coral);
  transition: width 0.25s ease;
}
.nav__links a:hover::after { width: 100%; }

/* Order Online nav button */
.nav__order {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.3rem;
  background: var(--coral);
  color: var(--cream);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.18em;
  border-radius: 2px;
  border: 2px solid var(--coral);
  transition: background 0.25s, color 0.25s, transform 0.2s;
  white-space: nowrap;
}
.nav__order:hover {
  background: transparent;
  color: var(--coral);
  transform: translateY(-1px);
}
.nav__order svg { width: 14px; height: 14px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px; height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav__toggle span {
  display: block;
  width: 100%; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(240, 185, 74, 0.2), transparent 50%),
    radial-gradient(ellipse at 85% 75%, rgba(231, 111, 74, 0.25), transparent 55%),
    linear-gradient(160deg, var(--felt-deep) 0%, var(--felt) 55%, #0a4a3a 100%);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 1.5rem 4rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 3px);
  pointer-events: none;
}
.hero__palm {
  position: absolute;
  opacity: 0.22;
  pointer-events: none;
}
.hero__palm--left { left: -40px; bottom: -20px; width: 360px; transform: rotate(-12deg); }
.hero__palm--right { right: -50px; top: -30px; width: 320px; transform: rotate(160deg); }

.hero__cue {
  position: absolute;
  width: 4px;
  background: linear-gradient(to bottom, #b8895a 0%, #6b4423 70%, #2a140a 100%);
  border-radius: 2px;
  opacity: 0.45;
  transform-origin: top center;
}
.hero__cue::before {
  content: "";
  position: absolute;
  bottom: -6px; left: -2px;
  width: 8px; height: 8px;
  background: var(--cream);
  border-radius: 50%;
}
.hero__cue--1 { top: 0; left: 15%; height: 180px; transform: rotate(8deg); }
.hero__cue--2 { top: 0; right: 20%; height: 220px; transform: rotate(-6deg); }

.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}
.hero__eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  opacity: 0.9;
}
.hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 16vw, 12rem);
  letter-spacing: 0.02em;
  color: var(--cream);
  text-shadow: 0 6px 40px rgba(0,0,0,0.45);
  line-height: 0.85;
  margin-bottom: 0.5rem;
}
.hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero__divider span {
  width: 60px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.hero__divider span:last-child {
  background: linear-gradient(to left, transparent, var(--gold));
}
.hero__divider svg { width: 20px; height: 20px; color: var(--gold); }
.hero__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand);
  margin: 0 0 2.5rem;
  font-weight: 500;
}
.hero__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.2rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.22em;
  font-size: 1.05rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 2px;
}
.btn--primary {
  background: var(--coral);
  color: var(--cream);
  border-color: var(--coral);
  box-shadow: 0 4px 20px rgba(231, 111, 74, 0.4);
}
.btn--primary:hover {
  background: transparent;
  color: var(--coral);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(231, 111, 74, 0.3);
}
.btn--ghost {
  background: transparent;
  color: var(--gold);
  border-color: rgba(240, 185, 74, 0.7);
}
.btn--ghost:hover {
  background: var(--gold);
  color: var(--felt-deep);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(240, 185, 74, 0.35);
}

/* Order Online hero btn variant */
.btn--order {
  background: var(--gold);
  color: var(--felt-deep);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(240, 185, 74, 0.35);
}
.btn--order:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.6;
  z-index: 2;
}
.hero__scroll::after {
  content: "";
  display: block;
  width: 1px; height: 36px;
  background: var(--gold);
  margin: 0.7rem auto 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.45); opacity: 1; }
}
@keyframes ballShake {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-15deg) scale(1.2); }
  75% { transform: rotate(15deg) scale(1.2); }
}
#navBall.shaking { animation: ballShake 0.25s ease; }

.hero__name-input {
  background: transparent;
  border: none;
  border-bottom: 3px solid var(--gold);
  color: var(--cream);
  font-family: 'Bebas Neue', sans-serif;
  font-size: inherit;
  letter-spacing: 0.02em;
  text-align: center;
  outline: none;
  width: 100%;
  max-width: 14ch;
  caret-color: var(--gold);
  padding-bottom: 0.1em;
}
.hero__name-input::placeholder {
  color: rgba(244, 234, 213, 0.3);
}

/* ============ SECTION SHARED ============ */
section { position: relative; z-index: 2; }
.section {
  padding: 7rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section__label {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--coral);
  letter-spacing: 0.42em;
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.section__label::before {
  content: "";
  width: 28px; height: 2px;
  background: currentColor;
  flex-shrink: 0;
}
.section__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: var(--mahogany);
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}
.section__title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--felt);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.section__lede {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  max-width: 620px;
  color: var(--rail);
  line-height: 1.55;
}

/* ============ ABOUT ============ */
.about {
  background: var(--cream);
}
.about__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.about__text p {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  color: var(--rail);
}
.about__pull {
  border-left: 3px solid var(--coral);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--felt);
  line-height: 1.4;
}
.about__visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--felt);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 8px solid var(--mahogany);
}
.about__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.about__visual:hover img { transform: scale(1.03); }
.about__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(to top, rgba(5, 25, 20, 0.92), transparent);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  text-align: center;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
}

/* ============ FEATURES ============ */
.features {
  background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%);
  padding-bottom: 8rem;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.feature {
  background: var(--felt-deep);
  color: var(--cream);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid rgba(240, 185, 74, 0.12);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.feature:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow), 0 0 0 1px rgba(240, 185, 74, 0.2);
}
.feature__photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--mahogany);
}
.feature__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.feature:hover .feature__photo img { transform: scale(1.06); }
.feature__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, var(--felt-deep));
  pointer-events: none;
}
.feature__body {
  padding: 2rem;
  position: relative;
  flex: 1;
}
.feature__body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 3px);
  pointer-events: none;
  border-radius: 0 0 6px 6px;
}
.feature__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--coral);
  line-height: 1;
  letter-spacing: 0.02em;
  position: relative;
}
.feature__num small {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  margin-left: 0.5rem;
  font-weight: 500;
}
.feature__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  margin: 0.5rem 0 0.8rem;
  color: var(--gold);
  position: relative;
}
.feature__desc {
  color: var(--sand);
  font-size: 0.95rem;
  line-height: 1.65;
  position: relative;
  opacity: 0.9;
}

/* ============ ORDER ONLINE BAND ============ */
.order-band {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(240, 185, 74, 0.15), transparent 60%),
    radial-gradient(ellipse at 75% 50%, rgba(231, 111, 74, 0.15), transparent 60%),
    linear-gradient(135deg, var(--rail) 0%, var(--mahogany) 50%, #4a2818 100%);
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.order-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 60px),
    repeating-linear-gradient(0deg, rgba(0,0,0,0.08) 0 1px, transparent 1px 4px);
  pointer-events: none;
}
.order-band__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
}
.order-band__text {
  color: var(--cream);
}
.order-band__label {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--gold);
  letter-spacing: 0.42em;
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.order-band__label::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.order-band__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 0.8rem;
}
.order-band__title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.order-band__sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--sand);
  line-height: 1.5;
  max-width: 420px;
}
.order-band__cta {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.btn--order-lg {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.2rem 3rem;
  background: var(--coral);
  color: var(--cream);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.22em;
  border: 2px solid var(--coral);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 6px 28px rgba(231, 111, 74, 0.45);
  white-space: nowrap;
}
.btn--order-lg:hover {
  background: transparent;
  color: var(--coral);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(231, 111, 74, 0.3);
}
.btn--order-lg svg { width: 20px; height: 20px; }
.order-band__note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--sand);
  font-size: 0.9rem;
  opacity: 0.75;
  letter-spacing: 0.05em;
}

/* ============ MENU ============ */
.menu {
  background: var(--mahogany);
  color: var(--cream);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}
.menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(0,0,0,0.15) 0 2px, transparent 2px 60px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 4px);
  opacity: 0.4;
  pointer-events: none;
}
.menu__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.menu .section__title { color: var(--gold); }
.menu .section__title em { color: var(--cream); }
.menu .section__lede { color: var(--sand); }

.menu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 5rem;
  margin-top: 4rem;
}
.menu__col h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.2em;
  color: var(--coral);
  padding-bottom: 0.8rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(240, 185, 74, 0.25);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.menu__col h3 svg { width: 20px; height: 20px; opacity: 0.85; }
.menu__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.2rem;
  gap: 1rem;
}
.menu__item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
}
.menu__item-desc {
  font-size: 0.83rem;
  color: var(--sand);
  opacity: 0.7;
  margin-top: 0.15rem;
  font-style: italic;
}
.menu__item-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(244, 234, 213, 0.25);
  margin: 0 0.5rem;
  transform: translateY(-4px);
}
.menu__item-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.menu__note {
  text-align: center;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(240, 185, 74, 0.15);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--sand);
  opacity: 0.75;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.menu__note-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--coral);
  font-style: normal;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.18em;
  transition: opacity 0.2s;
}
.menu__note-cta:hover { opacity: 0.75; }

/* ============ VISIT / HOURS ============ */
.visit {
  background: var(--cream);
  padding: 7rem 2rem;
}
.visit__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.visit__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--mahogany);
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}
.visit__title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--coral);
  font-weight: 500;
}
.hours {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}
.hours li {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0.75rem;
  border-bottom: 1px solid rgba(58, 31, 18, 0.12);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  border-radius: 3px;
  transition: background 0.2s;
}
.hours li:last-child { border-bottom: none; }
.hours li.today {
  background: rgba(13, 74, 58, 0.07);
  border-bottom-color: transparent;
  padding-left: 1rem;
  border-left: 3px solid var(--coral);
  margin-left: -4px;
}
.hours li.today .hours__day { color: var(--felt); }
.hours li.today .hours__time { color: var(--felt); }
.hours__day {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--rail);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hours__day .today-dot {
  display: none;
  width: 6px; height: 6px;
  background: var(--coral);
  border-radius: 50%;
}
.hours li.today .today-dot { display: inline-block; }
.hours__time { color: var(--mahogany); font-weight: 600; }

.visit__contact {
  background: var(--felt);
  color: var(--cream);
  padding: 3rem;
  border-radius: 6px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.visit__contact::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  opacity: 0.2;
  pointer-events: none;
}
.visit__contact::after {
  content: "";
  position: absolute;
  bottom: -30px; left: -30px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, var(--coral), transparent 70%);
  opacity: 0.12;
  pointer-events: none;
}
.visit__contact h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.8rem;
  position: relative;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
  position: relative;
}
.contact-row svg {
  width: 20px; height: 20px;
  color: var(--coral);
  flex-shrink: 0;
  margin-top: 4px;
}
.contact-row strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  color: rgba(240, 185, 74, 0.8);
  margin-bottom: 0.25rem;
}
.contact-row span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--cream);
  line-height: 1.4;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--rail);
  color: var(--sand);
  padding: 4rem 2rem 2.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
.footer__logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 0.4rem;
}
.footer__tag {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--coral);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.footer__order {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 2rem;
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(240, 185, 74, 0.4);
  border-radius: 2px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  transition: all 0.25s;
  margin-bottom: 2rem;
}
.footer__order:hover {
  background: var(--gold);
  color: var(--rail);
  border-color: var(--gold);
}
.footer__divider {
  width: 80px;
  height: 1px;
  background: rgba(240, 185, 74, 0.25);
  margin: 0 auto 1.8rem;
}
.footer__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
}
.footer__links a { transition: opacity 0.2s; }
.footer__links a:hover { opacity: 1; }
.footer__copy {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.45;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav { padding: 0.9rem 1.2rem; }
  .nav.scrolled { padding: 0.65rem 1.2rem; }
  .nav__right {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--felt-deep);
    padding: 1.5rem;
    gap: 1.2rem;
    border-bottom: 1px solid rgba(240, 185, 74, 0.2);
    display: none;
  }
  .nav__right.is-open { display: flex; }
  .nav__links {
    flex-direction: column;
    gap: 1.2rem;
    font-size: 0.88rem;
  }
  .nav__order {
    align-self: flex-start;
    padding: 0.65rem 1.5rem;
  }
  .nav__toggle { display: flex; }

  .about__grid,
  .visit__inner,
  .menu__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .features__grid { grid-template-columns: 1fr; }
  .section { padding: 5rem 1.5rem; }
  .menu, .visit { padding: 5rem 1.5rem; }
  .hero__palm--left { width: 180px; }
  .hero__palm--right { width: 160px; }
  .visit__contact { padding: 2rem; }
  .order-band__inner {
    flex-direction: column;
    text-align: center;
    padding: 4rem 1.5rem;
  }
  .order-band__label { justify-content: center; }
  .order-band__sub { margin: 0 auto; }
  .footer__links { flex-wrap: wrap; gap: 1.2rem; }
}

@media (max-width: 500px) {
  .hero__btns { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .feature__num { font-size: 3.5rem; }
  .btn--order-lg { padding: 1rem 2rem; font-size: 1.1rem; }
}

/* ============ SCROLL REVEAL ============ */
.reveal-el {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-el.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============ NAV STATUS BADGE ============ */
.nav__status {
  display: none;
  align-items: center;
  gap: 0.45rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav__status.is-loaded { display: flex; }
.nav__status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.nav__status--open .nav__status-dot {
  background: #4ade80;
  animation: statusPulse 2.5s ease infinite;
}
.nav__status--closed .nav__status-dot {
  background: rgba(231, 111, 74, 0.65);
}
.nav__status-text { color: var(--cream); opacity: 0.75; }
.nav__status--open .nav__status-text { color: #4ade80; opacity: 1; }
@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}
@media (max-width: 900px) {
  .nav__status { display: none !important; }
}

/* ============ TICKER ============ */
.ticker {
  background: var(--rail);
  border-top: 1px solid rgba(240, 185, 74, 0.18);
  border-bottom: 1px solid rgba(240, 185, 74, 0.18);
  overflow: hidden;
  padding: 0.85rem 0;
  position: relative;
  z-index: 2;
}
.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 3;
  pointer-events: none;
}
.ticker::before { left: 0;  background: linear-gradient(to right, var(--rail), transparent); }
.ticker::after  { right: 0; background: linear-gradient(to left,  var(--rail), transparent); }
.ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: tickerScroll 40s linear infinite;
}
.ticker__track:hover { animation-play-state: paused; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker__item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-shadow: 0 0 10px rgba(240, 185, 74, 0.55), 0 0 28px rgba(240, 185, 74, 0.2);
  white-space: nowrap;
  padding: 0 1.4rem;
}
.ticker__sep {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  color: var(--coral);
  opacity: 0.55;
  text-shadow: 0 0 8px rgba(231, 111, 74, 0.4);
  white-space: nowrap;
}
