:root {
  --ivory-soft: #F9F7F2;
  --champagne: #8563ce;
  --rose-gold: #b130ce;
  --ink-deep: #1A1A1A;
  --text-main: #333333;
  --text-dim: #777777;
  --border-soft: rgba(0, 0, 0, 0.05);
  --glass: rgba(255, 255, 255, 0.7);
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Outfit', sans-serif;
  --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background-color: var(--ivory-soft);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

/* ===== NAVIGATION ===== */
header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 30px 0; transition: var(--transition);
}
header.scrolled {
  padding: 20px 0; background: var(--glass); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-soft);
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.c26teg6 { font-family: var(--font-serif); font-size: 28px; font-weight: 700; letter-spacing: 2px; }
.c26teg6 span { font-weight: 300; font-style: italic; color: var(--rose-gold); }
.c54671l { display: flex; gap: 40px; }
.c54671l a { font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 2px; color: var(--text-dim); }
.c54671l a:hover, .c54671l a.active { color: var(--rose-gold); }
.csby72f {
  padding: 12px 25px; border: 1px solid var(--rose-gold); font-size: 12px;
  color: var(--rose-gold) !important; border-radius: 50px;
}
.csby72f:hover { background: var(--rose-gold); color: white !important; }

/* ===== HERO ===== */
#hero {
  height: 100vh; position: relative; overflow: hidden; display: flex; align-items: center;
}
.c450qn5 {
  position: relative; z-index: 10; max-width: 800px; padding-left: 10%;
}
.hero-tag {
  display: block; font-size: 11px; letter-spacing: 5px; color: var(--rose-gold);
  margin-bottom: 20px; animation: fadeInUp 1s forwards; opacity: 0;
}
.chaxmyi {
  font-family: var(--font-serif); font-size: clamp(50px, 8vw, 100px);
  line-height: 0.9; margin-bottom: 30px; color: var(--ink-deep);
  animation: fadeInUp 1s 0.2s forwards; opacity: 0;
}
.c9muxy4 {
  font-size: 18px; color: var(--text-dim); max-width: 500px;
  margin-bottom: 40px; animation: fadeInUp 1s 0.4s forwards; opacity: 0;
}
.cwowpld {
  position: absolute; top: 10%; right: 5%; width: 45%; height: 80vh;
  background: #eee; overflow: hidden; border-radius: 400px 400px 0 0;
  animation: visualReveal 2s 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0;
}
.cwowpld img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); transition: 2s; }
.cwowpld:hover img { transform: scale(1); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes visualReveal {
  from { opacity: 0; clip-path: inset(100% 0 0 0); }
  to { opacity: 1; clip-path: inset(0 0 0 0); }
}

/* ===== SECTIONS ===== */
.cfsj9tz { padding: 150px 0; }
.sec-head { margin-bottom: 80px; text-align: center; }
.sec-tag { font-size: 11px; letter-spacing: 5px; color: var(--rose-gold); display: block; margin-bottom: 15px; }
.cz4w10h { font-family: var(--font-serif); font-size: clamp(40px, 5vw, 60px); color: var(--ink-deep); line-height: 1.1; }

.v-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.v-card {
  padding: 60px 40px; background: white; border-radius: 5px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.02); transition: var(--transition);
  text-align: center; border: 1px solid transparent;
}
.v-card:hover { transform: translateY(-10px); border-color: var(--rose-gold-dim); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.04); }
.v-card i { font-size: 30px; color: var(--rose-gold); margin-bottom: 25px; display: block; }
.v-card h3 { font-family: var(--font-serif); font-size: 24px; margin-bottom: 15px; color: var(--ink-deep); }
.v-card p { font-size: 14px; color: var(--text-dim); }

/* ===== SPLIT SECTION ===== */
.split { display: flex; gap: 80px; align-items: center; }
.split-media { flex: 1; position: relative; }
.split-img { height: 600px; border-radius: 300px 300px 0 0; overflow: hidden; }
.split-content { flex: 1; }
.split-content h2 { font-family: var(--font-serif); font-size: 50px; margin-bottom: 30px; }

/* ===== LIQUOR LIST ===== */
.l-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px; }
.l-cat { border-bottom: 1px solid var(--border-soft); padding-bottom: 40px; }
.l-cat h4 { font-family: var(--font-serif); font-size: 22px; color: var(--rose-gold); margin-bottom: 30px; letter-spacing: 1px; }
.l-item { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 15px; border-bottom: 1px dashed var(--border-soft); padding-bottom: 10px; }
.l-item span:last-child { font-weight: 600; color: var(--rose-gold); }

/* ===== FOOTER ===== */
footer { padding: 100px 0 50px; background: #fff; border-top: 1px solid var(--border-soft); color: var(--text-dim); }
.f-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 80px; margin-bottom: 80px; }
.f-logo { font-family: var(--font-serif); font-size: 24px; color: var(--ink-deep); margin-bottom: 25px; display: block; }
.f-links h5 { font-size: 11px; letter-spacing: 3px; color: var(--rose-gold); margin-bottom: 25px; text-transform: uppercase; }
.f-links ul li { margin-bottom: 15px; font-size: 14px; }
.f-bottom { padding-top: 40px; border-top: 1px solid var(--border-soft); display: flex; justify-content: space-between; font-size: 12px; }

/* ===== STAFF GALLERY ===== */
.canmui3 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 60px; }
.c68mqom { position: relative; overflow: hidden; border-radius: 5px; transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); }
.c68mqom:hover { transform: translateY(-12px); box-shadow: 0 30px 60px rgba(183, 110, 121, 0.15); }
.cguvje3 {
  width: 100%;
  aspect-ratio: 21 / 9;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.cguvje3::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(26,26,26,0.3) 100%);
  transition: opacity 0.6s;
}
.c68mqom:hover .cguvje3::after { opacity: 0; }

/* ===== ATMOSPHERE GALLERY ===== */
.c2ygfgm { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
.c3iqxt9 { position: relative; overflow: hidden; border-radius: 5px; transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); }
.c3iqxt9:hover { transform: translateY(-12px); box-shadow: 0 30px 60px rgba(183, 110, 121, 0.12); }
.cu5jclt {
  width: 100%;
  aspect-ratio: 21 / 9;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cu5jclt::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(183,110,121,0.08) 0%, transparent 50%);
  transition: opacity 0.6s;
}
.c3iqxt9:hover .cu5jclt::after { opacity: 0; }

/* ===== FACILITIES GALLERY ===== */
.c2oaigh { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; margin-top: 60px; }
.cst3fem { position: relative; overflow: hidden; border-radius: 5px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.cst3fem:hover { box-shadow: 0 20px 40px rgba(183, 110, 121, 0.12); }
.cthyqv4 {
  width: 100%;
  aspect-ratio: 21 / 9;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.cst3fem:hover .cthyqv4 { transform: scale(1.1); }

/* ===== GALLERY RESPONSIVE ===== */
@media (max-width: 960px) {
  .canmui3 { grid-template-columns: repeat(2, 1fr); }
  .c2ygfgm { grid-template-columns: repeat(2, 1fr); }
  .c2oaigh { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .canmui3 { grid-template-columns: 1fr; }
  .c2ygfgm { grid-template-columns: 1fr; }
  .c2oaigh { grid-template-columns: 1fr; }
}

/* REVEAL ANIMATION */
.reveal { opacity: 0; transform: translateY(30px); transition: 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* HAMBURGER */
.ct9v3w4 { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.ct9v3w4 span { width: 25px; height: 1px; background: var(--rose-gold); }

@media (max-width: 1024px) {
  .v-grid, .l-grid, .split { grid-template-columns: 1fr; flex-direction: column; gap: 40px; }
}

@media (max-width: 768px) {
  .c54671l { display: none; }
  .ct9v3w4 { display: flex; }
  .chaxmyi { font-size: 60px; }
  .cwowpld { position: relative; right: 0; width: 100%; height: 50vh; order: -1; }
  #hero { flex-direction: column; height: auto; padding-top: 150px; }
  .c450qn5 { padding: 40px; }
}
