/* ═══════════════════════════════════════════════════════════
   APPETIZER — Premium Cinematic Design (Apple × Linear × Stripe)
   ═══════════════════════════════════════════════════════════ */

:root {
  --premium-bg: #08090c;
  --premium-bg-2: #0f1117;
  --premium-bg-3: #161922;
  --premium-surface: rgba(255, 255, 255, 0.04);
  --premium-glass: rgba(255, 255, 255, 0.06);
  --premium-border: rgba(255, 255, 255, 0.08);
  --premium-text: #f4f4f5;
  --premium-muted: rgba(244, 244, 245, 0.55);
  --premium-orange: #FF6B35;
  --premium-orange-glow: rgba(255, 107, 53, 0.35);
  --premium-radius: 20px;
  --premium-radius-lg: 28px;
  --premium-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --premium-blur: blur(24px);
}

body.premium-theme {
  background: var(--premium-bg);
  color: var(--premium-text);
}

body.premium-theme .section--cream,
body.premium-theme .section:not(.menu-section):not(.parties):not(.community) {
  background: var(--premium-bg);
}

body.premium-theme .section-title {
  color: var(--premium-text);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  letter-spacing: -0.03em;
}

body.premium-theme .section-eyebrow {
  color: var(--premium-orange);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}

body.premium-theme .section-sub {
  color: var(--premium-muted);
}

/* ─── Glass utility ─── */
.glass {
  background: var(--premium-glass);
  backdrop-filter: var(--premium-blur);
  -webkit-backdrop-filter: var(--premium-blur);
  border: 1px solid var(--premium-border);
  border-radius: var(--premium-radius);
}

/* ─── Header glass ─── */
body.premium-theme .header {
  background: transparent;
}

body.premium-theme .header.scrolled {
  background: rgba(8, 9, 12, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--premium-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

body.premium-theme .header__nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color 0.25s;
}

body.premium-theme .header.scrolled .header__nav a,
body.premium-theme .header:hover .header__nav a {
  color: rgba(255, 255, 255, 0.85);
}

body.premium-theme .header__nav a:hover {
  color: var(--premium-orange);
}

body.premium-theme .brand__name {
  color: #fff;
}

body.premium-theme .btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--premium-border);
  color: #fff;
}

body.premium-theme .cart-toggle {
  color: #fff;
}

/* ─── Hero cinematic ─── */
.hero--cinematic {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero--cinematic .hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero--cinematic .hero__bg {
  display: none;
}

.hero--cinematic .hero__video,
.hero--cinematic .hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: hero-kenburns 20s ease-in-out infinite alternate;
}

.hero__video {
  display: block;
}

@keyframes hero-kenburns {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero--cinematic .hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 9, 12, 0.5) 0%, rgba(8, 9, 12, 0.75) 50%, rgba(8, 9, 12, 0.95) 100%),
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(255, 107, 53, 0.12) 0%, transparent 60%);
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero__particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 107, 53, 0.6);
  border-radius: 50%;
  animation: particle-float 8s ease-in-out infinite;
}

@keyframes particle-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-30px) scale(1.2); opacity: 0.8; }
}

.hero--cinematic .hero__content {
  position: relative;
  z-index: 3;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 4rem;
  max-width: 900px;
}

.hero--cinematic .hero__title {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fade-up 1s ease 0.2s forwards;
}

.hero--cinematic .hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, #fff 0%, var(--premium-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero--cinematic .hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--premium-muted);
  max-width: 560px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fade-up 1s ease 0.4s forwards;
}

.hero--cinematic .hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fade-up 1s ease 0.1s forwards;
}

.hero--cinematic .hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  animation: fade-up 1s ease 0.55s forwards;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.hero__float--premium {
  position: absolute;
  z-index: 2;
  border-radius: var(--premium-radius);
  overflow: hidden;
  box-shadow: var(--premium-shadow);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.hero__float--premium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__float--1 { width: 140px; height: 140px; top: 18%; right: 8%; }
.hero__float--2 { width: 110px; height: 110px; bottom: 22%; right: 18%; }
.hero__float--3 { width: 120px; height: 120px; top: 28%; left: 6%; }

.pill--glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pill--orange { border-color: rgba(255, 107, 53, 0.4); color: var(--premium-orange); }
.pill--live span.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

/* ─── About premium ─── */
.about--premium {
  padding: 6rem 0;
  background: var(--premium-bg-2);
}

.about--premium .about__media {
  position: relative;
  border-radius: var(--premium-radius-lg);
  overflow: hidden;
  box-shadow: var(--premium-shadow);
}

.about--premium .about__media img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.about__stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.about__stat-card {
  padding: 1.25rem;
  text-align: center;
}

.about__stat-card strong {
  display: block;
  font-size: 2rem;
  font-family: var(--font-display);
  color: var(--premium-orange);
  line-height: 1;
}

.about__stat-card span {
  font-size: 0.8rem;
  color: var(--premium-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about--premium .about__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.about--premium .about__chips span {
  padding: 0.6rem 1rem;
  border-radius: 99px;
  background: var(--premium-glass);
  border: 1px solid var(--premium-border);
  font-size: 0.85rem;
}

/* ─── Menu premium cards ─── */
body.premium-theme .menu-section {
  background: var(--premium-bg);
  padding: 6rem 0;
}

.menu-card--premium {
  background: var(--premium-glass);
  border: 1px solid var(--premium-border);
  border-radius: var(--premium-radius);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s, border-color 0.4s;
  transform-style: preserve-3d;
}

.menu-card--premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.25);
}

.menu-card--premium .menu-card__img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.menu-card--premium .menu-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.menu-card--premium:hover .menu-card__img img {
  transform: scale(1.08);
}

.menu-card--premium .menu-card__body {
  padding: 1.25rem;
}

.menu-card--premium .menu-card__body h3 {
  color: #fff;
  font-size: 1.1rem;
  margin: 0.35rem 0;
}

.menu-card--premium .menu-card__desc {
  font-size: 0.8rem;
  color: var(--premium-muted);
  line-height: 1.5;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-card--premium .menu-card__actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.menu-card--premium .menu-card__btn {
  flex: 1;
  background: var(--premium-orange);
  color: #fff;
  border: none;
  padding: 0.65rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.menu-card--premium .menu-card__btn:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px var(--premium-orange-glow);
}

.menu-card__icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--premium-border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--premium-muted);
  display: grid;
  place-items: center;
  transition: all 0.25s;
  flex-shrink: 0;
}

.menu-card__icon-btn:hover,
.menu-card__icon-btn.active {
  color: var(--premium-orange);
  border-color: rgba(255, 107, 53, 0.4);
  background: rgba(255, 107, 53, 0.1);
}

.menu-card__quick {
  font-size: 0.75rem;
  padding: 0 0.75rem;
  border-radius: 12px;
  border: 1px solid var(--premium-border);
  background: transparent;
  color: var(--premium-muted);
  transition: all 0.25s;
}

.menu-card__quick:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

body.premium-theme .cat-pill {
  background: var(--premium-glass);
  border-color: var(--premium-border);
  color: var(--premium-muted);
}

body.premium-theme .cat-pill.active {
  background: var(--premium-orange);
  border-color: var(--premium-orange);
  color: #fff;
}

body.premium-theme .filter-chip {
  background: var(--premium-glass);
  border: 1px solid var(--premium-border);
  color: var(--premium-muted);
}

body.premium-theme .filter-chip.active {
  background: rgba(255, 107, 53, 0.15);
  border-color: var(--premium-orange);
  color: var(--premium-orange);
}

body.premium-theme .menu-search {
  background: var(--premium-glass);
  border: 1px solid var(--premium-border);
}

body.premium-theme .menu-search input {
  color: #fff;
}

.btn-load-more {
  display: block;
  margin: 2.5rem auto 0;
  padding: 1rem 2.5rem;
  background: transparent;
  border: 1px solid var(--premium-border);
  color: #fff;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.btn-load-more:hover {
  background: var(--premium-orange);
  border-color: var(--premium-orange);
  box-shadow: 0 12px 32px var(--premium-orange-glow);
}

/* ─── Popular horizontal ─── */
.popular--premium {
  padding: 6rem 0;
  background: var(--premium-bg-2);
  overflow: hidden;
}

.popular-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem 0 2rem;
  scrollbar-width: none;
}

.popular-scroll::-webkit-scrollbar { display: none; }

.pop-card--premium {
  flex: 0 0 min(420px, 85vw);
  scroll-snap-align: start;
  position: relative;
  border-radius: var(--premium-radius-lg);
  overflow: hidden;
  background: transparent;
  border: 1px solid var(--premium-border);
  transition: transform 0.4s ease, box-shadow 0.4s;
  box-shadow: none;
}

.pop-card.pop-card--premium {
  background: transparent;
  min-height: 0;
  box-shadow: none;
}

.pop-card--premium .pop-card__img {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.pop-card--premium:hover {
  transform: scale(1.02);
  box-shadow: 0 0 60px var(--premium-orange-glow);
}

.pop-card--premium .pop-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pop-card--premium .pop-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(8, 9, 12, 0.95) 100%);
}

.pop-card--premium .pop-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.pop-card--premium .pop-card__body h3 {
  font-size: 1.75rem;
  color: #fff;
  font-family: var(--font-display);
}

.pop-card__ribbon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--premium-orange);
  color: #fff;
  padding: 0.35rem 0.85rem;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

/* ─── Parties premium ─── */
.party-card--premium {
  position: relative;
  border-radius: var(--premium-radius-lg);
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--premium-border);
  transition: transform 0.4s ease;
}

.party-card--premium:hover {
  transform: translateY(-8px);
}

.party-card--premium .party-card__bg {
  position: absolute;
  inset: 0;
}

.party-card--premium .party-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.party-card--premium:hover .party-card__bg img {
  transform: scale(1.06);
}

.party-card--premium .party-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,9,12,0.2) 0%, rgba(8,9,12,0.92) 100%);
}

.party-card--premium .party-card__content {
  position: relative;
  z-index: 1;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
}

.party-card--premium h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.party-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.8rem;
  color: var(--premium-muted);
  margin-bottom: 1rem;
}

.party-card__price {
  color: var(--premium-orange);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ─── Instagram ─── */
.instagram-section {
  padding: 6rem 0;
  background: var(--premium-bg);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.insta-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--premium-radius);
  overflow: hidden;
  border: 1px solid var(--premium-border);
  cursor: pointer;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insta-item:hover img {
  transform: scale(1.1);
}

.insta-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 107, 53, 0);
  backdrop-filter: blur(0);
  transition: all 0.4s;
}

.insta-item:hover::after {
  background: rgba(8, 9, 12, 0.4);
  backdrop-filter: blur(4px);
}

.insta-item__icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
  font-size: 1.5rem;
}

.insta-item:hover .insta-item__icon {
  opacity: 1;
}

/* ─── Gallery lightbox ready ─── */
body.premium-theme #gallery {
  background: var(--premium-bg-2);
  padding: 6rem 0;
}

body.premium-theme .masonry img {
  cursor: pointer;
  border: 1px solid var(--premium-border);
  transition: transform 0.4s, box-shadow 0.4s;
}

body.premium-theme .masonry img:hover {
  transform: scale(1.03);
  box-shadow: var(--premium-shadow);
}

/* ─── Contact premium ─── */
.contact--premium {
  padding: 6rem 0;
  background: var(--premium-bg);
}

.contact--premium .location__grid {
  grid-template-columns: 1fr 1.4fr;
}

.contact--premium .contact-card {
  background: var(--premium-glass);
  border: 1px solid var(--premium-border);
  color: var(--premium-text);
}

.contact--premium .contact-list strong {
  color: var(--premium-orange);
}

.contact--premium .contact-list p {
  color: var(--premium-muted);
}

.contact--premium .map-card {
  min-height: 520px;
  border: 1px solid var(--premium-border);
}

.contact__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* ─── Community accent override ─── */
body.premium-theme .community {
  --rc-accent: #FF6B35;
  --rc-accent-dim: rgba(255, 107, 53, 0.15);
}

body.premium-theme .testimonial-marquee {
  background: var(--premium-bg-2);
  border-color: var(--premium-border);
}

body.premium-theme .testimonial-marquee .section-eyebrow {
  color: var(--premium-orange);
}

/* ─── Featured slider dark ─── */
body.premium-theme #featured {
  background: var(--premium-bg-2);
  padding: 6rem 0;
}

body.premium-theme .feat-card {
  background: var(--premium-glass);
  border: 1px solid var(--premium-border);
}

/* ─── Floating actions ─── */
.floating-actions {
  position: fixed;
  bottom: 5.5rem;
  right: 1.25rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fab:hover {
  transform: scale(1.1);
}

.fab--whatsapp { background: #25D366; color: #fff; }
.fab--call { background: var(--premium-glass); backdrop-filter: blur(12px); color: #fff; }
.fab--order { background: var(--premium-orange); color: #fff; box-shadow: 0 8px 32px var(--premium-orange-glow); }

/* ─── Mobile bottom nav ─── */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: rgba(8, 9, 12, 0.9);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--premium-border);
  padding: 0.5rem 0 calc(0.5rem + env(safe-area-inset-bottom));
}

.mobile-bottom-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.5rem;
  font-size: 0.65rem;
  color: var(--premium-muted);
  transition: color 0.25s;
}

.mobile-bottom-nav a.active,
.mobile-bottom-nav a:hover {
  color: var(--premium-orange);
}

.mobile-bottom-nav svg {
  width: 22px;
  height: 22px;
}

/* ─── Lightbox ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img,
.lightbox video {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--premium-radius);
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.25rem;
  border: 1px solid var(--premium-border);
}

/* ─── Quick view modal ─── */
.quick-view {
  position: fixed;
  inset: 0;
  z-index: 4000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s;
}

.quick-view.open {
  opacity: 1;
  visibility: visible;
}

.quick-view__box {
  background: var(--premium-bg-3);
  border: 1px solid var(--premium-border);
  border-radius: var(--premium-radius-lg);
  max-width: 480px;
  width: 100%;
  overflow: hidden;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.35s;
}

.quick-view.open .quick-view__box {
  transform: translateY(0) scale(1);
}

.quick-view__img {
  height: 220px;
  overflow: hidden;
}

.quick-view__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-view__body {
  padding: 1.5rem;
}

.quick-view__body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

/* ─── Reveal animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(6px);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}

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

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: none; }

/* Party booking form */
.portion-modal__box--wide { max-width: 420px; }
.party-form { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.party-form__field { display: flex; flex-direction: column; gap: 4px; text-align: left; }
.party-form__field span { font-size: 12px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.party-form__field input {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 15px;
}
.party-form__field input:focus { outline: 2px solid var(--accent); border-color: transparent; }
button.party-card__link { border: none; cursor: pointer; width: 100%; text-align: center; text-decoration: none; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero__float--premium { display: none; }
  .contact--premium .location__grid { grid-template-columns: 1fr; }
  .floating-actions { bottom: 5rem; right: 1rem; }
  .fab { width: 48px; height: 48px; }
}

@media (max-width: 768px) {
  .mobile-bottom-nav { display: flex; }
  body.premium-theme { padding-bottom: 4.5rem; }
  .floating-actions .fab--order { display: none; }
}
