    html {
      scroll-behavior: smooth;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      box-sizing: border-box;
      background: #0f0d0b;
      font-family: 'Jost', sans-serif;
      color: #e8ddd0;
      overflow-x: hidden;
    }

    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.9s ease, transform 0.9s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .fade-in-delay-1 { transition-delay: 0.15s; }
    .fade-in-delay-2 { transition-delay: 0.3s; }
    .fade-in-delay-3 { transition-delay: 0.45s; }

    .hero-bg {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #1a1612 0%, #2a2218 30%, #1a1612 60%, #0f0d0b 100%);
    }

    .hero-video-wrap {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }

    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-video-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to bottom, rgba(10, 9, 8, 0.42) 0%, rgba(10, 9, 8, 0.68) 100%),
        radial-gradient(ellipse 80% 50% at 20% 80%, rgba(183,142,78,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(183,142,78,0.05) 0%, transparent 60%);
    }

    .hero-texture {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255,255,255,0.008) 2px,
        rgba(255,255,255,0.008) 4px
      );
      pointer-events: none;
    }

    .candle-glow {
      position: absolute;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(183,142,78,0.08) 0%, transparent 70%);
      animation: flicker 4s ease-in-out infinite alternate;
      z-index: 2;
      pointer-events: none;
    }

    @keyframes flicker {
      0%, 100% { opacity: 0.6; transform: scale(1); }
      50% { opacity: 1; transform: scale(1.05); }
    }

    .gold-line {
      width: 60px;
      height: 1px;
      background: linear-gradient(90deg, transparent, #b78e4e, transparent);
    }

    .gold-line-long {
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(183,142,78,0.3), transparent);
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
    }

    .gallery-item .gallery-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.4);
      opacity: 0;
      transition: opacity 0.5s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .btn-reserve {
      border: 1px solid #b78e4e;
      color: #b78e4e;
      padding: 14px 40px;
      letter-spacing: 3px;
      font-size: 11px;
      text-transform: uppercase;
      background: transparent;
      cursor: pointer;
      transition: all 0.4s ease;
      font-family: 'Jost', sans-serif;
      font-weight: 400;
      text-decoration: none;
      display: inline-block;
    }

    .btn-reserve:hover {
      background: #b78e4e;
      color: #0f0d0b;
    }

    .btn-reserve-solid {
      background: #b78e4e;
      color: #0f0d0b;
      border: 1px solid #b78e4e;
    }

    .btn-reserve-solid:hover {
      background: transparent;
      color: #b78e4e;
    }

    .nav-link {
      position: relative;
      color: #a09888;
      transition: color 0.3s ease;
      text-decoration: none;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1px;
      background: #b78e4e;
      transition: width 0.3s ease;
    }

    .nav-link:hover {
      color: #e8ddd0;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .menu-item {
      border-bottom: 1px solid rgba(183,142,78,0.1);
      padding: 20px 0;
      transition: padding-left 0.3s ease;
    }

    .menu-item:hover {
      padding-left: 8px;
    }

    .form-input {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(183,142,78,0.2);
      color: #e8ddd0;
      padding: 14px 18px;
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      font-size: 14px;
      transition: border-color 0.3s ease;
      width: 100%;
      outline: none;
    }

    .form-input:focus {
      border-color: #b78e4e;
    }

    .form-input::placeholder {
      color: rgba(160,152,136,0.5);
    }

    .video-section-bg {
      background: linear-gradient(180deg, #0f0d0b 0%, #1a1612 50%, #0f0d0b 100%);
    }

    .parallax-text {
      animation: subtle-float 6s ease-in-out infinite;
    }

    @keyframes subtle-float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }

    input[type="date"]::-webkit-calendar-picker-indicator,
    input[type="time"]::-webkit-calendar-picker-indicator {
      filter: invert(0.7) sepia(0.5) hue-rotate(0deg);
      cursor: pointer;
    }

    .toast-msg {
      position: fixed;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%) translateY(20px);
      background: #b78e4e;
      color: #0f0d0b;
      padding: 14px 32px;
      font-family: 'Jost', sans-serif;
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      opacity: 0;
      transition: all 0.5s ease;
      z-index: 100;
      pointer-events: none;
      text-align: center;
    }

    .toast-msg.show {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    .mobile-menu {
      position: fixed;
      inset: 0;
      background: rgba(15,13,11,0.97);
      z-index: 90;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }

    .mobile-menu.open {
      opacity: 1;
      pointer-events: all;
    }

    .mobile-nav-link {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      color: #e8ddd0;
      text-decoration: none;
      letter-spacing: 4px;
    }

    .mobile-nav-link:hover {
      color: #b78e4e;
    }

    @media (max-width: 767px) {
      #hero {
        min-height: 100svh !important;
      }

      #heroTagline {
        letter-spacing: 2px !important;
        font-size: 13px !important;
        line-height: 1.8 !important;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
      }

      #heroHeadline {
        font-size: clamp(42px, 13vw, 72px) !important;
        line-height: 1.02 !important;
      }

      .btn-reserve {
        padding: 14px 28px;
        letter-spacing: 2px;
      }
    }
    
    
    .gallery-item img {
  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  background: linear-gradient(to top, rgba(10,9,8,0.7), rgba(10,9,8,0.2));
}

.parallax-break {
  position: relative;
  width: 100%;
  height: 58vh;
  min-height: 420px;
  max-height: 720px;
  overflow: hidden;
  background: #0f0d0b;
}

.parallax-break-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 115%;
  top: -7%;
  object-fit: cover;
  z-index: 0;
  transform: translateZ(0) scale(1.06);
  will-change: transform;
}

.parallax-break-image {
  position: absolute;
  inset: 0;
  background-image: url('img/parallax.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.06);
  will-change: transform;
  z-index: 0;
}

.parallax-break-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(15,13,11,0.70) 0%, rgba(15,13,11,0.28) 40%, rgba(15,13,11,0.72) 100%),
    radial-gradient(circle at center, rgba(183,142,78,0.08) 0%, transparent 60%);
}

.parallax-break-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

.parallax-break-inner {
  max-width: 920px;
}

.parallax-break-kicker {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #c7aa78;
  margin-bottom: 18px;
  font-weight: 400;
}

.parallax-break-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.08;
  color: #f2e7d8;
  margin-bottom: 18px;
}

.parallax-break-text {
  max-width: 680px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(232,221,208,0.82);
  font-weight: 300;
}

.parallax-break-top-line,
.parallax-break-bottom-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  z-index: 3;
  background: linear-gradient(90deg, transparent, rgba(183,142,78,0.38), transparent);
}

.parallax-break-top-line {
  top: 0;
}

.parallax-break-bottom-line {
  bottom: 0;
}

@media (max-width: 767px) {
  .parallax-break {
    height: 46vh;
    min-height: 340px;
  }

  .parallax-break-text {
    font-size: 13px;
    line-height: 1.8;
  }
}

.signature-moment-section{
  position:relative;
  padding:140px 20px;
  background:
    radial-gradient(circle at 50% 18%, rgba(183,142,78,0.10), transparent 28%),
    radial-gradient(circle at 50% 78%, rgba(183,142,78,0.08), transparent 24%),
    linear-gradient(180deg, #16120f 0%, #1a1511 100%);
  overflow:hidden;
}

.signature-moment-section::before{
  content:"";
  position:absolute;
  inset:-10%;
  background:
    radial-gradient(circle at 25% 40%, rgba(255,255,255,0.10), transparent 18%),
    radial-gradient(circle at 75% 20%, rgba(255,255,255,0.06), transparent 20%),
    radial-gradient(circle at 50% 80%, rgba(183,142,78,0.06), transparent 16%);
  filter:blur(70px);
  opacity:0.9;
  pointer-events:none;
}

.signature-moment-shell{
  position:relative;
  z-index:2;
  max-width:1180px;
  margin:0 auto;
  padding:90px 40px 80px;
  border-radius:30px;
  background:linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border:1px solid rgba(255,255,255,0.05);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.signature-moment-top{
  text-align:center;
  margin-bottom:46px;
}

.signature-moment-meta{
  margin:0;
  font-family:'Jost', sans-serif;
  font-size:11px;
  letter-spacing:3.5px;
  text-transform:uppercase;
  color:#9f9588;
  font-weight:400;
}

.signature-moment-card{
  display:flex;
  justify-content:center;
}

.signature-moment-frame{
  position:relative;
  width:min(100%, 900px);
  border-radius:24px;
  overflow:hidden;
  background:#0f0d0b;
  box-shadow:
    0 35px 90px rgba(0,0,0,0.38),
    0 10px 25px rgba(0,0,0,0.22);
}

.signature-moment-image{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:16/10;
  object-fit:cover;
  filter:saturate(0.95) contrast(1.02);
}

.signature-moment-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.02), transparent 28%),
    linear-gradient(180deg, rgba(0,0,0,0.14), rgba(0,0,0,0.28));
  pointer-events:none;
}

.signature-moment-wordmark-wrap{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
}

.signature-moment-wordmark{
  margin:0;
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(58px, 8vw, 120px);
  line-height:1;
  font-weight:400;
  letter-spacing:2px;
  color:rgba(248,241,232,0.92);
  text-shadow:0 8px 30px rgba(0,0,0,0.28);
}

.signature-moment-bottom{
  margin-top:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
}

.signature-moment-link{
  position:relative;
  font-family:'Jost', sans-serif;
  font-size:15px;
  letter-spacing:0.5px;
  color:#8f8578;
  text-decoration:none;
  transition:all 0.3s ease;
}

.signature-moment-link:hover{
  color:#d7c1a0;
}

.signature-moment-link.active{
  color:#e8ddd0;
}

.signature-moment-dot{
  color:rgba(183,142,78,0.55);
  font-size:18px;
  line-height:1;
}

@media (max-width: 991px){
  .signature-moment-section{
    padding:110px 16px;
  }

  .signature-moment-shell{
    padding:70px 22px 60px;
    border-radius:24px;
  }

  .signature-moment-top{
    margin-bottom:34px;
  }

  .signature-moment-bottom{
    margin-top:28px;
    gap:10px;
  }

  .signature-moment-link{
    font-size:14px;
  }
}

@media (max-width: 640px){
  .signature-moment-shell{
    padding:54px 16px 46px;
    border-radius:20px;
  }

  .signature-moment-meta{
    font-size:10px;
    letter-spacing:2.4px;
  }

  .signature-moment-frame{
    border-radius:18px;
  }

  .signature-moment-wordmark{
    font-size:clamp(42px, 14vw, 72px);
  }

  .signature-moment-bottom{
    gap:8px;
  }

  .signature-moment-link{
    font-size:13px;
  }

  .signature-moment-dot{
    font-size:15px;
  }
}

.soft-transition-band{
  height:160px;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(183,142,78,0.12), transparent 30%),
    linear-gradient(180deg, #1a1511 0%, #c9beb2 52%, #0f0d0b 100%);
}

.soft-transition-band::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08), transparent 28%);
  filter:blur(30px);
  opacity:0.9;
  pointer-events:none;
}

.soft-transition-band-line{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:120px;
  height:1px;
  background:rgba(183,142,78,0.45);
}


.logo_hero{
    width:auto;
    height:150px;
    display:block;
    margin:0 auto;
    opacity:0.96;
}


@media (max-width: 991px){
  .logo_hero{
    width:auto;
    height:110px;
    display:block;
    margin:0 auto;
    opacity:0.96;
}
}