@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Inter:wght@200;300;400;600&display=swap');

:root {
  --primary: #d4b184; /* Refined Gold */
  --bg-dark: #080808;
  --bg-card: rgba(18, 18, 18, 0.4);
  --text-main: #ffffff;
  --text-muted: #999999;
  --accent-glow: rgba(212, 177, 132, 0.08);
  --glass: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.08);
  --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  background: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  text-transform: none;
}

/* Glassmorphism & Noise Effect (CSS Only) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
  z-index: 9999;
}

.cursor {
  width: 20px;
  height: 20px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.1s ease;
  backdrop-filter: invert(1);
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

.mansion-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  background: rgba(10, 10, 11, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 1px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

/* Extreme Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) grayscale(0.2);
  transform: scale(1.1);
  animation: heroScale 30s infinite alternate;
}

@keyframes heroScale {
  to { transform: scale(1.2) rotate(2deg); }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 20px;
}

.glitch-text {
  font-size: clamp(8rem, 25vw, 18rem);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -10px;
  color: var(--primary);
  margin-bottom: -10px;
  opacity: 0.9;
  text-shadow: 10px 10px 0px rgba(0,0,0,0.5);
  animation: pulse 4s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.02); filter: brightness(1.2); }
}

.sub-logo {
  font-size: clamp(1rem, 3vw, 2.5rem);
  letter-spacing: 15px;
  font-weight: 200;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero-desc {
  max-width: 700px;
  margin: 0 auto 40px;
  font-weight: 200;
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Cocktail Experience Section */
.cocktail-experience {
  height: 150vh;
  position: relative;
  background: linear-gradient(180deg, var(--bg-dark), #111, var(--bg-dark));
  padding: 100px 0;
}

.sticky-container {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.experience-text {
  position: absolute;
  z-index: 10;
  text-align: center;
  max-width: 600px;
}

.animation-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.formation-item {
  position: absolute;
  font-size: 5rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.item-drink {
  font-size: 10rem;
  filter: drop-shadow(0 0 30px var(--primary));
}

.btn {
  display: inline-block;
  padding: 20px 50px;
  text-decoration: none;
  font-weight: 400;
  border-radius: 2px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
}

.btn-primary {
  background: var(--primary);
  color: #000;
}

.btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.btn-outline {
  border: 1px solid var(--border);
  color: #fff;
  margin-left: 15px;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Neo-Brutalism Grid System */
.network-section {
  padding: 100px 0;
  overflow: visible;
}

.section-title {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--text-main);
  margin-bottom: 60px;
  text-align: left;
  border-bottom: 2px solid var(--border);
  padding-bottom: 15px;
}

.neo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 100px;
}

.neo-item {
  background: var(--bg-card);
  border: 2px solid var(--border);
  padding: 40px;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 6px 6px 0px rgba(0,0,0,0.8), 8px 8px 0px var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  border-radius: 2px;
}

.neo-item:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0px rgba(0,0,0,0.8), 14px 14px 0px var(--primary);
  border-color: var(--primary);
  background: rgba(212, 177, 132, 0.05);
}

.neo-number {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
  opacity: 0.5;
  margin-bottom: 15px;
  display: block;
}

.neo-item h3 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -1px;
}

.neo-item p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.neo-arrow {
  margin-top: 30px;
  align-self: flex-end;
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.neo-item:hover .neo-arrow {
  transform: translateX(10px);
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(15px);
  z-index: 20000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background: var(--bg-dark);
  border: 1px solid var(--primary);
  max-width: 800px;
  width: 100%;
  padding: 60px;
  position: relative;
  border-radius: 4px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.testimonial-card {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.testimonial-card p {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.testimonial-card cite {
  color: var(--primary);
  font-weight: 600;
  font-style: normal;
}

/* Bar Card & Ingredients */
.bar-card {
  background: var(--bg-card);
  padding: 40px;
  border: 1px solid var(--primary);
  position: relative;
  overflow: hidden;
}

.floating-ingredients {
  position: absolute;
  top: -20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ingredient {
  font-size: 2rem;
  animation: fallIngredient 4s infinite linear;
  opacity: 0.6;
}

@keyframes fallIngredient {
  0% { transform: translateY(-50px) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(150px) rotate(360deg); opacity: 0; }
}

.ingredient:nth-child(2) { animation-delay: 1.5s; }
.ingredient:nth-child(3) { animation-delay: 3s; }

/* Cocktail Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
}

.menu-item {
  border-bottom: 1px solid var(--border);
  padding-bottom: 15px;
  transition: var(--transition);
}

.menu-item:hover {
  border-color: var(--primary);
  padding-left: 10px;
}

.menu-item h4 {
  color: var(--primary);
  margin-bottom: 5px;
}

.menu-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.price {
  font-weight: 800;
  color: #fff;
  font-size: 0.9rem;
}

/* Updated Footer Map & Info */
.footer-map {
  padding: 0;
  margin-top: 100px;
  border-top: 1px solid var(--border);
}

.map-iframe-container {
  height: 200px;
  width: 100%;
}

.location-footer-info {
  padding: 60px 0;
  background: var(--bg-dark);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.location-grid h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 20px;
}

.location-grid p {
  color: var(--text-muted);
  font-size: 1rem;
}

@media (max-width: 600px) {
  .menu-grid { grid-template-columns: 1fr; }
  .modal-content { padding: 40px 20px; }
}

.info-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.info-text h2 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.info-text p {
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.location-badge {
  display: inline-block;
  padding: 10px 20px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 0.8rem;
  color: var(--primary);
  margin-bottom: 20px;
}

/* Photoshoot Mockup */
.image-showcase {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.image-showcase img {
  width: 100%;
  display: block;
  transition: var(--transition);
}

.image-showcase:hover img {
  transform: scale(1.05);
}

/* Contact/Pitch Section */
.pitch {
  padding: 100px 0;
  text-align: center;
  background: var(--bg-card);
  margin: 50px 0;
  border-radius: 24px;
}

.pitch h2 {
  font-size: 3rem;
}

.pitch-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.badge {
  padding: 15px 30px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-weight: 600;
}

footer {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
}

/* Micro-animations */
[data-scroll] {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-scroll].visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .hero-content h1 { font-size: 3rem; }
  .info-content { grid-template-columns: 1fr; }
  .mansion-container { padding: 0 20px; }
  .nav-links { display: none; }
}
