 :root {
    --purple: #7C3AED;
    --pink:   #EC4899;
    --orange: #F97316;
    --hot-pink: #EC4899;
    --electric-violet: #7C3AED;
    --neon-pink: #F97316;
    --dark: #0D0012;
    --glass: rgba(255,255,255,0.07);
    --glass-border: rgba(255,255,255,0.15);
  }

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

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--dark);
    color: #fff;
    overflow-x: hidden;
  }

  body::before {
    content: '';
    position: fixed; inset: 0;
    background:
      radial-gradient(ellipse 65% 55% at 10% 20%, rgba(124,58,237,0.35) 0%, transparent 60%),
      radial-gradient(ellipse 55% 50% at 90% 80%, rgba(249,115,22,0.22) 0%, transparent 55%),
      radial-gradient(ellipse 45% 40% at 55% 10%, rgba(249,115,22,0.18) 0%, transparent 55%),
      var(--dark);
    z-index: -2;
  }
  body::after {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    z-index: -1; pointer-events: none; opacity: 0.35;
  }

  /* ══ NAVBAR ══ */
  #navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    transition: background 0.4s, box-shadow 0.4s;
  }
  #navbar.scrolled {
    background: rgba(10,0,14,0.94);
    backdrop-filter: blur(24px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.08);
  }
  .nav-inner {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 48px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.55rem;
    font-weight: 700;
    background: linear-gradient(90deg, #fff 0%, #F97316 45%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
  }
  .nav-links { display: flex; gap: 4px; align-items: center; }
  .nav-links a {
    position: relative;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    transition: color 0.2s, background 0.2s;
  }
  .nav-links a:hover { color: #fff; background: rgba(255,255,255,0.07); }
  .nav-links a.active { color: var(--orange); }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 50%; transform: translateX(-50%);
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--purple), var(--pink), var(--orange));
    border-radius: 2px;
    transition: width 0.25s;
  }
  .nav-links a:hover::after,
  .nav-links a.active::after { width: 60%; }
  .nav-cta {
    background: linear-gradient(135deg, var(--purple), var(--pink), var(--orange)) !important;
    color: #fff !important;
    box-shadow: 0 4px 18px rgba(124,58,237,0.45);
    transition: transform 0.2s, box-shadow 0.2s !important;
  }
  .nav-cta:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 8px 28px rgba(249,115,22,0.5) !important;
    background: linear-gradient(135deg, var(--purple), var(--pink), var(--orange)) !important;
  }
  .nav-cta::after { display: none !important; }

  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 6px; background: none; border: none;
  }
  .hamburger span {
    display: block; width: 26px; height: 2px;
    background: #fff; border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    display: none; flex-direction: column;
    background: rgba(10,0,14,0.97);
    backdrop-filter: blur(24px);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 24px 28px; gap: 4px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    color: rgba(255,255,255,0.75); text-decoration: none;
    font-size: 0.92rem; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 14px 16px; border-radius: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s, color 0.2s;
  }
  .mobile-menu a:hover { background: rgba(249,115,22,0.08); color: #fff; }
  .mobile-menu a:last-child { border-bottom: none; margin-top: 8px; }
  .mobile-cta {
    background: linear-gradient(135deg, var(--purple), var(--pink), var(--orange)) !important;
    color: #fff !important; text-align: center;
    border-radius: 50px !important; font-weight: 600 !important;
    border-bottom: none !important;
    box-shadow: 0 6px 20px rgba(124,58,237,0.35);
  }

  /* ══ HERO — FULL WIDTH ══ */
  #home {
    position: relative;
    width: 100%; height: 100vh; min-height: 620px;
    overflow: hidden;
    display: flex; align-items: flex-end;
  }

  /* Full-width background image area */
  .hero-bg {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-bg-img {
    position: absolute; inset: 0;
    /* ── Replace below with: background: url('YOUR-PHOTO.jpg') center/cover no-repeat; ── */
    background: linear-gradient(135deg, #1a0a2e 0%, #7C3AED 30%, #EC4899 62%, #F97316 85%, #0f0820 100%);
  }
  /* Dark gradient overlay — makes bottom text readable */
  .hero-bg-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
      to top,
      rgba(10,0,14,0.95) 0%,
      rgba(10,0,14,0.6) 30%,
      rgba(10,0,14,0.15) 65%,
      transparent 100%
    );
  }
  /* Placeholder icon (remove when real photo is added) */
  .hero-placeholder-icon {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; align-items: center;
    gap: 10px; color: rgba(255,255,255,0.18);
    font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
  }
  .hero-placeholder-icon svg { width: 80px; height: 80px; opacity: 0.18; }

  /* Content anchored at bottom-left */
  .hero-content {
    position: relative; z-index: 10;
    width: 100%;
    padding: 0 80px 72px;
    display: flex; align-items: flex-end;
    justify-content: space-between; gap: 40px;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(249,115,22,0.18);
    border: 1px solid rgba(249,115,22,0.42);
    border-radius: 50px; padding: 5px 16px;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--orange); margin-bottom: 18px;
    animation: fadeUp 0.6s ease both;
  }
  .hero-badge::before {
    content: ''; width: 6px; height: 6px;
    border-radius: 50%; background: var(--orange);
    animation: pulse 1.5s infinite;
  }

  .hero-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 900; line-height: 0.95;
    letter-spacing: -0.01em; color: #fff;
    margin-bottom: 14px;
    animation: fadeUp 0.6s 0.1s ease both;
    text-shadow: 0 4px 40px rgba(0,0,0,0.6);
  }
  .hero-name em {
    font-style: italic;
    background: linear-gradient(90deg, var(--orange), var(--pink), var(--purple));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }

  .hero-tagline {
    font-size: 0.92rem; color: rgba(255,255,255,0.55);
    letter-spacing: 0.2em; text-transform: uppercase;
    margin-bottom: 30px;
    animation: fadeUp 0.6s 0.18s ease both;
  }

  .hero-actions {
    display: flex; gap: 14px; flex-wrap: wrap;
    animation: fadeUp 0.6s 0.26s ease both;
  }
  .btn-primary {
    background: linear-gradient(135deg, var(--purple), var(--pink), var(--orange));
    color: #fff; border: none;
    padding: 14px 32px; border-radius: 50px;
    font-size: 0.88rem; font-weight: 600; letter-spacing: 0.06em;
    cursor: pointer; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 28px rgba(124,58,237,0.45);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(249,115,22,0.5); }
  .btn-ghost {
    background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
    color: #fff; border: 1px solid rgba(255,255,255,0.25);
    padding: 14px 32px; border-radius: 50px;
    font-size: 0.88rem; font-weight: 500; letter-spacing: 0.06em;
    cursor: pointer; text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
  }
  .btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: rgba(249,115,22,0.55); }

  /* Quick stat pills — right side of hero */
  .hero-stats {
    display: flex; flex-direction: column; gap: 10px;
    flex-shrink: 0;
    animation: fadeUp 0.6s 0.32s ease both;
  }
  .stat-pill {
    background: rgba(13,0,16,0.6); backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 50px; padding: 9px 22px;
    display: flex; align-items: center; gap: 12px; white-space: nowrap;
  }
  .sp-val { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--orange); }
  .sp-label { font-size: 0.7rem; color: rgba(255,255,255,0.42); text-transform: uppercase; letter-spacing: 0.1em; }

  /* Scroll indicator */
  .scroll-hint {
    position: absolute; bottom: 26px; left: 50%;
    transform: translateX(-50%); z-index: 10;
    display: flex; flex-direction: column; align-items: center; gap: 5px;
    color: rgba(255,255,255,0.28);
    font-size: 0.66rem; letter-spacing: 0.15em; text-transform: uppercase;
    animation: bounce 2.2s infinite;
  }
  .scroll-hint svg { width: 18px; height: 18px; }
  @keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0);}50%{transform:translateX(-50%) translateY(7px);} }

  /* ══ STATS BAR ══ */
  .stats-bar {
    display: flex; max-width: 1340px;
    margin: 0 auto; padding: 0 48px;
  }
  .sbar-item {
    flex: 1; text-align: center;
    padding: 34px 20px;
    border: 1px solid var(--glass-border);
    background: var(--glass); backdrop-filter: blur(12px);
    transition: background 0.3s;
  }
  .sbar-item:not(:first-child) { border-left: none; }
  .sbar-item:first-child { border-radius: 0 0 0 16px; }
  .sbar-item:last-child  { border-radius: 0 0 16px 0; }
  .sbar-item:hover { background: rgba(249,115,22,0.07); }
  .sbar-val { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; line-height: 1; margin-bottom: 5px; background: linear-gradient(135deg, var(--purple), var(--pink), var(--orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
  .sbar-label { font-size: 0.7rem; color: rgba(255,255,255,0.38); text-transform: uppercase; letter-spacing: 0.1em; }

  /* ══ SECTION COMMON ══ */
  .page-section { padding: 90px 48px; max-width: 1340px; margin: 0 auto; }
  .section-header { text-align: center; margin-bottom: 56px; }
  .section-eyebrow { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--pink); margin-bottom: 10px; }
  .divider { width: 50px; height: 3px; background: linear-gradient(90deg, var(--purple), var(--pink), var(--orange)); border-radius: 2px; margin: 0 auto 18px; }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.15; color: #fff; }
  .section-title em { font-style: italic; background: linear-gradient(135deg, var(--purple), var(--pink), var(--orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }



  /* ══ ABOUT ME ══ */
  .about-grid { display: grid; grid-template-columns: 320px 1fr; gap: 56px; align-items: start; }
  .about-photo { width: 100%; aspect-ratio: 3/4; border-radius: 22px; overflow: hidden; border: 1px solid var(--glass-border); position: relative; }
  .about-photo-ph { width: 100%; height: 100%; min-height: 320px; background: linear-gradient(160deg, rgba(124,58,237,0.22), rgba(249,115,22,0.22)); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; color: rgba(255,255,255,0.22); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; }
  .about-photo-ph svg { width: 44px; height: 44px; opacity: 0.22; }
  .about-body h3 { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; line-height: 1.2; margin-bottom: 16px; }
  .about-body p { color: rgba(255,255,255,0.58); line-height: 1.8; font-size: 0.96rem; margin-bottom: 14px; }
  .about-tags { display: flex; flex-wrap: wrap; gap: 9px; margin: 24px 0; }
  .about-tag { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 50px; padding: 7px 18px; font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.62); transition: all 0.2s; }
  .about-tag:hover { border-color: rgba(249,115,22,0.55); color: var(--orange); }
  .profile-table { border: 1px solid var(--glass-border); border-radius: 14px; overflow: hidden; margin-top: 24px; }
  .pt-row { display: grid; grid-template-columns: 1fr 1fr; }
  .pt-cell { padding: 12px 18px; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.88rem; display: flex; justify-content: space-between; }
  .pt-row:last-child .pt-cell { border-bottom: none; }
  .pt-cell:first-child { border-right: 1px solid rgba(255,255,255,0.05); }
  .pt-key { color: rgba(255,255,255,0.4); }
  .pt-val { color: #fff; font-weight: 600; }

  /* ══ RATES ══ */
  .rates-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .rate-card { border-radius: 22px; padding: 32px 24px; border: 1px solid var(--glass-border); background: var(--glass); backdrop-filter: blur(12px); text-align: center; position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
  .rate-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(249,115,22,0.18); }
  .rate-card.featured { border-color: rgba(249,115,22,0.55); background: linear-gradient(135deg, rgba(249,115,22,0.08), rgba(124,58,237,0.1)); }
  .rate-card.featured::before { content: 'Most Popular'; position: absolute; top: 13px; right: 13px; background: linear-gradient(135deg, var(--purple), var(--pink), var(--orange)); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 11px; border-radius: 50px; }
  .rate-dur { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 12px; }
  .rate-price { font-family: 'Playfair Display', serif; font-size: 2.7rem; font-weight: 900; line-height: 1; margin-bottom: 4px; }
  .rate-card.featured .rate-price { background: linear-gradient(135deg, var(--purple), var(--pink), var(--orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
  .rate-cur { font-size: 1.1rem; vertical-align: top; margin-top: 6px; display: inline-block; }
  .rate-sub { font-size: 0.76rem; color: rgba(255,255,255,0.3); margin-bottom: 24px; }
  .rate-list { list-style: none; display: flex; flex-direction: column; gap: 8px; text-align: left; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
  .rate-list li { display: flex; align-items: center; gap: 8px; }
  .rate-list li::before { content: '✦'; color: var(--pink); font-size: 0.52rem; flex-shrink: 0; }

  /* ══ GALLERY ══ */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 260px 260px;
    gap: 12px;
  }
  /* Layout map:
     [1: tall left]  [2: top-mid]   [3: top-right]
     [1: tall left]  [4: bot-mid]   [5: bot-right]
  */
  .gcell { border-radius: 16px; overflow: hidden; background: var(--glass); border: 1px solid var(--glass-border); cursor: pointer; position: relative; transition: transform 0.28s, box-shadow 0.28s; }
  .gcell:hover { transform: scale(1.025); box-shadow: 0 12px 40px rgba(249,115,22,0.2); z-index: 2; }
  .gcell-1 { grid-column: 1; grid-row: 1 / span 2; }
  .gcell-2 { grid-column: 2; grid-row: 1; }
  .gcell-3 { grid-column: 3; grid-row: 1; }
  .gcell-4 { grid-column: 2; grid-row: 2; }
  .gcell-5 { grid-column: 3; grid-row: 2; }

  /* the actual image / placeholder fills the cell */
  .gcell img,
  .gph {
    width: 100%; height: 100%;
    object-fit: cover;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 8px;
    background: linear-gradient(160deg, rgba(124,58,237,0.18), rgba(249,115,22,0.18));
    color: rgba(255,255,255,0.22); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  }
  .gph svg { width: 30px; height: 30px; opacity: 0.28; }

  /* hover overlay */
  .gov {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,0,16,0.78) 0%, rgba(13,0,16,0.1) 55%, transparent 100%);
    opacity: 0; transition: opacity 0.28s;
    display: flex; flex-direction: column;
    align-items: flex-start; justify-content: flex-end;
    padding: 20px 18px; gap: 6px;
  }
  .gcell:hover .gov { opacity: 1; }
  .gov-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: #fff; }
  .gov-hint { font-size: 0.7rem; color: rgba(255,255,255,0.55); letter-spacing: 0.1em; text-transform: uppercase; display: flex; align-items: center; gap: 5px; }
  .gov-hint svg { width: 14px; height: 14px; }

  /* ══ LIGHTBOX ══ */
  #lightbox {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(5,0,10,0.96);
    backdrop-filter: blur(20px);
    display: none; align-items: center; justify-content: center;
    padding: 24px;
    animation: lbFadeIn 0.25s ease;
  }
  #lightbox.open { display: flex; }
  @keyframes lbFadeIn { from{opacity:0;} to{opacity:1;} }

  .lb-inner {
    position: relative;
    max-width: 880px; width: 100%;
    display: flex; flex-direction: column; align-items: center; gap: 18px;
  }

  /* image frame */
  .lb-img-wrap {
    width: 100%;
    max-height: 76vh;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.04);
    animation: lbSlide 0.22s ease;
  }
  @keyframes lbSlide { from{opacity:0;transform:scale(0.97);}to{opacity:1;transform:scale(1);} }
  .lb-img-wrap img { max-width: 100%; max-height: 76vh; object-fit: contain; display: block; }
  .lb-placeholder {
    width: 100%; min-height: 420px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 14px; color: rgba(255,255,255,0.2);
    font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  }
  .lb-placeholder svg { width: 56px; height: 56px; opacity: 0.2; }

  /* caption + counter */
  .lb-footer { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 0 4px; }
  .lb-caption { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-style: italic; color: rgba(255,255,255,0.75); }
  .lb-counter { font-size: 0.78rem; color: rgba(255,255,255,0.35); letter-spacing: 0.12em; }

  /* nav arrows */
  .lb-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: #fff; font-size: 1.2rem;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    z-index: 10;
  }
  .lb-arrow:hover { background: rgba(249,115,22,0.2); border-color: rgba(249,115,22,0.55); transform: translateY(-50%) scale(1.08); }
  .lb-prev { left: -68px; }
  .lb-next { right: -68px; }
  .lb-arrow svg { width: 20px; height: 20px; }

  /* close button */
  .lb-close {
    position: absolute; top: -52px; right: 0;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff; font-size: 1rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, transform 0.2s;
  }
  .lb-close:hover { background: rgba(249,115,22,0.3); transform: rotate(90deg); }
  .lb-close svg { width: 18px; height: 18px; }

  /* dot indicators */
  .lb-dots { display: flex; gap: 7px; }
  .lb-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.25); cursor: pointer; transition: background 0.2s, transform 0.2s; }
  .lb-dot.active { background: var(--orange); transform: scale(1.3); }

  /* ══ CONTACT ══ */
  .contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
  .contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; margin-bottom: 14px; line-height: 1.2; }
  .contact-info p { color: rgba(255,255,255,0.5); line-height: 1.75; font-size: 0.94rem; margin-bottom: 34px; }
  .contact-channels { display: flex; flex-direction: column; gap: 11px; }
  .cc { display: flex; align-items: center; gap: 13px; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 13px; padding: 14px 18px; backdrop-filter: blur(8px); text-decoration: none; color: #fff; font-size: 0.9rem; transition: all 0.2s; }
  .cc:hover { border-color: rgba(249,115,22,0.45); background: rgba(249,115,22,0.07); transform: translateX(4px); }
  .ci { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
  .ci-wa { background: linear-gradient(135deg,#25d366,#128c7e); }
  .ci-tg { background: linear-gradient(135deg,#229ed9,#1a7bc4); }
  .ci-em { background: linear-gradient(135deg,var(--hot-pink),var(--electric-violet)); }
  .ci-ph { background: linear-gradient(135deg,#ff9500,#ff6b00); }
  .cc-label { font-size: 0.68rem; color: rgba(255,255,255,0.36); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.08em; }
  .cc-val { font-weight: 600; font-size: 0.9rem; }
  .cc-arrow { color: rgba(255,255,255,0.26); margin-left: auto; }

  .contact-form { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 22px; padding: 34px; backdrop-filter: blur(12px); }
  .contact-form h4 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 24px; }
  .form-group { margin-bottom: 15px; }
  .form-group label { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 7px; }
  .form-group input, .form-group select, .form-group textarea { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 12px 14px; color: #fff; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; outline: none; transition: border-color 0.2s; }
  .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: rgba(249,115,22,0.55); }
  .form-group select option { background: #0f0820; }
  .form-group textarea { resize: vertical; min-height: 92px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .btn-submit { width: 100%; background: linear-gradient(135deg, var(--purple), var(--pink), var(--orange)); color: #fff; border: none; padding: 15px; border-radius: 10px; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.05em; cursor: pointer; margin-top: 6px; transition: opacity 0.2s, transform 0.2s; box-shadow: 0 8px 24px rgba(249,115,22,0.35); }
  .btn-submit:hover { opacity: 0.88; transform: translateY(-1px); }

  /* ══ FOOTER ══ */
  footer { border-top: 1px solid var(--glass-border); padding: 28px 48px; max-width: 1340px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
  .footer-logo { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.2rem; background: linear-gradient(90deg, var(--purple), var(--pink), var(--orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
  .footer-note { font-size: 0.75rem; color: rgba(255,255,255,0.26); }
  .footer-links { display: flex; gap: 20px; }
  .footer-links a { font-size: 0.75rem; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--pink); }

  /* ══ KEYFRAMES ══ */
  @keyframes fadeUp { from{opacity:0;transform:translateY(22px);}to{opacity:1;transform:translateY(0);} }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1);}50%{opacity:0.5;transform:scale(1.4);} }

  /* ══ RESPONSIVE ══ */
  @media(max-width:960px){
    .nav-inner{padding:0 24px;}
    .nav-links{display:none;}
    .hamburger{display:flex;}
    .hero-content{padding:0 28px 52px;flex-direction:column;align-items:flex-start;gap:26px;}
    .hero-stats{flex-direction:row;flex-wrap:wrap;}
    .stats-bar{padding:0 24px;flex-wrap:wrap;}
    .sbar-item{flex:1 1 30%;border-radius:0!important;border:1px solid var(--glass-border)!important;margin:2px;}
    .page-section{padding:60px 24px;}
    .about-grid{grid-template-columns:1fr;}
    .about-photo{max-width:260px;margin:0 auto;}
    .rates-grid{grid-template-columns:1fr 1fr;}
    .gallery-grid{grid-template-columns:1fr 1fr;grid-template-rows:auto;}
    .gcell-1,.gcell-2,.gcell-3,.gcell-4,.gcell-5{grid-column:auto;grid-row:auto;aspect-ratio:3/4;min-height:200px;}
    .lb-prev{left:-14px;} .lb-next{right:-14px;}
    .lb-arrow{width:40px;height:40px;}
    .contact-wrap{grid-template-columns:1fr;}
    footer{flex-direction:column;text-align:center;padding:24px;}
    .form-row{grid-template-columns:1fr;}
  }
  /* ══ FAQ ══ */
  .faq-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
  .faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: border-color 0.25s;
  }
  .faq-item.open { border-color: rgba(249,115,22,0.45); }
  .faq-q {
    width: 100%; background: none; border: none; color: #fff;
    text-align: left; padding: 22px 24px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem; font-weight: 600;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
    line-height: 1.4;
  }
  .faq-q:hover { color: var(--orange); }
  .faq-icon {
    width: 28px; height: 28px; flex-shrink: 0;
    border-radius: 50%;
    background: rgba(249,115,22,0.12);
    border: 1px solid rgba(249,115,22,0.3);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.25s, transform 0.35s;
  }
  .faq-icon svg { width: 14px; height: 14px; stroke: var(--orange); transition: transform 0.35s; }
  .faq-item.open .faq-icon { background: linear-gradient(135deg, var(--purple), var(--pink), var(--orange)); border-color: transparent; }
  .faq-item.open .faq-icon svg { stroke: #fff; transform: rotate(45deg); }
  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    font-size: 0.9rem; color: rgba(255,255,255,0.58); line-height: 1.75;
    padding: 0 24px;
  }
  .faq-item.open .faq-a { max-height: 300px; padding: 0 24px 22px; }
  .faq-a p { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 16px; }

  /* ══ BLOG ══ */
  .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .blog-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px; overflow: hidden;
    backdrop-filter: blur(12px);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex; flex-direction: column;
  }
  .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(124,58,237,0.2);
    border-color: rgba(236,72,153,0.35);
  }
  .blog-thumb {
    width: 100%; aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(124,58,237,0.3), rgba(236,72,153,0.3), rgba(249,115,22,0.2));
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 8px;
    color: rgba(255,255,255,0.22); font-size: 0.72rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    position: relative; overflow: hidden;
  }
  .blog-thumb svg { width: 32px; height: 32px; opacity: 0.25; }
  .blog-thumb-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,0,18,0.7) 0%, transparent 60%);
  }
  .blog-category {
    position: absolute; top: 14px; left: 14px;
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 4px 12px; border-radius: 50px;
    z-index: 1;
  }
  .cat-purple { background: rgba(124,58,237,0.85); color: #fff; }
  .cat-pink   { background: rgba(236,72,153,0.85); color: #fff; }
  .cat-orange { background: rgba(249,115,22,0.85); color: #fff; }
  .blog-body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
  .blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 0.74rem; color: rgba(255,255,255,0.35); }
  .blog-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.25); }
  .blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; font-weight: 700; line-height: 1.35;
    color: #fff; margin-bottom: 10px;
    transition: color 0.2s;
  }
  .blog-card:hover .blog-title { color: var(--orange); }
  .blog-excerpt { font-size: 0.86rem; color: rgba(255,255,255,0.5); line-height: 1.7; flex: 1; margin-bottom: 20px; }
  .blog-read-more {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--orange);
    text-decoration: none; transition: gap 0.2s;
  }
  .blog-read-more:hover { gap: 10px; }
  .blog-read-more svg { width: 14px; height: 14px; }

  @media(max-width:960px){
    .faq-wrap { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr 1fr; }
  }
  @media(max-width:540px){
    .blog-grid { grid-template-columns: 1fr; }
  }
  @media(max-width:960px){
    .rates-grid{grid-template-columns:1fr 1fr;}
    .hero-name{font-size:clamp(2.4rem,12vw,3.5rem);}
  }
  
  
  /* BANNER */
.page-banner{position:relative;width:100%;height:340px;display:flex;align-items:center;justify-content:center;overflow:hidden;margin-top:76px;}
.banner-bg{position:absolute;inset:0;background:linear-gradient(135deg,#1a0a2e 0%,#7C3AED 30%,#EC4899 62%,#F97316 85%,#0f0820 100%);}
.banner-bg::after{content:'';position:absolute;inset:0;background:rgba(10,0,14,.52);}
.banner-content{position:relative;z-index:2;text-align:center;animation:fadeUp .7s ease both;}
.banner-eyebrow{display:inline-block;font-size:.72rem;font-weight:700;letter-spacing:.22em;text-transform:uppercase;color:var(--orange);margin-bottom:10px;}
.banner-title{font-family:'Playfair Display',serif;font-size:clamp(2.4rem,5vw,4rem);font-weight:900;line-height:1.05;color:#fff;}
.banner-title em{font-style:italic;background:linear-gradient(90deg,var(--orange),var(--pink),var(--purple));-webkit-background-clip:text;-webkit-text-fill-color:transparent;}
.breadcrumb{display:flex;align-items:center;justify-content:center;gap:8px;margin-top:14px;font-size:.78rem;color:rgba(255,255,255,.4);}
.breadcrumb a{color:rgba(255,255,255,.5);text-decoration:none;transition:color .2s;}
.breadcrumb a:hover{color:var(--orange);}
.breadcrumb span{color:var(--orange);}

/* SECTION */
.page-section{padding:80px 48px;max-width:1340px;margin:0 auto;}
.section-header{text-align:center;margin-bottom:52px;}
.section-eyebrow{display:inline-block;font-size:.72rem;font-weight:700;letter-spacing:.22em;text-transform:uppercase;color:var(--pink);margin-bottom:10px;}
.divider{width:50px;height:3px;background:linear-gradient(90deg,var(--purple),var(--pink),var(--orange));border-radius:2px;margin:0 auto 18px;}
.section-title{font-family:'Playfair Display',serif;font-size:clamp(1.9rem,3.5vw,2.8rem);font-weight:700;line-height:1.15;color:#fff;}
.section-title em{font-style:italic;background:linear-gradient(135deg,var(--purple),var(--pink),var(--orange));-webkit-background-clip:text;-webkit-text-fill-color:transparent;}

/* ABOUT */
.about-grid{display:grid;grid-template-columns:360px 1fr;gap:60px;align-items:start;}
.about-photo{width:100%;aspect-ratio:3/4;border-radius:24px;overflow:hidden;border:1px solid var(--glass-border);position:relative;}
.about-photo-ph{width:100%;height:100%;min-height:380px;background:linear-gradient(160deg,rgba(124,58,237,.22),rgba(249,115,22,.22));display:flex;align-items:center;justify-content:center;flex-direction:column;gap:10px;color:rgba(255,255,255,.22);font-size:.74rem;letter-spacing:.1em;text-transform:uppercase;}
.about-photo-ph svg{width:48px;height:48px;opacity:.22;}
.about-body h3{font-family:'Playfair Display',serif;font-size:2rem;font-weight:700;line-height:1.2;margin-bottom:16px;}
.about-body p{color:rgba(255,255,255,.58);line-height:1.8;font-size:.97rem;margin-bottom:14px;}
.about-tags{display:flex;flex-wrap:wrap;gap:9px;margin:24px 0;}
.about-tag{background:var(--glass);border:1px solid var(--glass-border);border-radius:50px;padding:7px 18px;font-size:.8rem;font-weight:500;color:rgba(255,255,255,.62);transition:all .2s;cursor:default;}
.about-tag:hover{border-color:rgba(249,115,22,.5);color:var(--orange);}
.profile-table{border:1px solid var(--glass-border);border-radius:14px;overflow:hidden;margin-top:24px;}
.pt-row{display:grid;grid-template-columns:1fr 1fr;}
.pt-cell{padding:13px 18px;border-bottom:1px solid rgba(255,255,255,.05);font-size:.88rem;display:flex;justify-content:space-between;}
.pt-row:last-child .pt-cell{border-bottom:none;}
.pt-cell:first-child{border-right:1px solid rgba(255,255,255,.05);}
.pt-key{color:rgba(255,255,255,.4);}
.pt-val{color:#fff;font-weight:600;}

/* STATS STRIP */
.stats-strip{display:flex;max-width:1340px;margin:0 auto;padding:0 48px;}
.ss-item{flex:1;text-align:center;padding:32px 20px;border:1px solid var(--glass-border);background:var(--glass);backdrop-filter:blur(12px);transition:background .3s;}
.ss-item:not(:first-child){border-left:none;}
.ss-item:first-child{border-radius:0 0 0 14px;}
.ss-item:last-child{border-radius:0 0 14px 0;}
.ss-item:hover{background:rgba(249,115,22,.06);}
.ss-val{font-family:'Playfair Display',serif;font-size:2rem;font-weight:900;line-height:1;margin-bottom:5px;background:linear-gradient(135deg,var(--purple),var(--pink),var(--orange));-webkit-background-clip:text;-webkit-text-fill-color:transparent;}
.ss-label{font-size:.7rem;color:rgba(255,255,255,.38);text-transform:uppercase;letter-spacing:.1em;}

/* REVIEWS */
.reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;}
.review-card{background:var(--glass);border:1px solid var(--glass-border);border-radius:20px;padding:28px;backdrop-filter:blur(12px);transition:transform .3s,border-color .3s;position:relative;}
.review-card:hover{transform:translateY(-4px);border-color:rgba(249,115,22,.35);}
.review-card::before{content:'\201C';position:absolute;top:16px;right:22px;font-family:'Playfair Display',serif;font-size:5rem;line-height:1;color:rgba(249,115,22,.15);pointer-events:none;}
.stars{display:flex;gap:3px;margin-bottom:16px;}
.star{color:var(--orange);font-size:1rem;}
.star.half{opacity:.5;}
.review-text{font-size:.92rem;line-height:1.75;color:rgba(255,255,255,.65);margin-bottom:20px;font-style:italic;}
.review-author{display:flex;align-items:center;gap:12px;}
.author-avatar{width:42px;height:42px;border-radius:50%;background:linear-gradient(135deg,var(--purple),var(--pink),var(--orange));display:flex;align-items:center;justify-content:center;font-family:'Playfair Display',serif;font-size:1rem;font-weight:700;flex-shrink:0;}
.author-name{font-weight:600;font-size:.9rem;color:#fff;}
.author-date{font-size:.72rem;color:rgba(255,255,255,.35);margin-top:2px;}
.review-verified{display:inline-flex;align-items:center;gap:5px;font-size:.68rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:#4ade80;margin-top:6px;}
.review-verified svg{width:12px;height:12px;}

/* FOOTER */
.site-footer{border-top:1px solid var(--glass-border);padding:28px 48px;max-width:1340px;margin:60px auto 0;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:14px;}
.footer-logo{font-family:'Playfair Display',serif;font-style:italic;font-size:1.2rem;background:linear-gradient(90deg,var(--purple),var(--pink),var(--orange));-webkit-background-clip:text;-webkit-text-fill-color:transparent;}
.footer-note{font-size:.75rem;color:rgba(255,255,255,.26);}
.footer-links{display:flex;gap:20px;}
.footer-links a{font-size:.75rem;color:rgba(255,255,255,.3);text-decoration:none;transition:color .2s;}
.footer-links a:hover{color:var(--pink);}

@keyframes fadeUp{from{opacity:0;transform:translateY(22px);}to{opacity:1;transform:translateY(0);}}
@media(max-width:960px){
  .nav-inner{padding:0 24px;}.nav-links{display:none;}.hamburger{display:flex;}
  .page-section{padding:60px 24px;}.stats-strip{padding:0 24px;flex-wrap:wrap;}
  .ss-item{flex:1 1 30%;border-radius:0!important;border:1px solid var(--glass-border)!important;margin:2px;}
  .about-grid{grid-template-columns:1fr;}.about-photo{max-width:280px;margin:0 auto;}
  .reviews-grid{grid-template-columns:1fr 1fr;}.site-footer{flex-direction:column;text-align:center;padding:24px;}
}
@media(max-width:540px){.reviews-grid{grid-template-columns:1fr;}}

/* FILTER TABS */
.gallery-filters{display:flex;justify-content:center;gap:10px;flex-wrap:wrap;margin-bottom:40px;}
.gf-btn{background:var(--glass);border:1px solid var(--glass-border);border-radius:50px;padding:9px 22px;font-size:.8rem;font-weight:500;color:rgba(255,255,255,.6);cursor:pointer;transition:all .2s;}
.gf-btn:hover,.gf-btn.active{background:linear-gradient(135deg,var(--purple),var(--pink),var(--orange));border-color:transparent;color:#fff;}

/* GALLERY GRID */
.gallery-masonry{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;}
.gcell{border-radius:14px;overflow:hidden;background:var(--glass);border:1px solid var(--glass-border);cursor:pointer;position:relative;transition:transform .28s,box-shadow .28s;}
.gcell:hover{transform:scale(1.025);box-shadow:0 12px 40px rgba(249,115,22,.2);z-index:2;}
.gcell.r2{grid-row:span 2;}
.gcell.c2{grid-column:span 2;}
.gph{width:100%;height:100%;min-height:200px;background:linear-gradient(160deg,rgba(124,58,237,.18),rgba(249,115,22,.18));display:flex;align-items:center;justify-content:center;flex-direction:column;gap:8px;color:rgba(255,255,255,.2);font-size:.7rem;letter-spacing:.1em;text-transform:uppercase;}
.gph svg{width:30px;height:30px;opacity:.25;}
.gov{position:absolute;inset:0;background:linear-gradient(to top,rgba(13,0,18,.8) 0%,transparent 55%);opacity:0;transition:opacity .28s;display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-end;padding:18px;}
.gcell:hover .gov{opacity:1;}
.gov-title{font-family:'Playfair Display',serif;font-size:.95rem;font-weight:700;color:#fff;margin-bottom:4px;}
.gov-hint{font-size:.68rem;color:rgba(255,255,255,.5);letter-spacing:.1em;text-transform:uppercase;display:flex;align-items:center;gap:5px;}
.gov-hint svg{width:13px;height:13px;}

/* LIGHTBOX */
#lightbox{position:fixed;inset:0;z-index:9999;background:rgba(5,0,10,.96);backdrop-filter:blur(20px);display:none;align-items:center;justify-content:center;padding:24px;}
#lightbox.open{display:flex;animation:lbIn .25s ease;}
@keyframes lbIn{from{opacity:0;}to{opacity:1;}}
.lb-inner{position:relative;max-width:900px;width:100%;display:flex;flex-direction:column;align-items:center;gap:16px;}
.lb-img-wrap{width:100%;max-height:76vh;border-radius:18px;overflow:hidden;border:1px solid rgba(255,255,255,.12);display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,.04);animation:lbSlide .22s ease;}
@keyframes lbSlide{from{opacity:0;transform:scale(.97);}to{opacity:1;transform:scale(1);}}
.lb-img-wrap img{max-width:100%;max-height:76vh;object-fit:contain;display:block;}
.lb-placeholder{width:100%;min-height:420px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:14px;color:rgba(255,255,255,.2);font-size:.82rem;letter-spacing:.12em;text-transform:uppercase;}
.lb-placeholder svg{width:56px;height:56px;opacity:.2;}
.lb-footer{display:flex;align-items:center;justify-content:space-between;width:100%;padding:0 4px;}
.lb-caption{font-family:'Playfair Display',serif;font-size:1.05rem;font-style:italic;color:rgba(255,255,255,.75);}
.lb-counter{font-size:.78rem;color:rgba(255,255,255,.35);letter-spacing:.12em;}
.lb-arrow{position:absolute;top:50%;transform:translateY(-50%);width:50px;height:50px;border-radius:50%;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);backdrop-filter:blur(10px);color:#fff;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .2s;z-index:10;}
.lb-arrow:hover{background:rgba(249,115,22,.25);border-color:rgba(249,115,22,.5);}
.lb-prev{left:-64px;}.lb-next{right:-64px;}
.lb-arrow svg{width:20px;height:20px;}
.lb-close{position:absolute;top:-50px;right:0;width:42px;height:42px;border-radius:50%;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);color:#fff;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .2s;}
.lb-close:hover{background:rgba(249,115,22,.3);transform:rotate(90deg);}
.lb-close svg{width:18px;height:18px;}
.lb-dots{display:flex;gap:7px;}
.lb-dot{width:7px;height:7px;border-radius:50%;background:rgba(255,255,255,.25);cursor:pointer;transition:all .2s;}
.lb-dot.active{background:var(--orange);transform:scale(1.3);}

/* RATES TABLE */
.rates-table{width:100%;border-collapse:separate;border-spacing:0;border:1px solid var(--glass-border);border-radius:18px;overflow:hidden;backdrop-filter:blur(12px);}
.rates-table thead tr{background:linear-gradient(135deg,rgba(124,58,237,.3),rgba(249,115,22,.2));}
.rates-table th{padding:18px 24px;font-size:.75rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.7);text-align:left;}
.rates-table th:last-child{text-align:right;}
.rates-table tbody tr{border-top:1px solid rgba(255,255,255,.06);background:var(--glass);transition:background .2s;}
.rates-table tbody tr:hover{background:rgba(249,115,22,.06);}
.rates-table tbody tr.featured-row{background:linear-gradient(90deg,rgba(124,58,237,.12),rgba(249,115,22,.08));border-color:rgba(249,115,22,.2);}
.rates-table td{padding:18px 24px;font-size:.92rem;vertical-align:middle;}
.td-duration{font-family:'Playfair Display',serif;font-size:1.05rem;font-weight:700;color:#fff;}
.td-price{font-family:'Playfair Display',serif;font-size:1.4rem;font-weight:900;background:linear-gradient(135deg,var(--purple),var(--pink),var(--orange));-webkit-background-clip:text;-webkit-text-fill-color:transparent;text-align:right;}
.td-type{color:rgba(255,255,255,.5);font-size:.85rem;}
.td-features{color:rgba(255,255,255,.55);font-size:.85rem;}
.badge-pop{display:inline-block;background:linear-gradient(135deg,var(--purple),var(--pink),var(--orange));font-size:.6rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:3px 10px;border-radius:50px;color:#fff;margin-left:8px;vertical-align:middle;}

/* RATES CARDS (mobile-friendly view) */
.rates-cards{display:none;grid-template-columns:repeat(3,1fr);gap:20px;}
.rate-card{border-radius:20px;padding:30px 22px;border:1px solid var(--glass-border);background:var(--glass);backdrop-filter:blur(12px);text-align:center;position:relative;overflow:hidden;transition:transform .3s,box-shadow .3s;}
.rate-card:hover{transform:translateY(-5px);box-shadow:0 20px 48px rgba(124,58,237,.2);}
.rate-card.featured{border-color:rgba(249,115,22,.5);background:linear-gradient(135deg,rgba(124,58,237,.1),rgba(249,115,22,.08));}
.rate-card.featured::before{content:'Most Popular';position:absolute;top:12px;right:12px;background:linear-gradient(135deg,var(--purple),var(--pink),var(--orange));font-size:.6rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:3px 10px;border-radius:50px;}
.rc-dur{font-size:.72rem;font-weight:600;letter-spacing:.15em;text-transform:uppercase;color:rgba(255,255,255,.38);margin-bottom:10px;}
.rc-price{font-family:'Playfair Display',serif;font-size:2.7rem;font-weight:900;line-height:1;margin-bottom:3px;}
.rate-card.featured .rc-price{background:linear-gradient(135deg,var(--purple),var(--pink),var(--orange));-webkit-background-clip:text;-webkit-text-fill-color:transparent;}
.rc-cur{font-size:1.1rem;vertical-align:top;margin-top:5px;display:inline-block;}
.rc-sub{font-size:.74rem;color:rgba(255,255,255,.3);margin-bottom:22px;}
.rc-list{list-style:none;display:flex;flex-direction:column;gap:8px;text-align:left;font-size:.84rem;color:rgba(255,255,255,.58);}
.rc-list li{display:flex;align-items:center;gap:8px;}
.rc-list li::before{content:'✦';color:var(--orange);font-size:.5rem;flex-shrink:0;}

/* QUICK CONTACT */
.quick-contact{background:var(--glass);border:1px solid var(--glass-border);border-radius:24px;padding:48px;backdrop-filter:blur(12px);text-align:center;margin-top:60px;}
.quick-contact h3{font-family:'Playfair Display',serif;font-size:2rem;font-weight:700;margin-bottom:12px;}
.quick-contact p{color:rgba(255,255,255,.55);font-size:.95rem;margin-bottom:32px;max-width:500px;margin-left:auto;margin-right:auto;}
.qc-channels{display:flex;justify-content:center;gap:16px;flex-wrap:wrap;margin-bottom:28px;}
.qc-ch{display:flex;align-items:center;gap:10px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);border-radius:50px;padding:11px 22px;text-decoration:none;color:#fff;font-size:.88rem;font-weight:500;transition:all .2s;}
.qc-ch:hover{border-color:rgba(249,115,22,.45);background:rgba(249,115,22,.08);transform:translateY(-2px);}
.qc-icon{width:26px;height:26px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.8rem;}
.btn-book{display:inline-flex;align-items:center;gap:8px;background:linear-gradient(135deg,var(--purple),var(--pink),var(--orange));color:#fff;border:none;padding:15px 38px;border-radius:50px;font-size:.92rem;font-weight:600;letter-spacing:.05em;cursor:pointer;text-decoration:none;box-shadow:0 8px 28px rgba(124,58,237,.4);transition:transform .2s,box-shadow .2s;}
.btn-book:hover{transform:translateY(-2px);box-shadow:0 14px 38px rgba(249,115,22,.45);}

/* INTRO BANNER */
.rates-intro{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center;background:var(--glass);border:1px solid var(--glass-border);border-radius:24px;padding:44px;backdrop-filter:blur(12px);margin-bottom:60px;}
.rates-intro h3{font-family:'Playfair Display',serif;font-size:1.8rem;font-weight:700;margin-bottom:14px;line-height:1.2;}
.rates-intro p{color:rgba(255,255,255,.58);line-height:1.75;font-size:.95rem;margin-bottom:14px;}
.intro-points{display:flex;flex-direction:column;gap:12px;margin-top:6px;}
.ip{display:flex;align-items:flex-start;gap:12px;font-size:.9rem;color:rgba(255,255,255,.65);}
.ip-dot{width:20px;height:20px;border-radius:50%;background:linear-gradient(135deg,var(--purple),var(--pink),var(--orange));flex-shrink:0;display:flex;align-items:center;justify-content:center;margin-top:2px;}
.ip-dot svg{width:11px;height:11px;stroke:#fff;}
.rates-intro-right{display:flex;flex-direction:column;gap:14px;}
.quick-stat-box{background:rgba(255,255,255,.05);border:1px solid rgba(249,115,22,.25);border-radius:16px;padding:20px 24px;display:flex;align-items:center;gap:18px;}
.qsb-icon{width:46px;height:46px;border-radius:12px;background:linear-gradient(135deg,var(--purple),var(--pink),var(--orange));display:flex;align-items:center;justify-content:center;font-size:1.2rem;flex-shrink:0;}
.qsb-val{font-family:'Playfair Display',serif;font-size:1.6rem;font-weight:900;color:#fff;line-height:1;}
.qsb-label{font-size:.72rem;color:rgba(255,255,255,.4);text-transform:uppercase;letter-spacing:.08em;margin-top:3px;}

/* CONTACT LAYOUT */
.contact-layout{display:grid;grid-template-columns:1fr 1.4fr;gap:52px;align-items:start;}

/* INFO SIDE */
.contact-info h3{font-family:'Playfair Display',serif;font-size:1.9rem;font-weight:700;margin-bottom:14px;line-height:1.2;}
.contact-info p{color:rgba(255,255,255,.55);line-height:1.75;font-size:.95rem;margin-bottom:30px;}
.info-note{background:rgba(249,115,22,.08);border:1px solid rgba(249,115,22,.25);border-radius:12px;padding:14px 18px;font-size:.84rem;color:rgba(255,255,255,.6);margin-bottom:30px;line-height:1.6;}
.info-note strong{color:var(--orange);}

.channels{display:flex;flex-direction:column;gap:12px;}
.ch-item{display:flex;align-items:center;gap:14px;background:var(--glass);border:1px solid var(--glass-border);border-radius:14px;padding:15px 20px;text-decoration:none;color:#fff;transition:all .2s;}
.ch-item:hover{border-color:rgba(249,115,22,.45);background:rgba(249,115,22,.07);transform:translateX(4px);}
.ch-icon{width:42px;height:42px;border-radius:11px;display:flex;align-items:center;justify-content:center;font-size:1rem;flex-shrink:0;}
.ci-wa{background:linear-gradient(135deg,#25d366,#128c7e);}
.ci-tg{background:linear-gradient(135deg,#229ed9,#1a7bc4);}
.ci-em{background:linear-gradient(135deg,var(--purple),var(--pink));}
.ci-ph{background:linear-gradient(135deg,var(--orange),#e05c00);}
.ch-label{font-size:.68rem;color:rgba(255,255,255,.36);margin-bottom:2px;text-transform:uppercase;letter-spacing:.08em;}
.ch-val{font-weight:600;font-size:.9rem;}
.ch-arrow{color:rgba(255,255,255,.26);margin-left:auto;}

.availability-card{background:var(--glass);border:1px solid var(--glass-border);border-radius:16px;padding:22px 24px;margin-top:24px;}
.av-title{font-size:.72rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--orange);margin-bottom:16px;display:flex;align-items:center;gap:8px;}
.av-title::after{content:'';flex:1;height:1px;background:rgba(249,115,22,.2);}
.av-row{display:flex;justify-content:space-between;padding:9px 0;border-bottom:1px solid rgba(255,255,255,.05);font-size:.88rem;}
.av-row:last-child{border-bottom:none;}
.av-day{color:rgba(255,255,255,.45);}
.av-time{color:#fff;font-weight:600;}

/* FORM SIDE */
.contact-form{background:var(--glass);border:1px solid var(--glass-border);border-radius:24px;padding:38px;backdrop-filter:blur(12px);}
.contact-form h4{font-family:'Playfair Display',serif;font-size:1.5rem;margin-bottom:6px;}
.contact-form .form-sub{font-size:.85rem;color:rgba(255,255,255,.4);margin-bottom:28px;}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.form-group{margin-bottom:16px;}
.form-group label{display:block;font-size:.7rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.38);margin-bottom:7px;}
.form-group input,.form-group select,.form-group textarea{width:100%;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:11px;padding:12px 15px;color:#fff;font-family:'DM Sans',sans-serif;font-size:.9rem;outline:none;transition:border-color .2s;}
.form-group input::placeholder,.form-group textarea::placeholder{color:rgba(255,255,255,.2);}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:rgba(249,115,22,.5);}
.form-group select option{background:#1A0028;}
.form-group textarea{resize:vertical;min-height:100px;}
.btn-submit{width:100%;background:linear-gradient(135deg,var(--purple),var(--pink),var(--orange));color:#fff;border:none;padding:15px;border-radius:11px;font-size:.9rem;font-weight:700;letter-spacing:.05em;cursor:pointer;margin-top:6px;transition:opacity .2s,transform .2s;box-shadow:0 8px 24px rgba(124,58,237,.35);}
.btn-submit:hover{opacity:.88;transform:translateY(-1px);}
.form-agree{display:flex;align-items:flex-start;gap:10px;font-size:.8rem;color:rgba(255,255,255,.45);margin-top:4px;}
.form-agree input{width:16px;height:16px;margin-top:2px;flex-shrink:0;accent-color:var(--orange);}

/* BLOG LAYOUT */
.blog-layout{display:grid;grid-template-columns:1fr 340px;gap:48px;align-items:start;}

/* ARTICLE */
.article-body{background:var(--glass);border:1px solid var(--glass-border);border-radius:22px;padding:44px;backdrop-filter:blur(12px);}
.article-featured-img{width:100%;aspect-ratio:16/9;background:linear-gradient(135deg,rgba(124,58,237,.25),rgba(249,115,22,.2));border-radius:14px;margin-bottom:36px;display:flex;align-items:center;justify-content:center;flex-direction:column;gap:8px;color:rgba(255,255,255,.2);font-size:.75rem;letter-spacing:.1em;text-transform:uppercase;}
.article-featured-img svg{width:40px;height:40px;opacity:.2;}
.article-body h2{font-family:'Playfair Display',serif;font-size:1.6rem;font-weight:700;margin:28px 0 14px;color:#fff;}
.article-body h3{font-family:'Playfair Display',serif;font-size:1.25rem;font-weight:700;margin:24px 0 12px;color:rgba(255,255,255,.9);}
.article-body p{color:rgba(255,255,255,.62);line-height:1.85;font-size:.96rem;margin-bottom:18px;}
.article-body blockquote{border-left:3px solid var(--orange);padding:16px 22px;margin:28px 0;background:rgba(249,115,22,.06);border-radius:0 12px 12px 0;font-family:'Playfair Display',serif;font-style:italic;font-size:1.05rem;color:rgba(255,255,255,.75);}
.article-body ul{color:rgba(255,255,255,.62);line-height:1.85;font-size:.96rem;margin-bottom:18px;padding-left:0;list-style:none;}
.article-body ul li{display:flex;align-items:flex-start;gap:10px;margin-bottom:10px;}
.article-body ul li::before{content:'✦';color:var(--orange);font-size:.55rem;flex-shrink:0;margin-top:6px;}
.article-tags{display:flex;flex-wrap:wrap;gap:9px;margin:28px 0;}
.article-tag{background:var(--glass);border:1px solid var(--glass-border);border-radius:50px;padding:6px 16px;font-size:.78rem;color:rgba(255,255,255,.55);}
.share-row{display:flex;align-items:center;gap:12px;padding-top:24px;border-top:1px solid rgba(255,255,255,.07);}
.share-label{font-size:.75rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.35);}
.share-btn{width:36px;height:36px;border-radius:50%;background:var(--glass);border:1px solid var(--glass-border);display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:.85rem;transition:all .2s;}
.share-btn:hover{border-color:rgba(249,115,22,.45);background:rgba(249,115,22,.1);}

/* AUTHOR BIO */
.author-bio{background:var(--glass);border:1px solid var(--glass-border);border-radius:22px;padding:32px;backdrop-filter:blur(12px);margin-top:28px;}
.author-bio-inner{display:flex;gap:20px;align-items:flex-start;}
.author-avatar-lg{width:70px;height:70px;border-radius:50%;background:linear-gradient(135deg,var(--purple),var(--pink),var(--orange));display:flex;align-items:center;justify-content:center;font-family:'Playfair Display',serif;font-size:1.6rem;font-weight:700;flex-shrink:0;}
.author-bio-text h4{font-family:'Playfair Display',serif;font-size:1.1rem;font-weight:700;margin-bottom:4px;}
.author-bio-text .author-role{font-size:.75rem;color:var(--orange);font-weight:600;letter-spacing:.08em;text-transform:uppercase;margin-bottom:10px;}
.author-bio-text p{font-size:.88rem;color:rgba(255,255,255,.55);line-height:1.7;}

/* COMMENTS */
.comments-section{margin-top:28px;}
.comments-title{font-family:'Playfair Display',serif;font-size:1.4rem;font-weight:700;margin-bottom:24px;display:flex;align-items:center;gap:10px;}
.comment-count{background:linear-gradient(135deg,var(--purple),var(--pink));font-size:.7rem;font-weight:700;padding:3px 10px;border-radius:50px;font-family:'DM Sans',sans-serif;}
.comment-item{background:var(--glass);border:1px solid var(--glass-border);border-radius:16px;padding:22px;backdrop-filter:blur(10px);margin-bottom:14px;}
.comment-header{display:flex;align-items:center;gap:12px;margin-bottom:12px;}
.comment-avatar{width:40px;height:40px;border-radius:50%;background:linear-gradient(135deg,var(--purple),var(--orange));display:flex;align-items:center;justify-content:center;font-family:'Playfair Display',serif;font-size:.95rem;font-weight:700;flex-shrink:0;}
.comment-author{font-weight:600;font-size:.9rem;}
.comment-date{font-size:.72rem;color:rgba(255,255,255,.35);margin-top:2px;}
.comment-text{font-size:.9rem;color:rgba(255,255,255,.6);line-height:1.7;}
.comment-reply{display:inline-flex;align-items:center;gap:5px;font-size:.74rem;font-weight:600;color:var(--orange);margin-top:10px;cursor:pointer;letter-spacing:.05em;text-transform:uppercase;background:none;border:none;}

/* COMMENT BOX */
.comment-box{background:var(--glass);border:1px solid var(--glass-border);border-radius:22px;padding:32px;backdrop-filter:blur(12px);margin-top:28px;}
.comment-box h4{font-family:'Playfair Display',serif;font-size:1.3rem;font-weight:700;margin-bottom:6px;}
.comment-box .cb-sub{font-size:.84rem;color:rgba(255,255,255,.4);margin-bottom:22px;}
.cb-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.cb-group{margin-bottom:14px;}
.cb-group label{display:block;font-size:.7rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.38);margin-bottom:7px;}
.cb-group input,.cb-group textarea{width:100%;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:10px;padding:11px 14px;color:#fff;font-family:'DM Sans',sans-serif;font-size:.9rem;outline:none;transition:border-color .2s;}
.cb-group input::placeholder,.cb-group textarea::placeholder{color:rgba(255,255,255,.2);}
.cb-group input:focus,.cb-group textarea:focus{border-color:rgba(249,115,22,.5);}
.cb-group textarea{resize:vertical;min-height:100px;}
.btn-comment{background:linear-gradient(135deg,var(--purple),var(--pink),var(--orange));color:#fff;border:none;padding:13px 28px;border-radius:10px;font-size:.88rem;font-weight:700;cursor:pointer;box-shadow:0 6px 20px rgba(124,58,237,.35);transition:transform .2s,opacity .2s;}
.btn-comment:hover{opacity:.88;transform:translateY(-1px);}

/* SIDEBAR */
.sidebar{display:flex;flex-direction:column;gap:24px;}
.sb-widget{background:var(--glass);border:1px solid var(--glass-border);border-radius:18px;padding:24px;backdrop-filter:blur(12px);}
.sb-title{font-family:'Playfair Display',serif;font-size:1.05rem;font-weight:700;margin-bottom:18px;padding-bottom:12px;border-bottom:1px solid rgba(255,255,255,.08);display:flex;align-items:center;gap:8px;}
.sb-title::before{content:'';width:3px;height:18px;background:linear-gradient(135deg,var(--purple),var(--orange));border-radius:2px;flex-shrink:0;}

/* Profile widget */
.sb-profile-img{width:100%;aspect-ratio:3/4;border-radius:14px;background:linear-gradient(160deg,rgba(124,58,237,.2),rgba(249,115,22,.2));display:flex;align-items:center;justify-content:center;flex-direction:column;gap:8px;color:rgba(255,255,255,.2);font-size:.7rem;letter-spacing:.1em;text-transform:uppercase;margin-bottom:16px;}
.sb-profile-img svg{width:30px;height:30px;opacity:.2;}
.sb-profile-name{font-family:'Playfair Display',serif;font-size:1.1rem;font-weight:700;margin-bottom:4px;}
.sb-profile-sub{font-size:.75rem;color:rgba(255,255,255,.4);margin-bottom:14px;}
.sb-book-btn{width:100%;background:linear-gradient(135deg,var(--purple),var(--pink),var(--orange));color:#fff;border:none;padding:12px;border-radius:10px;font-size:.85rem;font-weight:700;cursor:pointer;text-decoration:none;display:block;text-align:center;}

/* Recent posts */
.sb-post{display:flex;gap:12px;padding:12px 0;border-bottom:1px solid rgba(255,255,255,.06);}
.sb-post:last-child{border-bottom:none;padding-bottom:0;}
.sb-post-thumb{width:58px;height:58px;border-radius:10px;background:linear-gradient(135deg,rgba(124,58,237,.3),rgba(249,115,22,.2));flex-shrink:0;display:flex;align-items:center;justify-content:center;}
.sb-post-thumb svg{width:20px;height:20px;opacity:.3;}
.sb-post-title{font-size:.86rem;font-weight:600;color:#fff;line-height:1.35;margin-bottom:5px;transition:color .2s;}
.sb-post-title:hover{color:var(--orange);}
.sb-post-date{font-size:.72rem;color:rgba(255,255,255,.35);}

/* Tags cloud */
.sb-tags{display:flex;flex-wrap:wrap;gap:8px;}
.sb-tag{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:50px;padding:5px 14px;font-size:.76rem;color:rgba(255,255,255,.55);transition:all .2s;cursor:pointer;}
.sb-tag:hover{border-color:rgba(249,115,22,.4);color:var(--orange);}

/* Quick contact */
.sb-contact-btn{display:flex;align-items:center;gap:10px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:11px;padding:12px 16px;text-decoration:none;color:#fff;font-size:.87rem;font-weight:500;transition:all .2s;margin-bottom:10px;}
.sb-contact-btn:last-child{margin-bottom:0;}
.sb-contact-btn:hover{border-color:rgba(249,115,22,.4);background:rgba(249,115,22,.07);}
.sb-ch-icon{width:34px;height:34px;border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:.85rem;flex-shrink:0;}