:root {
      --black:   #080810;
      --dark:    #0f0f1a;
      --dark2:   #16162a;
      --dark3:   #1e1e35;
      --gold:    #f0c040;
      --gold2:   #ffd95a;
      --gold3:   #fff3c0;
      --pink:    #ff6eb4;
      --pink2:   #ff9fd0;
      --teal:    #00d4aa;
      --purple:  #a855f7;
      --white:   #ffffff;
      --off:     #f7f4ef;
      --gray:    #8888aa;
      --lgray:   #bbbbcc;
      --wa:      #25D366;
      --fun:     'Fredoka One', cursive;
      --serif:   'Playfair Display', Georgia, serif;
      --sans:    'Inter', system-ui, sans-serif;
      --r:       8px;
      --r2:      16px;
      --r3:      24px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: var(--sans);
      background: var(--black);
      color: var(--white);
      line-height: 1.65;
      overflow-x: hidden;
    }

    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--dark); }
    ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

    /* ── STARS BG ── */
    body::before {
      content: '';
      position: fixed; inset: 0; z-index: -1;
      background:
        radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,.35) 0%, transparent 100%),
        radial-gradient(1px 1px at 80% 10%, rgba(255,255,255,.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 55% 70%, rgba(255,255,255,.25) 0%, transparent 100%),
        radial-gradient(1px 1px at 10% 80%, rgba(255,255,255,.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 55%, rgba(255,255,255,.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 40% 90%, rgba(255,255,255,.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 70% 40%, rgba(255,255,255,.15) 0%, transparent 100%),
        var(--black);
      pointer-events: none;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 4vw; height: 70px;
      background: rgba(8,8,16,0);
      border-bottom: 1px solid transparent;
      transition: all .4s;
    }
    nav.solid {
      background: rgba(8,8,16,.97);
      backdrop-filter: blur(16px);
      border-bottom-color: rgba(240,192,64,.12);
    }
    .nav-logo {
      font-family: var(--fun);
      font-size: 1.2rem;
      color: var(--gold);
      text-decoration: none;
      letter-spacing: .01em;
    }
    .nav-logo span { color: var(--pink); }
    .nav-links { display: flex; gap: 1.35rem; align-items: center; }
    .nav-links a {
      font-size: .8rem; font-weight: 500;
      letter-spacing: .1em; text-transform: uppercase;
      color: var(--lgray); text-decoration: none;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-wa {
      background: var(--wa); color: #fff !important;
      padding: .45rem 1.1rem; border-radius: 2rem;
      font-weight: 600 !important; font-size: .8rem !important;
      letter-spacing: .04em !important;
      display: flex; align-items: center; gap: .4rem;
      transition: opacity .2s, transform .2s;
    }
    .nav-wa:hover { opacity: .88; transform: translateY(-1px); }
    .burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .burger span { width: 24px; height: 2px; background: var(--lgray); border-radius: 2px; transition: .3s; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex; flex-direction: column; justify-content: center;
      padding: 100px 4vw 5rem;
      position: relative; overflow: hidden;
    }
    /* Colorful blobs */
    .hero::before {
      content: '';
      position: absolute; top: -200px; right: -150px;
      width: 700px; height: 700px; border-radius: 50%;
      background: radial-gradient(circle, rgba(168,85,247,.12) 0%, transparent 65%);
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute; bottom: -200px; left: -150px;
      width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, rgba(255,110,180,.09) 0%, transparent 65%);
      pointer-events: none;
    }
    .hero-teal-blob {
      position: absolute; top: 30%; left: -100px;
      width: 400px; height: 400px; border-radius: 50%;
      background: radial-gradient(circle, rgba(0,212,170,.07) 0%, transparent 65%);
      pointer-events: none;
    }
    .hero-inner {
      max-width: 1200px; margin: 0 auto; width: 100%;
      display: grid; grid-template-columns: 1fr 360px;
      gap: 5rem; align-items: center;
      position: relative; z-index: 1;
    }
    .hero-eyebrow {
      display: flex; align-items: center; gap: .75rem;
      margin-bottom: 1.5rem;
    }
    .hero-eyebrow-line { width: 36px; height: 2px; background: var(--gold); border-radius: 2px; }
    .hero-eyebrow span {
      font-family: var(--fun);
      font-size: .9rem; color: var(--gold); letter-spacing: .04em;
    }
    /* THE H1 */
    .hero h1 {
      font-family: var(--fun);
      font-size: clamp(2.6rem, 5.5vw, 4.8rem);
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 1.5rem;
      letter-spacing: .01em;
    }
    .hero h1 .h1-gold { color: var(--gold); }
    .hero h1 .h1-pink { color: var(--pink); }
    .hero h1 .h1-teal { color: var(--teal); }
    .hero-desc {
      font-size: 1.05rem; color: var(--lgray);
      max-width: 520px; margin-bottom: 2.5rem;
      line-height: 1.8;
    }
    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

    /* floating fun icons */
    .fun-float {
      position: absolute;
      font-size: 2rem;
      opacity: .18;
      animation: floatAnim 6s ease-in-out infinite;
      pointer-events: none;
    }
    @keyframes floatAnim {
      0%,100% { transform: translateY(0) rotate(0deg); }
      50%      { transform: translateY(-18px) rotate(8deg); }
    }
    .ff1 { top: 12%; right: 30%; animation-delay: 0s; }
    .ff2 { top: 20%; right: 18%; animation-delay: 1.2s; font-size: 1.5rem; }
    .ff3 { bottom: 25%; right: 22%; animation-delay: 2.2s; }
    .ff4 { bottom: 15%; left: 15%; animation-delay: .8s; font-size: 1.4rem; }
    .ff5 { top: 40%; left: 8%; animation-delay: 3s; font-size: 1.6rem; }

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex; align-items: center; gap: .5rem;
      font-family: var(--fun); font-size: .95rem;
      letter-spacing: .03em;
      padding: .85rem 1.9rem; border-radius: 3rem;
      text-decoration: none; border: none; cursor: pointer;
      transition: all .25s; line-height: 1;
    }
    .btn-gold {
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      color: var(--black);
      box-shadow: 0 4px 20px rgba(240,192,64,.3);
    }
    .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(240,192,64,.45); }
    .btn-pink {
      background: linear-gradient(135deg, var(--pink), var(--pink2));
      color: #fff;
      box-shadow: 0 4px 20px rgba(255,110,180,.3);
    }
    .btn-pink:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,110,180,.45); }
    .btn-ghost {
      background: transparent; color: var(--white);
      border: 1.5px solid rgba(255,255,255,.2);
    }
    .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
    .btn-wa {
      background: var(--wa); color: #fff;
      box-shadow: 0 4px 20px rgba(37,211,102,.3);
    }
    .btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,.45); opacity: .9; }

    /* ── HERO VISUAL / VIDEOS ── */
    .hero-visual { display: flex; flex-direction: column; gap: 1rem; }
    .hero-videos { display: flex; gap: .75rem; }
    .hero-video {
      flex: 1 1 0; position: relative; aspect-ratio: 9 / 16;
      border-radius: var(--r2); overflow: hidden;
      border: 1.5px solid rgba(240,192,64,.25);
      box-shadow: 0 12px 34px rgba(0,0,0,.35);
      background: var(--dark2);
    }
    .hero-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
    .hero-video-caption {
      font-size: .78rem; color: var(--gray); text-align: center;
      letter-spacing: .04em;
    }

    /* ── HERO CARD ── */
    .hero-card {
      background: rgba(255,255,255,.04);
      border: 1.5px solid rgba(240,192,64,.2);
      border-radius: var(--r3);
      padding: 2rem 1.75rem;
      backdrop-filter: blur(8px);
      position: relative; overflow: hidden;
    }
    .hero-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--pink), var(--gold), var(--teal));
      border-radius: var(--r3) var(--r3) 0 0;
    }
    .hero-card-label {
      font-family: var(--fun);
      font-size: .82rem; letter-spacing: .08em;
      color: var(--gold); margin-bottom: .6rem;
    }
    .hero-price {
      font-family: var(--fun);
      font-size: 3rem; color: var(--white); line-height: 1;
      margin-bottom: .2rem;
    }
    .hero-price sub { font-family: var(--sans); font-size: .9rem; font-weight: 400; color: var(--gray); }
    .hero-card-note { font-size: .8rem; color: var(--gray); margin-bottom: 1.5rem; }
    .hero-card-features { list-style: none; margin-bottom: 1.5rem; }
    .hero-card-features li {
      display: flex; align-items: center; gap: .6rem;
      font-size: .85rem; color: var(--lgray);
      padding: .48rem 0;
      border-bottom: 1px solid rgba(255,255,255,.05);
    }
    .hero-card-features li:last-child { border-bottom: none; }
    .dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
    .dot-gold { background: var(--gold); }
    .dot-pink { background: var(--pink); }
    .dot-teal { background: var(--teal); }
    .hero-card .btn { width: 100%; justify-content: center; margin-top: .25rem; }

    /* ── STATS ── */
    .stats {
      background: var(--dark2);
      border-top: 1px solid rgba(240,192,64,.1);
      border-bottom: 1px solid rgba(240,192,64,.1);
      padding: 3rem 4vw;
    }
    .stats-inner {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(4,1fr);
    }
    .stat {
      text-align: center; padding: 1rem 2rem;
      border-right: 1px solid rgba(255,255,255,.06);
    }
    .stat:last-child { border-right: none; }
    .stat-n {
      font-family: var(--fun);
      font-size: 2.6rem; color: var(--gold); line-height: 1;
      margin-bottom: .35rem;
    }
    .stat-l { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gray); }

    /* ── SECTIONS ── */
    section { padding: 6.5rem 4vw; }
    .container { max-width: 1200px; margin: 0 auto; }
    .section-label {
      display: flex; align-items: center; gap: .75rem; margin-bottom: 1.1rem;
    }
    .section-label-line { width: 28px; height: 2px; background: var(--gold); border-radius: 2px; }
    .section-label span {
      font-family: var(--fun);
      font-size: .82rem; letter-spacing: .1em; color: var(--gold);
    }
    h2.title {
      font-family: var(--fun);
      font-size: clamp(1.9rem, 3.5vw, 3rem);
      line-height: 1.2; color: var(--white);
      margin-bottom: 1.1rem;
    }
    h2.title .t-gold { color: var(--gold); }
    h2.title .t-pink { color: var(--pink); }
    h2.title .t-teal { color: var(--teal); }
    h2.title.on-light { color: var(--black); }
    h2.title.on-light .t-gold { color: #b8860b; }
    .subtitle { font-size: 1rem; color: var(--gray); line-height: 1.8; max-width: 520px; }

    /* ── WHY ── */
    .why-section { background: var(--dark); }
    .why-layout {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: start; margin-top: 3.5rem;
    }
    .why-items { display: flex; flex-direction: column; gap: 0; }
    .why-item {
      display: flex; gap: 1.5rem;
      padding: 1.75rem 0;
      border-bottom: 1px solid rgba(255,255,255,.05);
      transition: border-color .3s;
    }
    .why-item:hover { border-bottom-color: rgba(240,192,64,.2); }
    .why-num {
      font-family: var(--fun);
      font-size: 2.2rem; color: rgba(240,192,64,.15);
      line-height: 1; flex-shrink: 0; width: 44px;
      text-align: right; transition: color .3s;
    }
    .why-item:hover .why-num { color: rgba(240,192,64,.4); }
    .why-text h3 {
      font-family: var(--fun);
      font-size: 1.1rem; color: var(--white); margin-bottom: .4rem;
    }
    .why-text p { font-size: .88rem; color: var(--gray); line-height: 1.75; }
    .why-visual {
      background: rgba(255,255,255,.03);
      border: 1.5px solid rgba(240,192,64,.15);
      border-radius: var(--r3); padding: 2.5rem;
      position: relative; overflow: hidden;
    }
    .why-visual::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--teal), var(--purple), var(--pink));
    }
    .why-big-emoji { font-size: 4rem; margin-bottom: 1.25rem; }
    .why-visual h3 {
      font-family: var(--fun);
      font-size: 1.3rem; color: var(--white); margin-bottom: .75rem;
    }
    .why-visual p { font-size: .88rem; color: var(--gray); line-height: 1.75; margin-bottom: 1.5rem; }
    .why-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
    .tag {
      font-family: var(--fun);
      font-size: .78rem; padding: .3rem .85rem; border-radius: 2rem;
      border: 1.5px solid rgba(240,192,64,.3); color: var(--gold);
    }

    /* ── HOW ── */
    .how-section { background: var(--black); }
    .how-steps {
      display: grid; grid-template-columns: repeat(4,1fr);
      gap: 1px; margin-top: 3.5rem;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.06);
      border-radius: var(--r3); overflow: hidden;
    }
    .how-step {
      background: var(--dark2); padding: 2.25rem 1.75rem;
      position: relative; transition: background .3s;
    }
    .how-step:hover { background: var(--dark3); }
    .how-step-num {
      font-family: var(--fun);
      font-size: 2.8rem; color: rgba(240,192,64,.18);
      line-height: 1; margin-bottom: 1rem;
    }
    .how-step h3 { font-family: var(--fun); font-size: 1rem; color: var(--white); margin-bottom: .5rem; }
    .how-step p { font-size: .85rem; color: var(--gray); line-height: 1.7; }

    /* ── PRICING ── */
    .pricing-section { background: var(--off); }
    .pricing-card {
      max-width: 640px; margin: 3.5rem auto 0;
      background: var(--dark);
      border: 1.5px solid rgba(240,192,64,.25);
      border-radius: var(--r3); padding: 3rem;
      position: relative; overflow: hidden;
    }
    .pricing-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, var(--pink), var(--gold), var(--teal));
    }
    .pricing-card-top {
      display: flex; justify-content: space-between;
      align-items: flex-start; margin-bottom: 2rem;
    }
    .pricing-from-label {
      font-family: var(--fun); font-size: .85rem;
      color: var(--gold); letter-spacing: .06em; margin-bottom: .4rem;
    }
    .pricing-amount {
      font-family: var(--fun);
      font-size: 3.8rem; color: var(--white); line-height: 1;
    }
    .pricing-range {
      font-size: .85rem; color: var(--gray); margin-top: .3rem; line-height: 1.6;
    }
    .pricing-badge {
      background: rgba(240,192,64,.12);
      border: 1px solid rgba(240,192,64,.3);
      border-radius: var(--r2); padding: 1rem 1.25rem;
      text-align: center; flex-shrink: 0;
    }
    .pricing-badge-num {
      font-family: var(--fun); font-size: 1.8rem; color: var(--gold); line-height: 1; margin-bottom: .25rem;
    }
    .pricing-badge-l { font-size: .72rem; color: var(--gray); letter-spacing: .06em; }
    .pricing-divider { height: 1px; background: rgba(255,255,255,.07); margin-bottom: 2rem; }
    .pricing-includes {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: .6rem; margin-bottom: 2.25rem;
    }
    .pricing-inc-item {
      display: flex; align-items: center; gap: .6rem;
      font-size: .87rem; color: var(--lgray);
    }
    .pricing-inc-item .check { color: var(--gold); font-weight: 700; flex-shrink: 0; }
    .pricing-extra {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 1rem; margin-bottom: 2rem;
    }
    .pricing-extra-item {
      display: flex; gap: .85rem; align-items: flex-start;
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.07);
      border-radius: var(--r2); padding: 1.1rem 1.1rem;
      text-align: left;
    }
    .pricing-extra-ic { font-size: 1.3rem; flex-shrink: 0; line-height: 1; }
    .pricing-extra-item strong { display: block; font-family: var(--fun); font-size: .88rem; color: var(--white); margin-bottom: .3rem; }
    .pricing-extra-item span { font-size: .8rem; color: var(--gray); line-height: 1.6; }
    .pricing-note {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.07);
      border-radius: var(--r2); padding: 1rem 1.25rem;
      font-size: .82rem; color: var(--gray); line-height: 1.7;
      margin-bottom: 2rem;
    }
    .pricing-note strong { color: var(--gold); }
    .pricing-card .btn { width: 100%; justify-content: center; }

    /* ── ROOM ── */
    .room-section { background: var(--dark); }
    .room-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5.5rem; align-items: center; margin-top: 0;
    }
    .room-specs {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 1px; margin-top: 2.5rem;
      background: rgba(240,192,64,.08);
      border: 1px solid rgba(240,192,64,.08);
      border-radius: var(--r2); overflow: hidden;
    }
    .room-spec { background: var(--dark2); padding: 1.5rem; }
    .room-spec-n { font-family: var(--fun); font-size: 1.8rem; color: var(--gold); line-height: 1; margin-bottom: .25rem; }
    .room-spec-l { font-size: .76rem; color: var(--gray); letter-spacing: .05em; }
    .room-visual {
      background: rgba(255,255,255,.03);
      border: 1.5px solid rgba(255,110,180,.15);
      border-radius: var(--r3); padding: 3.5rem 2.5rem;
      text-align: center; position: relative; overflow: hidden;
    }
    .room-visual::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--pink), var(--purple), var(--teal));
    }
    .room-emoji { font-size: 5rem; margin-bottom: 1.5rem; display: block; }
    .room-photo {
      width: 100%; max-width: 340px; height: 300px; object-fit: cover;
      border-radius: var(--r2); margin: 0 auto 1.5rem; display: block;
      border: 1px solid rgba(255,255,255,.08);
    }

    /* ── GALLERY ── */
    .gallery-section { background: var(--dark2); }
    .gallery-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 170px; gap: .85rem; margin-top: 3.5rem;
    }
    .gallery-item {
      position: relative; overflow: hidden; border-radius: var(--r2);
      border: 1px solid rgba(255,255,255,.07);
    }
    .gallery-item.tall { grid-row: span 2; }
    .gallery-item img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      transition: transform .45s ease;
    }
    .gallery-item:hover img { transform: scale(1.07); }
    .gallery-cap {
      position: absolute; left: 0; right: 0; bottom: 0;
      background: linear-gradient(0deg, rgba(0,0,0,.75), transparent);
      color: #fff; font-size: .72rem; padding: 1.5rem .8rem .6rem;
      opacity: 0; transition: opacity .3s;
    }
    .gallery-item:hover .gallery-cap { opacity: 1; }
    @media (max-width: 1024px) {
      .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 640px) {
      .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
    }
    .room-address {
      display: inline-block; margin-top: 1.25rem;
      padding: .7rem 1.4rem;
      border: 1px solid rgba(240,192,64,.25);
      border-radius: var(--r2);
      font-family: var(--fun); font-size: .85rem; color: var(--gold);
    }

    /* ── FOOD ── */
    .food-section { background: var(--black); }
    .food-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: start; margin-top: 3rem;
    }
    .food-list { list-style: none; margin-top: 2rem; }
    .food-list li {
      display: flex; gap: 1.25rem;
      padding: 1.5rem 0;
      border-bottom: 1px solid rgba(255,255,255,.05);
    }
    .food-list li:last-child { border-bottom: none; }
    .food-ic {
      width: 46px; height: 46px; flex-shrink: 0;
      background: rgba(240,192,64,.07);
      border: 1.5px solid rgba(240,192,64,.18);
      border-radius: var(--r);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
    }
    .food-list li div strong {
      display: block; font-family: var(--fun); font-size: .95rem;
      color: var(--white); margin-bottom: .25rem;
    }
    .food-list li div span { font-size: .84rem; color: var(--gray); line-height: 1.65; }
    .food-cta-box {
      background: rgba(255,255,255,.03);
      border: 1.5px solid rgba(255,110,180,.18);
      border-radius: var(--r3); padding: 2.5rem;
      position: relative; overflow: hidden;
    }
    .food-cta-box::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--pink), var(--gold));
    }
    .food-cta-box h3 {
      font-family: var(--fun); font-size: 1.4rem;
      color: var(--white); margin-bottom: .75rem;
    }
    .food-cta-box p { font-size: .88rem; color: var(--gray); margin-bottom: 1.75rem; line-height: 1.75; }
    .food-cta-box .btn { width: 100%; justify-content: center; margin-bottom: .75rem; }
    .food-cta-box .btn:last-child { margin-bottom: 0; }

    /* ── TESTIMONIALS ── */
    .testi-section { background: var(--dark2); }
    .testi-grid {
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 1.5rem; margin-top: 3.5rem;
    }
    .testi-card {
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.06);
      border-radius: var(--r3); padding: 2rem 1.75rem;
      transition: border-color .3s, transform .3s;
    }
    .testi-card:hover { border-color: rgba(240,192,64,.2); transform: translateY(-3px); }
    .stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1.1rem; }
    .testi-q { font-size: .9rem; color: var(--lgray); line-height: 1.8; font-style: italic; margin-bottom: 1.4rem; }
    .testi-name { font-family: var(--fun); font-size: .9rem; color: var(--white); }
    .testi-loc { font-size: .76rem; color: var(--gray); margin-top: .2rem; }

    /* ── FAQ ── */
    .faq-section { background: var(--dark); }
    .faq-wrap { max-width: 760px; margin: 3.5rem auto 0; }
    .faq-item { border-bottom: 1px solid rgba(255,255,255,.07); }
    .faq-q {
      display: flex; justify-content: space-between; align-items: center;
      padding: 1.4rem 0; cursor: pointer; gap: 2rem;
      font-size: .95rem; font-weight: 500; color: var(--white);
      user-select: none; transition: color .2s;
    }
    .faq-q:hover { color: var(--gold); }
    .faq-icon {
      width: 28px; height: 28px; flex-shrink: 0;
      border: 1.5px solid rgba(240,192,64,.3); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-size: 1.1rem;
      transition: all .3s;
    }
    .faq-item.open .faq-icon { background: var(--gold); color: var(--black); transform: rotate(45deg); }
    .faq-a {
      max-height: 0; overflow: hidden;
      font-size: .9rem; color: var(--gray); line-height: 1.8;
      transition: max-height .35s ease, padding .35s ease;
    }
    .faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.5rem; }

    /* ── CTA BLOCK ── */
    .cta-section {
      background: var(--dark3);
      border-top: 1px solid rgba(240,192,64,.12);
      border-bottom: 1px solid rgba(240,192,64,.12);
      padding: 6rem 4vw; text-align: center;
      position: relative; overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
      width: 800px; height: 400px; border-radius: 50%;
      background: radial-gradient(circle, rgba(240,192,64,.05) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-section h2 {
      font-family: var(--fun);
      font-size: clamp(2rem, 5vw, 3.2rem);
      color: var(--white); margin-bottom: 1.1rem; line-height: 1.2;
      position: relative;
    }
    .cta-section p { font-size: 1rem; color: var(--gray); max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.8; }
    .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
    .cta-info { margin-top: 2rem; font-size: .8rem; color: var(--gray); letter-spacing: .04em; }

    /* ── MAP ── */
    .map-section { padding: 0; }
    .map-section iframe {
      display: block; width: 100%; height: 380px; border: 0;
      filter: grayscale(65%) invert(92%) hue-rotate(175deg);
    }

    /* ── IMPRESSUM ── */
    .imp-section { background: var(--dark2); padding: 4.5rem 4vw; }
    .imp-inner { max-width: 860px; margin: 0 auto; }
    .imp-inner h2 { font-family: var(--fun); font-size: 1.5rem; color: var(--white); margin-bottom: 1.75rem; }
    .imp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .imp-block h4 {
      font-family: var(--fun); font-size: .76rem;
      letter-spacing: .15em; text-transform: uppercase;
      color: var(--gold); margin-bottom: .75rem;
    }
    .imp-block p, .imp-block address {
      font-size: .87rem; color: var(--gray);
      font-style: normal; line-height: 1.85;
    }
    .imp-block a { color: var(--gold); text-decoration: none; }

    /* ── SEO SECTION ── */
    .seo-section { background: var(--black); padding: 6rem 4vw; }
    .seo-inner { max-width: 860px; margin: 0 auto; }
    .seo-block { margin-bottom: 3rem; }
    .seo-block p {
      font-size: .97rem; color: var(--lgray); line-height: 1.9;
      margin-bottom: 1rem;
    }
    .seo-block p strong { color: var(--white); font-weight: 600; }
    .seo-block p em { color: var(--gold2); font-style: italic; }
    .seo-h3 {
      font-family: var(--fun);
      font-size: 1.35rem; color: var(--white);
      margin-bottom: 1rem; line-height: 1.3;
    }
    .seo-h3::before { content: ''; display: inline-block; width: 20px; height: 3px; background: var(--gold); border-radius: 2px; margin-right: .6rem; vertical-align: middle; }
    .seo-list { list-style: none; margin: 1.25rem 0; display: flex; flex-direction: column; gap: .85rem; }
    .seo-list li {
      display: flex; align-items: flex-start; gap: .85rem;
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.06);
      border-radius: var(--r2); padding: 1rem 1.25rem;
      font-size: .9rem; color: var(--lgray); line-height: 1.65;
      transition: border-color .25s;
    }
    .seo-list li:hover { border-color: rgba(240,192,64,.2); }
    .seo-list li strong { color: var(--white); display: block; margin-bottom: .15rem; }
    .seo-check { color: var(--teal); font-size: 1.1rem; flex-shrink: 0; margin-top: .05rem; }
    .seo-cta-inline { margin: 2rem 0; }
    .seo-cta-box {
      display: flex; gap: 1.5rem; align-items: flex-start;
      background: rgba(240,192,64,.05);
      border: 1.5px solid rgba(240,192,64,.2);
      border-radius: var(--r3); padding: 2rem;
    }
    .seo-cta-emoji { font-size: 3rem; flex-shrink: 0; line-height: 1; }
    .seo-cta-box h3 { font-family: var(--fun); font-size: 1.15rem; color: var(--white); margin-bottom: .5rem; }
    .seo-cta-box p { font-size: .88rem; color: var(--gray); line-height: 1.75; margin-bottom: 0; }
    .seo-cta-box p strong { color: var(--gold); }
    @media (max-width: 600px) {
      .seo-cta-box { flex-direction: column; gap: 1rem; }
      .seo-cta-emoji { font-size: 2.2rem; }
    }

    /* ── FOOTER ── */
    footer {
      background: var(--black);
      border-top: 1px solid rgba(240,192,64,.08);
      padding: 4rem 4vw 2rem;
    }
    .footer-top {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 4rem; margin-bottom: 3rem;
    }
    .footer-brand { font-family: var(--fun); font-size: 1.1rem; color: var(--gold); margin-bottom: .7rem; }
    .footer-brand span { color: var(--pink); }
    .footer-desc { font-size: .82rem; color: var(--gray); line-height: 1.8; max-width: 260px; }
    .footer-wa-btn {
      display: inline-flex; align-items: center; gap: .5rem;
      background: var(--wa); color: #fff;
      font-family: var(--fun); font-size: .8rem;
      padding: .5rem 1.1rem; border-radius: 2rem;
      text-decoration: none; margin-top: 1.25rem;
      transition: opacity .2s;
    }
    .footer-wa-btn:hover { opacity: .85; }
    footer h4 { font-family: var(--fun); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
    footer ul { list-style: none; }
    footer ul li { margin-bottom: .55rem; }
    footer ul li a { font-size: .82rem; color: var(--gray); text-decoration: none; transition: color .2s; }
    footer ul li a:hover { color: var(--gold); }
    .footer-bottom {
      max-width: 1200px; margin: 0 auto;
      border-top: 1px solid rgba(255,255,255,.05);
      padding-top: 1.5rem;
      display: flex; justify-content: space-between; align-items: center;
      font-size: .77rem; color: var(--gray); flex-wrap: wrap; gap: .5rem;
    }
    .footer-bottom a { color: var(--gray); text-decoration: none; }
    .footer-bottom a:hover { color: var(--gold); }

    /* ── WA FAB ── */
    .wa-fab {
      position: fixed; bottom: 2rem; right: 2rem;
      width: 56px; height: 56px;
      background: var(--wa); color: #fff; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; text-decoration: none;
      box-shadow: 0 4px 20px rgba(37,211,102,.4);
      z-index: 99; transition: transform .3s;
    }
    .wa-fab:hover { transform: scale(1.1); }
    .wa-pulse {
      position: absolute; inset: -5px; border-radius: 50%;
      border: 2px solid var(--wa); opacity: 0;
      animation: waPulse 2.5s ease-out infinite;
    }
    @keyframes waPulse {
      0%   { transform: scale(1); opacity: .6; }
      100% { transform: scale(1.6); opacity: 0; }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
      .hero-visual { max-width: 440px; margin: 0 auto; width: 100%; }
      .why-layout, .room-grid, .food-grid { grid-template-columns: 1fr; gap: 3rem; }
      .how-steps { grid-template-columns: 1fr 1fr; }
      .testi-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
      .stats-inner { grid-template-columns: repeat(2,1fr); }
      .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
      .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.06); }
      .stat:nth-last-child(-n+2) { border-bottom: none; }
    }
    @media (max-width: 900px) {
      .nav-links {
        display: none; flex-direction: column; align-items: flex-start;
        position: absolute; top: 70px; left: 0; right: 0;
        background: rgba(8,8,16,.98); padding: 1.5rem 5vw;
        border-bottom: 1px solid rgba(240,192,64,.1); gap: 1rem;
      }
      .nav-links.open { display: flex; }
      .burger { display: flex; }
    }
    @media (max-width: 768px) {
      section { padding: 5rem 5vw; }
      .nav-links {
        display: none; flex-direction: column; align-items: flex-start;
        position: absolute; top: 70px; left: 0; right: 0;
        background: rgba(8,8,16,.98); padding: 1.5rem 5vw;
        border-bottom: 1px solid rgba(240,192,64,.1); gap: 1rem;
      }
      .nav-links.open { display: flex; }
      .burger { display: flex; }
      .hero { padding: 90px 5vw 4rem; }
      .page-hero { padding: 110px 5vw 3rem; }
      .hero h1 { font-size: 2.4rem; }
      .how-steps { grid-template-columns: 1fr; }
      .pricing-card-top { flex-direction: column; gap: 1.5rem; }
      .pricing-includes { grid-template-columns: 1fr; }
      .pricing-extra { grid-template-columns: 1fr; }
      .hero-videos { gap: .5rem; }
      .imp-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; gap: 2rem; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .fun-float { display: none; }
    }

/* ── MAP EMBED ── */
.map-embed { border-radius: var(--r2); overflow: hidden; border: 1px solid rgba(240,192,64,.15); }
.map-embed iframe { display: block; filter: grayscale(35%) contrast(1.05); }

/* ── SUBPAGE HERO / BREADCRUMB ── */
.page-hero {
  padding: 160px 4vw 4rem; text-align: center;
  background: var(--dark);
  border-bottom: 1px solid rgba(240,192,64,.1);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -200px; right: -150px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,.1) 0%, transparent 65%);
  pointer-events: none;
}
.breadcrumb {
  font-size: .8rem; color: var(--gray); margin-bottom: 1.25rem;
  position: relative; z-index: 1;
}
.breadcrumb a { color: var(--gray); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.page-hero h1 {
  font-family: var(--fun);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white); line-height: 1.2; margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.page-hero p {
  max-width: 620px; margin: 0 auto; color: var(--lgray);
  font-size: 1rem; line-height: 1.8; position: relative; z-index: 1;
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
  margin-top: 3rem;
}
.contact-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r3); padding: 2.25rem 1.75rem;
  text-align: center; transition: border-color .3s, transform .3s;
}
.contact-card:hover { border-color: rgba(240,192,64,.25); transform: translateY(-3px); }
.contact-card .ic { font-size: 2.2rem; margin-bottom: 1rem; }
.contact-card h3 { font-family: var(--fun); font-size: 1.05rem; color: var(--white); margin-bottom: .6rem; }
.contact-card p { font-size: .85rem; color: var(--gray); margin-bottom: 1.25rem; line-height: 1.7; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
