/* Base */
:root {
  --bg: #0f0f10;
  --bg-alt: #16171a;
  --card: #1e1f24;
  --text: #e8e8ea;
  --muted: #a9abb3;
  --primary: #d1a55b;
  --primary-600: #ba914d;
  --accent: #7f5539;
  --shadow: 0 10px 30px rgba(0,0,0,.25);
  --gold-grad: linear-gradient(135deg, #e6c889 0%, #d1a55b 40%, #b6853e 70%, #f3d9a4 100%);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: auto;
}
h1, h2, h3, p, a, button { will-change: transform, opacity; }
/* Cursor glow */
.cursor-glow { position: fixed; width: 180px; height: 180px; border-radius: 50%; pointer-events: none; left: 0; top: 0; transform: translate(-50%, -50%); z-index: 5; background: radial-gradient(closest-side, rgba(209,165,91,.22), rgba(209,165,91,.0)); mix-blend-mode: screen; opacity: .4; }
h1, h2, h3 { font-family: "Noto Serif Georgian", serif; }

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

h1, h2, h3 { line-height: 1.2; margin: 0 0 .6rem; }
h1 { font-size: clamp(2rem, 1.4rem + 2vw, 3rem); }
h2 { font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 0.9rem + 1vw, 1.4rem); }
p { margin: 0 0 1rem; color: var(--text); opacity: .95; }
.note { color: var(--muted); font-size: .95rem; }
.hint { color: var(--muted); font-size: .9rem; margin-top: .6rem; }
.link { color: var(--primary); text-decoration: none; }
.link:hover { text-decoration: underline; }

/* Header styles are now in navbar.css component */

/* Hero */
.hero {
  position: relative;
  background: radial-gradient(800px 300px at 80% -10%, rgba(209,165,91,.18), transparent),
              linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.78));
  padding: clamp(4rem, 6vw, 7rem) 0 clamp(2.5rem, 4vw, 5rem);
  overflow: hidden;
  min-height: clamp(60vh, 100vh - 80px, 100vh - 80px);
  display: flex;
  align-items: center;
  margin-top: 70px; /* Account for fixed navbar */
}
.hero::after { 
  content: ""; 
  position: absolute; 
  inset: 0; 
  pointer-events: none; 
  background: 
    radial-gradient(ellipse at center top, rgba(209,165,91,.1) 0%, transparent 50%),
    linear-gradient(180deg, rgba(0,0,0,.3) 0%, rgba(0,0,0,.7) 100%);
  box-shadow: 
    inset 0 -120px 240px rgba(0,0,0,.4), 
    inset 0 120px 240px rgba(0,0,0,.2);
}

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

.hero-slider { 
  height: 100%; 
  width: 100%; 
  position: relative; 
}

.hero-slider .slide { 
  position: absolute; 
  inset: 0; 
  opacity: 0; 
  transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1); 
}

.hero-slider .slide.is-active { 
  opacity: 1; 
}

.hero-slider img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  filter: brightness(.65) saturate(1.1) contrast(1.05); 
  transform: scale(1.08); 
  animation: kenburns 16s ease-in-out infinite; 
}
@keyframes kenburns {
  0% { transform: scale(1.06) translateY(0); }
  50% { transform: scale(1.12) translateY(-1.5%); }
  100% { transform: scale(1.06) translateY(0); }
}
.hero-inner { 
  text-align: center; 
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero .display { 
  font-size: clamp(2.2rem, 1.8rem + 2.5vw, 4.2rem); 
  letter-spacing: .3px; 
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,.9) 50%, rgba(209,165,91,.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(0,0,0,.3);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.15;
}

.hero p.lead { 
  color: rgba(255,255,255,.85); 
  font-size: clamp(1rem, 0.9rem + .4vw, 1.4rem); 
  line-height: 1.5;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  text-shadow: 0 2px 4px rgba(0,0,0,.5);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions { 
  margin-top: clamp(1.5rem, 3vw, 2rem); 
  display: flex; 
  gap: clamp(.8rem, 2vw, 1rem); 
  justify-content: center; 
  flex-wrap: wrap; 
}

/* Hero Mobile Optimizations */
@media (max-width: 768px) {
  .hero {
    min-height: 55vh;
    padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(1rem, 3vw, 2rem);
  }
  
  .hero-inner {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .hero .display {
    font-size: clamp(1.4rem, 4vw, 2rem);
    margin-bottom: .5rem;
    line-height: 1.15;
  }
  
  .hero p.lead {
    font-size: clamp(.8rem, 2.5vw, .95rem);
    margin-bottom: .8rem;
    line-height: 1.35;
  }
  
  .hero-actions {
    margin-top: .8rem;
    gap: .4rem;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-actions .btn {
    min-width: 180px;
    padding: .7rem 1.2rem;
    font-size: .9rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 50vh;
    padding: 1.5rem 0 1rem;
    margin-top: 60px; /* Account for smaller fixed navbar */
  }
  
  .hero .display {
    font-size: clamp(1.2rem, 4.5vw, 1.6rem);
    margin-bottom: .3rem;
    line-height: 1.1;
  }
  
  .hero p.lead {
    font-size: .75rem;
    margin-bottom: .6rem;
    line-height: 1.3;
  }
  
  .hero-actions {
    margin-top: .6rem;
  }
  
  .hero-actions .btn {
    min-width: 140px;
    padding: .5rem .8rem;
    font-size: .8rem;
  }
}

/* Anchor offset for fixed header */
section[id] { scroll-margin-top: 100px; }

/* Sections */
.section { 
  position: relative; 
  padding: clamp(3rem, 5vw, 5rem) 0; 
  overflow: hidden;
}

.section.alt { 
  background: var(--bg-alt); 
  border-block: 1px solid rgba(255,255,255,.08);
  position: relative;
}

.section.alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(1000px 400px at 30% 20%, rgba(209,165,91,.03), transparent 70%),
    radial-gradient(800px 300px at 70% 80%, rgba(127,85,57,.02), transparent 70%);
  pointer-events: none;
}

/* Decorative section titles */
section h2 { position: relative; padding-bottom: .5rem; }
section h2::after {
  content: "";
  position: absolute; left: 0; bottom: 0; height: 2px; width: 88px;
  background: var(--gold-grad);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(209,165,91,.35);
}

/* Luxe section backgrounds */
.section.luxe { position: relative; overflow: hidden; }
.section.luxe::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(600px 200px at 15% 10%, rgba(209,165,91,.08), transparent 60%),
  radial-gradient(500px 160px at 85% 90%, rgba(127,85,57,.08), transparent 60%);
  pointer-events: none; }

/* Eyebrow label */
.eyebrow { color: var(--primary); letter-spacing: .2em; text-transform: uppercase; font-size: .8rem; margin: 0 0 .2rem; opacity: .9; }

/* Curved separators (subtle, non-blocking) */
.curve-top, .curve-bottom { -webkit-mask: none; mask: none; }
.curve-top::before { content: ""; position: absolute; left: 0; right: 0; top: -1px; height: 48px; pointer-events: none;
  background: radial-gradient(120% 40px at 50% 0, rgba(209,165,91,.08), transparent 70%);
}
.curve-bottom::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 48px; pointer-events: none;
  background: radial-gradient(120% 40px at 50% 100%, rgba(209,165,91,.08), transparent 70%);
}

.grid { display: grid; gap: 2rem; }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.two { grid-template-columns: 1.2fr 1fr; }
.grid.four { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 700px)  { .grid.two { grid-template-columns: 1fr; } }
@media (max-width: 1200px) { .grid.four { grid-template-columns: repeat(2, 1fr); } }

/* Mobile Venues Carousel - Enhanced Version */
@media (max-width: 768px) { 
  .hero {
    margin-top: 70px; /* Account for fixed navbar */
    min-height: 55vh; /* Reduced from default */
  }
  
  /* Enhanced venues section styling */
  .section#venues {
    padding: 2.5rem 0;
    background: var(--bg); /* Override alt background for mobile */
  }
  
  .section#venues::before {
    display: none; /* Remove alt background effects */
  }
  
  .section#venues h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .section#venues .eyebrow {
    text-align: center;
    margin-bottom: 0.5rem;
  }
  
  .grid.four.venues { 
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding: 0 1rem 1.5rem 1rem;
    margin: 0 -1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    position: relative;
    /* Add subtle gradient indicators for scroll */
    background: 
      linear-gradient(90deg, rgba(15,15,16,0.8) 0%, transparent 10%),
      linear-gradient(90deg, transparent 90%, rgba(15,15,16,0.8) 100%);
    background-size: 50px 100%, 50px 100%;
    background-repeat: no-repeat;
    background-position: left center, right center;
  }
  
  .grid.four.venues::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }
  
  .grid.four.venues .venue {
    flex: 0 0 300px;
    scroll-snap-align: center;
    min-height: auto;
    transform: scale(0.98);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 20px;
    position: relative;
  }
  
  .grid.four.venues .venue:hover,
  .grid.four.venues .venue:focus {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,.25), 0 0 0 2px rgba(209,165,91,.2);
  }
  
  /* Add margin to first and last items for better spacing */
  .grid.four.venues .venue:first-child {
    margin-left: 0.5rem;
  }
  
  .grid.four.venues .venue:last-child {
    margin-right: 0.5rem;
  }
  
  .grid.four:not(.venues) { 
    grid-template-columns: 1fr; 
    gap: 1rem;
  } 
}
@media (max-width: 920px)  { .grid.three { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .grid.three { grid-template-columns: 1fr; } }

/* Enhanced mobile video gallery for smaller screens */
@media (max-width: 480px) {
  .video-gallery {
    gap: 1.2rem;
  }
  
  .video-cards-small {
    gap: 0.8rem;
    margin-top: 0.8rem;
  }
  
  .video-thumbnail.large {
    aspect-ratio: 16/9;
  }
  
  .video-thumbnail.small,
  .photo-card.small {
    aspect-ratio: 1;
  }
  
  .play-button.small svg {
    width: 30px;
    height: 30px;
  }
  
  .play-button {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
  }
  
  .video-thumbnail,
  .photo-card {
    border-radius: 18px;
  }
}

/* Enhanced mobile venues for smaller screens */
@media (max-width: 480px) {
  .section#venues {
    padding: 2rem 0;
    background: var(--bg); /* Override alt background for mobile */
  }
  
  .section#venues::before {
    display: none; /* Remove alt background effects */
  }
  
  .section#venues h2 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }
  
  .grid.four.venues {
    gap: 1.2rem;
    padding: 0 0.8rem 1.2rem 0.8rem;
    /* Simplified gradient indicators for smaller screens */
    background: 
      linear-gradient(90deg, rgba(15,15,16,0.6) 0%, transparent 15%),
      linear-gradient(90deg, transparent 85%, rgba(15,15,16,0.6) 100%);
    background-size: 30px 100%, 30px 100%;
    background-repeat: no-repeat;
    background-position: left center, right center;
  }
  
  .grid.four.venues .venue {
    flex: 0 0 280px;
    border-radius: 18px;
  }
  
  .grid.four.venues .venue:hover,
  .grid.four.venues .venue:focus {
    transform: scale(1.01) translateY(-6px);
  }
  
  .venue-image {
    height: 180px;
    border-radius: 18px 18px 0 0;
  }
  
  .venue-content {
    padding: 1.2rem;
  }
  
  .venue-content h3 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }
  
  .venue-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
  
  .venue-meta span {
    font-size: 0.65rem;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
  }
}

/* Cards */
.cards .card { background: color-mix(in srgb, var(--card) 92%, #000 8%); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 1rem; box-shadow: var(--shadow); }
.cards .card { position: relative; overflow: hidden; }
.cards .card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: var(--gold-grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask-composite: exclude; }
.cards .card::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(600px 120px at var(--mx,50%) -10%, rgba(209,165,91,.18), transparent 60%); transition: opacity .3s ease; opacity: .25; }
.cards .card:hover::after { opacity: .9; }
.cards .card h3 { margin-bottom: .4rem; }
.cards .card .icon { display: inline-flex; width: 34px; height: 34px; border-radius: 10px; align-items: center; justify-content: center; background: rgba(209,165,91,.12); color: var(--primary); margin-bottom: .5rem; }
.cards .card .icon svg { width: 18px; height: 18px; fill: currentColor; }
.cards .card { transform-style: preserve-3d; transition: transform .2s ease; }
.cards .card.tilt { transform: rotateX(var(--rx,0deg)) rotateY(var(--ry,0deg)); }

/* Venues */
.venue {
  background: rgba(30,31,36,.95);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  animation: venueFadeIn 0.6s ease-out;
}

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

/* Staggered animation for venues */
.venue:nth-child(1) { animation-delay: 0.1s; }
.venue:nth-child(2) { animation-delay: 0.2s; }
.venue:nth-child(3) { animation-delay: 0.3s; }
.venue:nth-child(4) { animation-delay: 0.4s; }

.venue::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(209,165,91,0.3), rgba(209,165,91,0.1));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.venue:hover::before {
  opacity: 1;
}

@media (max-width: 768px) {
  .venue {
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Better touch feedback */
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
  }
  
  .venue:hover,
  .venue:active {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,.25);
  }
  
  .venue:active {
    transform: translateY(-4px) scale(0.98);
    transition: transform 0.1s ease;
  }
  
  .venue-image {
    height: 200px;
    border-radius: 20px 20px 0 0;
  }
  
  .venue-content {
    padding: 1.5rem;
  }
  
  .venue-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
  
  .venue-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
  }
  
  .venue-meta {
    gap: 0.5rem;
  }
  
  .venue-meta span {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
  }
}

.venue-image {
  height: 180px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.venue-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.venue:hover .venue-image::after {
  opacity: 0.4;
}

/* Loading skeleton for venue images */
.venue-image.loading {
  background: linear-gradient(90deg, 
    rgba(255,255,255,0.1) 25%, 
    rgba(255,255,255,0.2) 50%, 
    rgba(255,255,255,0.1) 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.venue-content {
  padding: 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.venue-content h3 {
  margin: 0 0 .6rem;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
}

.venue-content p {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: .85rem;
  line-height: 1.5;
  opacity: .9;
  flex: 1;
}

.venue-meta {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}

.venue-meta span {
  background: rgba(209,165,91,.1);
  border: 1px solid rgba(209,165,91,.2);
  color: var(--primary);
  font-size: .75rem;
  padding: .3rem .6rem;
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.venue-meta span:hover {
  background: rgba(209,165,91,.2);
  border-color: rgba(209,165,91,.4);
  transform: translateY(-1px);
}

/* Services Toggle */
.more-services-toggle {
  margin: 1rem 0;
  text-align: center;
}

.more-services-toggle button {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.5rem;
  font-size: .9rem;
  transition: all .3s ease;
}

.more-services-toggle .toggle-icon {
  transition: transform .3s ease;
  font-size: .8rem;
}

.more-services-toggle button[aria-expanded="true"] .toggle-icon {
  transform: rotate(180deg);
}

.more-services-toggle button[aria-expanded="true"] .toggle-text::after {
  content: " (დამალვა)";
}

.more-services {
  animation: slideDown .3s ease;
}

.more-services[style*="display: none"] {
  animation: slideUp .3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

/* Menu list */
.menu-list { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .6rem; grid-template-columns: repeat(2, minmax(0,1fr)); }
.menu-list li { background: var(--card); border: 1px solid rgba(255,255,255,.06); padding: .8rem 1rem; border-radius: 10px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.menu-list small { color: var(--muted); }
@media (max-width: 640px) { .menu-list { grid-template-columns: 1fr; } }

/* About Section */
.about-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  border: 1px solid rgba(209,165,91,.1);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

.about-image:hover img {
  transform: scale(1.02);
}

/* Media placeholders */
.show-media, .map, .gallery img, .gallery .ph {
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 10px, rgba(255,255,255,.03) 10px 20px),
              linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px dashed rgba(255,255,255,.15);
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.show-media { min-height: 220px; }
.map { min-height: 260px; }
.map iframe { width: 100%; height: 100%; border: 0; border-radius: 14px; }
.gallery { 
  display: grid; 
  grid-template-columns: repeat(5, 1fr); 
  gap: 1.5rem;
  margin: 2rem 0; 
}

.gallery img { 
  width: 100%; 
  aspect-ratio: 1; 
  object-fit: cover; 
  border-radius: 16px; 
  border: 1px solid rgba(209,165,91,.15); 
  box-shadow: 
    0 8px 24px rgba(0,0,0,.15),
    inset 0 1px 0 rgba(255,255,255,.05);
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  background: rgba(30,31,36,.6);
}

.gallery img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(209,165,91,.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .4s ease;
}

.gallery img:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(209,165,91,.3);
  box-shadow: 
    0 16px 40px rgba(0,0,0,.25),
    0 0 20px rgba(209,165,91,.15),
    inset 0 1px 0 rgba(255,255,255,.08);
  filter: brightness(1.05) saturate(1.1);
}

@media (max-width: 1200px) { 
  .gallery { 
    grid-template-columns: repeat(4, 1fr); 
    gap: 1.2rem;
  } 
}

@media (max-width: 860px) { 
  .gallery { 
    grid-template-columns: repeat(3, 1fr); 
    gap: 1rem;
  } 
}

@media (max-width: 520px) { 
  .gallery { 
    grid-template-columns: repeat(2, 1fr); 
    gap: .8rem;
  } 
}

/* Lists */
.bullets { margin: .6rem 0 0; padding-left: 1.1rem; }
.bullets li { margin: .3rem 0; color: var(--text); }

/* Buttons */
.btn { position: relative; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .65rem 1.1rem; border-radius: 999px; text-decoration: none; font-weight: 600; border: 1px solid transparent; }
.btn-primary { background: var(--gold-grad); color: #1a1a1a; border-color: transparent; box-shadow: 0 10px 24px rgba(209,165,91,.25); }
.btn-primary::before { content: ""; position: absolute; top: -50%; left: -20%; width: 40%; height: 200%; transform: rotate(25deg) translateX(-120%); background: linear-gradient(90deg, rgba(255,255,255,.0), rgba(255,255,255,.35), rgba(255,255,255,.0)); filter: blur(2px); transition: transform .8s ease; }
.btn-primary:hover::before { transform: rotate(25deg) translateX(260%); }
.btn-primary:hover { filter: brightness(.98); box-shadow: 0 14px 28px rgba(209,165,91,.32); }
.btn-ghost { background: transparent; color: var(--text); border-color: rgba(255,255,255,.16); }
.btn-ghost:hover { background: rgba(255,255,255,.06); }

/* Button ripple */
.btn { position: relative; overflow: hidden; }
.btn .ripple { position: absolute; width: 10px; height: 10px; background: rgba(255,255,255,.35); border-radius: 999px; transform: translate(-50%, -50%); pointer-events: none; animation: ripple .6s ease forwards; }
@keyframes ripple { from { opacity: .5; transform: translate(-50%, -50%) scale(1); } to { opacity: 0; transform: translate(-50%, -50%) scale(20); } }

/* CTA */
.cta { background: linear-gradient(180deg, rgba(212,166,95,.08), transparent); }
.cta-inner { text-align: center; }
.contacts { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-top: .8rem; }

/* Footer */
.site-footer { border-top: 1px solid rgba(255,255,255,.06); padding: 1rem 0; background: #0e0f10; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: .6rem; }
.site-footer small { color: var(--muted); }

.footer-left {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--muted);
  background: rgba(255,255,255,.05);
  border-radius: 50%;
  transition: all .3s ease;
  border: 1px solid rgba(255,255,255,.1);
}

.footer-social-link:hover {
  color: var(--primary);
  background: rgba(209,165,91,.1);
  border-color: rgba(209,165,91,.3);
  transform: translateY(-2px);
}

/* About Layout - Photo Style */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content {
  padding-right: 2rem;
}

.about-content h2 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.about-content p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.about-content .eyebrow {
  color: var(--primary);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .8rem;
  margin: 0 0 .2rem;
  opacity: .9;
}



.about-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Video Gallery - Thumbnail Style */
.video-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  animation: galleryFadeIn 0.8s ease-out;
}

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

/* Staggered animation for video cards */
.video-thumbnail.large {
  animation: cardSlideIn 0.6s ease-out 0.1s both;
}

.video-cards-small .video-thumbnail.small {
  animation: cardSlideIn 0.6s ease-out 0.2s both;
}

.video-cards-small .photo-card.small {
  animation: cardSlideIn 0.6s ease-out 0.3s both;
}

@keyframes cardSlideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.video-thumbnail,
.photo-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(0,0,0,.1);
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.05);
}

.video-thumbnail.large {
  aspect-ratio: 16/9;
}

.video-cards-small {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.video-thumbnail.small,
.photo-card.small {
  aspect-ratio: 1;
}

.video-thumbnail img,
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  transition: all .4s ease;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.8;
  transition: all .3s ease;
  z-index: 2;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.play-button:hover {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.4));
}

.play-button.small svg {
  width: 40px;
  height: 40px;
}



.video-thumbnail:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 16px 40px rgba(0,0,0,.25),
    0 0 20px rgba(209,165,91,.1);
}

.video-thumbnail:hover img {
  transform: scale(1.05);
}

.video-thumbnail:hover .play-button {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Mobile touch feedback */
@media (max-width: 768px) {
  .video-thumbnail,
  .photo-card {
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
  }
  
  .video-thumbnail:active,
  .photo-card:active {
    transform: translateY(-2px) scale(0.98);
    transition: transform 0.1s ease;
  }
  
  .video-thumbnail:active img,
  .photo-card:active img {
    transform: scale(1.02);
  }
}

.photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 16px 40px rgba(0,0,0,.25),
    0 0 20px rgba(209,165,91,.1);
}

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

@media (max-width: 768px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-content {
    padding-right: 0;
    order: 2;
  }
  
  .about-visuals {
    order: 1;
  }
  
  /* Enhanced mobile video gallery */
  .video-gallery {
    gap: 1.5rem;
  }
  
  .video-cards-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .video-thumbnail.large {
    aspect-ratio: 16/10;
  }
  
  .video-thumbnail.small,
  .photo-card.small {
    aspect-ratio: 1;
  }
  
  .play-button.small svg {
    width: 35px;
    height: 35px;
  }
  
  .play-button {
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.4));
  }
  
  .play-button:active {
    transform: translate(-50%, -50%) scale(0.95);
    transition: transform 0.1s ease;
  }
  
  .about-actions {
    flex-direction: column;
  }
}

/* Social Links in Contact */
.social-links {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}

.social-links h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--text);
  background: linear-gradient(135deg, rgba(209,165,91,.1) 0%, rgba(209,165,91,.05) 100%);
  border: 1px solid rgba(209,165,91,.2);
  border-radius: 12px;
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-grad);
  opacity: 0;
  transition: opacity .4s ease;
}

.social-link:hover::before {
  opacity: .1;
}

.social-link:hover {
  color: var(--primary);
  border-color: rgba(209,165,91,.4);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 8px 20px rgba(209,165,91,.2),
    0 0 20px rgba(209,165,91,.1);
}

.social-link svg {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
  }
}



/* Legacy Dish cards */
.dish-cards { align-items: stretch; }
.dish { position: relative; min-height: 240px; border-radius: 18px; overflow: hidden; background: #222; border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow); }
.dish::before { content: ""; position: absolute; inset: 0; background-image: var(--img); background-size: cover; background-position: center; filter: brightness(.8) saturate(1.05); transform: scale(1.06); }
.dish::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.7)); }
.dish-inner { position: relative; z-index: 1; padding: 1rem; display: grid; align-content: end; height: 100%; }
/* Dish carousel */
.dish-carousel { display: grid; grid-auto-flow: column; grid-auto-columns: min(88%, 360px); gap: .8rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: .4rem; }
.dish-carousel > .dish { scroll-snap-align: start; }
.dish-carousel::-webkit-scrollbar { height: 8px; }
.dish-carousel::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 999px; }
.dish-inner h3 { text-shadow: 0 1px 0 rgba(0,0,0,.6), 0 0 24px rgba(209,165,91,.35); }
.dish:hover::before { filter: brightness(.9) saturate(1.08); }
.dish:hover .dish-inner { transform: translateY(-2px); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); transition-delay: var(--reveal-delay,0s); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Sticky booking bar */
.booking-bar { position: sticky; bottom: 0; z-index: 50; background: rgba(17,17,18,.75); backdrop-filter: blur(8px); border-top: 1px solid rgba(255,255,255,.08); padding: .6rem 0 calc(.6rem + env(safe-area-inset-bottom)); }
.booking-inner { display: flex; align-items: center; justify-content: space-between; gap: .8rem; }
.booking-inner span { color: var(--muted); }

/* Reviews */
.review-cards .review { background: var(--card); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 1rem; box-shadow: var(--shadow); display: grid; gap: .6rem; }
.review .stars { display: inline-flex; gap: .2rem; color: var(--primary); }
.review .stars svg { width: 18px; height: 18px; fill: currentColor; opacity: .9; }
.review blockquote { margin: 0; color: var(--text); opacity: .95; }
.review cite { color: var(--muted); font-style: normal; }

/* Floating call/reserve buttons for mobile */
@media (max-width: 740px) {
  .fab { position: fixed; right: 16px; bottom: 80px; z-index: 60; display: grid; gap: 10px; }
  .fab a { border-radius: 999px; padding: .7rem .95rem; box-shadow: 0 10px 30px rgba(0,0,0,.35); }
}

/* To top button */
.to-top { position: fixed; right: 16px; bottom: 20px; z-index: 55; opacity: 0; pointer-events: none; transition: opacity .3s ease, transform .3s ease; transform: translateY(10px); background: rgba(32,32,34,.8); color: #fff; border: 1px solid rgba(255,255,255,.15); padding: .5rem .7rem; border-radius: 999px; }
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* Scroll progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; width: 100%; height: 3px; background: rgba(255,255,255,.06); z-index: 1001; }
.scroll-progress .bar { height: 100%; width: 0%; background: var(--gold-grad); box-shadow: 0 0 12px rgba(209,165,91,.35); }

/* Lightbox */
.lightbox[aria-hidden="false"] { display: grid; }
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.85); display: none; place-items: center; z-index: 70; }
.lightbox .photo { max-width: 92vw; max-height: 86vh; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox button { position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: #fff; padding: .4rem .6rem; border-radius: 8px; }
.lightbox .close { top: 12px; right: 12px; font-size: 22px; }
.lightbox .prev { left: 12px; }
.lightbox .next { right: 12px; }

/* Modal */
.modal { position: fixed; inset: 0; background: rgba(0,0,0,.6); display: none; place-items: center; z-index: 80; }
.modal[aria-hidden="false"] { display: grid; }
.modal .modal-content { width: min(720px, 92vw); background: rgba(22,22,24,.85); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 1rem; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.modal .modal-close { position: absolute; top: 12px; right: 12px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: #fff; padding: .3rem .5rem; border-radius: 8px; }
.form { display: grid; gap: .8rem; }
.form-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; }
@media (max-width: 740px) { .form-row { grid-template-columns: 1fr; } }
.form label { color: var(--muted); display: grid; gap: .25rem; font-size: .95rem; }
.form input, .form textarea { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15); color: var(--text); border-radius: 10px; padding: .6rem .7rem; }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(209,165,91,.2); }
.form-actions { display: flex; gap: .6rem; justify-content: flex-end; }

/* Show section */
.show-section { padding: 0; }
.show-stage { position: relative; height: min(72vh, 680px); overflow: hidden; }
.show-slider { position: absolute; inset: 0; }
.show-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.show-slide.is-active { opacity: 1; }
.show-slide img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.75) contrast(1.02); animation: kenburns 32s ease-in-out infinite; }
.show-vignette { position: absolute; inset: 0; box-shadow: inset 0 -160px 220px rgba(0,0,0,.85), inset 0 60px 120px rgba(0,0,0,.5); pointer-events: none; }
.show-card { margin-top: -120px; position: relative; z-index: 2; background: rgba(20,20,22,.7); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: clamp(1rem, 3vw, 1.4rem); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.show-card h2 { margin-bottom: .3rem; }
.show-features { display: flex; flex-wrap: wrap; gap: .6rem 1rem; list-style: none; padding: 0; margin: .6rem 0; color: var(--muted); }
.show-times { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .4rem; }
.chip { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); padding: .25rem .5rem; border-radius: 999px; font-size: .85rem; color: var(--text); }
.show-cta { margin-top: .8rem; display: flex; gap: .6rem; }
@media (max-width: 680px) { .show-card { margin-top: -80px; } }

/* Event Calculator */
.calc-wrapper { 
  display: grid; 
  grid-template-columns: 1fr 320px; 
  gap: 1.5rem; 
  margin-top: 1.5rem;
  position: relative;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.calc-wrapper::before {
  content: "";
  position: absolute;
  inset: -1.5rem;
  background: 
    radial-gradient(600px 200px at 20% 10%, rgba(209,165,91,.06), transparent 60%),
    radial-gradient(400px 150px at 80% 90%, rgba(127,85,57,.04), transparent 60%);
  border-radius: 20px;
  pointer-events: none;
  z-index: -1;
}

.calc-container { 
  display: grid; 
  gap: 1.2rem; 
}

.calc-section { 
  background: rgba(30,31,36,.95);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; 
  padding: 1.2rem; 
  position: relative;
  box-shadow: 
    0 8px 24px rgba(0,0,0,.12),
    inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
  transition: all .3s ease;
}

.calc-section:hover {
  transform: translateY(-1px);
  box-shadow: 
    0 12px 32px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.08),
    0 0 20px rgba(209,165,91,.12);
  border-color: rgba(209,165,91,.2);
}

.calc-section h3 { 
  margin: 0 0 .8rem; 
  color: var(--primary); 
  font-size: 1rem; 
}

/* Step Numbers and Help */
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: #1a1a1a;
  font-size: .8rem;
  font-weight: 700;
  border-radius: 50%;
  margin-right: .5rem;
}

.step-help {
  margin: .5rem 0 0;
  font-size: .9rem;
  color: var(--muted);
  font-style: italic;
}

/* Menu List */
.menu-list { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr);
  gap: .6rem; 
}

.menu-option { 
  cursor: pointer; 
  position: relative; 
}

.menu-option input[type="radio"] { 
  display: none; 
}

.menu-card { 
  background: rgba(255,255,255,.04); 
  border: 2px solid rgba(255,255,255,.08); 
  border-radius: 12px; 
  transition: all .3s ease; 
  position: relative; 
  overflow: hidden;
}

.menu-card::before { 
  content: ""; 
  position: absolute; 
  inset: 0; 
  background: var(--gold-grad); 
  opacity: 0; 
  transition: opacity .3s ease; 
}

.menu-header {
  padding: .8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.menu-price { 
  font-size: 1.3rem; 
  font-weight: 700; 
  color: var(--primary); 
}

.per-person { 
  font-size: .85rem; 
  color: var(--muted); 
}

.menu-details {
  padding: 0 .8rem .8rem;
  border-top: 1px solid rgba(255,255,255,.08);
  position: relative;
  z-index: 1;
}

.menu-details h4 {
  margin: .5rem 0;
  color: var(--primary);
  font-size: .9rem;
}

.menu-items {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .5rem;
}

.menu-item {
  display: inline-block;
  background: rgba(209,165,91,.12);
  border: 1px solid rgba(209,165,91,.3);
  color: var(--text);
  font-size: .75rem;
  padding: .2rem .5rem;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  transition: all .3s ease;
}

.menu-item:hover {
  background: rgba(209,165,91,.2);
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(209,165,91,.25);
}

.menu-option input:checked + .menu-card { 
  border-color: var(--primary); 
  box-shadow: 0 0 20px rgba(209,165,91,.25); 
}

.menu-option input:checked + .menu-card::before { 
  opacity: .08; 
}

.menu-option input:checked + .menu-card .menu-details {
  display: block !important;
}

.menu-option:hover .menu-card { 
  border-color: rgba(209,165,91,.4); 
}

/* Guest Counter */
.guest-input { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: .8rem; 
}

.guest-btn { 
  width: 40px; 
  height: 40px; 
  border-radius: 50%; 
  border: 1px solid rgba(255,255,255,.2); 
  background: rgba(255,255,255,.06); 
  color: var(--text); 
  font-size: 1.2rem; 
  font-weight: 600; 
  cursor: pointer; 
  transition: all .3s ease; 
}

.guest-btn:hover { 
  background: var(--primary); 
  color: #1a1a1a; 
  border-color: var(--primary); 
}

#guestCount { 
  width: 80px; 
  text-align: center; 
  font-size: 1.2rem; 
  font-weight: 600; 
  background: rgba(255,255,255,.06); 
  border: 1px solid rgba(255,255,255,.15); 
  color: var(--text); 
  border-radius: 8px; 
  padding: .6rem; 
}

#guestCount:focus { 
  outline: none; 
  border-color: var(--primary); 
  box-shadow: 0 0 0 3px rgba(209,165,91,.2); 
}

/* Additional Services */
.additional-services {
  display: grid;
  gap: .8rem;
}

.service-option { 
  cursor: pointer; 
  display: block; 
}

.service-option input[type="checkbox"] { 
  display: none; 
}

.service-card { 
  background: rgba(255,255,255,.04); 
  border: 2px solid rgba(255,255,255,.08); 
  border-radius: 12px; 
  padding: .8rem; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  transition: all .3s ease; 
  position: relative; 
  overflow: hidden; 
}

.service-card::before { 
  content: ""; 
  position: absolute; 
  inset: 0; 
  background: var(--gold-grad); 
  opacity: 0; 
  transition: opacity .3s ease; 
}

.service-info { 
  flex: 1; 
  position: relative; 
  z-index: 1; 
}

.service-info h4 { 
  margin: 0 0 .2rem; 
  font-size: .9rem; 
  color: var(--text); 
}

.service-info p { 
  margin: 0; 
  font-size: .8rem; 
  color: var(--muted); 
}

.service-price { 
  font-size: 1.1rem; 
  font-weight: 700; 
  color: var(--primary); 
  position: relative; 
  z-index: 1; 
}

.service-note {
  font-size: .9rem;
  color: var(--muted);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.service-card.info-only {
  opacity: .8;
}

.service-option input:checked + .service-card { 
  border-color: var(--primary); 
  box-shadow: 0 0 20px rgba(209,165,91,.25); 
}

.service-option input:checked + .service-card::before { 
  opacity: .08; 
}

.service-option:hover .service-card { 
  border-color: rgba(209,165,91,.4); 
}

/* Custom Services */
.custom-services { 
  display: grid; 
  gap: .8rem; 
  margin-top: 1rem; 
}

.custom-service { 
  display: grid; 
  gap: .4rem; 
}

.custom-service label { 
  color: var(--muted); 
  font-size: .9rem; 
}

.custom-service input { 
  background: rgba(255,255,255,.06); 
  border: 1px solid rgba(255,255,255,.15); 
  color: var(--text); 
  border-radius: 8px; 
  padding: .6rem; 
}

.custom-service input:focus { 
  outline: none; 
  border-color: var(--primary); 
  box-shadow: 0 0 0 3px rgba(209,165,91,.2); 
}

/* Results Panel */
.calc-results { 
  background: linear-gradient(135deg, rgba(30,31,36,.98) 0%, rgba(25,26,30,.95) 100%);
  border: 1px solid rgba(209,165,91,.25);
  border-radius: 20px; 
  height: fit-content; 
  position: sticky; 
  top: 100px;
  box-shadow: 
    0 15px 40px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.08),
    0 0 30px rgba(209,165,91,.12);
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: all .3s ease;
}

.calc-results::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-grad);
  box-shadow: 0 0 15px rgba(209,165,91,.4);
  border-radius: 20px 20px 0 0;
}

.results-header { 
  padding: 1.2rem 1.2rem .8rem; 
  border-bottom: 1px solid rgba(255,255,255,.12); 
  background: linear-gradient(135deg, rgba(209,165,91,.08) 0%, rgba(209,165,91,.03) 100%);
  position: relative;
}

.results-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 100px at 50% 0%, rgba(209,165,91,.15), transparent 70%);
  pointer-events: none;
}

.results-header h3 { 
  margin: 0; 
  color: var(--primary); 
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,.3);
}

.cost-breakdown { 
  padding: 1rem 1.2rem; 
  min-height: 120px;
}

.breakdown-item { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: .6rem 0; 
  border-bottom: 1px solid rgba(255,255,255,.08); 
  transition: all .3s ease;
  border-radius: 8px;
  margin-bottom: .2rem;
}

.breakdown-item:last-child { 
  border-bottom: none; 
  margin-bottom: 0;
}

.breakdown-item:hover {
  background: rgba(209,165,91,.05);
  padding-left: .5rem;
  padding-right: .5rem;
}

.item-name { 
  color: var(--text); 
  font-size: .9rem; 
  font-weight: 500;
}

.item-cost { 
  color: var(--primary); 
  font-weight: 700; 
  font-size: .95rem;
}

.total-cost { 
  padding: 1.2rem 1.2rem; 
  border-top: 3px solid var(--primary); 
  background: linear-gradient(135deg, rgba(209,165,91,.12) 0%, rgba(209,165,91,.06) 100%);
  position: relative;
  overflow: hidden;
}

.total-cost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(300px 80px at 50% 100%, rgba(209,165,91,.1), transparent 70%);
  pointer-events: none;
}

.total-line { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  position: relative;
  z-index: 1;
}

.total-label { 
  font-weight: 700; 
  color: var(--text);
  font-size: 1rem;
  text-shadow: 0 1px 2px rgba(0,0,0,.3);
}

.total-amount { 
  font-size: 1.4rem; 
  font-weight: 800; 
  color: var(--primary);
  text-shadow: 0 2px 4px rgba(0,0,0,.3);
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.calc-actions { 
  padding: 1rem 1.2rem; 
  display: flex; 
  justify-content: center;
  background: rgba(255,255,255,.02);
  border-top: 1px solid rgba(255,255,255,.08);
}

/* Responsive */
@media (max-width: 1000px) { 
  .calc-wrapper { 
    grid-template-columns: 1fr; 
    gap: 1.2rem; 
  } 
  .calc-results { 
    position: static; 
  } 
}

@media (max-width: 768px) {
  .menu-list { 
    grid-template-columns: 1fr; 
  }
}

@media (max-width: 640px) { 
  .menu-grid { 
    grid-template-columns: 1fr; 
  } 
  .guest-input { 
    gap: .6rem; 
  } 
  #guestCount { 
    width: 70px; 
  }
  .calc-section {
    padding: 1rem;
  }
}

/* Scrollbar (WebKit) */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background-image: var(--gold-grad); border-radius: 999px; border: 2px solid #0f0f10; }


