:root {
  --bg: #050505;
  --bg-soft: #0d0d0d;
  --gold: #d3a14a;
  --gold-strong: #f0c77c;
  --text: #f7f2e8;
  --muted: #c8bcaa;
  --line: rgba(211, 161, 74, 0.35);
  --glass: rgba(10, 10, 10, 0.72);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 20% 10%, #1a1306 0%, var(--bg) 42%),
    linear-gradient(120deg, #030303 0%, #0b0b0b 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
  cursor: url("assets/cursor-lawin.svg") 6 6, url("assets/cursor-lawin.png") 8 8, auto;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 30%, #17120a 0%, #050505 60%);
  transition: opacity 0.8s ease, visibility 0.8s ease;
  overflow: hidden;
}

.intro-logo {
  width: min(560px, 88vw);
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
  animation: introPulse 2.8s ease-in-out infinite;
}

.intro.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro::after {
  content: "";
  position: absolute;
  inset: -10%;
  background: repeating-linear-gradient(
    110deg,
    transparent 0 11px,
    rgba(240, 199, 124, 0.06) 11px 13px,
    transparent 13px 27px
  );
  opacity: 0;
  transform: scale(1.1);
  pointer-events: none;
}

.intro.is-exiting::after {
  animation: fractureLines 0.95s ease forwards;
}

.intro.is-exiting .intro-logo {
  animation: shatterOut 0.95s cubic-bezier(0.2, 0.72, 0.3, 1) forwards;
}

@keyframes introPulse {
  0%,
  100% {
    transform: scale(1);
    filter: saturate(1);
  }
  50% {
    transform: scale(1.015);
    filter: saturate(1.08);
  }
}

@keyframes shatterOut {
  0% {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1) contrast(1);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  35% {
    transform: scale(1.02) rotate(-0.35deg);
    filter: brightness(1.15) contrast(1.1);
  }
  65% {
    transform: scale(1.04) rotate(0.35deg) translateY(-6px);
    clip-path: polygon(0% 0%, 100% 0%, 92% 72%, 66% 100%, 0% 94%);
    filter: brightness(1.25) contrast(1.15);
  }
  100% {
    opacity: 0;
    transform: scale(1.12) rotate(-1deg) translateY(-16px);
    clip-path: polygon(8% 0%, 92% 0%, 100% 28%, 82% 68%, 62% 100%, 0% 74%);
    filter: brightness(1.5) contrast(1.25) blur(1px);
  }
}

@keyframes fractureLines {
  0% {
    opacity: 0;
    transform: scale(1.1) translateX(0);
  }
  40% {
    opacity: 0.55;
  }
  100% {
    opacity: 0;
    transform: scale(1.25) translateX(30px);
  }
}

.bg-orb {
  position: fixed;
  width: 40vw;
  height: 40vw;
  filter: blur(80px);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.12;
}

.bg-orb-1 {
  background: #ffbf5a;
  top: -8vw;
  right: -8vw;
}

.bg-orb-2 {
  background: #8b5d1c;
  left: -12vw;
  bottom: 8vh;
}

.hero {
  position: relative;
  min-height: 68vh;
  padding: 2.2rem clamp(1rem, 2vw, 2rem) 3rem;
  border-bottom: 1px solid var(--line);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.45) 45%,
      rgba(0, 0, 0, 0.75) 100%
    ),
    radial-gradient(circle at 20% 40%, rgba(185, 122, 28, 0.24), transparent 40%);
}

.home-label-wrap {
  position: absolute;
  top: clamp(14px, 2.2vw, 26px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.top-links {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.home-label {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(240, 199, 124, 0.5);
  border-radius: 999px;
  color: var(--gold-strong);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  font-family: "Cinzel", serif;
  font-weight: 600;
  letter-spacing: 0.14em;
  font-size: clamp(0.72rem, 1vw, 0.92rem);
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.home-label:hover {
  background: rgba(0, 0, 0, 0.72);
  transform: translateY(-1px);
}

.home-label.is-active {
  background: rgba(211, 161, 74, 0.2);
}

.hero-content,
main {
  width: min(1200px, 92vw);
  margin: 4rem auto;
}

.panel,
.features,
.footer {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.85), rgba(6, 6, 6, 0.95));
}

.statement {
  padding: clamp(1.4rem, 4vw, 3.2rem);
  text-align: center;
}

.statement h2 {
  font-family: "Great Vibes", cursive;
  color: var(--gold-strong);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  margin: 0;
  font-weight: 400;
}

.statement p {
  max-width: 760px;
  margin: 0.7rem auto 0;
  color: var(--muted);
  line-height: 1.9;
}

.gallery {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.gallery article {
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 220px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.gallery article:hover img {
  transform: scale(1.05);
}

.features {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature {
  padding: 1.4rem;
  border-right: 1px solid var(--line);
}

.feature:last-child {
  border-right: 0;
}

.feature h3 {
  margin: 0;
  color: var(--gold-strong);
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
}

.feature p {
  margin: 0.7rem 0 0;
  line-height: 1.8;
  color: var(--muted);
}

.footer {
  width: min(1200px, 92vw);
  margin: 0 auto 2rem;
  text-align: center;
  padding: 1.5rem 1rem;
}

.footer p {
  margin: 0.2rem 0;
}

.footer .script {
  font-family: "Great Vibes", cursive;
  font-size: 2rem;
  color: var(--gold-strong);
}

.footer .mini {
  color: #ab9f8f;
  font-size: 0.9rem;
}

.corner-video {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: min(150px, 24vw);
  aspect-ratio: 9 / 16;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  z-index: 40;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}

.corner-video-close {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 2;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(240, 199, 124, 0.55);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: var(--gold-strong);
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}

.corner-video-close:hover {
  background: rgba(0, 0, 0, 0.78);
}

.corner-video.is-hidden {
  display: none;
}

.corner-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ambiance-hero {
  width: min(1200px, 92vw);
  margin: 2.6rem auto 1.2rem;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(14, 11, 6, 0.8), rgba(5, 5, 5, 0.96));
  text-align: center;
  padding: 4.6rem 1rem 1.8rem;
  position: relative;
}

.ambiance-title {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 5vw, 3.9rem);
  color: var(--gold-strong);
  letter-spacing: 0.05em;
}

.ambiance-subtitle {
  margin: 0.5rem 0 0;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(0.75rem, 1.5vw, 0.95rem);
}

.ambiance-main {
  width: min(1200px, 92vw);
  margin: 1.2rem auto 3rem;
}

.ambiance-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.95rem;
}

.ambiance-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(211, 161, 74, 0.4);
  box-shadow: inset 0 0 0 1px rgba(211, 161, 74, 0.2), 0 12px 30px rgba(0, 0, 0, 0.35);
  background: #050505;
}

.ambiance-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(240, 199, 124, 0.3);
  pointer-events: none;
  z-index: 2;
}

.ambiance-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.1s ease, filter 0.6s ease;
  filter: saturate(1.02) contrast(1.05);
}

.ambiance-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.12) contrast(1.08);
}

.ambiance-card:nth-child(1),
.ambiance-card:nth-child(4) {
  grid-column: span 7;
  min-height: 390px;
}

.ambiance-card:nth-child(2),
.ambiance-card:nth-child(3) {
  grid-column: span 5;
  min-height: 390px;
}

.corner-video-transition {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.7));
}

.corner-video-transition img {
  width: 78%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.5));
  transform: scale(0.86);
}

.corner-video-transition.is-active {
  animation: cornerTransitionFade 0.9s ease forwards;
}

.corner-video-transition.is-active img {
  animation: cornerTransitionLogo 0.9s ease forwards;
}

@keyframes cornerTransitionFade {
  0% { opacity: 0; }
  35% { opacity: 0.95; }
  100% { opacity: 0; }
}

@keyframes cornerTransitionLogo {
  0% {
    opacity: 0;
    transform: scale(0.82) rotate(-1deg);
    filter: brightness(1.2);
  }
  40% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: scale(1.08) rotate(1deg);
    filter: brightness(1.45);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 901px) {
  .hero {
    min-height: auto;
    padding: 0;
    background: #000;
  }

  .hero-image {
    position: relative;
    inset: auto;
    width: min(1200px, 100%);
    height: auto;
    margin: 0 auto;
    display: block;
    object-fit: contain;
  }

  .hero-overlay {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero-content {
    margin-top: 4vh;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery article,
  .gallery article:nth-child(1),
  .gallery article:nth-child(2),
  .gallery article:nth-child(3),
  .gallery article:nth-child(4) {
    grid-column: auto;
    min-height: 210px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .feature {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature:last-child {
    border-bottom: 0;
  }

  .ambiance-grid {
    grid-template-columns: 1fr;
  }

  .ambiance-card:nth-child(1),
  .ambiance-card:nth-child(2),
  .ambiance-card:nth-child(3),
  .ambiance-card:nth-child(4) {
    grid-column: auto;
    min-height: 250px;
  }
}

@media (max-width: 600px) {
  .home-label {
    padding: 0.42rem 0.88rem;
    letter-spacing: 0.11em;
  }

  .corner-video {
    width: min(104px, 28vw);
    right: 10px;
    bottom: 10px;
  }

  .tagline {
    line-height: 1.45;
  }
}
