@font-face {
  font-family: 'PP Neue World';
  src: url('assets/fonts/pp-neue-world/ppneueworld-condensedregular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'PP Neue World';
  src: url('assets/fonts/pp-neue-world/ppneueworld-semicondensedultrabold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'PP Neue World';
  src: url('assets/fonts/pp-neue-world/ppneueworld-semiextendedblack.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'PP Neue World';
  src: url('assets/fonts/pp-neue-world/ppneueworld-thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'PP Neue World Light';
  src: url('assets/fonts/pp-neue-world/ppneueworld-supercondensedlight.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

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

:root {
  --black: #000000;
  --dark: #0a0a0a;
  --red: #8B1A1A;
  --red-bright: #a52222;
  --red-dark: #5c1010;
  --white: #f5f0eb;
  --cream: #e8ddd3;
  --gold: #c9a84c;
  --font-display: 'PP Neue World', 'Playfair Display', serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'Cormorant Garamond', serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 400;
  overflow-x: hidden;
}

a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}
a:hover { opacity: 0.7; }

img { display: block; max-width: 100%; }

@media (pointer: fine) {
  body, a, button { cursor: none; }
}
.cursor {
  width: 18px; height: 18px;
  border: 1.5px solid rgba(165, 34, 34, 0.8);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 10000;
  transition: transform 0.15s ease;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 4px; height: 4px;
  background: var(--white);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 10001;
}

.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9990;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

.header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
}
.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(6px) saturate(1.2);
  -webkit-backdrop-filter: blur(6px) saturate(1.2);
  filter: url(#header-distort);
  z-index: -1;
}
.header-container {
  max-width: 1024px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.header-logo {
  display: block;
  max-height: 80px;
}
.nav-link {
  font-family: var(--font-display);
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 400;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--white);
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { opacity: 1; }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--black);
}
.hero-inner {
  position: relative;
  width: 100%;
  max-width: 1320px;
  min-height: 100vh;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
}

.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroBgIn 1.5s ease 0.5s forwards;
}
@keyframes heroBgIn {
  to { opacity: 1; }
}

.hero-character {
  position: absolute;
  z-index: 6;
  top: 38%;
  left: 50%;
  transform: translateX(-40%);
  width: clamp(250px, 35vw, 500px);
  opacity: 0;
  animation: heroCharIn 1s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.6));
}
@keyframes heroCharIn {
  from { opacity: 0; transform: translateX(-40%) translateY(30px) scale(0.95); }
  to { opacity: 1; transform: translateX(-40%) translateY(0) scale(1); }
}

.eyeball {
  position: absolute;
  z-index: 3;
  will-change: transform;
  filter: drop-shadow(0 8px 25px rgba(0,0,0,0.5));
}
.eyeball img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.eye1 {
  width: 150px;
  top: 20%; right: 14%;
  animation: floatA 6s ease-in-out infinite;
}
.eye2 {
  width: 211px;
  top: 37%; left: 4%;
  animation: floatB 7s ease-in-out infinite 1s;
}
.eye3 {
  width: clamp(55px, 7vw, 100px);
  bottom: 22%; right: 0;
  animation: floatC 8s ease-in-out infinite 0.5s;
}
.eye4 {
  width: 180px;
  top: 86%; left: 13%;
  animation: floatB 5.5s ease-in-out infinite 2s;
}
.eye5 {
  width: 120px;
  bottom: 62%;
  left: 44%;
  animation: floatA 7s ease-in-out infinite 1.5s;
}
.eye6 {
  width: 140px;
  bottom: -6%; right: 21%;
  animation: floatC 6.5s ease-in-out infinite 0.8s;
}

@keyframes floatA {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-25px) rotate(5deg); }
  66% { transform: translateY(12px) rotate(-3deg); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-35px) rotate(-8deg); }
}
@keyframes floatC {
  0%, 100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-18px) translateX(12px); }
  66% { transform: translateY(12px) translateX(-8px); }
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: left;
  margin-right: -51%;
  margin-top: 20%;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 4px 60px rgba(0,0,0,0.7);
}
.hero-title span {
  display: block;
  opacity: 0;
  transform: translateY(60px) rotateX(10deg);
  animation: heroWordIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title span:nth-child(1) { animation-delay: 1.3s; }
.hero-title span:nth-child(2) { animation-delay: 1.5s; }
.hero-title span:nth-child(3) { animation-delay: 1.7s; }

@keyframes heroWordIn {
  to { opacity: 1; transform: translateY(0) rotateX(0); }
}

.cocktail-strip {
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: var(--black);
  gap: 1rem;
}
.cocktail-img-wrap {
  overflow: hidden;
  position: relative;
}
.cocktail-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.cocktail-img-wrap:hover img {
  transform: scale(1.06);
}
.cocktail-2 {
  align-self: center;
  border-radius: 6px;
}
.cocktail-3 {
  margin-top: 6rem;
}

.about {
  padding: 6rem 3rem 5rem;
  background: var(--black);
}
.about-inner {
  max-width: 642px;
  margin: 0 auto 400px;
  position: relative;
}
.about-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.12;
  margin-bottom: 2rem;
}
.about-text p {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.75;
  color: var(--cream);
  margin-bottom: 20px;
  font-weight: 400;
}
.about-text {
  position: relative;
}
.about-text::before {
  content: '';
  position: absolute;
  right: -69%;
  top: 61%;
  width: 560px;
  height: 380px;
  background: url('assets/images/Frame_43002.jpg') center/cover no-repeat;
}
.about-text::after {
  content: '';
  position: absolute;
  left: -42%;
  bottom: -20%;
  width: 190px;
  height: 204px;
  background: url('assets/images/Frame_43001.jpg') center/cover no-repeat;
}

.location {
  position: relative;
  overflow: visible;
  background: var(--black);
}
.rings-character {
  position: absolute;
  top: -15%;
  left: 0;
  z-index: 5;
  will-change: transform;
}
.location-image-wrap {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}
.location-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.location-label {
  position: absolute;
  top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  z-index: 3;
  font-family: var(--font-display);
  font-size: clamp(14px, 2.5vw, 40px);
  text-transform: uppercase;
  letter-spacing: 5.5px;
  color: var(--white);
  text-align: center;
  white-space: nowrap;
  padding: 26px 0;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(6px) saturate(1.2);
  -webkit-backdrop-filter: blur(6px) saturate(1.2);
}

.footer {
  background: var(--black);
  padding: 200px 3rem 140px;
  position: relative;
  overflow: hidden;
}
.footer-row {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
}
.footer-info {
  flex: 1;
}
.footer-info h4 {
  font-family: var(--font-display);
  font-size: 29px;
  text-transform: capitalize;
  margin-bottom: 28px;
  font-weight: 500;
}
.footer-info p {
  font-family: var(--font-display);
  font-size: 29px;
  color: var(--white);
  line-height: 1.65;
}
.footer-info .phone {
  font-size: 29px;
  font-weight: 500;
  margin-bottom: 80px;
  display: block;
  color: var(--white);
}
.footer-social-desktop {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
}
.footer-social-desktop a {
  font-size: 28px;
  text-transform: capitalize;
  letter-spacing: 0.02em;
  font-weight: 400;
  font-family: var(--font-display);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-social-mob {
  display: none;
}
.footer-logo-col {
  flex: 1.4;
  text-align: center;
  position: relative;
}
.footer-logo-wrap {
  position: relative;
  display: inline-block;
}
.footer-logo-img {
  width: 100%;
}
.footer-character-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  z-index: 2;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.4));
}
.footer-address {
  flex: 1;
  text-align: left;
}
.footer-address .label,
.light-font {
  font-family: var(--font-display);
  font-size: 29px;
  font-weight: 100;
}
.footer-address .label {
  margin-bottom: 28px;
}
.footer-address .addr {
  font-family: var(--font-display);
  font-size: 29px;
  font-weight: 500;
  line-height: 1.4;
}
.footer-tiger {
  position: absolute;
  bottom: -10px;
  right: 20px;
  width: clamp(80px, 8vw, 130px);
  z-index: 3;
  opacity: 0.9;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5));
}

.anim-line {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  position: relative; overflow: hidden;
}
.anim-line::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  0% { left: -50%; }
  100% { left: 100%; }
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

.img-reveal {
  position: relative;
  overflow: hidden;
}
.img-reveal::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--black);
  z-index: 2;
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1) 0.2s;
}
.img-reveal.visible::after {
  transform: scaleX(0);
}

@media (max-width: 768px) {
  .footer-logo-wrap {
  max-width: 240px;
}
  .header { padding: 22px 42px }
  .header-logo-text { font-size: 0.55rem; }
  .nav-link { font-size: 0.7rem; letter-spacing: 0.1em; }

  .hero { min-height: 100svh; }
  .hero-character {
    top: 52%;
    left: 30%;
  }
  @keyframes heroCharIn {
    from { opacity: 0; transform: translateX(-30%) translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateX(-30%) translateY(0) scale(1); }
  }
  .hero-content { margin-right: -48%;
    margin-top: 47%; }

  .hero-bg-image { display: none; }
  .hero-bg {
    background: url('assets/images/bg_mob.png') center no-repeat;
    background-size: 100% 100%;
  }

  .eye1 { width: 52px; }
  .eye2 { width: 60px; top: 26%;}
  .eye3 { width: 40px; top: 20%; }
  .eye4 { width: 60px; }
  .eye5 { width: 50px; }
  .eye6 {
    width: 74px;
    bottom: 11%;
  }

  .cocktail-strip {
    position: relative;
    padding: 0;
    height: 180px;
  }
  .cocktail-img-wrap {
    position: absolute;
  }
  .cocktail-1 {
    left: 0;
    top: -20px;
    width: 176px;
  }
  .cocktail-2 {
    right: 19%;
    top: 12px;
    width: 85px;
  }
  .cocktail-3 {
    right: 0;
    top: 65%;
    margin-top: 0;
    width: 88px;
  }

  .about { padding: 3rem 1.5rem; }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 300px;
  }
  .about-text::before {
    right: -60px;
    top: auto;
    bottom: -240px;
    width: 310px;
    height: 298px;
    background: url('assets/images/mbbg.jpg') center / cover no-repeat;
  }
  .about-text::after {
    left: 14%;
    bottom: -50%;
    width: 100px;
    height: 120px;
  }

  .rings-character {
    width: 120px;
    top: -9%;
  }
  .location-image-wrap { height: 50vh; }
  .location-label {
    letter-spacing: 0.12em;
    font-size: 14px;
    padding: 11px 0;
    line-height: 100%;
  }
  .about-text p {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .footer {
        padding: 70px 20px 120px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .footer-row {
    display: contents;
  }
  .footer-info {
    order: 1;
    text-align: center;
    margin-bottom: 68px;
  }
  .footer-info h4,
  .footer-info p,
  .footer-info .phone { font-size: 14px; }
  .footer-info h4 { font-size: 14px;margin-bottom: 4px; }
  .footer-info .phone { margin-bottom: 14px; }
  .footer-logo-col {
    order: 2;
    margin-bottom: 68px;
    position: relative;
  }
  .header-logo {
    max-height: 64px;
  }
  .footer-social-desktop {
    display: none;
  }
  .footer-social-mob {
    display: flex;
    justify-content: space-between;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
  }
  .footer-social-mob a {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-display);
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  .footer-address {
    order: 4;
    text-align: center;
  }
  .footer-address .label,
  .footer-address .addr { font-size: 15px;margin-bottom: 4px; }
  .footer-tiger {
    order: 5;
    width: 50px;
    bottom: 0;
    right: 0;
  }
  .location-image-wrap img {
    max-height: 370px;
  }

  .cursor, .cursor-dot { display: none !important; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.8rem, 14vw, 4.5rem); }
  .about-title { margin-bottom: 20px; font-size: 32px;}
}
