/* ── CSS VARIABLES ── */
    :root {
      --gold:       #C9A84C;
      --gold-light: #E8CC7A;
      --gold-pale:  #F5EDD0;
      --kk-black:   #0D0D0D;
      --charcoal:   #1A1A1A;
      --off-white:  #FAFAF7;
      --text-muted-kk: #6B6B5E;
      --border-gold: rgba(201,168,76,0.25);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Poppins', sans-serif;
      background-color: var(--off-white);
      color: var(--charcoal);
      overflow-x: hidden;
    }

    /* ── TYPOGRAPHY ── */
    .font-playfair { font-family: 'Playfair Display', serif; }
    .text-gold     { color: var(--gold) !important; }
    .text-gold-light { color: var(--gold-light) !important; }

    /* ── NAVBAR ── */
    #mainNav {
      background: rgba(13,13,13,0.88) !important;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border-gold);
      transition: padding .3s;
    }
    #mainNav.scrolled { padding-top: 8px !important; padding-bottom: 8px !important; }
    .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem; font-weight: 700;
      color: var(--gold) !important;
      letter-spacing: .08em;
    }
    .navbar-nav .nav-link {
      color: rgba(255,255,255,.72) !important;
      font-size: .75rem; letter-spacing: .13em;
      text-transform: uppercase;
      padding: 0 14px !important;
      transition: color .25s;
    }
    .navbar-nav .nav-link:hover { color: var(--gold) !important; }
    .navbar-toggler { border-color: var(--border-gold); }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201%2C168%2C76%2C1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    .btn-nav-gold {
      background: var(--gold); color: var(--kk-black) !important;
      font-size: .73rem; font-weight: 600;
      letter-spacing: .1em; text-transform: uppercase;
      padding: 9px 22px; border-radius: 0; border: none;
      text-decoration: none;
      transition: background .25s, transform .2s;
    }
    .btn-nav-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

    /* ── HERO CAROUSEL ── */
    #heroCarousel { height: 100vh; }
    #heroCarousel .carousel-inner,
    #heroCarousel .carousel-item { height: 100%; }

    .carousel-item .slide-bg {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      transform: scale(1.08);
      transition: transform 6s ease-out;
    }
    .carousel-item.active .slide-bg { transform: scale(1); }

    .slide-bg-1 { background: linear-gradient(135deg, #1a0a00 0%, #3d2000 40%, #0a0505 100%); }
    .slide-bg-2 { background: linear-gradient(135deg, #0a0a1a 0%, #1a1030 40%, #050510 100%); }
    .slide-bg-3 { background: linear-gradient(135deg, #001a0a 0%, #0a2010 40%, #000805 100%); }

    .carousel-item::before {
      content: '';
      position: absolute; inset: 0; z-index: 1;
      background:
        radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
        linear-gradient(to bottom, rgba(0,0,0,.3) 0%, transparent 40%, rgba(0,0,0,.6) 100%);
    }
    .carousel-item::after {
      content: '';
      position: absolute; inset: 0; z-index: 1;
      background-image: repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(201,168,76,.04) 60px, rgba(201,168,76,.04) 61px);
    }

    .hero-slide-body {
      position: relative; z-index: 2;
      height: 100vh;
      display: flex; align-items: center; justify-content: center;
    }

    .slide-eyebrow {
      display: inline-block;
      font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
      color: var(--gold);
      border-top: 1px solid var(--gold); border-bottom: 1px solid var(--gold);
      padding: 6px 20px; margin-bottom: 22px;
    }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 7vw, 6.2rem);
      font-weight: 900; line-height: 1.05; color: #fff;
      margin-bottom: 20px;
    }
    .hero-title em { color: var(--gold); font-style: italic; }
    .hero-desc {
      font-size: clamp(.83rem, 1.4vw, .98rem);
      color: rgba(255,255,255,.7); max-width: 520px;
      line-height: 1.85; font-weight: 300; margin-bottom: 36px;
    }

    /* Custom carousel controls */
    .carousel-control-prev,
    .carousel-control-next {
      width: 48px; height: 48px;
      bottom: 40px; top: auto;
      background: transparent;
      border: 1px solid rgba(255,255,255,.35);
      opacity: 1; transition: all .25s;
      right: 48px; left: auto;
    }
    .carousel-control-prev { right: 108px; }
    .carousel-control-prev:hover,
    .carousel-control-next:hover {
      background: var(--gold); border-color: var(--gold);
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon { width: 16px; height: 16px; }

    .carousel-indicators {
      bottom: 52px; left: 50%; right: auto;
      transform: translateX(-50%);
      margin: 0; gap: 10px;
    }
    .carousel-indicators [data-bs-target] {
      width: 6px; height: 6px;
      background: rgba(255,255,255,.4);
      border-radius: 0; border: none;
      transition: all .3s; margin: 0;
    }
    .carousel-indicators .active {
      width: 28px; background: var(--gold);
    }

    /* Scroll hint */
    .scroll-hint {
      position: absolute; bottom: 44px; left: 48px; z-index: 10;
      display: flex; flex-direction: column; align-items: center; gap: 8px;
    }
    .scroll-hint span {
      font-size: .63rem; letter-spacing: .25em; text-transform: uppercase;
      color: rgba(255,255,255,.5); writing-mode: vertical-lr;
    }
    .scroll-line {
      width: 1px; height: 48px; background: rgba(255,255,255,.3);
      position: relative; overflow: hidden;
    }
    .scroll-line::after {
      content: ''; position: absolute; top: -100%; left: 0;
      width: 100%; height: 100%; background: var(--gold);
      animation: scrollLine 1.8s infinite;
    }
    @keyframes scrollLine { 0%{top:-100%} 100%{top:100%} }

    /* ── BUTTONS ── */
    .btn-kk-gold {
      background: var(--gold); color: var(--kk-black);
      padding: 13px 34px; font-size: .76rem; font-weight: 600;
      letter-spacing: .12em; text-transform: uppercase;
      border-radius: 0; border: none; text-decoration: none;
      transition: all .25s; display: inline-block;
    }
    .btn-kk-gold:hover {
      background: var(--gold-light); color: var(--kk-black);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(201,168,76,.35);
    }
    .btn-kk-outline {
      background: transparent; color: #fff;
      padding: 13px 34px; font-size: .76rem; font-weight: 500;
      letter-spacing: .12em; text-transform: uppercase;
      border-radius: 0; border: 1px solid rgba(255,255,255,.4);
      text-decoration: none; display: inline-block;
      transition: all .25s;
    }
    .btn-kk-outline:hover { border-color: var(--gold); color: var(--gold); }

    /* ── SECTION LABELS & TITLES ── */
    .section-label {
      font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 14px;
      display: flex; align-items: center; gap: 12px;
    }
    .section-label::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
    .section-label.center { justify-content: center; }
    .section-label.center::before { display: none; }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.9rem, 3.8vw, 3.2rem);
      font-weight: 700; line-height: 1.2;
      color: var(--kk-black); margin-bottom: 28px;
    }
    .section-title em { color: var(--gold); font-style: italic; }
    .section-title-light { color: #fff; }

    /* ── BRAND VALUE ── */
    #about {
      background: #fff;
      position: relative; overflow: hidden;
    }
    #about::before {
      content: 'KK';
      position: absolute; right: -1%; top: 50%; transform: translateY(-50%);
      font-family: 'Playfair Display', serif;
      font-size: 22vw; font-weight: 900; color: rgba(201,168,76,.04);
      line-height: 1; user-select: none; pointer-events: none; z-index: 0;
    }
    .pillar-card {
      padding: 28px 24px;
      border: 1px solid var(--border-gold);
      background: var(--off-white); position: relative;
      transition: transform .3s, box-shadow .3s;
      height: 100%;
    }
    .pillar-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(201,168,76,.12); }
    .pillar-card::before {
      content: ''; position: absolute; top: 0; left: 0;
      width: 3px; height: 0; background: var(--gold);
      transition: height .4s;
    }
    .pillar-card:hover::before { height: 100%; }
    .pillar-icon { font-size: 1.6rem; margin-bottom: 12px; }
    .pillar-card h5 {
      font-family: 'Playfair Display', serif;
      font-size: 1rem; font-weight: 700;
      color: var(--kk-black); margin-bottom: 8px;
    }
    .pillar-card p { font-size: .8rem; color: var(--text-muted-kk); line-height: 1.6; margin: 0; }

    /* ── SERVICES ── */
    #services { background: var(--charcoal); }
    .service-card {
      padding: 40px 28px 36px;
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(201,168,76,.12);
      position: relative; overflow: hidden;
      height: 100%;
      transition: background .3s;
    }
    .service-card:hover { background: rgba(201,168,76,.06); }
    .service-card::after {
      content: ''; position: absolute; bottom: 0; left: 0;
      width: 100%; height: 2px; background: var(--gold);
      transform: scaleX(0); transform-origin: left;
      transition: transform .4s;
    }
    .service-card:hover::after { transform: scaleX(1); }
    .service-num {
      font-family: 'Playfair Display', serif;
      font-size: 3rem; font-weight: 900;
      color: rgba(201,168,76,.15); line-height: 1;
      margin-bottom: 16px;
    }
    .service-icon { font-size: 1.8rem; margin-bottom: 16px; }
    .service-card h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem; color: #fff; margin-bottom: 10px;
    }
    .service-card p { font-size: .8rem; color: rgba(255,255,255,.5); line-height: 1.7; margin: 0; }

    /* ── PROCESS ── */
    #process { background: var(--off-white); }
    .step-card {
      padding: 36px 28px;
      background: #fff;
      border: 1px solid rgba(0,0,0,.06);
      position: relative; height: 100%;
      transition: box-shadow .3s, transform .3s;
    }
    .step-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.08); transform: translateY(-4px); }
    .step-card::before {
      content: ''; position: absolute; top: 0; left: 0;
      width: 0; height: 3px; background: var(--gold);
      transition: width .4s;
    }
    .step-card:hover::before { width: 100%; }
    .step-num {
      font-family: 'Playfair Display', serif;
      font-size: 3.2rem; font-weight: 900;
      color: var(--gold-pale); line-height: 1;
      margin-bottom: 18px;
    }
    .step-card h5 {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem; font-weight: 700;
      color: var(--kk-black); margin-bottom: 10px;
    }
    .step-card p { font-size: .82rem; color: var(--text-muted-kk); line-height: 1.7; margin: 0; }

    /* ── INFO STRIP ── */
    #info { background: var(--kk-black); }
    .info-list { list-style: none; padding: 0; margin: 24px 0 0; }
    .info-list li {
      display: flex; gap: 14px; align-items: flex-start;
      padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.07);
      font-size: .87rem; color: rgba(255,255,255,.65); line-height: 1.6;
    }
    .info-list li::before {
      content: '◆'; color: var(--gold); font-size: .5rem;
      margin-top: 6px; flex-shrink: 0;
    }
    .info-list li strong { color: var(--gold-light); font-weight: 500; }
    .info-note {
      margin-top: 20px; padding: 16px 20px;
      border-left: 3px solid var(--gold);
      background: rgba(201,168,76,.06);
      font-size: .8rem; color: rgba(255,255,255,.55);
      line-height: 1.7; font-style: italic;
    }

    /* ── TESTIMONIAL ── */
    #testimonial {
      background: var(--gold-pale);
      position: relative; overflow: hidden;
    }
    #testimonial::before {
      content: '"';
      position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
      font-family: 'Playfair Display', serif;
      font-size: 18rem; color: rgba(201,168,76,.14); line-height: 1;
      pointer-events: none; z-index: 0;
    }
    #testimonial blockquote {
      position: relative; z-index: 1;
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.3rem, 2.8vw, 1.9rem);
      font-style: italic; color: var(--charcoal); line-height: 1.65;
    }
    #testimonial cite {
      display: block; margin-top: 28px;
      font-family: 'Poppins', sans-serif;
      font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
      color: var(--gold); font-style: normal;
    }
    #testimonial cite::before { content: '— '; }

    /* ── BOOKING ── */
    #booking { background: #fff; }
    .booking-cta-box {
      background: var(--charcoal);
      padding: 48px 40px;
      height: 100%;
      display: flex; flex-direction: column;
      justify-content: center; gap: 20px;
    }
    .booking-feature {
      display: flex; align-items: center; gap: 12px;
      padding: 13px 0; border-bottom: 1px solid var(--border-gold);
      font-size: .83rem; color: var(--charcoal);
    }
    .btn-cta-book {
      background: var(--gold); color: var(--kk-black);
      padding: 16px 32px; font-size: .8rem; font-weight: 600;
      letter-spacing: .12em; text-transform: uppercase;
      border-radius: 0; border: none; text-decoration: none;
      text-align: center; display: block;
      transition: all .25s;
    }
    .btn-cta-book:hover { background: var(--gold-light); color: var(--kk-black); transform: translateY(-2px); }

    /* ── CONTACT ── */
    #contact { background: var(--off-white); }
    .contact-card {
      display: flex; gap: 18px; align-items: flex-start;
      padding: 20px 0; border-bottom: 1px solid rgba(0,0,0,.07);
    }
    .contact-icon-box {
      width: 44px; height: 44px; background: var(--kk-black);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; flex-shrink: 0; color: var(--gold);
    }
    .contact-info small {
      display: block; font-size: .64rem; letter-spacing: .2em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 4px;
    }
    .contact-info p { font-size: .87rem; color: var(--charcoal); line-height: 1.7; margin: 0; }
    .contact-info a { color: var(--charcoal); text-decoration: none; transition: color .2s; }
    .contact-info a:hover { color: var(--gold); }
    .map-wrap {
      height: 400px; position: relative;
      border: 1px solid var(--border-gold); overflow: hidden;
    }
    .map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.3) contrast(1.1); }
    .map-badge {
      position: absolute; top: 16px; left: 16px; z-index: 5;
      background: var(--kk-black); color: #fff;
      padding: 10px 18px; font-size: .72rem;
      letter-spacing: .1em; text-transform: uppercase;
      pointer-events: none;
    }
    .map-badge span { color: var(--gold); }

    /* ── FOOTER ── */
    #mainFooter {
      background: var(--kk-black);
      border-top: 1px solid rgba(201,168,76,.2);
    }
    .footer-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem; color: var(--gold); font-weight: 700;
    }
    .footer-tagline { font-size: .72rem; color: rgba(255,255,255,.35); letter-spacing: .1em; }
    .footer-links a {
      font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
      color: rgba(255,255,255,.4); text-decoration: none;
      transition: color .2s; margin: 0 12px;
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-copy { font-size: .7rem; color: rgba(255,255,255,.2); }

    /* ── FLOATING WHATSAPP ── */
    .float-whatsapp {
      position: fixed; bottom: 28px; right: 28px; z-index: 9999;
      width: 56px; height: 56px; background: #25D366; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,.45);
      text-decoration: none; animation: wapulse 2.5s infinite;
      transition: transform .2s;
    }
    .float-whatsapp:hover { transform: scale(1.1); animation: none; }
    .float-whatsapp svg { width: 28px; height: 28px; fill: #fff; }
    @keyframes wapulse {
      0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
      50%      { box-shadow: 0 4px 32px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.1); }
    }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0; transform: translateY(36px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-d1 { transition-delay: .15s; }
    .reveal-d2 { transition-delay: .30s; }
    .reveal-d3 { transition-delay: .45s; }

    /* ── UTILITIES ── */
    .bg-charcoal { background-color: var(--charcoal) !important; }
    .bg-kk-black  { background-color: var(--kk-black) !important; }
    .bg-off-white { background-color: var(--off-white) !important; }
    .border-gold  { border-color: var(--border-gold) !important; }

    @media (max-width: 767.98px) {
      .carousel-control-prev,
      .carousel-control-next { bottom: 20px; right: 20px; }
      .carousel-control-prev { right: 80px; }
      .scroll-hint { display: none; }
      .booking-cta-box { padding: 32px 24px; }
    }