/* ============================================================
   DO DARYA GROUNDS — ROYAL LUXURY THEME
   Loaded last: reskins the whole site into a dark + gold,
   serif-driven luxury food experience.
   Fonts: Cormorant Garamond (display) · Great Vibes (script) · Jost (body)
   ============================================================ */

:root {
  /* Luxury palette */
  --lux-black: #0c0a06;
  --lux-coal: #14100a;
  --lux-ink: #1d1710;
  --lux-cream: #f4ead3;
  --lux-paper: #fbf7ee;
  --lux-card: #fffdf8;
  --lux-gold: #c6a353;
  --lux-gold-2: #e9cf8e;
  --lux-gold-deep: #9a7728;
  --lux-maroon: #6e2129;
  --lux-line-dark: rgba(198, 163, 83, 0.28);
  --lux-line-light: #e7dcc2;

  /* Remap legacy tokens so every page reskins automatically */
  --bg: var(--lux-paper);
  --surface: #f5efe1;
  --surface-strong: var(--lux-coal);
  --text: #241d12;
  --muted: #83775f;
  --border: var(--lux-line-light);
  --brand-red: var(--lux-gold-deep);
  --brand-yellow: var(--lux-gold);
  --brand-gold: #d9b96c;
  --shadow-soft: 0 16px 34px rgba(43, 33, 16, 0.1);
  --shadow-strong: 0 28px 54px rgba(43, 33, 16, 0.16);
  --shadow-card: 0 1px 2px rgba(43, 33, 16, 0.05), 0 10px 28px rgba(43, 33, 16, 0.08);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-script: "Great Vibes", "Segoe Script", cursive;
  --font-body: "Jost", "Inter", "Segoe UI", sans-serif;

  /* Legacy coral accents (products.css / account.css) → gold */
  --darya-coral: #d9b96c;
  --darya-coral-deep: #9a7728;
}

/* ---------- Base ---------- */

body {
  font-family: var(--font-body);
  background: var(--lux-paper);
  color: var(--text);
  font-weight: 400;
  letter-spacing: 0.01em;
}

::selection {
  background: var(--lux-gold);
  color: var(--lux-black);
}

h1, h2, h3, h4,
.section-heading h2,
.posts-showcase h2,
.buffet-section h2,
.reels-heading h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1.12;
}

h1 { font-size: clamp(2.6rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); }

h1 em, h2 em {
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(120deg, var(--lux-gold-2) 0%, var(--lux-gold) 55%, var(--lux-gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--lux-gold);
}

/* Script eyebrow — the signature luxury accent */
.lux-script,
.eyebrow,
.posts-kicker,
.buffet-kicker,
.reels-kicker,
.menu-panel-kicker {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  font-weight: 400;
  color: var(--lux-gold-deep);
  text-transform: none;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 0 0 0.55rem;
}

.overline {
  font-family: var(--font-body);
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--muted);
}

/* Ornament divider: — ✦ — */
.lux-ornament {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1.1rem 0 1.25rem;
}

.lux-ornament span {
  display: block;
  height: 1px;
  width: 64px;
  background: linear-gradient(90deg, transparent, var(--lux-gold));
}

.lux-ornament span:last-child {
  background: linear-gradient(90deg, var(--lux-gold), transparent);
}

.lux-ornament i {
  font-style: normal;
  color: var(--lux-gold);
  font-size: 0.85rem;
}

.lux-ornament--center {
  justify-content: center;
}

/* ---------- Buttons ---------- */

.button,
.notice-button {
  border-radius: 8px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.78rem;
  font-weight: 500;
}

.button {
  min-height: 46px;
  padding: 0.7rem 1.6rem;
}

.button-sm {
  min-height: 40px;
  padding: 0.55rem 1.2rem;
  font-size: 0.72rem;
}

.button-primary {
  background: linear-gradient(135deg, #e9cf8e 0%, #c6a353 52%, #a8822f 100%);
  color: #1d1508;
  border: 1px solid rgba(154, 119, 40, 0.65);
  box-shadow: 0 10px 26px rgba(166, 124, 46, 0.35);
  font-weight: 600;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #f2dfa8 0%, #d4b264 52%, #b78f3a 100%);
  box-shadow: 0 14px 32px rgba(166, 124, 46, 0.45);
  color: #170f04;
  transform: translateY(-2px);
}

.button-secondary {
  background: transparent;
  border: 1px solid var(--lux-gold);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(198, 163, 83, 0.12);
  border-color: var(--lux-gold-deep);
  color: var(--text);
}

.button-ghost {
  background: transparent;
  border: none;
  color: var(--lux-gold-deep);
  text-decoration: none;
  position: relative;
}

.button-ghost::after {
  content: "";
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 0.55rem;
  height: 1px;
  background: var(--lux-gold);
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform 0.25s ease;
  opacity: 0.7;
}

.button-ghost:hover::after {
  transform: scaleX(1);
}

/* Secondary buttons that sit on dark surfaces */
.hero-video-banner .button-secondary,
.site-footer .button-secondary,
.mobile-drawer-foot .button-secondary,
.lux-offer .button-secondary,
.lux-testimonials .button-secondary,
.page-hero .button-secondary,
.page-hero-section .button-secondary,
.contact-hero .button-secondary,
.account-hero .button-secondary,
.auth-panel--brand .button-secondary {
  color: var(--lux-cream);
  border-color: rgba(198, 163, 83, 0.65);
}

.hero-video-banner .button-secondary:hover,
.site-footer .button-secondary:hover,
.lux-offer .button-secondary:hover {
  background: rgba(198, 163, 83, 0.16);
  color: #fff;
}

/* ---------- Notice bar ---------- */

.notice-bar {
  background: linear-gradient(90deg, #a8822f 0%, #c6a353 40%, #e9cf8e 100%);
  color: #1d1508;
  border-bottom: 1px solid rgba(29, 21, 8, 0.18);
}

.notice-bar a {
  color: #1d1508;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.notice-bar p {
  color: #1d1508;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.notice-icon {
  background: #1d1508;
  color: var(--lux-gold-2);
}

.notice-button {
  background: #1d1508;
  color: var(--lux-gold-2);
  border: none;
  padding: 0.4rem 1.1rem;
}

.notice-button:hover {
  background: #000;
  color: #fff;
}

/* ---------- Header ---------- */

.site-header {
  background: var(--lux-black);
}

.utility-bar {
  background: #080604;
  border-bottom: 1px solid rgba(198, 163, 83, 0.14);
}

.utility-bar,
.utility-bar a,
.utility-bar span {
  color: rgba(244, 234, 211, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.utility-bar a:hover {
  color: var(--lux-gold-2);
}

.utility-links,
.utility-actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.utility-bar .lux-dot {
  color: var(--lux-gold);
  opacity: 0.8;
}

.main-nav-wrapper {
  background: rgba(12, 10, 6, 0.98);
  border-bottom: 1px solid var(--lux-line-dark);
  box-shadow: none;
}

.site-header.is-scrolled .main-nav-wrapper {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.site-header::after {
  pointer-events: none;
}

.main-nav {
  min-height: 76px;
}

.brand-logo {
  height: 46px;
  width: auto;
}

.nav-link {
  font-family: var(--font-body);
  color: rgba(244, 234, 211, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 500;
  position: relative;
  background: none;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: var(--lux-gold-2);
  background: none;
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.2rem;
  height: 1px;
  background: var(--lux-gold);
}

/* Cart — round gold icon button with count badge */
.header-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  min-height: 0;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(198, 163, 83, 0.55);
  color: var(--lux-gold-2);
}

.header-cart:hover {
  background: rgba(198, 163, 83, 0.14);
  border-color: var(--lux-gold-2);
  color: #fff;
}

.header-cart svg {
  display: block;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 19px;
  height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e9cf8e, #c6a353);
  border: 1px solid #0c0a06;
  color: #1d1508;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
}

/* Menu button — gold pill with bars + label */
.menu-toggle {
  background: linear-gradient(135deg, #e9cf8e 0%, #c6a353 52%, #a8822f 100%);
  border: 1px solid rgba(154, 119, 40, 0.65);
  box-shadow: 0 10px 26px rgba(166, 124, 46, 0.3);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.menu-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(166, 124, 46, 0.42);
}

.menu-toggle {
  display: grid;
  grid-template-columns: 18px;
  align-items: center;
  align-content: center;
  justify-content: center;
  row-gap: 4px;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 999px;
}

.menu-toggle span:not(.sr-only):not(.menu-toggle-label) {
  grid-column: 1;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #1d1508;
  margin: 0;
}

.menu-toggle span.menu-toggle-label {
  display: none;
}

/* Mega menu panel */
.menu-panel {
  background: #14100a;
  border: 1px solid var(--lux-line-dark);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.55);
}

.menu-panel-head strong {
  color: var(--lux-cream);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.menu-card {
  background: #1d1710;
  border: 1px solid rgba(198, 163, 83, 0.16);
  color: var(--lux-cream);
}

.menu-card:hover {
  border-color: var(--lux-gold);
  background: #241c12;
  color: var(--lux-gold-2);
}

.menu-card span {
  color: inherit;
}

/* Empty badges (products without an offer label) disappear */
.badge:empty {
  display: none;
}

/* ---------- Hero ---------- */

.lux-hero,
.hero-video-banner.lux-hero {
  position: relative;
  min-height: min(92vh, 880px);
  display: flex;
  align-items: center;
  background: var(--lux-black);
  overflow: hidden;
  border-radius: 0;
  margin: 0;
  width: 100%;
}

.lux-hero .hero-video-media {
  position: absolute;
  inset: 0;
}

.lux-hero .hero-video,
.lux-hero .hero-video-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lux-hero .hero-video-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(12, 10, 6, 0.25) 0%, rgba(12, 10, 6, 0.82) 100%),
    linear-gradient(180deg, rgba(12, 10, 6, 0.72) 0%, rgba(12, 10, 6, 0.35) 40%, rgba(12, 10, 6, 0.88) 100%);
}

/* Thin royal frame inside the hero */
.lux-hero-frame {
  position: absolute;
  inset: clamp(14px, 2.4vw, 30px);
  border: 1px solid rgba(198, 163, 83, 0.35);
  pointer-events: none;
  z-index: 2;
}

.lux-hero-frame::before,
.lux-hero-frame::after {
  content: "✦";
  position: absolute;
  top: -0.62em;
  color: var(--lux-gold);
  font-size: 0.9rem;
  background: transparent;
}

.lux-hero-frame::before { left: calc(50% - 2.4em); }
.lux-hero-frame::after { right: calc(50% - 2.4em); }

.lux-hero .hero-video-content {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  padding: clamp(5.5rem, 10vh, 8rem) 0 clamp(4.5rem, 9vh, 7rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.lux-hero-copy {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lux-hero-copy .lux-script {
  color: var(--lux-gold-2);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

.lux-hero-copy h1 {
  margin: 0.3rem 0 0;
  color: #fdf9ef;
  text-shadow: 0 3px 30px rgba(0, 0, 0, 0.55);
}

.lux-hero-copy > p {
  margin: 0 0 1.9rem;
  max-width: 620px;
  color: rgba(244, 234, 211, 0.88);
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.75;
}

.lux-hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
}

.lux-hero-stats {
  margin-top: clamp(2.6rem, 6vh, 4rem);
  display: flex;
  align-items: stretch;
  gap: clamp(1.4rem, 4vw, 3.2rem);
}

.lux-hero-stats > div {
  text-align: center;
  padding: 0 clamp(0.4rem, 1.5vw, 1.4rem);
  position: relative;
}

.lux-hero-stats > div + div::before {
  content: "";
  position: absolute;
  left: calc(-0.5 * clamp(1.4rem, 4vw, 3.2rem));
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(198, 163, 83, 0.55), transparent);
}

.lux-hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 600;
  color: var(--lux-gold-2);
  line-height: 1;
}

.lux-hero-stats span {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(244, 234, 211, 0.72);
}

.lux-scroll-cue {
  position: absolute;
  bottom: clamp(26px, 4vh, 44px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 26px;
  height: 42px;
  border: 1px solid rgba(198, 163, 83, 0.6);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.lux-scroll-cue span {
  width: 3px;
  height: 8px;
  border-radius: 3px;
  background: var(--lux-gold-2);
  animation: luxScroll 1.8s ease-in-out infinite;
}

@keyframes luxScroll {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- Gold marquee strip ---------- */

.lux-marquee {
  background: linear-gradient(90deg, #9a7728 0%, #c6a353 30%, #e9cf8e 50%, #c6a353 70%, #9a7728 100%);
  border-block: 1px solid rgba(29, 21, 8, 0.25);
  overflow: hidden;
  padding: 0.85rem 0;
}

.lux-marquee-track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  animation: luxMarquee 30s linear infinite;
}

.lux-marquee span {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #241a08;
  white-space: nowrap;
}

.lux-marquee i {
  font-style: normal;
  color: #241a08;
  opacity: 0.65;
  font-size: 0.8rem;
}

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

@media (prefers-reduced-motion: reduce) {
  .lux-marquee-track { animation: none; }
}

/* ---------- Section headings ---------- */

.section {
  padding: clamp(3.4rem, 7vw, 5.5rem) 0;
}

.section-heading h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
}

.section-heading p {
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.lux-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.lux-head p {
  color: var(--muted);
  font-weight: 300;
  margin: 0.4rem 0 0;
}

/* ---------- Category carousel reskin ---------- */

.lux-categories {
  background:
    radial-gradient(circle at 8% 12%, rgba(198, 163, 83, 0.08), transparent 40%),
    radial-gradient(circle at 92% 88%, rgba(110, 33, 41, 0.05), transparent 40%),
    var(--lux-paper);
}

.category-card--carousel {
  border-radius: var(--radius-md);
  background: var(--lux-card);
  border: 1px solid var(--lux-line-light);
}

.category-card--carousel:hover {
  border-color: var(--lux-gold);
  box-shadow: 0 10px 20px rgba(43, 33, 16, 0.08), 0 30px 60px rgba(154, 119, 40, 0.18);
}

.category-card-media .category-card-badge,
.category-card-badge {
  background: rgba(20, 16, 10, 0.82);
  color: var(--lux-gold-2) !important;
  font-family: var(--font-body);
  letter-spacing: 0.16em;
  font-weight: 600;
  border: 1px solid rgba(198, 163, 83, 0.5);
}

.category-card-body strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.category-card-cta {
  color: var(--lux-gold-deep);
  letter-spacing: 0.16em;
}

.category-card--carousel:hover .category-card-cta {
  color: var(--lux-gold-deep);
}

.category-carousel-btn {
  background: var(--lux-black);
  color: var(--lux-gold-2);
  border-color: rgba(198, 163, 83, 0.5);
}

.category-carousel-btn:hover:not(:disabled) {
  background: var(--lux-ink);
  box-shadow: 0 12px 32px rgba(154, 119, 40, 0.3);
}

.category-carousel-progress {
  background: rgba(43, 33, 16, 0.1);
}

.category-carousel-progress-bar {
  background: linear-gradient(90deg, var(--lux-gold-deep), var(--lux-gold-2));
}

/* ---------- Royal about section (dark) ---------- */

.lux-royal {
  background:
    radial-gradient(circle at 85% 15%, rgba(198, 163, 83, 0.1), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(110, 33, 41, 0.16), transparent 50%),
    var(--lux-coal);
  color: var(--lux-cream);
}

.lux-royal-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2.2rem, 5vw, 4.5rem);
  align-items: center;
}

.lux-royal-media {
  position: relative;
  padding: 0 2.4rem 2.6rem 0;
}

.lux-royal-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(198, 163, 83, 0.4);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.lux-royal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lux-royal-photo--tall {
  aspect-ratio: 4 / 5;
}

.lux-royal-photo--float {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  aspect-ratio: 1;
  border-width: 4px;
  border-color: var(--lux-coal);
  outline: 1px solid rgba(198, 163, 83, 0.5);
}

.lux-royal-badge {
  position: absolute;
  top: -1.1rem;
  right: 1.4rem;
  background: linear-gradient(135deg, #e9cf8e, #c6a353);
  color: #241a08;
  border-radius: 999px;
  width: 118px;
  height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.15rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  border: 4px solid var(--lux-coal);
  outline: 1px solid rgba(198, 163, 83, 0.6);
  z-index: 2;
}

.lux-royal-badge strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
}

.lux-royal-badge span {
  font-size: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  max-width: 90px;
}

.lux-royal-copy h2 {
  color: #fdf9ef;
  margin: 0 0 0.4rem;
}

.lux-royal-copy > p {
  color: rgba(244, 234, 211, 0.78);
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.02em;
  margin: 0 0 1.6rem;
}

.lux-royal-list {
  list-style: none;
  margin: 0 0 1.9rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.6rem;
}

.lux-royal-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.lux-royal-list i {
  font-style: normal;
  color: var(--lux-gold);
  margin-top: 0.15rem;
}

.lux-royal-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 600;
  color: var(--lux-gold-2);
  letter-spacing: 0.02em;
}

.lux-royal-list span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.86rem;
  font-weight: 300;
  color: rgba(244, 234, 211, 0.66);
  line-height: 1.5;
}

.lux-royal .button-ghost {
  color: var(--lux-gold-2);
}

/* ---------- Product cards — dark royal "menu card" design ---------- */

.product-card {
  position: relative;
  background: linear-gradient(180deg, #1d1710 0%, #14100a 55%, #100c07 100%);
  border: 1px solid rgba(198, 163, 83, 0.28);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(20, 14, 5, 0.18), 0 24px 54px rgba(20, 14, 5, 0.22);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(198, 163, 83, 0.75);
  box-shadow:
    0 12px 26px rgba(20, 14, 5, 0.25),
    0 34px 70px rgba(154, 119, 40, 0.35),
    0 0 0 1px rgba(233, 207, 142, 0.2);
}

/* inner gold hairline frame */
.product-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(198, 163, 83, 0.16);
  border-radius: 12px;
  pointer-events: none;
  transition: border-color 0.35s ease;
}

.product-card:hover::after {
  border-color: rgba(198, 163, 83, 0.4);
}

.product-card .product-card-media {
  background: #0c0a06;
}

/* image melts into the dark card */
.product-card .product-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 16, 10, 0.12) 0%, transparent 35%, rgba(26, 20, 12, 0.92) 100%);
  opacity: 1;
  pointer-events: none;
}

.product-card-media img {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
}

.product-card:hover .product-card-media img {
  transform: scale(1.08);
  filter: saturate(1.12) brightness(1.05);
}

.product-card .product-card-body {
  position: relative;
  z-index: 1;
  padding: 1.05rem 1.35rem 1.35rem;
}

.product-card .badge {
  align-self: flex-start;
  background: rgba(198, 163, 83, 0.12);
  border: 1px solid rgba(198, 163, 83, 0.55);
  color: var(--lux-gold-2);
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.3rem 0.8rem;
  box-shadow: none;
}

.product-card .overline {
  color: var(--lux-gold);
}

.product-card-body h3,
.product-card-body h3 a {
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #f7f0e1;
}

.product-card-body h3 a:hover {
  color: var(--lux-gold-2);
}

.product-card .product-card-body p,
.product-card-body p {
  color: rgba(244, 234, 211, 0.55) !important;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.product-card .price-row {
  border-top: 1px dashed rgba(198, 163, 83, 0.35);
  padding-top: 0.75rem;
  align-items: baseline;
}

.product-card .price {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: linear-gradient(120deg, #f2dfa8 0%, #e9cf8e 40%, #c6a353 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--lux-gold-2);
}

.product-card .price-original,
.price-original {
  color: rgba(244, 234, 211, 0.4);
  text-decoration: line-through;
  font-size: 0.92rem;
  font-weight: 400;
}

.product-card .price-row .pill,
.price-row .pill {
  display: none;
}

.product-card-actions .button-primary {
  width: 100%;
  min-height: 46px;
  border-radius: 10px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #e9cf8e 0%, #c6a353 52%, #a8822f 100%);
  color: #1d1508;
  border: 1px solid rgba(233, 207, 142, 0.5);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 244, 214, 0.55);
}

.product-card-actions .button-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #f2dfa8 0%, #d4b264 52%, #b78f3a 100%);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45), 0 6px 22px rgba(198, 163, 83, 0.4);
  filter: none;
}

.product-card-actions .button-ghost {
  min-height: 40px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f4ead3;
  border: 1px solid rgba(198, 163, 83, 0.5);
  background: rgba(198, 163, 83, 0.06);
}

.product-card-actions .button-ghost::after {
  content: none;
}

/* any secondary/outline button inside a dark product card */
.product-card .button-secondary {
  color: #f4ead3;
  border-color: rgba(198, 163, 83, 0.55);
  background: rgba(198, 163, 83, 0.06);
  font-weight: 600;
}

.product-card .button-secondary:hover {
  background: rgba(198, 163, 83, 0.12);
  color: var(--lux-gold-2);
}

.product-card-actions .button-ghost:hover {
  background: rgba(198, 163, 83, 0.1);
  border-color: rgba(198, 163, 83, 0.6);
  color: var(--lux-gold-2);
}

/* Generic badge/price for non-card contexts (product detail page etc.) */
.badge {
  background: rgba(198, 163, 83, 0.14);
  color: var(--lux-gold-deep);
  border: 1px solid rgba(198, 163, 83, 0.45);
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.28rem 0.7rem;
}

.price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--lux-gold-deep);
}

.product-info .price-original,
.cart-item .price-original,
.summary-card .price-original {
  color: var(--muted);
}

.pill {
  background: rgba(198, 163, 83, 0.12);
  border: 1px solid rgba(198, 163, 83, 0.35);
  color: var(--lux-gold-deep);
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  font-weight: 500;
}

.hero-video-banner .pill,
.mini-meta .pill {
  background: rgba(12, 10, 6, 0.4);
  border-color: rgba(198, 163, 83, 0.5);
  color: var(--lux-gold-2);
  backdrop-filter: blur(6px);
}

/* ---------- Countdown offer (dark + maroon) ---------- */

.lux-offer {
  position: relative;
  background:
    radial-gradient(circle at 80% 20%, rgba(198, 163, 83, 0.14), transparent 45%),
    linear-gradient(120deg, #170c0b 0%, #241014 45%, #14100a 100%);
  color: var(--lux-cream);
  padding: clamp(3.6rem, 7vw, 5.8rem) 0;
  overflow: hidden;
}

.lux-offer::before,
.lux-offer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='14' viewBox='0 0 48 14'%3E%3Crect width='48' height='14' fill='%236e2129'/%3E%3Cpath d='M12 2L21 7L12 12L3 7Z' fill='%23c6a353'/%3E%3Cpath d='M36 2L45 7L36 12L27 7Z' fill='%2317685c'/%3E%3Ccircle cx='24' cy='7' r='1.5' fill='%23e9cf8e'/%3E%3Ccircle cx='0' cy='7' r='1.5' fill='%23e9cf8e'/%3E%3Ccircle cx='48' cy='7' r='1.5' fill='%23e9cf8e'/%3E%3Crect width='48' height='1' fill='%23e9cf8e' opacity='0.75'/%3E%3Crect y='13' width='48' height='1' fill='%23e9cf8e' opacity='0.75'/%3E%3C/svg%3E") repeat-x;
  background-size: 48px 14px;
  pointer-events: none;
}

.lux-offer::before {
  top: 0;
}

.lux-offer::after {
  bottom: 0;
}

.lux-offer-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2.2rem, 5vw, 4.5rem);
  align-items: center;
}

.lux-offer-copy h2 {
  color: #fdf9ef;
  margin: 0 0 0.8rem;
}

.lux-offer-copy > p {
  color: rgba(244, 234, 211, 0.8);
  font-weight: 300;
  line-height: 1.75;
  max-width: 520px;
  margin: 0 0 1.7rem;
}

.lux-countdown {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
  flex-wrap: wrap;
}

.lux-cd-chip {
  min-width: 86px;
  padding: 0.85rem 0.6rem 0.7rem;
  text-align: center;
  background: rgba(12, 10, 6, 0.55);
  border: 1px solid rgba(198, 163, 83, 0.4);
  border-radius: 12px;
  backdrop-filter: blur(4px);
}

.lux-cd-chip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1;
  color: var(--lux-gold-2);
  font-variant-numeric: tabular-nums;
}

.lux-cd-chip span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(244, 234, 211, 0.65);
}

.lux-cd-note {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--lux-gold);
  margin: 0 0 1.6rem;
}

.lux-offer-media {
  position: relative;
  margin: 0;
}

.lux-offer-media img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid rgba(198, 163, 83, 0.45);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.55);
}

.lux-offer-chip {
  position: absolute;
  left: -1rem;
  bottom: 1.6rem;
  background: linear-gradient(135deg, #e9cf8e, #c6a353);
  color: #241a08;
  border-radius: 12px;
  padding: 0.75rem 1.2rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.lux-offer-chip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.1;
}

.lux-offer-chip span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ---------- Posts showcase (Instagram marquee) ---------- */

.posts-showcase {
  background: var(--lux-paper);
}

.posts-card {
  border-radius: var(--radius-sm);
  border: 1px solid var(--lux-line-light);
  overflow: hidden;
}

.posts-card img {
  transition: transform 0.5s ease;
}

.posts-card:hover img {
  transform: scale(1.05);
}

/* ---------- Buffet section reskin ---------- */

.buffet-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(198, 163, 83, 0.1), transparent 42%),
    #f5efe1;
}

.buffet-tab {
  border-radius: 8px;
  border: 1px solid rgba(154, 119, 40, 0.35);
  background: transparent;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 500;
}

.buffet-tab.is-active {
  background: linear-gradient(135deg, #e9cf8e, #c6a353);
  border-color: var(--lux-gold-deep);
  color: #241a08;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(166, 124, 46, 0.3);
}

.buffet-panel {
  background: var(--lux-card);
  border: 1px solid var(--lux-line-light);
  border-radius: var(--radius-md);
}

.buffet-panel-hero-copy h3 {
  font-family: var(--font-display);
  font-weight: 600;
}

.buffet-price-chip {
  background: rgba(198, 163, 83, 0.14);
  border: 1px solid rgba(198, 163, 83, 0.45);
  color: var(--text);
  border-radius: 999px;
}

.buffet-price-chip strong {
  color: var(--lux-gold-deep);
  font-family: var(--font-display);
}

.buffet-contact-pill {
  background: var(--lux-black);
  color: var(--lux-gold-2);
  border: 1px solid rgba(198, 163, 83, 0.4);
  border-radius: 999px;
}

.buffet-column h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--lux-gold-deep);
}

.buffet-schedule-row::before {
  background: linear-gradient(180deg, var(--lux-gold-2), var(--lux-gold));
}

.buffet-schedule-row.is-special::before {
  background: linear-gradient(180deg, var(--lux-gold-2), var(--lux-gold-deep));
}

.buffet-schedule-row.is-special .buffet-schedule-time {
  background: linear-gradient(135deg, #8a5a20, #6e2129);
  box-shadow: 0 4px 14px rgba(110, 33, 41, 0.35);
}

/* page.php hero visual (legacy red gradient) */
.hero-visual {
  background:
    radial-gradient(circle at 80% 20%, rgba(233, 207, 142, 0.25), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(198, 163, 83, 0.2), transparent 35%),
    linear-gradient(145deg, #14100a 0%, #2b1f10 42%, #9a7728 100%);
}

/* ---------- Testimonials (dark) ---------- */

.lux-testimonials {
  background:
    radial-gradient(circle at 15% 15%, rgba(198, 163, 83, 0.1), transparent 42%),
    radial-gradient(circle at 88% 90%, rgba(110, 33, 41, 0.14), transparent 48%),
    var(--lux-black);
  color: var(--lux-cream);
  padding: clamp(3.6rem, 7vw, 5.8rem) 0;
}

.lux-testimonials-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(2.2rem, 4.5vw, 3.4rem);
}

.lux-testimonials-head h2 {
  color: #fdf9ef;
  margin: 0;
}

.lux-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.lux-quote {
  position: relative;
  background: rgba(29, 23, 16, 0.85);
  border: 1px solid rgba(198, 163, 83, 0.25);
  border-radius: var(--radius-md);
  padding: 2.4rem 1.7rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.lux-quote:hover {
  transform: translateY(-6px);
  border-color: rgba(198, 163, 83, 0.6);
}

.lux-quote::before {
  content: "“";
  position: absolute;
  top: 0.2rem;
  left: 1.3rem;
  font-family: var(--font-display);
  font-size: 4.4rem;
  line-height: 1;
  color: var(--lux-gold);
  opacity: 0.55;
}

.lux-quote-stars {
  color: var(--lux-gold-2);
  letter-spacing: 0.28em;
  font-size: 0.85rem;
}

.lux-quote p {
  margin: 0;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(244, 234, 211, 0.86);
  font-size: 0.95rem;
}

.lux-quote-toggle {
  align-self: flex-start;
  margin-top: -0.35rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--lux-gold-2);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.lux-quote-toggle:hover,
.lux-quote-toggle:focus-visible {
  color: var(--lux-gold);
}

.lux-quote footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(198, 163, 83, 0.2);
}

.lux-quote footer strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--lux-gold-2);
}

.lux-quote footer span {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 234, 211, 0.55);
}

.lux-testimonials-cta {
  text-align: center;
  margin-top: 2.2rem;
}

/* ---------- Visit / hours ---------- */

.lux-visit {
  background: var(--lux-paper);
}

.lux-visit-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2.2rem, 5vw, 4.2rem);
  align-items: center;
}

.lux-visit-media {
  margin: 0;
  position: relative;
}

.lux-visit-media img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--lux-line-light);
  box-shadow: var(--shadow-strong);
}

.lux-visit-media::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(198, 163, 83, 0.55);
  border-radius: calc(var(--radius-md) - 6px);
  pointer-events: none;
}

.lux-visit-copy h2 {
  margin: 0 0 1.4rem;
}

.lux-visit-list {
  list-style: none;
  margin: 0 0 1.9rem;
  padding: 0;
}

.lux-visit-list li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px dashed rgba(154, 119, 40, 0.35);
}

.lux-visit-list li:first-child {
  border-top: 1px dashed rgba(154, 119, 40, 0.35);
}

.lux-visit-list span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--lux-gold-deep);
  font-weight: 600;
}

.lux-visit-list strong {
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--text);
}

.lux-visit-list a strong:hover,
.lux-visit-list a:hover strong {
  color: var(--lux-gold-deep);
}

/* ---------- Newsletter (gold band) ---------- */

.lux-news {
  background: linear-gradient(120deg, #9a7728 0%, #c6a353 45%, #dfc180 100%);
  color: #241a08;
  padding: clamp(2.8rem, 5vw, 4rem) 0;
}

.lux-news-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.lux-news .lux-script {
  color: rgba(36, 26, 8, 0.85);
  margin-bottom: 0.2rem;
}

.lux-news h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: #241a08;
}

.lux-news-form {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.lux-news-form input {
  min-width: min(320px, 70vw);
  padding: 0.85rem 1.2rem;
  border-radius: 8px;
  border: 1px solid rgba(36, 26, 8, 0.4);
  background: rgba(253, 249, 239, 0.92);
  color: #241a08;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}

.lux-news-form input:focus {
  outline: 2px solid #241a08;
  outline-offset: 1px;
}

.button-dark,
.lux-news-form .button-dark {
  background: #1d1508;
  color: var(--lux-gold-2);
  border: 1px solid #1d1508;
}

.button-dark:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

.lux-news-done {
  width: 100%;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--lux-black);
  color: rgba(244, 234, 211, 0.78);
  border-top: 1px solid var(--lux-line-dark);
  padding-top: clamp(2.8rem, 5vw, 4rem);
  margin: 0;
}

.footer-brand-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  padding-bottom: 2.2rem;
}

.footer-brand-logo {
  height: 52px;
  width: auto;
}

.lux-footer-script {
  font-family: var(--font-script);
  font-size: 1.7rem;
  color: var(--lux-gold);
  margin: 0;
}

.footer-brand-tagline {
  color: rgba(244, 234, 211, 0.6);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin: 0;
}

.footer-grid {
  border-top: 1px solid rgba(198, 163, 83, 0.16);
  padding-top: 2.4rem;
}

.footer-column h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lux-gold-2);
}

.footer-column a {
  color: rgba(244, 234, 211, 0.66);
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.footer-column a:hover {
  color: var(--lux-gold-2);
}

.footer-meta {
  border-top: 1px solid rgba(198, 163, 83, 0.16);
  margin-top: 2.2rem;
  padding-top: 1.6rem;
}

.social-link {
  border: 1px solid rgba(198, 163, 83, 0.5);
  color: var(--lux-gold-2);
  background: transparent;
}

.social-link:hover {
  background: rgba(198, 163, 83, 0.16);
  color: #fff;
}

.footer-legal a {
  color: rgba(244, 234, 211, 0.55);
}

.footer-legal a:hover {
  color: var(--lux-gold-2);
}

.footer-copy {
  color: rgba(244, 234, 211, 0.45);
}

/* ============================================================
   INNER PAGES RESKIN
   ============================================================ */

/* Page hero (page.php) */
.page-hero-section,
.page-hero {
  background: var(--lux-coal);
  color: var(--lux-cream);
}

.page-hero {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cpath d='M28 0c3.8 10.8 17.2 24.2 28 28-10.8 3.8-24.2 17.2-28 28-3.8-10.8-17.2-24.2-28-28 10.8-3.8 24.2-17.2 28-28z' fill='none' stroke='%23c6a353' stroke-opacity='0.07'/%3E%3C/svg%3E"),
    radial-gradient(circle at 85% 15%, rgba(198, 163, 83, 0.12), transparent 45%),
    var(--lux-coal);
  border: 1px solid rgba(198, 163, 83, 0.3);
}

.page-hero-section {
  background: transparent;
}

.page-hero-copy {
  background: none;
}

.page-hero-copy h1,
.page-hero h1 {
  color: #fdf9ef;
}

/* Menu page */
.menu-toolbar {
  border-color: var(--lux-line-light);
}

.category-filters .button,
.category-filters a {
  border-radius: 8px;
}

.results-count {
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* Product detail */
.product-gallery-main,
.product-gallery img {
  border-radius: var(--radius-md);
  border: 1px solid var(--lux-line-light);
}

.product-info h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
}

.product-meta-card,
.detail-list {
  background: var(--lux-card);
  border: 1px solid var(--lux-line-light);
  border-radius: var(--radius-md);
}

.info-tag {
  background: rgba(198, 163, 83, 0.12);
  border: 1px solid rgba(198, 163, 83, 0.4);
  color: var(--lux-gold-deep);
  border-radius: 999px;
}

/* Cart / checkout / summary */
.cart-item,
.summary-card,
.form-card,
.content-card,
.success-card,
.success-box,
.account-card,
.account-info-card,
.auth-card,
.contact-aside-card,
.contact-form-wrap {
  background: var(--lux-card);
  border: 1px solid var(--lux-line-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.content-card {
  border-top: 3px solid var(--lux-gold);
}

.content-card h2 {
  font-size: 1.5rem;
}

.summary-card h2,
.form-card h2,
.auth-card h2 {
  font-family: var(--font-display);
  font-weight: 600;
}

.summary-total {
  font-family: var(--font-display);
  color: var(--lux-gold-deep);
  font-size: 1.3rem;
}

.qty-button {
  border: 1px solid var(--lux-line-light);
  background: var(--lux-card);
  color: var(--text);
}

.qty-button:hover {
  border-color: var(--lux-gold);
  background: rgba(198, 163, 83, 0.1);
}

.qty-input {
  border: 1px solid var(--lux-line-light);
  border-radius: 8px;
  background: var(--lux-card);
}

.square-pay {
  margin: 1.35rem 0 0.4rem;
  padding: 1.15rem 1.1rem 1rem;
  border: 1px solid rgba(198, 163, 83, 0.45);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(253, 249, 239, 0.9), rgba(255, 253, 248, 0.96));
}

.square-pay-head {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 0.85rem;
}

.square-pay-head strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--lux-gold-deep);
}

.square-pay-head span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(43, 33, 22, 0.55);
}

.square-card,
#card-container:not([hidden]) {
  min-height: 90px;
}

.square-card-status {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 90px;
  margin-bottom: 0.4rem;
  color: var(--lux-gold-deep);
  font-size: 0.92rem;
  font-weight: 600;
}

.square-card-status[hidden],
#card-container[hidden],
.square-https-notice[hidden] {
  display: none;
}

.square-https-notice {
  margin: 0;
  padding: 0.85rem 0.95rem;
  border-radius: 10px;
  background: rgba(198, 163, 83, 0.12);
  border: 1px solid rgba(198, 163, 83, 0.35);
  color: var(--lux-gold-deep);
  font-size: 0.92rem;
  line-height: 1.45;
}

.square-spinner {
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid rgba(198, 163, 83, 0.25);
  border-top-color: var(--lux-gold);
  border-radius: 50%;
  animation: square-spin 0.8s linear infinite;
}

@keyframes square-spin {
  to { transform: rotate(360deg); }
}

/* Forms */
.field input,
.field textarea,
.field select,
.stack-form input,
.stack-form textarea,
.stack-form select,
.contact-form input,
.contact-form textarea,
.contact-form select,
.auth-form input,
.auth-form select {
  background: #fffdf8;
  border: 1px solid var(--lux-line-light);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-body);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus,
.stack-form input:focus,
.stack-form textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.auth-form input:focus {
  border-color: var(--lux-gold);
  box-shadow: 0 0 0 3px rgba(198, 163, 83, 0.22);
  outline: none;
}

.field label,
.stack-form label,
.auth-form label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--lux-gold-deep);
}

/* Auth pages */
.auth-shell {
  background: var(--lux-paper);
}

.auth-panel--brand,
.auth-panel-card {
  background: var(--lux-coal);
  color: var(--lux-cream);
  border-radius: var(--radius-md);
}

.auth-panel--brand {
  border: 1px solid rgba(198, 163, 83, 0.3);
}

.auth-panel--form {
  background: transparent;
}

.auth-panel--brand h1,
.auth-panel--brand h2,
.auth-panel-card h2 {
  color: #fdf9ef;
}

.auth-perks li {
  color: rgba(244, 234, 211, 0.8);
}

/* white auth card — keep its text dark and readable */
.auth-card h1,
.auth-card h2,
.auth-card h3 {
  color: var(--text);
}

.auth-card p,
.auth-card .auth-footnote,
.auth-card label,
.auth-card span {
  color: var(--muted);
}

.auth-card .field label,
.auth-card .auth-form label {
  color: var(--lux-gold-deep);
}

.auth-card a {
  color: var(--lux-gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Account */
.account-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(198, 163, 83, 0.16), transparent 45%),
    var(--lux-coal);
  color: var(--lux-cream);
}

.account-hero h1 {
  color: #fdf9ef;
}

.account-nav a {
  border-radius: 8px;
}

.account-nav a.is-active,
.account-nav .is-active {
  background: rgba(198, 163, 83, 0.16);
  color: var(--lux-gold-deep);
  border: 1px solid rgba(198, 163, 83, 0.4);
}

.status-pill {
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.66rem;
  font-weight: 600;
}

/* Contact */
.contact-hero {
  background: var(--lux-coal);
  color: var(--lux-cream);
}

.contact-hero h1 {
  color: #fdf9ef;
}

.contact-chip {
  background: var(--lux-card);
  border: 1px solid var(--lux-line-light);
  border-radius: var(--radius-sm);
}

.contact-chip-label {
  color: var(--lux-gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-weight: 600;
}

.contact-chip strong,
.contact-chip a {
  color: var(--text);
}

.contact-chip a:hover strong,
.contact-chip a:hover {
  color: var(--lux-gold-deep);
}

/* Tables */
.order-table th,
.cart-table th {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: var(--lux-gold-deep);
  border-bottom: 1px solid var(--lux-line-light);
}

.order-table td,
.cart-table td {
  border-bottom: 1px solid rgba(231, 220, 194, 0.6);
}

/* Alerts + misc */
.alert,
.form-alert,
.checkout-notice {
  border-radius: var(--radius-sm);
  border: 1px solid var(--lux-line-light);
}

.breadcrumbs {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.breadcrumbs a:hover {
  color: var(--lux-gold-deep);
}

.empty-state {
  background: var(--lux-card);
  border: 1px dashed rgba(154, 119, 40, 0.45);
  border-radius: var(--radius-md);
}

.text-button {
  color: var(--lux-gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.success-badge {
  background: linear-gradient(135deg, #e9cf8e, #c6a353);
  color: #241a08;
}

/* Reels section (if used) */
.reels-section {
  background: var(--lux-coal);
  color: var(--lux-cream);
}

.reels-heading h2 {
  color: #fdf9ef;
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .lux-royal-inner,
  .lux-offer-inner,
  .lux-visit-inner {
    grid-template-columns: 1fr;
  }

  .lux-royal-media {
    max-width: 480px;
    margin: 0 auto;
  }

  .lux-offer-media {
    max-width: 520px;
    margin: 0 auto;
  }

  .lux-offer-chip {
    left: 1rem;
  }

  .lux-testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .lux-visit-media {
    max-width: 480px;
    margin: 0 auto;
  }

  .lux-news-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .lux-hero-stats {
    gap: 1.1rem;
  }

  .lux-hero-stats span {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
  }

  .lux-royal-list {
    grid-template-columns: 1fr;
  }

  .lux-cd-chip {
    min-width: 72px;
  }

  .lux-cd-chip strong {
    font-size: 1.6rem;
  }

  .lux-visit-list li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .lux-marquee span {
    font-size: 0.9rem;
  }

  .utility-links span.lux-hide-sm {
    display: none;
  }
}

/* Reveal (safety net if premium.css changes) */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ============================================================
   LUXURY ANIMATIONS
   ============================================================ */

/* ---------- Hero cinematic entrance (on page load) ---------- */

@keyframes luxFadeUp {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes luxFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes luxGrowX {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.lux-hero-copy .lux-script {
  animation: luxFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

.lux-hero-copy h1 {
  animation: luxFadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

.lux-hero-copy .lux-ornament {
  animation: luxGrowX 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.75s both;
  transform-origin: center;
}

.lux-hero-copy > p {
  animation: luxFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.9s both;
}

.lux-hero-copy .lux-hero-actions {
  animation: luxFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 1.1s both;
}

.lux-hero-stats {
  animation: luxFadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) 1.35s both;
}

.lux-hero-frame {
  animation: luxFadeIn 1.6s ease 0.6s both;
}

.lux-scroll-cue {
  animation: luxFadeIn 1.2s ease 1.9s both;
}

/* Slow cinematic ken-burns on the hero video */
@keyframes luxKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.09); }
}

.lux-hero .hero-video,
.lux-hero .hero-video-fallback {
  animation: luxKenBurns 22s ease-in-out infinite alternate;
}

/* ---------- Gold shine sweep on primary buttons ---------- */

.button-primary,
.button-dark {
  position: relative;
  overflow: hidden;
}

.button-primary::before,
.button-dark::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -80%;
  width: 55%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  opacity: 0;
}

@keyframes luxShine {
  0% { left: -80%; opacity: 1; }
  100% { left: 135%; opacity: 1; }
}

.button-primary:hover::before,
.button-primary:focus-visible::before,
.button-dark:hover::before {
  animation: luxShine 0.85s ease;
}

/* ---------- Light sweep across food images on hover ---------- */

.product-card-media::before,
.category-card-media::before {
  content: "";
  position: absolute;
  top: -10%;
  bottom: -10%;
  left: -85%;
  width: 55%;
  background: linear-gradient(105deg, transparent, rgba(255, 250, 235, 0.32), transparent);
  transform: skewX(-18deg);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
}

@keyframes luxSweep {
  0% { left: -85%; opacity: 1; }
  100% { left: 140%; opacity: 1; }
}

.product-card:hover .product-card-media::before,
.category-card--carousel:hover .category-card-media::before {
  animation: luxSweep 1.05s ease;
}

/* ---------- Floating gold badges ---------- */

@keyframes luxFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.lux-royal-badge {
  animation: luxFloat 5.5s ease-in-out infinite;
}

.lux-offer-chip {
  animation: luxFloat 6.5s ease-in-out 0.8s infinite;
}

/* ---------- Countdown chips: soft gold breathing glow ---------- */

@keyframes luxPulse {
  0%, 100% {
    box-shadow: 0 0 0 rgba(198, 163, 83, 0);
    border-color: rgba(198, 163, 83, 0.4);
  }
  50% {
    box-shadow: 0 0 26px rgba(198, 163, 83, 0.38);
    border-color: rgba(233, 207, 142, 0.75);
  }
}

.lux-cd-chip {
  animation: luxPulse 2.8s ease-in-out infinite;
}

.lux-cd-chip:nth-child(2) { animation-delay: 0.35s; }
.lux-cd-chip:nth-child(3) { animation-delay: 0.7s; }
.lux-cd-chip:nth-child(4) { animation-delay: 1.05s; }

/* ---------- Nav links: gold underline grows on hover ---------- */

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.2rem;
  height: 1px;
  background: var(--lux-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

/* ---------- Split sections: slide in from the sides ---------- */

.lux-royal.reveal,
.lux-offer.reveal,
.lux-visit.reveal {
  opacity: 1;
  transform: none;
}

.lux-royal.reveal .lux-royal-media,
.lux-visit.reveal .lux-visit-media,
.lux-offer.reveal .lux-offer-copy {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1), transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.lux-royal.reveal .lux-royal-copy,
.lux-visit.reveal .lux-visit-copy,
.lux-offer.reveal .lux-offer-media {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.15s, transform 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.lux-royal.reveal.is-visible .lux-royal-media,
.lux-royal.reveal.is-visible .lux-royal-copy,
.lux-visit.reveal.is-visible .lux-visit-media,
.lux-visit.reveal.is-visible .lux-visit-copy,
.lux-offer.reveal.is-visible .lux-offer-copy,
.lux-offer.reveal.is-visible .lux-offer-media {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Testimonials: staggered rise ---------- */

.lux-testimonials.reveal {
  opacity: 1;
  transform: none;
}

.lux-testimonials.reveal .lux-quote {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.lux-testimonials.reveal .lux-quote:nth-child(2) { transition-delay: 0.18s; }
.lux-testimonials.reveal .lux-quote:nth-child(3) { transition-delay: 0.36s; }

.lux-testimonials.reveal.is-visible .lux-quote {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Section headings: staggered rise ---------- */

.section.reveal:has(.lux-head) {
  opacity: 1;
  transform: none;
}

.section.reveal .lux-head .lux-script,
.section.reveal .lux-head h2,
.section.reveal .lux-head p {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.section.reveal .lux-head h2 { transition-delay: 0.12s; }
.section.reveal .lux-head p { transition-delay: 0.24s; }

.section.reveal.is-visible .lux-head .lux-script,
.section.reveal.is-visible .lux-head h2,
.section.reveal.is-visible .lux-head p {
  opacity: 1;
  transform: translateY(0);
}

/* gold line grows under section headings once revealed */
.lux-head::after {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin: 1.1rem auto 0;
  background: linear-gradient(90deg, transparent, var(--lux-gold), transparent);
  transform: scaleX(0);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s;
}

.section.reveal.is-visible .lux-head::after,
.section:not(.reveal) .lux-head::after {
  transform: scaleX(1);
}

/* ---------- Small touches ---------- */

/* marquee pauses so guests can read */
.lux-marquee:hover .lux-marquee-track {
  animation-play-state: paused;
}

/* marquee stars twinkle */
@keyframes luxTwinkle {
  0%, 100% { opacity: 0.65; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.35) rotate(20deg); }
}

.lux-marquee i {
  animation: luxTwinkle 2.6s ease-in-out infinite;
}

.lux-marquee i:nth-child(4n) { animation-delay: 0.6s; }
.lux-marquee i:nth-child(4n + 2) { animation-delay: 1.2s; }

/* gold price shimmers when the card is hovered */
@keyframes luxPriceShimmer {
  from { background-position: 0% center; }
  to { background-position: -200% center; }
}

.product-card .price {
  background-size: 200% auto;
}

.product-card:hover .price {
  animation: luxPriceShimmer 1.4s linear infinite;
}

/* cart icon gives a little wiggle */
@keyframes luxCartWiggle {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-10deg); }
  60% { transform: rotate(8deg); }
}

.header-cart:hover svg {
  animation: luxCartWiggle 0.55s ease;
}

/* footer links slide toward the gold */
.footer-column a {
  transition: color 0.2s ease, padding-left 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-column a:hover {
  padding-left: 8px;
}

/* active buffet tab breathes softly */
.buffet-tab.is-active {
  animation: luxPulse 3.2s ease-in-out infinite;
}

/* quantity buttons pop */
.qty-button:hover {
  transform: translateY(-1px) scale(1.06);
}

/* logo glows softly on hover */
.brand-logo,
.footer-brand-logo {
  transition: filter 0.35s ease, transform 0.35s ease;
}

.brand:hover .brand-logo,
.footer-brand:hover .footer-brand-logo {
  filter: drop-shadow(0 0 14px rgba(198, 163, 83, 0.55));
  transform: scale(1.02);
}

/* social + cart chips lift */
.social-link,
.header-cart {
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.social-link:hover,
.header-cart:hover {
  transform: translateY(-3px);
}

/* gold scrollbar for the royal touch */
::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-track {
  background: #14100a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #9a7728, #c6a353);
  border-radius: 8px;
  border: 2px solid #14100a;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #c6a353, #e9cf8e);
}

/* ============================================================
   ROYAL TEXTURES — subtle Mughal trellis over flat backgrounds
   ============================================================ */

/* Cream paper texture across the whole site */
body {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52' viewBox='0 0 52 52'%3E%3Cpath d='M26 0c3.5 10 16 22.5 26 26-10 3.5-22.5 16-26 26-3.5-10-16-22.5-26-26 10-3.5 22.5-16 26-26z' fill='none' stroke='%239a7728' stroke-opacity='0.075'/%3E%3C/svg%3E"),
    var(--lux-paper);
}

/* Header stays clean — no texture */
.main-nav-wrapper {
  background: rgba(12, 10, 6, 0.98);
}

/* Dark royal sections */
.lux-royal {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cpath d='M28 0c3.8 10.8 17.2 24.2 28 28-10.8 3.8-24.2 17.2-28 28-3.8-10.8-17.2-24.2-28-28 10.8-3.8 24.2-17.2 28-28z' fill='none' stroke='%23c6a353' stroke-opacity='0.07'/%3E%3C/svg%3E"),
    radial-gradient(circle at 85% 15%, rgba(198, 163, 83, 0.1), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(110, 33, 41, 0.16), transparent 50%),
    var(--lux-coal);
}

.lux-offer {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cpath d='M28 0c3.8 10.8 17.2 24.2 28 28-10.8 3.8-24.2 17.2-28 28-3.8-10.8-17.2-24.2-28-28 10.8-3.8 24.2-17.2 28-28z' fill='none' stroke='%23c6a353' stroke-opacity='0.06'/%3E%3C/svg%3E"),
    radial-gradient(circle at 80% 20%, rgba(198, 163, 83, 0.14), transparent 45%),
    linear-gradient(120deg, #170c0b 0%, #241014 45%, #14100a 100%);
}

.lux-testimonials {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cpath d='M28 0c3.8 10.8 17.2 24.2 28 28-10.8 3.8-24.2 17.2-28 28-3.8-10.8-17.2-24.2-28-28 10.8-3.8 24.2-17.2 28-28z' fill='none' stroke='%23c6a353' stroke-opacity='0.07'/%3E%3C/svg%3E"),
    radial-gradient(circle at 15% 15%, rgba(198, 163, 83, 0.1), transparent 42%),
    radial-gradient(circle at 88% 90%, rgba(110, 33, 41, 0.14), transparent 48%),
    var(--lux-black);
}

.site-footer {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cpath d='M28 0c3.8 10.8 17.2 24.2 28 28-10.8 3.8-24.2 17.2-28 28-3.8-10.8-17.2-24.2-28-28 10.8-3.8 24.2-17.2 28-28z' fill='none' stroke='%23c6a353' stroke-opacity='0.055'/%3E%3C/svg%3E"),
    var(--lux-black);
}

/* Cream sections — let the paper texture breathe through */
.lux-categories {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52' viewBox='0 0 52 52'%3E%3Cpath d='M26 0c3.5 10 16 22.5 26 26-10 3.5-22.5 16-26 26-3.5-10-16-22.5-26-26 10-3.5 22.5-16 26-26z' fill='none' stroke='%239a7728' stroke-opacity='0.075'/%3E%3C/svg%3E"),
    radial-gradient(circle at 8% 12%, rgba(198, 163, 83, 0.08), transparent 40%),
    var(--lux-paper);
}

.buffet-section {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52' viewBox='0 0 52 52'%3E%3Cpath d='M26 0c3.5 10 16 22.5 26 26-10 3.5-22.5 16-26 26-3.5-10-16-22.5-26-26 10-3.5 22.5-16 26-26z' fill='none' stroke='%239a7728' stroke-opacity='0.07'/%3E%3C/svg%3E"),
    radial-gradient(circle at 12% 20%, rgba(198, 163, 83, 0.1), transparent 42%),
    #f5efe1;
}

.posts-showcase,
.lux-visit {
  background: transparent;
}

/* ============================================================
   TEXT VISIBILITY FIXES — dark hero areas across inner pages
   ============================================================ */

.contact-hero p,
.page-hero p,
.page-hero-copy p,
.page-hero-section p,
.account-hero p,
.auth-panel--brand p,
.auth-panel-card p {
  color: rgba(244, 234, 211, 0.82);
}

.contact-hero .eyebrow,
.page-hero .eyebrow,
.page-hero-copy .eyebrow,
.page-hero-section .eyebrow,
.account-hero .eyebrow,
.auth-panel--brand .eyebrow,
.auth-panel-card .eyebrow {
  color: var(--lux-gold-2);
}

.contact-hero .breadcrumbs,
.page-hero .breadcrumbs,
.page-hero-section .breadcrumbs,
.account-hero .breadcrumbs,
.contact-hero .breadcrumbs a,
.page-hero .breadcrumbs a,
.page-hero-section .breadcrumbs a,
.account-hero .breadcrumbs a {
  color: rgba(244, 234, 211, 0.75);
}

.contact-hero .breadcrumbs,
.page-hero .breadcrumbs,
.page-hero-section .breadcrumbs,
.account-hero .breadcrumbs {
  background: rgba(12, 10, 6, 0.55);
  border: 1px solid rgba(198, 163, 83, 0.35);
}

.page-hero .breadcrumbs a:hover,
.contact-hero .breadcrumbs a:hover {
  color: var(--lux-gold-2);
}

.contact-hero h2,
.contact-hero h3,
.page-hero h2,
.page-hero-section h2,
.account-hero h2 {
  color: #fdf9ef;
}

/* Brighter script lines on dark sections */
.lux-royal .lux-script,
.lux-offer .lux-script,
.lux-testimonials .lux-script {
  color: var(--lux-gold);
}

/* ============================================================
   TRUCK ART TOUCH — chamak-patti bands, jhalar fringe,
   floral medallions (maroon · teal · gold)
   ============================================================ */

:root {
  --lux-teal: #17685c;
}

/* Chamak-patti diamond band under the sticky header — whole site */
.site-header::after {
  content: "";
  display: block;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='14' viewBox='0 0 48 14'%3E%3Crect width='48' height='14' fill='%236e2129'/%3E%3Cpath d='M12 2L21 7L12 12L3 7Z' fill='%23c6a353'/%3E%3Cpath d='M36 2L45 7L36 12L27 7Z' fill='%2317685c'/%3E%3Ccircle cx='24' cy='7' r='1.5' fill='%23e9cf8e'/%3E%3Ccircle cx='0' cy='7' r='1.5' fill='%23e9cf8e'/%3E%3Ccircle cx='48' cy='7' r='1.5' fill='%23e9cf8e'/%3E%3Crect width='48' height='1' fill='%23e9cf8e' opacity='0.75'/%3E%3Crect y='13' width='48' height='1' fill='%23e9cf8e' opacity='0.75'/%3E%3C/svg%3E") repeat-x;
  background-size: 48px 14px;
}

/* Band across the top of the footer — whole site */
.site-footer {
  padding-top: 0;
  border-top: 0;
}

.site-footer::before {
  content: "";
  display: block;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='14' viewBox='0 0 48 14'%3E%3Crect width='48' height='14' fill='%236e2129'/%3E%3Cpath d='M12 2L21 7L12 12L3 7Z' fill='%23c6a353'/%3E%3Cpath d='M36 2L45 7L36 12L27 7Z' fill='%2317685c'/%3E%3Ccircle cx='24' cy='7' r='1.5' fill='%23e9cf8e'/%3E%3Ccircle cx='0' cy='7' r='1.5' fill='%23e9cf8e'/%3E%3Ccircle cx='48' cy='7' r='1.5' fill='%23e9cf8e'/%3E%3Crect width='48' height='1' fill='%23e9cf8e' opacity='0.75'/%3E%3Crect y='13' width='48' height='1' fill='%23e9cf8e' opacity='0.75'/%3E%3C/svg%3E") repeat-x;
  background-size: 48px 14px;
  margin-bottom: clamp(2.8rem, 5vw, 4rem);
}

/* Jhalar — scalloped fringe hanging from the gold marquee (home) */
.lux-jhalar {
  height: 14px;
  position: relative;
  z-index: 2;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='14' viewBox='0 0 56 14'%3E%3Cpath d='M0 0h28c0 7.7-6.3 14-14 14S0 7.7 0 0z' fill='%23c6a353'/%3E%3Cpath d='M28 0h28c0 7.7-6.3 14-14 14s-14-6.3-14-14z' fill='%2317685c'/%3E%3Ccircle cx='14' cy='5.5' r='2' fill='%236e2129'/%3E%3Ccircle cx='42' cy='5.5' r='2' fill='%23e9cf8e'/%3E%3C/svg%3E") repeat-x top;
  background-size: 56px 14px;
}

.lux-hero-frame {
  background: none;
}

/* Bands framing the dark royal section */
.lux-royal {
  position: relative;
}

.lux-royal::before,
.lux-royal::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='14' viewBox='0 0 48 14'%3E%3Crect width='48' height='14' fill='%236e2129'/%3E%3Cpath d='M12 2L21 7L12 12L3 7Z' fill='%23c6a353'/%3E%3Cpath d='M36 2L45 7L36 12L27 7Z' fill='%2317685c'/%3E%3Ccircle cx='24' cy='7' r='1.5' fill='%23e9cf8e'/%3E%3Ccircle cx='0' cy='7' r='1.5' fill='%23e9cf8e'/%3E%3Ccircle cx='48' cy='7' r='1.5' fill='%23e9cf8e'/%3E%3Crect width='48' height='1' fill='%23e9cf8e' opacity='0.75'/%3E%3Crect y='13' width='48' height='1' fill='%23e9cf8e' opacity='0.75'/%3E%3C/svg%3E") repeat-x;
  background-size: 48px 14px;
  pointer-events: none;
}

.lux-royal::before {
  top: 0;
}

.lux-royal::after {
  bottom: 0;
}

/* Floral medallion above every section heading */
.lux-head::before,
.lux-testimonials-head::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto 0.6rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill='none' stroke='%23c6a353' stroke-width='1.4' stroke-opacity='0.85'%3E%3Cellipse cx='20' cy='9' rx='3.6' ry='7'/%3E%3Cellipse cx='20' cy='31' rx='3.6' ry='7'/%3E%3Cellipse cx='9' cy='20' rx='7' ry='3.6'/%3E%3Cellipse cx='31' cy='20' rx='7' ry='3.6'/%3E%3Cg transform='rotate(45 20 20)'%3E%3Cellipse cx='20' cy='9' rx='3.6' ry='7'/%3E%3Cellipse cx='20' cy='31' rx='3.6' ry='7'/%3E%3Cellipse cx='9' cy='20' rx='7' ry='3.6'/%3E%3Cellipse cx='31' cy='20' rx='7' ry='3.6'/%3E%3C/g%3E%3C/g%3E%3Ccircle cx='20' cy='20' r='4.2' fill='%2317685c' stroke='%23e9cf8e' stroke-width='1'/%3E%3Ccircle cx='20' cy='20' r='1.4' fill='%23e9cf8e'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Small flowers flanking the footer script line */
.lux-footer-script::before,
.lux-footer-script::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0 12px;
  vertical-align: middle;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill='none' stroke='%23c6a353' stroke-width='1.4' stroke-opacity='0.85'%3E%3Cellipse cx='20' cy='9' rx='3.6' ry='7'/%3E%3Cellipse cx='20' cy='31' rx='3.6' ry='7'/%3E%3Cellipse cx='9' cy='20' rx='7' ry='3.6'/%3E%3Cellipse cx='31' cy='20' rx='7' ry='3.6'/%3E%3Cg transform='rotate(45 20 20)'%3E%3Cellipse cx='20' cy='9' rx='3.6' ry='7'/%3E%3Cellipse cx='20' cy='31' rx='3.6' ry='7'/%3E%3Cellipse cx='9' cy='20' rx='7' ry='3.6'/%3E%3Cellipse cx='31' cy='20' rx='7' ry='3.6'/%3E%3C/g%3E%3C/g%3E%3Ccircle cx='20' cy='20' r='4.2' fill='%2317685c' stroke='%23e9cf8e' stroke-width='1'/%3E%3Ccircle cx='20' cy='20' r='1.4' fill='%23e9cf8e'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ---------- Respect reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  .lux-hero-copy .lux-script,
  .lux-hero-copy h1,
  .lux-hero-copy .lux-ornament,
  .lux-hero-copy > p,
  .lux-hero-copy .lux-hero-actions,
  .lux-hero-stats,
  .lux-hero-frame,
  .lux-scroll-cue,
  .lux-hero .hero-video,
  .lux-hero .hero-video-fallback,
  .lux-royal-badge,
  .lux-offer-chip,
  .lux-cd-chip,
  .lux-scroll-cue span {
    animation: none;
  }

  .lux-royal.reveal .lux-royal-media,
  .lux-royal.reveal .lux-royal-copy,
  .lux-visit.reveal .lux-visit-media,
  .lux-visit.reveal .lux-visit-copy,
  .lux-offer.reveal .lux-offer-copy,
  .lux-offer.reveal .lux-offer-media,
  .lux-testimonials.reveal .lux-quote,
  .section.reveal .lux-head .lux-script,
  .section.reveal .lux-head h2,
  .section.reveal .lux-head p {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .lux-marquee i,
  .product-card:hover .price,
  .header-cart:hover svg,
  .buffet-tab.is-active {
    animation: none;
  }

  .lux-head::after {
    transform: scaleX(1);
    transition: none;
  }
}

/* ————— Header fit fixes ————— */

/* Menu caret stays beside the label, never wraps below it */
.nav-link--menu {
  white-space: nowrap;
  flex-wrap: nowrap;
}

/* "Our Menu" diamond: inline, right beside the label (not under it) */
.nav-item--menu .nav-link--menu::after {
  content: "";
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  width: 6px;
  height: 6px;
  border: 0;
  background: var(--lux-gold);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex: 0 0 auto;
  margin-left: 0.1rem;
}

/* Desktop: the logo never shrinks, so the nav can't slide over it */
@media (min-width: 960px) {
  .brand {
    flex: 0 0 auto;
    min-width: max-content;
  }
}

/* Narrow desktop (960–1149px): tighten nav + logo so the full row fits */
@media (min-width: 960px) and (max-width: 1149px) {
  .main-nav {
    gap: 0.75rem;
  }

  .brand-logo {
    height: 38px;
    max-width: 166px;
  }

  .primary-nav {
    gap: 0.45rem;
  }

  .nav-link {
    font-size: 0.7rem;
    letter-spacing: 0.07em;
  }
}

.product-option-group {
  background: var(--lux-card);
  border: 1px solid var(--lux-line-light);
  border-radius: var(--radius-md);
}

.product-option-group legend {
  color: var(--lux-gold-deep);
}

.product-option em {
  color: var(--lux-gold-2);
}

.product-description {
  color: inherit;
}

.product-booking-card {
  background: var(--lux-card);
  border: 1px solid var(--lux-line-light);
  border-radius: var(--radius-md);
}
