/* Blue Sky Lounge — Premium Multi-Page Design System */
:root {
  --navy-deep: #060E1A;
  --navy: #0D1B2A;
  --navy-mid: #152536;
  --navy-soft: #1a2d42;
  --gold: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-deep: #B8962E;
  --gold-grad: linear-gradient(135deg, #B8962E 0%, #D4AF37 35%, #F3E5AB 55%, #D4AF37 75%, #B8962E 100%);
  --gold-grad-soft: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(243, 229, 171, 0.95), rgba(212, 175, 55, 0.9));
  --text: #E8E4D9;
  --text-muted: #A8A294;
  --white: #FFFFFF;
  --overlay: rgba(6, 14, 26, 0.78);
  --card: rgba(13, 27, 42, 0.88);
  --border-gold: rgba(212, 175, 55, 0.4);
  --border-gold-strong: rgba(212, 175, 55, 0.65);
  --header-h: 74px;
  --topbar-h: 44px;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Outfit", system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.22);
  --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--navy-deep);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold);
}

ul {
  list-style: none;
}

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

/* —— Ornamental flourishes & Mediterranean gold frames —— */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin: 1.25rem auto 0;
  color: var(--gold);
  opacity: 0.9;
}

.ornament::before,
.ornament::after {
  content: "";
  width: 56px;
  height: 1px;
  background: var(--gold-grad);
  opacity: 0.75;
}

.ornament-icon {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.35);
}

/* Double gold frame shell */
.gold-frame,
.frame-ornate {
  position: relative;
  border: 1px solid var(--border-gold-strong);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow:
    inset 0 0 0 1px rgba(243, 229, 171, 0.08),
    0 0 0 4px rgba(6, 14, 26, 0.5),
    0 0 0 5px rgba(212, 175, 55, 0.22);
}

.gold-frame::before,
.frame-ornate::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: calc(var(--radius) - 4px);
  pointer-events: none;
  z-index: 2;
}

/* Corner filigree (L-brackets + diamond) */
.frame-ornate::after,
.has-corners::after {
  content: none;
}

.has-corners {
  position: relative;
}

.has-corners > .corner {
  position: absolute;
  width: 22px;
  height: 22px;
  z-index: 3;
  pointer-events: none;
  color: var(--gold);
  opacity: 0.9;
}

.has-corners > .corner::before,
.has-corners > .corner::after {
  content: "";
  position: absolute;
  background: var(--gold-grad);
}

/* L arms */
.has-corners > .corner::before {
  width: 14px;
  height: 1.5px;
}
.has-corners > .corner::after {
  width: 1.5px;
  height: 14px;
}

.has-corners > .corner-tl { top: 8px; left: 8px; }
.has-corners > .corner-tl::before { top: 0; left: 0; }
.has-corners > .corner-tl::after { top: 0; left: 0; }

.has-corners > .corner-tr { top: 8px; right: 8px; }
.has-corners > .corner-tr::before { top: 0; right: 0; left: auto; }
.has-corners > .corner-tr::after { top: 0; right: 0; left: auto; }

.has-corners > .corner-bl { bottom: 8px; left: 8px; }
.has-corners > .corner-bl::before { bottom: 0; top: auto; left: 0; }
.has-corners > .corner-bl::after { bottom: 0; top: auto; left: 0; }

.has-corners > .corner-br { bottom: 8px; right: 8px; }
.has-corners > .corner-br::before { bottom: 0; top: auto; right: 0; left: auto; }
.has-corners > .corner-br::after { bottom: 0; top: auto; right: 0; left: auto; }

/* Center diamond on each corner */
.has-corners > .corner .diamond {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--gold-light);
  transform: rotate(45deg);
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.55);
}
.has-corners > .corner-tl .diamond { top: 3px; left: 3px; }
.has-corners > .corner-tr .diamond { top: 3px; right: 3px; }
.has-corners > .corner-bl .diamond { bottom: 3px; left: 3px; }
.has-corners > .corner-br .diamond { bottom: 3px; right: 3px; }

/* Title divider: line — ◆ — line */
.title-flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.15rem auto 0;
  max-width: 280px;
}
.title-flourish .tf-line {
  flex: 1;
  height: 1px;
  background: var(--gold-grad);
  opacity: 0.75;
  position: relative;
}
.title-flourish .tf-line::before,
.title-flourish .tf-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
}
.title-flourish .tf-line:first-child::after { right: -2px; }
.title-flourish .tf-line:last-child::before { left: -2px; }
.title-flourish .tf-diamond {
  color: var(--gold);
  font-size: 0.65rem;
  line-height: 1;
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

/* Subtle Mediterranean geometric pattern */
.med-pattern {
  background-image:
    linear-gradient(45deg, rgba(212, 175, 55, 0.035) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(212, 175, 55, 0.035) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(212, 175, 55, 0.035) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(212, 175, 55, 0.035) 75%);
  background-size: 18px 18px;
  background-position: 0 0, 0 9px, 9px -9px, -9px 0;
}

/* —— Top bar —— */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 1001;
  background: linear-gradient(180deg, #040a12 0%, var(--navy-deep) 100%);
  border-bottom: 1px solid var(--border-gold);
  min-height: var(--topbar-h);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  box-shadow: 0 1px 0 rgba(243, 229, 171, 0.06);
  padding: 0.35rem 0;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.top-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold-light);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.top-link:hover {
  color: var(--gold);
}

.top-sep {
  color: rgba(212, 175, 55, 0.4);
}

.top-social {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.08);
  transition: color var(--transition), transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.social-link svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  fill: currentColor;
}

.social-link:hover {
  color: var(--navy-deep);
  background: var(--gold-grad);
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
}

.social-link > span {
  line-height: 1;
}

/* —— Header / Nav —— */
.site-header {
  position: sticky;
  top: var(--topbar-h);
  z-index: 1000;
  background: rgba(6, 14, 26, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.45);
  background: rgba(6, 14, 26, 0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
  position: relative;
}

.logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition), filter var(--transition);
}

.logo-link:hover .logo-img {
  transform: scale(1.03);
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.25));
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav-link {
  display: block;
  padding: 0.55rem 0.95rem;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 6px;
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.2rem;
  height: 1.5px;
  background: var(--gold-grad);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0.95;
}

.nav-link:hover {
  color: var(--gold-light);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--gold-light);
}

.nav-link.active::after {
  transform: scaleX(1);
  height: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* —— Page hero (inner pages) —— */
.page-hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.1) 0%, transparent 55%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.28);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(212, 175, 55, 0.03) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(212, 175, 55, 0.03) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(212, 175, 55, 0.03) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(212, 175, 55, 0.03) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0;
  pointer-events: none;
  opacity: 0.9;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 4px;
  pointer-events: none;
  box-shadow: inset 0 0 0 4px rgba(6, 14, 26, 0.15);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .hero-corners {
  position: absolute;
  inset: 18px;
  pointer-events: none;
  z-index: 2;
}

.page-hero .hero-corners .corner {
  position: absolute;
  width: 28px;
  height: 28px;
}
.page-hero .hero-corners .corner::before,
.page-hero .hero-corners .corner::after {
  content: "";
  position: absolute;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.page-hero .hero-corners .corner::before { width: 18px; height: 1.5px; }
.page-hero .hero-corners .corner::after { width: 1.5px; height: 18px; }
.page-hero .hero-corners .corner-tl { top: 0; left: 0; }
.page-hero .hero-corners .corner-tl::before,
.page-hero .hero-corners .corner-tl::after { top: 0; left: 0; }
.page-hero .hero-corners .corner-tr { top: 0; right: 0; }
.page-hero .hero-corners .corner-tr::before { top: 0; right: 0; left: auto; }
.page-hero .hero-corners .corner-tr::after { top: 0; right: 0; left: auto; }
.page-hero .hero-corners .corner-bl { bottom: 0; left: 0; }
.page-hero .hero-corners .corner-bl::before { bottom: 0; top: auto; left: 0; }
.page-hero .hero-corners .corner-bl::after { bottom: 0; top: auto; left: 0; }
.page-hero .hero-corners .corner-br { bottom: 0; right: 0; }
.page-hero .hero-corners .corner-br::before { bottom: 0; top: auto; right: 0; left: auto; }
.page-hero .hero-corners .corner-br::after { bottom: 0; top: auto; right: 0; left: auto; }

.page-hero .eyebrow {
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.page-hero .section-sub {
  margin-top: 1rem;
  max-width: 36em;
  margin-inline: auto;
}

/* —— Home Hero —— */
.hero {
  position: relative;
  min-height: calc(100vh - var(--topbar-h) - var(--header-h));
  min-height: calc(100dvh - var(--topbar-h) - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transform: scale(1.08);
  animation: kenBurns 28s ease-in-out infinite alternate;
  will-change: transform;
  pointer-events: none;
}

@keyframes kenBurns {
  from { transform: scale(1.08) translate(0, 0); }
  to { transform: scale(1.18) translate(-1.2%, -0.8%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 14, 26, 0.28) 0%, rgba(6, 14, 26, 0.38) 40%, rgba(6, 14, 26, 0.65) 100%),
    radial-gradient(ellipse at 50% 35%, transparent 0%, rgba(6, 14, 26, 0.2) 100%);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 100px 30px rgba(6, 14, 26, 0.4);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 3.5rem 0 5rem;
  animation: fadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-plate {
  position: relative;
  display: inline-block;
  max-width: min(560px, 94vw);
  padding: 2rem 2.25rem 2.15rem;
  margin-inline: auto;
  background: rgba(6, 14, 26, 0.28);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 14px;
  box-shadow:
    0 0 0 5px rgba(6, 14, 26, 0.25),
    0 0 0 6px rgba(212, 175, 55, 0.18),
    0 20px 50px rgba(0, 0, 0, 0.35),
    inset 0 0 40px rgba(212, 175, 55, 0.04);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.hero-plate::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(243, 229, 171, 0.22);
  border-radius: 10px;
  pointer-events: none;
}

.hero-plate .corner {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 2;
  pointer-events: none;
}
.hero-plate .corner::before,
.hero-plate .corner::after {
  content: "";
  position: absolute;
  background: var(--gold-grad);
}
.hero-plate .corner::before { width: 12px; height: 1.5px; }
.hero-plate .corner::after { width: 1.5px; height: 12px; }
.hero-plate .corner-tl { top: 10px; left: 10px; }
.hero-plate .corner-tl::before, .hero-plate .corner-tl::after { top: 0; left: 0; }
.hero-plate .corner-tr { top: 10px; right: 10px; }
.hero-plate .corner-tr::before { top: 0; right: 0; left: auto; }
.hero-plate .corner-tr::after { top: 0; right: 0; left: auto; }
.hero-plate .corner-bl { bottom: 10px; left: 10px; }
.hero-plate .corner-bl::before { bottom: 0; top: auto; left: 0; }
.hero-plate .corner-bl::after { bottom: 0; top: auto; left: 0; }
.hero-plate .corner-br { bottom: 10px; right: 10px; }
.hero-plate .corner-br::before { bottom: 0; top: auto; right: 0; left: auto; }
.hero-plate .corner-br::after { bottom: 0; top: auto; right: 0; left: auto; }

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

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

.hero-logo {
  width: min(320px, 72vw);
  height: auto;
  margin: 0 auto 1.75rem;
  filter: drop-shadow(0 10px 32px rgba(0, 0, 0, 0.55));
  animation: fadeUp 1.1s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  color: var(--gold);
  opacity: 0.8;
  animation: fadeUp 1.1s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-flourish span {
  width: 40px;
  height: 1px;
  background: var(--gold-grad);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.65rem);
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  margin-bottom: 2.25rem;
  max-width: 38em;
  margin-inline: auto;
  line-height: 1.55;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
  animation: fadeUp 1.1s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  animation: fadeUp 1.1s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 7px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-gold {
  background: var(--gold-grad);
  background-size: 200% 200%;
  color: var(--navy-deep);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  border-color: rgba(243, 229, 171, 0.35);
}

.btn-gold:hover {
  color: var(--navy-deep);
  box-shadow: 0 10px 36px rgba(212, 175, 55, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background-position: 100% 50%;
}

.btn-outline {
  background: rgba(6, 14, 26, 0.35);
  color: var(--gold-light);
  border-color: var(--gold);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.14);
  color: var(--gold-light);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15);
}

.scroll-hint {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(212, 175, 55, 0.55);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-hint span {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 1.6s ease infinite;
}

@keyframes scrollBounce {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.35; transform: translateY(10px); }
}

/* —— Sections —— */
.section {
  padding: 5.5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  max-width: 18em;
  margin-inline: auto;
}

.gold-line {
  width: 80px;
  height: 2px;
  background: var(--gold-grad);
  margin: 1.2rem auto 0;
  border-radius: 1px;
  position: relative;
}

.gold-line::before,
.gold-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  transform: translateY(-50%) rotate(45deg);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.55);
  border-radius: 1px;
}

.gold-line::before { left: -14px; }
.gold-line::after { right: -14px; }

/* Center diamond on gold-line */
.gold-line-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.15rem;
}
.gold-line-wrap .gold-line {
  margin: 0;
  width: 48px;
}
.gold-line-wrap .center-diamond {
  color: var(--gold);
  font-size: 0.7rem;
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.45));
}

.section-sub {
  margin-top: 1.1rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Reveal on scroll / load */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* —— Home teasers —— */
.teasers {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-deep) 100%);
  position: relative;
}

.teasers::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(480px, 60%);
  height: 1px;
  background: var(--gold-grad);
  opacity: 0.45;
}

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.teaser-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.15rem 1.75rem 1.95rem;
  background: var(--card);
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: var(--radius);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(243, 229, 171, 0.06),
    0 0 0 4px rgba(6, 14, 26, 0.4),
    0 0 0 5px rgba(212, 175, 55, 0.18);
}

.teaser-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.08) 0%, transparent 45%);
  pointer-events: none;
}

.teaser-card::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: calc(var(--radius) - 5px);
  pointer-events: none;
  z-index: 1;
}

.teaser-card:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 0 0 1px rgba(243, 229, 171, 0.1),
    0 0 0 4px rgba(6, 14, 26, 0.35),
    0 0 0 5px rgba(212, 175, 55, 0.4),
    var(--shadow),
    0 12px 36px rgba(212, 175, 55, 0.18);
  border-color: var(--gold);
}

.teaser-card .teaser-icon {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  margin: 0 auto 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08);
}

.teaser-card h3,
.teaser-card p,
.teaser-card .btn {
  position: relative;
  z-index: 2;
}

.teaser-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--white);
  margin-bottom: 0.65rem;
  font-weight: 600;
}

.teaser-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  flex: 1;
  margin-bottom: 1.35rem;
}

.teaser-card .btn {
  align-self: center;
  padding: 0.7rem 1.35rem;
  font-size: 0.8rem;
}

.home-invite {
  text-align: center;
  margin-top: 3.5rem;
  padding: 2.6rem 2.15rem;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.12) 0%, transparent 60%),
    var(--card);
  position: relative;
  box-shadow:
    0 0 0 4px rgba(6, 14, 26, 0.4),
    0 0 0 5px rgba(212, 175, 55, 0.2);
}

.home-invite::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: calc(var(--radius) - 5px);
  pointer-events: none;
}

.home-invite p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-style: italic;
  color: var(--gold-light);
  max-width: 28em;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
  position: relative;
}

.home-invite .btn {
  position: relative;
}

/* —— About page —— */
.about-page {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 35%, var(--navy-deep) 100%);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 3rem;
  align-items: start;
}

.about-body {
  font-size: 1.06rem;
  position: relative;
  padding: 2rem 1.85rem;
  background: var(--card);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: var(--radius);
  box-shadow:
    inset 0 0 0 1px rgba(243, 229, 171, 0.06),
    0 0 0 4px rgba(6, 14, 26, 0.4),
    0 0 0 5px rgba(212, 175, 55, 0.18);
}

.about-body::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: calc(var(--radius) - 5px);
  pointer-events: none;
  z-index: 0;
}

.about-body > * {
  position: relative;
  z-index: 1;
}

.about-body p {
  margin-bottom: 1.2rem;
  color: var(--text);
}

.about-body h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--gold-light);
  margin: 2.4rem 0 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.about-list {
  margin: 1.35rem 0 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.about-list li {
  padding: 1.25rem 1.35rem;
  background: var(--card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition), border-color var(--transition);
}

.about-list li:hover {
  transform: translateX(4px);
  border-color: var(--border-gold-strong);
}

.about-list strong {
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.about-invite {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gold-light);
  text-align: center;
  margin-top: 2.25rem !important;
  line-height: 1.55;
  padding: 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.about-feature {
  position: sticky;
  top: calc(var(--topbar-h) + var(--header-h) + 1.5rem);
}

.about-feature-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 7px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.15), transparent 50%);
  box-shadow:
    var(--shadow),
    0 0 0 4px rgba(6, 14, 26, 0.45),
    0 0 0 5px rgba(212, 175, 55, 0.25);
}

.about-feature-frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(243, 229, 171, 0.35);
  border-radius: calc(var(--radius) - 8px);
  pointer-events: none;
  z-index: 2;
}

.about-feature-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: calc(var(--radius) - 8px);
  transition: transform 0.6s ease;
  display: block;
}

.about-feature-frame:hover img {
  transform: scale(1.04);
}

.about-feature-caption {
  margin-top: 1rem;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* —— Gallery —— */
.gallery-page {
  background: var(--navy-deep);
}

.gallery-grid {
  columns: 3;
  column-gap: 1.25rem;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 6px;
  margin: 0 0 1.25rem;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background:
    linear-gradient(160deg, rgba(212, 175, 55, 0.12) 0%, transparent 40%),
    var(--navy);
  break-inside: avoid;
  box-shadow:
    0 0 0 3px rgba(6, 14, 26, 0.55),
    0 0 0 4px rgba(212, 175, 55, 0.2),
    0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(243, 229, 171, 0.28);
  border-radius: calc(var(--radius) - 6px);
  pointer-events: none;
  z-index: 2;
  opacity: 0.85;
  transition: opacity var(--transition), border-color var(--transition);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius) - 6px);
  transition: transform 0.5s ease;
}

.gallery-item:nth-child(3n + 1) img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; height: auto; min-height: 280px; }
.gallery-item:nth-child(3n + 2) img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; height: auto; min-height: 220px; }
.gallery-item:nth-child(3n) img { aspect-ratio: 3 / 4; object-fit: cover; width: 100%; height: auto; min-height: 260px; }

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow:
    0 0 0 3px rgba(6, 14, 26, 0.45),
    0 0 0 4px rgba(212, 175, 55, 0.5),
    0 0 28px rgba(212, 175, 55, 0.28),
    var(--shadow);
  border-color: var(--gold-light);
}

.gallery-item:hover::after {
  opacity: 1;
  border-color: rgba(243, 229, 171, 0.5);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 14, 26, 0.5);
  color: var(--gold-light);
  font-size: 2.25rem;
  font-weight: 300;
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 3;
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
}

/* —— Menu book —— */
.menu-page-section {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 40%, var(--navy) 100%);
}

.menu-book {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 920px;
  margin-inline: auto;
}

@media (min-width: 1100px) {
  .menu-book {
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    gap: 2rem;
  }
}

.menu-page {
  display: block;
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: var(--radius);
  cursor: zoom-in;
  background:
    linear-gradient(160deg, rgba(212, 175, 55, 0.12) 0%, transparent 40%),
    #0a1520;
  box-shadow:
    0 0 0 3px rgba(6, 14, 26, 0.5),
    0 0 0 4px rgba(212, 175, 55, 0.22),
    0 10px 32px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}

.menu-page::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(243, 229, 171, 0.28);
  border-radius: calc(var(--radius) - 5px);
  pointer-events: none;
  z-index: 1;
}

.menu-page img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  position: relative;
  object-fit: contain;
  image-rendering: auto;
}

.menu-page-label {
  display: block;
  text-align: center;
  margin-top: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  opacity: 0.85;
}

.menu-page:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: var(--gold-light);
  box-shadow:
    0 0 0 3px rgba(6, 14, 26, 0.4),
    0 0 0 4px rgba(212, 175, 55, 0.55),
    0 0 32px rgba(212, 175, 55, 0.3),
    0 18px 44px rgba(0, 0, 0, 0.55);
}

/* —— Hours —— */
.hours-page {
  background: var(--navy-deep);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 1.75rem;
  align-items: stretch;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.contact-card {
  padding: 1.6rem 1.7rem;
  background: var(--card);
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: var(--radius);
  position: relative;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  box-shadow:
    0 0 0 3px rgba(6, 14, 26, 0.4),
    0 0 0 4px rgba(212, 175, 55, 0.16);
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: calc(var(--radius) - 4px);
  pointer-events: none;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow:
    0 0 0 3px rgba(6, 14, 26, 0.35),
    0 0 0 4px rgba(212, 175, 55, 0.4),
    0 10px 28px rgba(212, 175, 55, 0.15);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  margin: 0 0 0.55rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-card h3 svg {
  flex-shrink: 0;
  opacity: 0.9;
}

.address a,
.phone-link {
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.65;
}

.address a:hover,
.phone-link:hover {
  color: var(--gold-light);
}

.hours-note {
  color: var(--text-muted);
  font-size: 1.02rem;
}

.hours-note a {
  color: var(--gold-light);
  font-weight: 500;
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
}

.hours-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.map-panel {
  padding: 12px;
  background:
    linear-gradient(160deg, rgba(212, 175, 55, 0.12) 0%, transparent 35%),
    var(--card);
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: var(--radius);
  box-shadow:
    var(--shadow),
    0 0 0 3px rgba(6, 14, 26, 0.45),
    0 0 0 4px rgba(212, 175, 55, 0.22);
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.map-panel::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(243, 229, 171, 0.3);
  border-radius: calc(var(--radius) - 5px);
  pointer-events: none;
  z-index: 2;
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  border-radius: 6px;
  filter: grayscale(0.12) contrast(1.06) saturate(0.92);
  position: relative;
  z-index: 1;
}

/* —— Footer —— */
.site-footer {
  background: #040a12;
  border-top: 1px solid rgba(212, 175, 55, 0.45);
  padding-top: 3.25rem;
  box-shadow: inset 0 1px 0 rgba(243, 229, 171, 0.08);
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(200px, 40%);
  height: 2px;
  background: var(--gold-grad);
  opacity: 0.7;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-logo {
  height: 58px;
  width: auto;
  margin-bottom: 0.9rem;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 28em;
  line-height: 1.55;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.25rem;
}

.footer-nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

.footer-contact p {
  margin-bottom: 0.55rem;
}

.footer-contact a {
  color: var(--text);
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.footer-social .social-link {
  font-size: 0.78rem;
  padding: 0.4rem 0.75rem;
}

.footer-social .social-link svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding: 1.2rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* —— Lightbox —— */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(4, 10, 18, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 3.5rem;
  animation: fadeIn 0.25s ease;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox-stage {
  max-width: min(96vw, 1100px);
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-stage img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.65);
  border: 1px solid var(--border-gold);
  padding: 4px;
  background: rgba(13, 27, 42, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(13, 27, 42, 0.85);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  cursor: pointer;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  z-index: 2;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: scale(1.05);
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
  font-size: 1.75rem;
}

.lightbox-prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.05);
}

.lightbox-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next:hover {
  transform: translateY(-50%) scale(1.05);
}

.lightbox-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  font-family: var(--font-display);
}

body.lightbox-open {
  overflow: hidden;
}

/* —— Responsive —— */
@media (max-width: 960px) {
  .teaser-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-feature {
    position: static;
    max-width: 420px;
    margin-inline: auto;
    order: -1;
  }

  .gallery-grid {
    columns: 2;
  }

  .hours-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    margin-inline: auto;
  }

  .footer-tagline {
    margin-inline: auto;
  }

  .footer-nav,
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(6, 14, 26, 0.98);
    border-bottom: 1px solid var(--border-gold);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .main-nav.open {
    max-height: 380px;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 0.75rem 0 1.25rem;
    gap: 0;
  }

  .nav-link {
    padding: 0.9rem 1.5rem;
    width: 100%;
    text-align: center;
  }

  .nav-link::after {
    left: 35%;
    right: 35%;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    max-width: 280px;
    margin-inline: auto;
  }

  .section {
    padding: 3.75rem 0;
  }

  .page-hero {
    padding: 3.25rem 0 2.5rem;
  }

  .menu-book {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .lightbox {
    padding: 3rem 0.75rem;
  }

  .lightbox-prev { left: 0.35rem; }
  .lightbox-next { right: 0.35rem; }
}

@media (max-width: 520px) {
  .gallery-grid {
    columns: 1;
  }

  .menu-book {
    grid-template-columns: 1fr;
  }

  .top-link {
    font-size: 0.7rem;
  }

  .top-social .social-link > span {
    display: none;
  }

  .top-social .social-link {
    padding: 0.35rem;
  }

  .footer-social .social-link > span {
    display: inline;
  }

  .logo-img {
    height: 44px;
  }

  .hero-logo {
    width: min(260px, 78vw);
  }

  .hero-plate {
    padding: 1.5rem 1.25rem 1.6rem;
  }

  .page-hero::after {
    inset: 8px;
  }

  .about-body {
    padding: 1.5rem 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .hero-bg-img {
    animation: none;
    transform: scale(1.05);
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* menu readable lightbox */
.lightbox-stage {
  max-width: min(96vw, 1100px);
  max-height: 92vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem;
}

#lightbox-img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: none;
  object-fit: contain;
  image-rendering: auto;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.45);
}

.lightbox.menu-mode .lightbox-stage {
  max-width: min(98vw, 1400px);
}

.text-gold-link { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
.text-gold-link:hover { color: var(--gold); }



/* —— Online ordering —— */
.order-strip {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.12), rgba(13, 27, 42, 0.95), rgba(212, 175, 55, 0.12));
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.65rem 0;
  position: sticky;
  top: calc(var(--topbar-h) + var(--header-h));
  z-index: 900;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.order-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  flex-wrap: wrap;
}
.order-strip-text {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold-light);
  letter-spacing: 0.03em;
}
.order-strip-btns { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}
.btn-order:hover { transform: translateY(-2px); filter: brightness(1.06); }
.btn-doordash {
  background: #ff3008;
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(255, 48, 8, 0.35);
}
.btn-ubereats {
  background: #06c167;
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(6, 193, 103, 0.35);
}
.btn-order-sm { padding: 0.4rem 0.85rem; font-size: 0.72rem; }
.footer-order { margin: 0.85rem 0 1rem; }
.footer-order-label {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-order-btns { display: flex; flex-wrap: wrap; gap: 0.45rem; }
@media (max-width: 720px) {
  .order-strip-inner { justify-content: center; text-align: center; }
  .order-strip-btns { justify-content: center; width: 100%; }
}
