:root {
  --emerald-deep: #112168;
  --emerald-glow: #21358b;
  --metallic-copper: #cbbb76;
  --gold-brass: #b7ac7a;
  --charcoal: #0F0F0F;
  --white: #F0F0F0;
  --font-title: 'Playfair Display', serif;
  --font-base: 'Outfit', sans-serif;
  --ease: cubic-bezier(0.85, 0, 0.15, 1);
  --glass-dark: rgba(15, 15, 15, 0.8);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background-color: var(--charcoal);
  color: var(--white);
  font-family: var(--font-base);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1600px; margin: 0 auto; padding: 0 60px; }
a { text-decoration: none; color: inherit; transition: 0.4s var(--ease); }

/* Custom Cursor */
.cursor {
  position: fixed; top: 0; left: 0; width: 40px; height: 40px; border: 1px solid var(--metallic-copper);
  border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s; mix-blend-mode: difference;
}

/* NAVIGATION */
header {
  position: fixed; width: 100%; top: 0; padding: 40px 0; z-index: 2000;
  mix-blend-mode: difference;
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.c9vgct0 { font-family: var(--font-title); font-size: 32px; font-weight: 900; letter-spacing: -1px; }
.c9vgct0 span { color: var(--metallic-copper); }
.curzy83 { display: flex; gap: 50px; }
.curzy83 a { font-size: 11px; text-transform: uppercase; letter-spacing: 3px; font-weight: 500; opacity: 0.6; }
.curzy83 a:hover { opacity: 1; color: var(--metallic-copper); }

/* HERO */
#hero {
  height: 110vh; background: var(--emerald-deep); overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-video-bg {
  position: absolute; width: 100%; height: 100%; object-fit: cover; opacity: 0.4;
}
.cqclruo {
  position: relative; z-index: 10; text-align: center;
}
.hero-tag { font-size: 12px; letter-spacing: 8px; color: var(--metallic-copper); display: block; margin-bottom: 20px; }
.cxpm219 {
  font-family: var(--font-title); font-size: clamp(80px, 12vw, 180px);
  line-height: 0.85; letter-spacing: -5px; color: var(--white);
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}
.cxpm219 span { font-style: italic; font-weight: 400; font-family: 'Playfair Display'; }

/* MARQUEE */
.marquee {
  width: 100%; overflow: hidden; padding: 40px 0; background: var(--metallic-copper);
  color: var(--charcoal); font-weight: 900; font-size: 40px; text-transform: uppercase;
  display: flex; white-space: nowrap; border-top: 1px solid rgba(0,0,0,0.1);
}
.marquee-content {
  display: flex; animation: marqueeAnim 20s linear infinite;
}
@keyframes marqueeAnim { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* GRID SECTION */
.c9rliph { padding: 180px 0; position: relative; }
.grid-container {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px;
}
.grid-item { position: relative; }
.gi-card {
  height: 100%; background: #1a1a1a; padding: 50px; position: relative; overflow: hidden;
  border-left: 1px solid rgba(255,255,255,0.05);
}
.gi-card:hover { background: var(--emerald-glow); }
.gi-num { font-family: var(--font-title); font-size: 80px; opacity: 0.05; position: absolute; top: 0; right: 20px; }
.gi-title { font-family: var(--font-title); font-size: 32px; margin-bottom: 20px; color: var(--metallic-copper); }
.gi-desc { font-size: 15px; line-height: 1.8; opacity: 0.7; }

/* HORIZONTAL SCROLL SIMULATION */
.horiz-wrap { display: flex; gap: 40px; width: 200%; }
.horiz-item { width: 500px; height: 600px; background: #222; flex-shrink: 0; border-radius: 10px; overflow: hidden; }
.horiz-item img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: 1s; }
.horiz-item:hover img { filter: grayscale(0) scale(1.1); }

/* LIQUOR MODERN */
.price-reveal {
  padding: 120px 0; border-top: 1px solid rgba(255,255,255,0.05);
}
.price-row {
  display: flex; justify-content: space-between; align-items: center; padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05); cursor: pointer; position: relative;
}
.price-row:hover .pr-bg { height: 100%; }
.pr-bg {
  position: absolute; bottom: 0; left: 0; width: 100%; height: 0;
  background: var(--metallic-copper); z-index: -1; transition: 0.6s var(--ease);
}
.pr-title { font-family: var(--font-title); font-size: 40px; }
.pr-price { font-size: 20px; letter-spacing: 2px; font-weight: 700; color: var(--metallic-copper); }
.price-row:hover .pr-title, .price-row:hover .pr-price { color: var(--charcoal); }

/* CTA BIG */
.cta-big {
  padding: 200px 0; text-align: center; background: url('https://grain-y.com/grain.png');
}
.cqx3q3u {
  font-family: var(--font-title); font-size: clamp(60px, 10vw, 150px);
  line-height: 0.9; margin-bottom: 50px;
}
.cqx3q3u em { color: var(--metallic-copper); font-style: italic; }
.btn-round {
  width: 180px; height: 180px; border-radius: 50%; border: 1px solid var(--metallic-copper);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; letter-spacing: 3px; font-weight: 600; text-transform: uppercase;
  transition: 0.5s; position: relative;
}
.btn-round:hover { background: var(--metallic-copper); color: var(--charcoal); transform: scale(1.1); }

/* ===== STAFF GALLERY ===== */
.c4ytmf2 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; margin-top: 60px; }
.cblx8m7 { position: relative; overflow: hidden; border-radius: 0; border-left: 3px solid transparent; transition: all 0.5s var(--ease); }
.cblx8m7:hover { border-left-color: var(--metallic-copper); transform: translateX(8px); }
.c6a3dns {
  width: 100%;
  aspect-ratio: 21 / 9;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  filter: grayscale(0.3) contrast(1.1);
}
.c6a3dns::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(15,15,15,0.8) 100%);
  transition: opacity 0.5s;
}
.cblx8m7:hover .c6a3dns { filter: grayscale(0) contrast(1); }
.cblx8m7:hover .c6a3dns::after { opacity: 0.5; }

/* ===== ATMOSPHERE GALLERY ===== */
.ctsgu5k { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 60px; }
.c97ys2a { position: relative; overflow: hidden; border-radius: 0; border: 1px solid rgba(255,255,255,0.05); transition: all 0.5s var(--ease); }
.c97ys2a:hover { border-color: var(--metallic-copper); }
.cobj112 {
  width: 100%;
  aspect-ratio: 21 / 9;
  background-size: cover;
  background-position: center;
  position: relative;
  filter: grayscale(0.5);
  transition: filter 0.5s;
}
.cobj112::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(217,136,100,0.2) 0%, transparent 60%);
  transition: opacity 0.5s;
}
.c97ys2a:hover .cobj112 { filter: grayscale(0); }
.c97ys2a:hover .cobj112::after { opacity: 0; }

/* ===== FACILITIES GALLERY ===== */
.cfsphwx { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 60px; }
.cz2s1z6 { position: relative; overflow: hidden; border-radius: 0; background: #1a1a1a; transition: all 0.5s var(--ease); }
.cz2s1z6:hover { background: var(--emerald-glow); }
.ce74lyd {
  width: 100%;
  aspect-ratio: 21 / 9;
  background-size: cover;
  background-position: center;
  transition: transform 1s var(--ease);
  filter: contrast(1.2);
}
.cz2s1z6:hover .ce74lyd { transform: scale(1.15); }

/* ===== GALLERY RESPONSIVE ===== */
@media (max-width: 960px) {
  .c4ytmf2 { grid-template-columns: repeat(2, 1fr); }
  .ctsgu5k { grid-template-columns: repeat(2, 1fr); }
  .cfsphwx { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .c4ytmf2 { grid-template-columns: 1fr; }
  .ctsgu5k { grid-template-columns: 1fr; }
  .cfsphwx { grid-template-columns: 1fr; }
}

/* FOOTER */
footer { padding: 100px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.f-inner { display: flex; justify-content: space-between; align-items: flex-start; }
.f-brand { flex: 1; }
.f-nav { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.f-nav a { display: block; margin-bottom: 15px; opacity: 0.5; font-size: 14px; }
.f-status { margin-top: 60px; font-size: 11px; opacity: 0.3; letter-spacing: 2px; }

@media (max-width: 1024px) {
  .container { padding: 0 40px; }
  .f-inner { flex-direction: column; gap: 60px; }
  .grid-container { display: flex; flex-direction: column; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  header { height: 70px; }
  .c9vgct0 { font-size: 20px; }
  .curzy83 { display: none; } /* Hamburger menu should handle this in JS if applicable */
  
  #hero { height: 80vh; min-height: 500px; padding: 0 24px; }
  .cxpm219 { font-size: 44px; }
  .hero-tag { font-size: 10px; letter-spacing: 3px; }
  
  .marquee { padding: 20px 0; }
  .marquee-content { font-size: 14px; }
  
  .c9rliph { padding: 80px 0; }
  .horiz-wrap { flex-direction: column; height: auto; gap: 20px; }
  .horiz-item { width: 100% !important; height: 300px !important; }
  
  .price-row { padding: 25px 0; flex-direction: column; align-items: flex-start; gap: 10px; }
  .pr-title { font-size: 24px; }
  .pr-price { font-size: 14px; }
  
  .cta-big { padding: 100px 24px; }
  .cqx3q3u { font-size: 38px; }
  .btn-round { width: 140px; height: 140px; font-size: 10px; }
  
  .f-nav { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 480px) {
  .cxpm219 { font-size: 36px; }
  .cqx3q3u { font-size: 32px; }
}
