  :root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dark: #8B6914;
    --black: #0A0A0A;
    --dark: #111111;
    --dark2: #1A1A1A;
    --dark3: #252525;
    --cream: #F5EDD6;
    --cream2: #EDE0C4;
    --text: #D4C5A0;
    --text-muted: #8A7D65;
    --white: #FFFFFF;
    --radius: 2px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --concierge-primary: #1B4332;
    /* deep emerald — swap for your brand color */
    --concierge-accent: #C9A227;
    /* warm gold — swap for your brand accent */
  }

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

  html {
    scroll-behavior: smooth;
  }

  body {
    background: var(--black);
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: default;
  }

  /* Scrollbar */
  ::-webkit-scrollbar {
    width: 4px;
  }

  ::-webkit-scrollbar-track {
    background: var(--dark);
  }

  ::-webkit-scrollbar-thumb {
    background: var(--gold);
  }

  /* ======================== NAV ======================== */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.98), rgba(10, 10, 10, 0.85));
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transition: var(--transition);
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-decoration: none;
  }

  .nav-logo span {
    display: block;
    font-size: 0.55rem;
    letter-spacing: 0.35em;
    color: var(--gold-light);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: -4px;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding-bottom: 4px;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
  }

  .nav-links a:hover {
    color: var(--gold);
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  .nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    padding: 10px 24px !important;
    font-size: 0.65rem !important;
    letter-spacing: 0.25em !important;
    transition: var(--transition) !important;
  }

  .nav-cta:hover {
    background: var(--gold) !important;
    color: var(--black) !important;
  }

  .nav-cta::after {
    display: none !important;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
  }

  .hamburger span {
    width: 24px;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
  }

  /* ======================== PAGES ======================== */
  .page {
    display: none;
    min-height: 100vh;
    padding-top: 80px;
  }

  .page.active {
    display: block;
  }

  /* ======================== HERO ======================== */
  .hero {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 70% 30%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
      radial-gradient(ellipse at 20% 80%, rgba(139, 105, 20, 0.06) 0%, transparent 50%),
      linear-gradient(135deg, #0A0A0A 0%, #151515 50%, #0D0D0D 100%);
  }

  .hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(45deg,
        transparent,
        transparent 60px,
        rgba(201, 168, 76, 0.02) 60px,
        rgba(201, 168, 76, 0.02) 61px);
  }

  .hero-ornament {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    height: 80%;
    border: 1px solid rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-ornament-inner {
    width: 92%;
    height: 92%;
    border: 1px solid rgba(201, 168, 76, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .hero-hall-visual {
    width: 100%;
    height: 100%;
    background:
      radial-gradient(ellipse at 50% 40%, rgba(201, 168, 76, 0.12) 0%, transparent 60%),
      linear-gradient(180deg, #1A1208 0%, #0A0A0A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
  }

  .hall-chandelier {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    animation: sway 6s ease-in-out infinite;
  }

  @keyframes sway {

    0%,
    100% {
      transform: rotate(-1deg);
    }

    50% {
      transform: rotate(1deg);
    }
  }

  .chandelier-top {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
    border-radius: 2px;
  }

  .chandelier-stem {
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  }

  .chandelier-body {
    position: relative;
    width: 120px;
  }

  .chandelier-ring {
    width: 100%;
    height: 20px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.2), transparent);
    position: relative;
  }

  .chandelier-drops {
    display: flex;
    justify-content: space-around;
    padding: 0 10px;
    margin-top: 4px;
  }

  .drop {
    width: 2px;
    background: linear-gradient(180deg, var(--gold), transparent);
    position: relative;
  }

  .drop::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--gold-light);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold);
  }

  .hall-table-row {
    display: flex;
    gap: 12px;
    align-items: flex-end;
  }

  .hall-table {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .table-top {
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  }

  .table-legs {
    display: flex;
    gap: 20px;
    height: 24px;
  }

  .table-leg {
    width: 2px;
    background: linear-gradient(180deg, var(--gold-dark), rgba(139, 105, 20, 0.3));
    border-radius: 1px;
  }

  .hall-chairs {
    display: flex;
    gap: 3px;
  }

  .chair {
    width: 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
  }

  .chair-back {
    height: 12px;
    width: 100%;
    background: rgba(201, 168, 76, 0.4);
    border-radius: 2px 2px 0 0;
    border: 1px solid rgba(201, 168, 76, 0.6);
  }

  .chair-seat {
    height: 6px;
    width: 100%;
    background: rgba(201, 168, 76, 0.3);
    border-radius: 1px;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5%;
    max-width: 600px;
    animation: heroIn 1.2s ease forwards;
  }

  @keyframes heroIn {
    from {
      opacity: 0;
      transform: translateY(40px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
  }

  .hero-badge::before,
  .hero-badge::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 12px;
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
  }

  .hero-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
  }

  .hero-divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
  }

  .hero-divider-diamond {
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
  }

  .hero-text {
    font-size: 0.82rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 440px;
  }

  .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--black);
    padding: 16px 40px;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  }

  .btn-primary:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(201, 168, 76, 0.35);
  }

  .btn-secondary {
    background: transparent;
    color: var(--gold);
    padding: 15px 36px;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid rgba(201, 168, 76, 0.5);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
  }

  .btn-secondary:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.06);
    transform: translateY(-2px);
  }

  .hero-stats {
    position: absolute;
    bottom: 40px;
    left: 5%;
    display: flex;
    gap: 50px;
    animation: heroIn 1.4s ease 0.3s both;
  }

  .stat {
    text-align: center;
  }

  .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
  }

  .stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
  }

  /* ======================== FEATURES ======================== */
  .features-section {
    padding: 100px 5%;
    background: var(--dark2);
    position: relative;
  }

  .features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .section-header {
    text-align: center;
    margin-bottom: 70px;
  }

  .section-subtitle {
    font-size: 0.6rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .section-subtitle::before,
  .section-subtitle::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
  }

  .section-title em {
    color: var(--gold);
    font-style: italic;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }

  .feature-card {
    background: var(--dark3);
    padding: 50px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
  }

  .feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: var(--transition);
  }

  .feature-card:hover::before {
    transform: scaleX(1);
  }

  .feature-card:hover {
    background: #1E1E1E;
    transform: translateY(-4px);
  }

  .feature-icon {
    width: 70px;
    height: 70px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.6rem;
    color: var(--gold);
    transition: var(--transition);
    position: relative;
  }

  .feature-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 50%;
    transition: var(--transition);
  }

  .feature-card:hover .feature-icon {
    background: rgba(201, 168, 76, 0.08);
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.2);
  }

  .feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
  }

  .feature-text {
    font-size: 0.78rem;
    line-height: 1.8;
    color: var(--text-muted);
  }

  /* ======================== ABOUT ======================== */
  .about-hero {
    padding: 120px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-visual {
    position: relative;
    height: 550px;
  }

  .about-img-main {
    width: 78%;
    height: 80%;
    background: linear-gradient(135deg, #1A1208, #252010);
    position: absolute;
    bottom: 0;
    right: 0;
    border: 1px solid rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .about-img-secondary {
    width: 55%;
    height: 55%;
    background: linear-gradient(135deg, #0F0E08, #1A1700);
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid rgba(201, 168, 76, 0.1);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-img-label {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
  }

  .about-badge {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 110px;
    height: 110px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    animation: spin-slow 20s linear infinite;
  }

  @keyframes spin-slow {
    from {
      transform: translateY(-50%) rotate(0deg);
    }

    to {
      transform: translateY(-50%) rotate(360deg);
    }
  }

  .about-badge-inner {
    font-family: 'Cormorant Garamond', serif;
    text-align: center;
    animation: spin-reverse 20s linear infinite;
  }

  @keyframes spin-reverse {
    from {
      transform: rotate(0deg);
    }

    to {
      transform: rotate(-360deg);
    }
  }

  .about-badge-num {
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
  }

  .about-badge-text {
    font-size: 0.45rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
  }

  .hall-visual-art {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px;
  }

  .arch-decoration {
    display: flex;
    gap: 8px;
    align-items: flex-end;
  }

  .arch-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .arch-top {
    border-radius: 50% 50% 0 0;
    border: 1px solid rgba(201, 168, 76, 0.5);
    border-bottom: none;
  }

  .arch-body {
    border-left: 1px solid rgba(201, 168, 76, 0.5);
    border-right: 1px solid rgba(201, 168, 76, 0.5);
  }

  .floor-line {
    width: 120%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
  }

  .about-content {}

  .about-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 32px;
    font-style: italic;
  }

  .about-quote em {
    color: var(--gold);
  }

  .about-text {
    font-size: 0.82rem;
    line-height: 2;
    color: var(--text-muted);
    margin-bottom: 20px;
  }

  .about-values {
    display: flex;
    gap: 30px;
    margin-top: 40px;
  }

  .value-item {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .value-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border: 1px solid rgba(201, 168, 76, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.85rem;
  }

  .value-text {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--text);
    text-transform: uppercase;
  }

  .philosophy-section {
    padding: 80px 5%;
    background: var(--dark2);
    text-align: center;
    position: relative;
  }

  .philosophy-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .philosophy-text::before {
    content: '"';
    font-size: 6rem;
    color: rgba(201, 168, 76, 0.1);
    line-height: 0;
    vertical-align: -3rem;
    margin-right: 10px;
    font-family: 'Cormorant Garamond', serif;
  }

  /* ======================== ROOMS ======================== */
  .rooms-grid {
    padding: 100px 5%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .room-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    group: true;
  }

  .room-visual {
    height: 320px;
    position: relative;
    overflow: hidden;
  }

  .room-img {
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .room-card:hover .room-img {
    transform: scale(1.05);
  }

  .room-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.95) 100%);
  }

  .room-content {
    background: var(--dark3);
    padding: 32px 28px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  }

  .room-type {
    font-size: 0.58rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
  }

  .room-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
  }

  .room-desc {
    font-size: 0.78rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
  }

  .room-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
  }

  .spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    color: var(--text);
  }

  .spec i {
    color: var(--gold);
    font-size: 0.75rem;
  }

  .btn-room {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px 28px;
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
  }

  .btn-room:hover {
    background: var(--gold);
    color: var(--black);
  }

  /* Room visuals using CSS art */
  .banquet-art {
    background: linear-gradient(160deg, #1A1208 0%, #0D0B05 100%);
    position: relative;
  }

  .party-art {
    background: linear-gradient(160deg, #0A0A18 0%, #050510 100%);
    position: relative;
  }

  .conference-art {
    background: linear-gradient(160deg, #0A0F0A 0%, #050805 100%);
    position: relative;
  }

  /* Banquet Hall CSS art */
  .banquet-scene {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 20px;
  }

  .long-table {
    width: 85%;
    height: 8px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
  }

  .chairs-row {
    display: flex;
    gap: 6px;
    width: 80%;
    justify-content: center;
  }

  .mini-chair {
    width: 14px;
    height: 18px;
    background: rgba(201, 168, 76, 0.25);
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 2px;
  }

  .overhead-lights {
    display: flex;
    gap: 30px;
    margin-bottom: 5px;
  }

  .o-light {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 220, 100, 0.6), rgba(201, 168, 76, 0.1));
    box-shadow: 0 0 20px rgba(255, 220, 100, 0.4), 0 0 40px rgba(201, 168, 76, 0.2);
  }

  /* Party room css art */
  .party-scene {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 100%;
  }

  .disco-ball {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: conic-gradient(rgba(201, 168, 76, 0.8) 0deg, rgba(100, 80, 20, 0.4) 30deg,
        rgba(201, 168, 76, 0.8) 60deg, rgba(100, 80, 20, 0.4) 90deg,
        rgba(201, 168, 76, 0.8) 120deg, rgba(100, 80, 20, 0.4) 150deg,
        rgba(201, 168, 76, 0.8) 180deg, rgba(100, 80, 20, 0.4) 210deg,
        rgba(201, 168, 76, 0.8) 240deg, rgba(100, 80, 20, 0.4) 270deg,
        rgba(201, 168, 76, 0.8) 300deg, rgba(100, 80, 20, 0.4) 330deg,
        rgba(201, 168, 76, 0.8) 360deg);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.5);
    animation: disco 4s linear infinite;
  }

  @keyframes disco {
    from {
      transform: rotate(0deg);
    }

    to {
      transform: rotate(360deg);
    }
  }

  .party-lights {
    display: flex;
    gap: 15px;
  }

  .party-light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
  }

  .party-light:nth-child(1) {
    background: rgba(255, 50, 50, 0.7);
    box-shadow: 0 0 15px rgba(255, 50, 50, 0.5);
  }

  .party-light:nth-child(2) {
    background: rgba(50, 255, 150, 0.7);
    box-shadow: 0 0 15px rgba(50, 255, 150, 0.5);
  }

  .party-light:nth-child(3) {
    background: rgba(50, 150, 255, 0.7);
    box-shadow: 0 0 15px rgba(50, 150, 255, 0.5);
  }

  .party-light:nth-child(4) {
    background: rgba(201, 168, 76, 0.9);
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.6);
  }

  .party-light:nth-child(5) {
    background: rgba(200, 50, 255, 0.7);
    box-shadow: 0 0 15px rgba(200, 50, 255, 0.5);
  }

  /* Conference css art */
  .conference-scene {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 20px;
  }

  .conf-screen {
    width: 80%;
    height: 35px;
    background: linear-gradient(180deg, #1A2A1A 0%, #0D1A0D 100%);
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 10px;
  }

  .conf-screen::before {
    content: '';
    position: absolute;
    inset: 4px;
    background: linear-gradient(135deg, rgba(50, 200, 50, 0.05), rgba(201, 168, 76, 0.08));
    border: 1px solid rgba(201, 168, 76, 0.1);
  }

  .conf-table {
    width: 70%;
    height: 10px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    border-radius: 4px;
  }

  .conf-chairs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    width: 65%;
  }

  .conf-chair {
    height: 20px;
    background: rgba(201, 168, 76, 0.2);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 1px;
  }

  /* ======================== EVENTS ======================== */
  .events-section {
    padding: 100px 5%;
  }

  .events-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .event-card {
    background: var(--dark2);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(201, 168, 76, 0.05);
  }

  .event-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--gold), transparent);
    transition: var(--transition);
  }

  .event-card:hover::after {
    height: 100%;
  }

  .event-card:hover {
    background: #1C1C1C;
    transform: translateX(4px);
  }

  .event-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: rgba(201, 168, 76, 0.08);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
  }

  .event-icon {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 20px;
  }

  .event-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
  }

  .event-desc {
    font-size: 0.8rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 24px;
  }

  .event-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .event-tag {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 5px 14px;
    border: 1px solid rgba(201, 168, 76, 0.25);
  }

  .services-strip {
    background: var(--dark2);
    padding: 60px 5%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  }

  .service-item {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .service-icon {
    font-size: 1.4rem;
    color: var(--gold);
    flex-shrink: 0;
  }

  .service-label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
  }

  .service-sublabel {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 2px;
  }

  /* ======================== TESTIMONIALS ======================== */
  .testimonials-section {
    padding: 100px 5%;
    background: var(--dark2);
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
  }

  .testimonial-card {
    background: var(--dark3);
    padding: 44px 36px;
    position: relative;
  }

  .testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: rgba(201, 168, 76, 0.08);
    line-height: 1;
  }

  .stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
  }

  .stars i {
    color: var(--gold);
    font-size: 0.75rem;
  }

  .testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--cream);
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
  }

  .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
  }

  .author-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.05em;
  }

  .author-event {
    font-size: 0.65rem;
    color: var(--gold);
    margin-top: 2px;
  }

  /* ======================== PROMOTIONS ======================== */
  .promotions-section {
    padding: 100px 5%;
  }

  .promos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
  }

  .promo-card {
    background: var(--dark2);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
  }

  .promo-card.featured {
    background: linear-gradient(160deg, #1A1208, #0F0D06);
    border: 1px solid rgba(201, 168, 76, 0.25);
  }

  .promo-header {
    padding: 36px 36px 0;
    position: relative;
  }

  .promo-badge {
    display: inline-block;
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    padding: 5px 14px;
    margin-bottom: 16px;
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.2);
  }

  .promo-card.featured .promo-badge {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
  }

  .promo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
  }

  .promo-price {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    margin-bottom: 20px;
  }

  .promo-price .amount {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
  }

  .promo-price .period {
    font-size: 0.8rem;
    color: var(--text-muted);
  }

  .promo-body {
    padding: 24px 36px 36px;
  }

  .promo-features {
    list-style: none;
    margin-bottom: 32px;
  }

  .promo-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.78rem;
    color: var(--text);
    padding: 10px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.06);
  }

  .promo-features li i {
    color: var(--gold);
    font-size: 0.7rem;
  }

  .promo-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
    margin-bottom: 20px;
  }

  .btn-promo {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px;
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold);
    text-decoration: none;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
  }

  .promo-card.featured .btn-promo {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--black);
    border: none;
    font-weight: 600;
  }

  .btn-promo:hover {
    background: var(--gold);
    color: var(--black);
  }

  /* ======================== CONTACT ======================== */
  .contact-section {
    padding: 100px 5%;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    margin-top: 60px;
  }

  .contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 36px;
  }

  .contact-icon-wrap {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
  }

  .contact-info-label {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }

  .contact-info-text {
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.7;
  }

  .contact-info-text a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
  }

  .contact-info-text a:hover {
    color: var(--gold);
  }

  .map-embed {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #0D1408, #0A1010);
    border: 1px solid rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .map-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(201, 168, 76, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201, 168, 76, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
  }

  .map-pin {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s ease-in-out infinite;
  }

  @keyframes bounce {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-8px);
    }
  }

  .map-pin i {
    font-size: 2rem;
    color: var(--gold);
    filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.5));
  }

  .map-pin span {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-top: 4px;
    text-transform: uppercase;
  }

  .map-directions {
    position: absolute;
    bottom: 12px;
    right: 12px;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    transition: var(--transition);
  }

  .map-directions:hover {
    background: rgba(201, 168, 76, 0.1);
  }

  .newsletter-form {
    background: var(--dark2);
    padding: 40px;
    border: 1px solid rgba(201, 168, 76, 0.1);
  }

  .newsletter-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
  }

  .newsletter-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.7;
  }

  .form-group {
    margin-bottom: 16px;
  }

  .form-group label {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--dark3);
    border: 1px solid rgba(201, 168, 76, 0.15);
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    transition: border-color 0.3s;
    outline: none;
    resize: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: rgba(201, 168, 76, 0.5);
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: var(--text-muted);
  }

  .checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 16px 0 24px;
  }

  .checkbox-wrap input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: var(--gold);
    margin-top: 2px;
  }

  .checkbox-wrap label {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.5;
    cursor: pointer;
  }

  .checkbox-wrap a {
    color: var(--gold);
    text-decoration: none;
  }

  /* ======================== FOOTER ======================== */
  footer {
    background: var(--dark2);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    padding: 60px 5% 30px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
  }

  .footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.08em;
    margin-bottom: 4px;
  }

  .footer-brand-sub {
    font-size: 0.55rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
  }

  .footer-about {
    font-size: 0.78rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 24px;
  }

  .social-links {
    display: flex;
    gap: 10px;
  }

  .social-link {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.8rem;
    text-decoration: none;
    transition: var(--transition);
  }

  .social-link:hover {
    background: var(--gold);
    color: var(--black);
  }

  .footer-heading {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  }

  .footer-links {
    list-style: none;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-links a {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .footer-links a::before {
    content: '';
    width: 12px;
    height: 1px;
    background: var(--gold);
    opacity: 0;
    transition: var(--transition);
  }

  .footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
  }

  .footer-links a:hover::before {
    opacity: 1;
  }

  .payment-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 24px;
  }

  .payment-icon {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
  }

  .footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-copy {
    font-size: 0.68rem;
    color: var(--text-muted);
  }

  .footer-legal {
    display: flex;
    gap: 20px;
  }

  .footer-legal a {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-legal a:hover {
    color: var(--gold);
  }

  /* ======================== FLOATING ELEMENTS ======================== */
  .chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--black);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
    transition: var(--transition);
    text-decoration: none;
    animation: pulse 3s ease-in-out infinite;
  }

  @keyframes pulse {

    0%,
    100% {
      box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
    }

    50% {
      box-shadow: 0 8px 50px rgba(201, 168, 76, 0.7);
    }
  }

  .chat-btn:hover {
    transform: scale(1.1);
  }

  .chat-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark2);
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 8px 16px;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }

  .chat-btn:hover .chat-tooltip {
    opacity: 1;
  }

  /* Cookie Banner */
  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: var(--dark2);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    padding: 20px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    transform: translateY(0);
    transition: var(--transition);
  }

  .cookie-banner.hidden {
    transform: translateY(110%);
  }

  .cookie-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.6;
  }

  .cookie-text a {
    color: var(--gold);
    text-decoration: none;
  }

  .cookie-actions {
    display: flex;
    gap: 12px;
  }

  .btn-cookie {
    padding: 10px 24px;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
  }

  .btn-accept {
    background: var(--gold);
    color: var(--black);
    font-weight: 600;
  }

  .btn-decline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
  }

  .btn-decline:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  /* Page transitions */
  .page-enter {
    animation: pageEnter 0.5s ease forwards;
  }

  @keyframes pageEnter {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Gold ornament divider */
  .ornament-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 60px auto;
    max-width: 300px;
    justify-content: center;
  }

  .ornament-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4));
  }

  .ornament-line.right {
    background: linear-gradient(90deg, rgba(201, 168, 76, 0.4), transparent);
  }

  .ornament-diamond {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
  }

  .ornament-sm {
    width: 4px;
    height: 4px;
    background: rgba(201, 168, 76, 0.5);
    transform: rotate(45deg);
  }

  /* ======================== MOBILE ======================== */
  .mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    padding: 30px 5%;
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }

  .mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .mobile-menu a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    color: var(--text);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color 0.3s;
  }

  .mobile-menu a:hover {
    color: var(--gold);
  }

  @media (max-width: 1024px) {
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }

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

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

  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }

    .hamburger {
      display: flex;
    }

    .hero {
      min-height: 90vh;
    }

    .hero-ornament {
      display: none;
    }

    .hero-stats {
      gap: 30px;
    }

    .about-hero {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .about-visual {
      height: 300px;
    }

    .about-badge {
      right: 10px;
    }

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

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

    .events-list {
      grid-template-columns: 1fr;
    }

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

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

    .contact-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .services-strip {
      grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
  }

  .carousel-section {
    padding: 100px 5%;
    background: var(--dark2);
  }

  .carousel-wrap {
    position: relative;
    max-width: 1100px;
    margin: 60px auto 0;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.15);
  }

  .carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .carousel-slide {
    min-width: 100%;
    height: 560px;
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(6px);
    z-index: 2;
  }

  .carousel-arrow:hover {
    background: var(--gold);
    color: var(--black);
  }

  .carousel-arrow-left {
    left: 20px;
  }

  .carousel-arrow-right {
    right: 20px;
  }

  .carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(201, 168, 76, 0.5);
    cursor: pointer;
    transition: var(--transition);
  }

  .carousel-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
  }

  @media (max-width: 768px) {
    .carousel-slide {
      height: 320px;
    }

    .carousel-arrow {
      width: 38px;
      height: 38px;
      font-size: 0.85rem;
    }
  }

  .concierge-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

  .concierge-whatsapp__ripple {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid var(--concierge-primary);
    opacity: 0;
    animation: concierge-pulse 3.2s ease-out infinite;
  }

  @keyframes concierge-pulse {
    0% {
      transform: scale(1);
      opacity: 0.35;
    }

    70% {
      transform: scale(1.55);
      opacity: 0;
    }

    100% {
      transform: scale(1.55);
      opacity: 0;
    }
  }

  .concierge-whatsapp__button {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--concierge-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  }

  .concierge-whatsapp__button:hover {
    transform: translateY(-2px);
    background: #143525;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
  }

  .concierge-whatsapp__button:hover~.concierge-whatsapp__label,
  .concierge-whatsapp:hover .concierge-whatsapp__label {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }

  .concierge-whatsapp__icon {
    width: 26px;
    height: 26px;
    fill: #F5F0E6;
    /* cream icon color, softer than pure white */
  }

  .concierge-whatsapp__label {
    position: absolute;
    right: 68px;
    white-space: nowrap;
    background: #FAF7F2;
    color: #1B4332;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    letter-spacing: 0.02em;
    padding: 8px 16px;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
  }

  .concierge-whatsapp__label::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -6px;
    width: 10px;
    height: 10px;
    background: #FAF7F2;
    transform: translateY(-50%) rotate(45deg);
  }

  @media (prefers-reduced-motion: reduce) {
    .concierge-whatsapp__ripple {
      animation: none;
    }

    .concierge-whatsapp__button {
      transition: none;
    }
  }

  @media (max-width: 480px) {
    .concierge-whatsapp {
      right: 16px;
      bottom: 16px;
    }

    .concierge-whatsapp__label {
      display: none;
    }

    /* label crowds small screens */
  }