
  /* ============================================================
     THEME VARIABLES
     ivory  = Ivory & Champagne Executive Luxury (default)
     ============================================================ */
  :root {
    --bg-1: #f7f3ea;
    --bg-2: #efe8db;
    --bg-3: #f3ece0;
    --bg-4: #f7f3ea;
    --orb-a: rgba(200, 162, 74, 0.22);
    --orb-b: rgba(216, 184, 106, 0.18);
    --orb-c: rgba(221, 209, 191, 0.3);

    --glass-bg: rgba(251, 248, 242, 0.72);
    --glass-bg-strong: rgba(232, 221, 203, 0.8);
    --glass-border: rgba(200, 162, 74, 0.4);
    --glass-border-soft: rgba(221, 209, 191, 0.7);

    --text-primary: #2e2a26;
    --text-muted: #6f665a;

    --gold-1: #c8a24a;
    --gold-2: #d8b86a;
    --gold-3: #a97f2f;
    --grad-gold: linear-gradient(135deg, #e5c87e 0%, #c8a24a 55%, #a97f2f 100%);
    --grad-text: linear-gradient(120deg, #3a342c 15%, #8a6d2f 45%, #c8a24a 85%);

    --glow: rgba(200, 162, 74, 0.28);
    --shadow-glow: 0 12px 34px rgba(80, 62, 30, 0.12), 0 3px 12px rgba(80, 62, 30, 0.08), 0 0 24px var(--glow);
    --shadow-soft: 0 8px 24px rgba(80, 62, 30, 0.1), 0 0 16px rgba(200, 162, 74, 0.08);
    --hover-glow: 0 20px 48px rgba(80, 62, 30, 0.16), 0 0 34px rgba(200, 162, 74, 0.14);

    --dot: #c8a24a;
    --chip-bg: rgba(251, 248, 242, 0.8);
    --stat-bg: rgba(243, 236, 224, 0.6);

    --rose: #d97777;
    --rose-soft: #e8a0a0;
    --rose-deep: #b85c5c;
    --call: #5d8a66;
    --call-soft: #86a88e;
    --call-deep: #47704f;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: "Segoe UI", "Inter", system-ui, -apple-system, sans-serif;
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    background: #f7f3ea;
    transition: background 0.6s ease;
  }

  h1, h2, h3, .brand, .stat .value, .price-amount {
    font-family: Georgia, "Times New Roman", "Playfair Display", serif;
    font-weight: 600;
  }

  h1, h2 { letter-spacing: 0.5px; }

  /* ---------- Luxury dark gradient backdrop ---------- */
  .aurora {
    position: fixed;
    inset: 0;
    z-index: -2;
    background: linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 30%, var(--bg-3) 55%, var(--bg-4) 100%);
    background-size: 300% 300%;
    animation: auroraShift 24s ease-in-out infinite;
    transition: background 0.6s ease;
  }

  @keyframes auroraShift {
    0%   { background-position: 0% 0%; }
    50%  { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
  }

  .aurora::before,
  .aurora::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.4;
    animation: drift 28s ease-in-out infinite alternate;
  }

  .aurora::before {
    width: 55vw;
    height: 55vw;
    top: -12vw;
    left: -10vw;
    background: radial-gradient(circle, var(--orb-a) 0%, transparent 65%);
  }

  .aurora::after {
    width: 50vw;
    height: 50vw;
    bottom: -14vw;
    right: -8vw;
    background: radial-gradient(circle, var(--orb-b) 0%, transparent 65%);
    animation-delay: -12s;
    animation-duration: 34s;
  }

  .aurora .third {
    position: absolute;
    width: 38vw;
    height: 38vw;
    top: 38%;
    left: 34%;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.3;
    background: radial-gradient(circle, var(--orb-c) 0%, transparent 62%);
    animation: drift 22s ease-in-out infinite alternate-reverse;
  }

  @keyframes drift {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(6vw, 4vw) scale(1.25); }
  }

  .stars {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
      radial-gradient(1.5px 1.5px at 20% 30%, rgba(200, 162, 74, 0.4), transparent 60%),
      radial-gradient(1px 1px at 70% 20%, rgba(139, 124, 100, 0.3), transparent 60%),
      radial-gradient(1.5px 1.5px at 85% 65%, rgba(200, 162, 74, 0.35), transparent 60%),
      radial-gradient(1px 1px at 40% 80%, rgba(139, 124, 100, 0.25), transparent 60%),
      radial-gradient(1px 1px at 10% 60%, rgba(200, 162, 74, 0.3), transparent 60%);
    pointer-events: none;
  }

  /* ---------- Glass primitives (dark luxury) ---------- */
  .glass {
    background: var(--glass-bg);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg, 24px);
    box-shadow: var(--shadow-glow), inset 0 0 0 1px var(--glass-border-soft);
    transition: background 0.6s ease, border-color 0.6s ease, box-shadow 0.6s ease;
  }

  .glass-hover {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease;
  }

  .glass-hover:hover {
    transform: translateY(-8px);
    background: var(--glass-bg-strong);
    box-shadow: var(--hover-glow), inset 0 0 0 1px rgba(200, 162, 74, 0.3);
  }

  .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--glass-bg);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid var(--glass-border-soft);
    font-size: 0.85rem;
    color: var(--text-muted);
    box-shadow: inset 0 0 0 1px rgba(216, 184, 106, 0.08), var(--shadow-soft);
    white-space: normal;
    letter-spacing: 0.6px;
  }

  .pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dot);
    box-shadow: 0 0 12px var(--dot);
    animation: pulse 2.2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.45; transform: scale(0.75); }
  }

  /* ---------- Layout ---------- */
  .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
  }

  /* ---------- Navbar ---------- */
  .nav-wrap {
    position: sticky;
    top: 18px;
    z-index: 50;
  }

  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 26px;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: clamp(9px, 8px + 0.5vw, 12px);
    font-weight: 700;
    font-size: clamp(0.95rem, 0.72rem + 1.1vw, 1.15rem);
    letter-spacing: clamp(1.8px, 1.2px + 0.3vw, 3.5px);
  }

  .brand .logo {
    width: clamp(30px, 26px + 1.2vw, 38px);
    height: clamp(30px, 26px + 1.2vw, 38px);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--grad-gold);
    box-shadow: 0 8px 24px var(--glow);
    font-family: Georgia, serif;
    font-weight: 700;
    font-size: clamp(0.62rem, 0.58rem + 0.15vw, 0.75rem);
    line-height: 1;
    color: #2e2a26;
    letter-spacing: 0.5px;
  }

  .brand .brand-text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin-inline: auto;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .nav-actions .wish-heart {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--glass-border-soft);
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    font-size: 1.12rem;
  }

  .nav-actions .wish-heart .wish-count { top: -4px; right: -6px; }

  .nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.92rem;
    padding: 9px 16px;
    border-radius: 12px;
    transition: all 0.25s ease;
  }

  .nav-links a:hover {
    color: var(--text-primary);
    background: var(--glass-bg-strong);
    backdrop-filter: blur(8px);
  }

  .wish-heart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.08rem;
    line-height: 1;
    color: var(--text-muted);
    text-decoration: none;
    text-shadow: 0 0 7px rgba(217, 119, 119, 0.5), 0 0 18px rgba(217, 119, 119, 0.22);
    transition: color 0.25s ease, transform 0.25s ease, background 0.25s ease, text-shadow 0.25s ease;
  }

  .wish-heart:hover {
    color: var(--rose);
    transform: scale(1.12);
    text-shadow: 0 0 9px rgba(217, 119, 119, 0.9), 0 0 24px rgba(217, 119, 119, 0.45);
  }

  .wish-heart.has-wish {
    color: var(--rose);
    text-shadow: 0 0 10px rgba(217, 119, 119, 1), 0 0 26px rgba(217, 119, 119, 0.55), 0 0 46px rgba(217, 119, 119, 0.3);
  }

  .wish-count {
    position: absolute;
    top: -5px;
    right: -8px;
    display: none;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--grad-gold);
    color: #2e2a26;
    font-size: 0.62rem;
    font-weight: 800;
    line-height: 16px;
    text-align: center;
    box-shadow: 0 0 10px var(--glow);
  }

.wish-count.show { display: inline-block; }

  .fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    text-decoration: none;
    color: var(--gold-1);
    background: var(--chip-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: inset 0 0 0 1px var(--glass-border-soft), 0 10px 26px rgba(0, 0, 0, 0.5);
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  }

  .fab svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
  }

  .fab-call { bottom: 82px; }

  .fab-wa {
    background: rgba(46, 42, 38, 0.35);
    border-color: rgba(37, 211, 102, 0.7);
    color: #25d366;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 10px 26px rgba(0, 0, 0, 0.45), 0 0 16px rgba(37, 211, 102, 0.6), 0 0 36px rgba(37, 211, 102, 0.3);
  }

  .fab-wa svg { filter: drop-shadow(0 0 7px rgba(37, 211, 102, 0.9)); }

  .fab-call {
    background: rgba(46, 42, 38, 0.35);
    border-color: rgba(93, 138, 102, 0.7);
    color: var(--call);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 10px 26px rgba(0, 0, 0, 0.45), 0 0 16px rgba(93, 138, 102, 0.6), 0 0 36px rgba(93, 138, 102, 0.3);
  }

  .fab-call svg { filter: drop-shadow(0 0 7px rgba(93, 138, 102, 0.9)); }

  .fab-wa:hover, .fab-call:hover {
    transform: scale(1.08);
    background: rgba(46, 42, 38, 0.6);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 14px 30px rgba(0, 0, 0, 0.55), 0 0 22px rgba(255, 255, 255, 0.08);
  }

  .nav-cta {
    text-decoration: none;
    color: #2e2a26;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.6px;
    line-height: 1;
    padding: 11px 22px;
    border-radius: 999px;
    background: var(--grad-gold);
    box-shadow: 0 8px 24px var(--glow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .nav-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 40px var(--glow);
  }

  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 12px;
    border: 1px solid var(--glass-border-soft);
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--text-muted);
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
  }

  .nav-toggle:hover span { background: var(--gold-1); }

  .nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* ---------- Hero ---------- */
.hero {
    padding-block: 84px 64px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
  }

  .hero-copy { min-width: 0; }

  .hero-copy .pill { margin-bottom: 26px; }

  .hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 6px 26px var(--glow));
  }

  .hero h1 em {
    font-style: normal;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .hero p {
    max-width: 520px;
    margin-bottom: 36px;
    color: var(--text-muted);
    font-size: 1.06rem;
    line-height: 1.8;
  }

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

  .btn {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.4px;
    padding: 15px 34px;
    border-radius: 999px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    font-family: inherit;
  }

  .btn-primary {
    color: #2e2a26;
    background: var(--grad-gold);
    box-shadow: 0 12px 34px var(--glow);
  }

  .btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 48px var(--glow); }

  .btn-ghost {
    color: var(--text-primary);
    background: var(--glass-bg);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft), inset 0 0 0 1px var(--glass-border-soft);
  }

  .btn-ghost:hover { transform: translateY(-3px); background: var(--glass-bg-strong); }

  /* Hero visual */
  .hero-visual {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    min-width: 0;
  }

  .portrait-card {
    position: relative;
    border-radius: var(--radius-lg, 24px);
    overflow: hidden;
    padding: 12px;
  }

  .portrait-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    filter: sepia(0.28) contrast(1.05) brightness(0.92);
  }

  .portrait-card.large img { height: 520px; }
  .portrait-card.small { align-self: end; margin-bottom: -40px; }
  .portrait-card.small img { height: 300px; }

  .portrait-tag {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    background: var(--chip-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    box-shadow: inset 0 0 0 1px var(--glass-border-soft);
  }

  .floating-chip {
    position: absolute;
    z-index: 5;
    background: var(--chip-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 14px 20px;
    box-shadow: var(--shadow-glow), inset 0 0 0 1px var(--glass-border-soft);
    animation: float 6s ease-in-out infinite;
  }

  .floating-chip .big {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: Georgia, serif;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .floating-chip .lbl { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 1.6px; text-transform: uppercase; margin-top: 2px; }

  .chip-1 { top: 60px; right: -28px; animation-delay: -2s; }
  .chip-2 { bottom: 90px; left: -34px; animation-delay: -4s; }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-14px); }
  }

  /* ---------- Marquee ---------- */
  .marquee {
    padding: 10px 0 26px;
    overflow: hidden;
  }

  .marquee-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scroll 26s linear infinite;
    color: rgba(200, 162, 74, 0.55);
    font-size: 0.95rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: Georgia, serif;
  }

  .marquee-track span { display: flex; align-items: center; gap: 60px; white-space: nowrap; }

  @keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ---------- Section heads ---------- */
  .section-head {
    text-align: center;
    margin-bottom: 48px;
  }

  .section-head h2 {
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .section-head::after {
    content: "◆";
    display: block;
    color: var(--gold-2);
    font-size: 0.8rem;
    letter-spacing: 6px;
    margin-top: -6px;
    margin-bottom: 8px;
    text-shadow: 0 0 14px var(--glow);
  }

  .section-head p {
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
  }

  /* ---------- Gallery ---------- */
  .gallery { padding: 40px 0 70px; }

  .filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
  }

  .filter-btn {
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 11px 24px;
    border-radius: 999px;
    cursor: pointer;
    background: var(--glass-bg);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid var(--glass-border-soft);
    box-shadow: inset 0 0 0 1px rgba(216, 184, 106, 0.07), var(--shadow-soft);
    transition: all 0.25s ease;
  }

  .filter-btn:hover { color: var(--text-primary); background: var(--glass-bg-strong); border-color: var(--glass-border); }

  .filter-btn.active {
    color: #2e2a26;
    background: var(--grad-gold);
    border-color: transparent;
    box-shadow: 0 10px 28px var(--glow);
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 26px;
  }

  .model-card {
    position: relative;
    border-radius: var(--radius-lg, 24px);
    overflow: hidden;
    padding: 12px;
  }

  .model-card.hidden { display: none; }

  .blog-card-z.hidden { display: none; }

  .model-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    filter: sepia(0.3) contrast(1.04) brightness(0.9);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
  }

  .model-card:hover img {
    transform: scale(1.05);
    filter: sepia(0.15) contrast(1.05) brightness(1);
  }

  .model-info {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 16px;
    background: var(--chip-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: inset 0 0 0 1px var(--glass-border-soft);
  }

  .model-info > div { flex: 1 1 auto; min-width: 0; }

.model-info .name { font-weight: 700; font-size: 0.95rem; letter-spacing: 1px; font-family: Georgia, serif; }

  .model-info .name-link {
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.25;
    letter-spacing: 1px;
    font-family: Georgia, serif;
    color: var(--text-primary);
    text-decoration: none;
    transition: text-shadow 0.25s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .model-info .name-link:hover { text-shadow: 0 0 14px var(--glow); }

  .model-info .meta { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; letter-spacing: 0.6px; line-height: 1.35; }

  .model-tag {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-3);
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(169, 127, 47, 0.12);
    border: 1px solid rgba(169, 127, 47, 0.4);
    white-space: nowrap;
  }

  /* ---------- Verified & availability badges (top-left) ---------- */
  .card-badges {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    pointer-events: none;
  }

  .badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0 0 0 1px rgba(216, 184, 106, 0.14), 0 8px 22px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
  }

  .badge-verified {
    color: var(--gold-1);
    background: linear-gradient(135deg, rgba(46, 42, 38, 0.78), rgba(46, 42, 38, 0.55));
    border: 1px solid rgba(216, 184, 106, 0.75);
    text-shadow: 0 0 8px rgba(216, 184, 106, 0.7), 0 0 18px rgba(200, 162, 74, 0.4);
    animation: verifiedGlow 2.6s ease-in-out infinite;
  }

  .badge-verified::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    font-size: 0.5rem;
    color: #2e2a26;
    background: var(--grad-gold);
    box-shadow: 0 0 10px rgba(216, 184, 106, 0.9), 0 0 24px rgba(200, 162, 74, 0.55);
    animation: verifiedCheck 2.6s ease-in-out infinite;
  }

  @keyframes verifiedGlow {
    0%, 100% {
      box-shadow: 0 0 0 0 rgba(216, 184, 106, 0.5), 0 0 12px rgba(200, 162, 74, 0.4), inset 0 0 8px rgba(216, 184, 106, 0.2);
      text-shadow: 0 0 8px rgba(216, 184, 106, 0.7), 0 0 18px rgba(200, 162, 74, 0.4);
    }
    50% {
      box-shadow: 0 0 0 5px rgba(216, 184, 106, 0), 0 0 24px rgba(200, 162, 74, 0.9), inset 0 0 16px rgba(216, 184, 106, 0.45);
      text-shadow: 0 0 12px rgba(216, 184, 106, 1), 0 0 30px rgba(200, 162, 74, 0.7), 0 0 46px rgba(216, 184, 106, 0.4);
    }
  }

  @keyframes verifiedCheck {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.18); }
  }

  .badge-available {
    color: #a9f4c7;
    background: rgba(6, 24, 13, 0.6);
    border: 1px solid rgba(110, 231, 164, 0.45);
  }

  .badge-available::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #3ad97b;
    box-shadow: 0 0 8px #3ad97b;
    animation: pulse 2.2s ease-in-out infinite;
  }

.badge-tour {
    color: #fdd9a0;
    background: rgba(30, 16, 4, 0.6);
    border: 1px solid rgba(245, 197, 92, 0.5);
  }

  .badge-tour::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #f5a942;
    box-shadow: 0 0 8px #f5a942;
  }

  .badge-busy {
    color: #ffb0b0;
    background: rgba(40, 8, 8, 0.6);
    border: 1px solid rgba(255, 117, 117, 0.45);
  }

  .badge-busy::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ff6b6b;
    box-shadow: 0 0 8px #ff6b6b;
  }

  .badge-featured {
    color: #ffe9a8;
    background: linear-gradient(160deg, rgba(200, 162, 74, 0.32), rgba(120, 90, 20, 0.28));
    border: 1px solid rgba(216, 184, 106, 0.55);
  }

  .badge-featured::before {
    content: "★";
    font-size: 0.5rem;
    color: var(--gold-1);
  }

  /* ---------- Wishlist (top-right) ---------- */
.wish-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 3;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    border: 1px solid rgba(217, 119, 119, 0.45);
    background: var(--chip-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--rose);
    box-shadow: inset 0 0 0 1px rgba(217, 119, 119, 0.18), 0 8px 22px rgba(0, 0, 0, 0.5);
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  }

  .wish-btn svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 5px rgba(217, 119, 119, 0.8));
  }

  .wish-btn:hover {
    transform: scale(1.12);
    background: rgba(217, 119, 119, 0.16);
    box-shadow: 0 0 18px rgba(217, 119, 119, 0.4), inset 0 0 0 1px rgba(232, 160, 160, 0.35);
  }

  .wish-btn.active {
    color: #fff;
    background: linear-gradient(135deg, var(--rose-soft) 0%, var(--rose) 55%, var(--rose-deep) 100%);
    border-color: transparent;
    box-shadow: 0 0 12px rgba(217, 119, 119, 0.9), 0 0 30px rgba(217, 119, 119, 0.5), 0 0 50px rgba(217, 119, 119, 0.3);
  }

  .wish-btn.active svg { fill: currentColor; }

  .wish-btn.pop { animation: pop 0.3s ease; }

  @keyframes pop {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.25); }
    100% { transform: scale(1); }
  }

  /* ---------- Call & WhatsApp (lower-right) ---------- */
  .card-contact {
    position: absolute;
    right: 24px;
    bottom: 128px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .contact-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-decoration: none;
    background: var(--chip-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0 0 0 1px var(--glass-border-soft), 0 8px 22px rgba(0, 0, 0, 0.5);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  }

  .contact-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
  }

  .contact-btn.wa svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    stroke: none;
  }

  .contact-btn:hover {
    transform: scale(1.12) translateY(-2px);
    background: rgba(200, 162, 74, 0.16);
  }

  .contact-btn.call {
    color: var(--call);
    border: 1px solid rgba(93, 138, 102, 0.5);
  }

  .contact-btn.call:hover { box-shadow: 0 0 18px rgba(93, 138, 102, 0.4), inset 0 0 0 1px rgba(134, 168, 142, 0.35); background: rgba(93, 138, 102, 0.16); }

  .contact-btn.wa {
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.5);
  }

  .contact-btn.wa:hover { box-shadow: 0 0 18px rgba(37, 211, 102, 0.4), inset 0 0 0 1px rgba(37, 211, 102, 0.35); }

  /* ---------- Spotlight ---------- */
  .spotlight { padding: 30px 0 70px; }

.spotlight-panel {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1.05fr;
    gap: 0;
    overflow: hidden;
    padding: 14px;
  }

  .spotlight-photo {
    border-radius: var(--radius-lg, 24px);
    overflow: hidden;
    min-height: 320px;
    background: linear-gradient(160deg, rgba(200, 162, 74, 0.18), rgba(46, 42, 38, 0.6));
  }

  .spotlight-photo img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
    filter: sepia(0.3) contrast(1.04) brightness(0.9);
  }

  .spotlight-body { padding: 26px 26px; display: flex; flex-direction: column; justify-content: center; }

  .spotlight-book {
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(200, 162, 74, 0.16);
  }

  .spotlight-book .book-title {
    color: var(--gold-1);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    margin-bottom: 12px;
    text-shadow: 0 0 18px var(--glow);
  }

  .spotlight-book .booking-form { max-width: 100%; margin-left: 0; margin-right: 0; gap: 8px; }

  .spotlight-book .booking-form input,
  .spotlight-book .booking-form select,
  .spotlight-book .booking-form textarea {
    padding: 8px 10px;
    font-size: 0.82rem;
    border-radius: 10px;
  }

  .spotlight-book .booking-form textarea { min-height: 52px; }

  .spotlight-book .booking-form label > span {
    font-size: 0.6rem;
    margin-bottom: 4px;
  }

  .spotlight-book .booking-form .btn {
    padding: 11px 22px;
    font-size: 0.85rem;
    margin-top: 2px;
  }

  .spotlight-book .booking-note { margin-left: 0; margin-right: 0; margin-bottom: 10px; padding: 9px 14px; font-size: 0.82rem; }

.spotlight-body .pill { margin-bottom: 16px; align-self: flex-start; }

  .spotlight-body h2 {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    margin-bottom: 6px;
    letter-spacing: 1px;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .spotlight-body .sub {
    color: var(--gold-1);
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    margin-bottom: 14px;
    text-shadow: 0 0 18px var(--glow);
  }

  .spotlight-body p { color: var(--text-muted); line-height: 1.65; margin-bottom: 18px; font-size: 0.95rem; }

  .spotlight-body .hero-actions { justify-content: flex-start; }

  .spotlight-body .hero-actions .btn { padding: 11px 22px; font-size: 0.85rem; }

  .spec-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(105px, 1fr));
    gap: 8px;
    margin-bottom: 20px;
  }

  .spec {
    padding: 10px 12px;
    border-radius: 12px;
    background: var(--stat-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 162, 74, 0.18);
    box-shadow: inset 0 0 0 1px rgba(216, 184, 106, 0.08);
  }

  .spec .k { font-size: 0.6rem; letter-spacing: 1.8px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
  .spec .v { font-weight: 700; font-size: 0.88rem; font-family: Georgia, serif; letter-spacing: 0.5px; }

  /* ---------- Services ---------- */
  .services { padding: 30px 0 70px; }

  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
  }

  .service-card { padding: 34px 30px; }

  .service-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    color: var(--gold-1);
    margin-bottom: 22px;
    background: rgba(200, 162, 74, 0.09);
    border: 1px solid rgba(200, 162, 74, 0.35);
    box-shadow: inset 0 0 0 1px rgba(216, 184, 106, 0.12), 0 10px 26px rgba(0, 0, 0, 0.5);
    text-shadow: 0 0 14px var(--glow);
  }

  .service-card h3 { font-size: 1.18rem; margin-bottom: 12px; letter-spacing: 1px; }
  .service-card p { color: var(--text-muted); font-size: 0.94rem; line-height: 1.75; }

  /* ---------- Stats ---------- */
  .stats-banner {
    padding: 40px 36px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
    text-align: center;
    margin-bottom: 70px;
  }

  .stat {
    padding: 22px;
    border-radius: 16px;
    background: var(--stat-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 162, 74, 0.18);
    box-shadow: inset 0 0 0 1px rgba(216, 184, 106, 0.07);
  }

  .stat .value {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 6px;
  }

  .stat .label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2.2px;
    color: var(--text-muted);
  }

  /* ---------- Testimonials ---------- */
  .testi-section { padding: 30px 0 70px; }

  .testi-panel {
    max-width: 860px;
    margin: 0 auto;
    padding: 52px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, rgba(200, 162, 74, 0.1), rgba(46, 42, 38, 0.3));
  }

  .testi-panel::before {
    content: "“";
    position: absolute;
    top: -30px;
    left: 30px;
    font-family: Georgia, serif;
    font-size: 9rem;
    line-height: 1;
    color: rgba(200, 162, 74, 0.12);
    pointer-events: none;
  }

  .testi-slider {
    position: relative;
    min-height: 300px;
  }

  .testi-slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
  }

  .testi-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .testi-stars {
    color: var(--gold-1);
    font-size: 1.05rem;
    letter-spacing: 6px;
    text-shadow: 0 0 16px var(--glow);
  }

  .testi-quote {
    font-family: Georgia, serif;
    font-size: clamp(1.15rem, 2.6vw, 1.5rem);
    font-style: italic;
    line-height: 1.65;
    letter-spacing: 0.3px;
    max-width: 640px;
    color: var(--text-primary);
  }

  .testi-quote em {
    font-style: normal;
    color: var(--gold-1);
  }

  .testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: #2e2a26;
    background: var(--grad-gold);
    box-shadow: 0 6px 20px var(--glow);
    border: 1px solid rgba(216, 184, 106, 0.6);
  }

  .testi-author .name { font-size: 0.95rem; font-weight: 600; letter-spacing: 0.5px; font-family: Georgia, serif; }
  .testi-author .role { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 1.2px; text-transform: uppercase; margin-top: 2px; }

  .testi-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 30px;
  }

  .testi-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--gold-1);
    background: rgba(200, 162, 74, 0.1);
    border: 1px solid rgba(200, 162, 74, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.25s ease;
  }

  .testi-arrow:hover {
    transform: scale(1.12);
    color: #2e2a26;
    background: var(--grad-gold);
    border-color: transparent;
    box-shadow: 0 0 20px var(--glow);
  }

  .testi-dots {
    display: flex;
    gap: 10px;
  }

  .testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: rgba(200, 162, 74, 0.3);
    transition: all 0.35s ease;
    padding: 0;
  }

  .testi-dot.active {
    width: 26px;
    background: var(--grad-gold);
    box-shadow: 0 0 14px var(--glow);
  }

  .testi-count {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-family: Georgia, serif;
  }

  /* ---------- FAQ ---------- */
  .faq-section { padding: 30px 0 70px; }

  .faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .faq-item {
    padding: 0;
    overflow: hidden;
  }

  .faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 22px 28px;
    cursor: pointer;
    font-family: Georgia, serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--text-primary);
    background: transparent;
    border: none;
    text-align: left;
  }

  .faq-q .faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.85rem;
    color: var(--gold-1);
    background: rgba(200, 162, 74, 0.12);
    border: 1px solid rgba(200, 162, 74, 0.4);
    text-shadow: 0 0 10px var(--glow);
    transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
  }

  .faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: #2e2a26;
    background: var(--grad-gold);
    border-color: transparent;
    box-shadow: 0 0 16px var(--glow);
  }

  .faq-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .faq-item.open .faq-a { grid-template-rows: 1fr; }

  .faq-a-inner {
    overflow: hidden;
    padding: 0 28px;
  }

  .faq-a p {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.95rem;
    padding-bottom: 24px;
    max-width: 700px;
  }

  /* ---------- CTA / Join ---------- */
  .join-section { padding: 10px 0 90px; }

  .join-panel {
    text-align: center;
    padding: 64px 40px;
    background: linear-gradient(160deg, rgba(200, 162, 74, 0.12), rgba(46, 42, 38, 0.35));
  }

  .join-panel h2 {
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    margin-bottom: 16px;
    letter-spacing: 1px;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .join-panel p {
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto 34px;
    line-height: 1.75;
  }

  .join-panel .hero-actions { justify-content: center; }

  .booking-note {
    max-width: 520px;
    margin: 26px auto 0;
    padding: 12px 18px;
    border-radius: 14px;
    font-size: 0.9rem;
    line-height: 1.6;
    border: 1px solid var(--glass-border);
    background: rgba(46, 42, 38, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .booking-note.ok { color: var(--gold-1); border-color: rgba(200, 162, 74, 0.5); box-shadow: 0 0 18px rgba(200, 162, 74, 0.12); }

  .booking-note.err { color: #ffb0b0; border-color: rgba(255, 120, 120, 0.4); }

  .join-divider {
    display: flex;
    justify-content: center;
    margin: 34px 0 28px;
    color: var(--gold-2);
    font-size: 0.72rem;
    letter-spacing: 8px;
    text-shadow: 0 0 14px var(--glow);
    opacity: 0.8;
  }

  .booking-form {
    max-width: 560px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .bf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .booking-form label { display: block; min-width: 0; }

  .booking-form label > span {
    display: block;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 7px;
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    width: 100%;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--glass-border-soft);
    border-radius: 12px;
    padding: 11px 14px;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    color-scheme: dark;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
  }

  .booking-form textarea { resize: vertical; min-height: 76px; }

  .booking-form select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--gold-2) 50%), linear-gradient(135deg, var(--gold-2) 50%, transparent 50%);
    background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
    background-size: 5px 5px;
    background-repeat: no-repeat;
    cursor: pointer;
  }

  .booking-form select option { background: #2e2a26; color: var(--text-primary); }

  .booking-form input:focus,
  .booking-form select:focus,
  .booking-form textarea:focus {
    border-color: rgba(200, 162, 74, 0.55);
    box-shadow: 0 0 0 3px rgba(200, 162, 74, 0.1);
  }

  .booking-form input::placeholder,
  .booking-form textarea::placeholder { color: rgba(221, 209, 191, 0.35); }

  .booking-form .btn { justify-content: center; margin-top: 4px; }

  .hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }

  @media (max-width: 520px) {
    .bf-row { grid-template-columns: 1fr; }
  }

  /* ---------- Footer ---------- */
  .footer-wrap {
    padding: 10px 0 44px;
  }

  footer.attractive {
    padding: 52px 44px 30px;
    background: linear-gradient(170deg, rgba(200, 162, 74, 0.08), rgba(46, 42, 38, 0.28));
  }

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(200, 162, 74, 0.18);
  }

  .footer-grid > * { min-width: 0; }

  .footer-brand .brand { margin-bottom: 16px; }

  .footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 260px;
    margin-bottom: 22px;
  }

  .footer-socials {
    display: flex;
    gap: 12px;
  }

  .social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold-1);
    background: rgba(200, 162, 74, 0.09);
    border: 1px solid rgba(200, 162, 74, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.25s ease;
    text-decoration: none;
  }

  .social-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
  }

  .social-btn:hover {
    transform: translateY(-3px) scale(1.1);
    color: #2e2a26;
    background: var(--grad-gold);
    border-color: transparent;
    box-shadow: 0 0 20px var(--glow);
  }

  .footer-col h4 {
    font-family: Georgia, serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--gold-1);
    margin-bottom: 20px;
  }

  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-col a, .footer-col li {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.4px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .footer-col a:hover { color: var(--gold-1); transform: translateX(4px); }
  .footer-col a::before { content: "◆"; font-size: 0.5rem; color: var(--gold-2); opacity: 0.6; }

  .footer-col .contact-line { color: var(--text-muted); font-size: 0.9rem; }
  .footer-col .contact-line a::before { content: none; }
  .footer-col .contact-line a { color: var(--gold-1); }

  .footer-newsletter p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .newsletter-form {
    display: flex;
    gap: 10px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(46, 42, 38, 0.5);
    border: 1px solid rgba(200, 162, 74, 0.3);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: inset 0 0 0 1px rgba(216, 184, 106, 0.08);
  }

  .newsletter-form input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.88rem;
    padding: 10px 16px;
    border-radius: 999px;
  }

  .newsletter-form input::placeholder { color: rgba(221, 209, 191, 0.4); }

  .newsletter-form button {
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.6px;
    color: #2e2a26;
    background: var(--grad-gold);
    padding: 10px 22px;
    border-radius: 999px;
    box-shadow: 0 6px 22px var(--glow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    white-space: nowrap;
  }

  .newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--glow);
  }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 28px;
    color: rgba(221, 209, 191, 0.5);
    font-size: 0.82rem;
    letter-spacing: 1px;
  }

  .footer-bottom .legal {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
  }

  .footer-bottom .legal a {
    color: rgba(221, 209, 191, 0.5);
    text-decoration: none;
    transition: color 0.25s ease;
  }

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

  .back-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-1);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.25s ease;
  }

  .back-top:hover { text-shadow: 0 0 14px var(--glow); }

  .back-top .ring {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(200, 162, 74, 0.12);
    border: 1px solid rgba(200, 162, 74, 0.4);
    transition: all 0.25s ease;
  }

  .back-top:hover .ring {
    color: #2e2a26;
    background: var(--grad-gold);
    border-color: transparent;
    box-shadow: 0 0 16px var(--glow);
    transform: translateY(-3px);
  }

  @media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 720px) {
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    footer.attractive { padding: 40px 24px 26px; }
    .footer-bottom { justify-content: center; text-align: center; }
  }

  /* ---------- Premium blog cards (blog listing + related) ---------- */
  .blog-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px 0 0;
  }

  .premium-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border-radius: 20px;
    padding: 10px;
    border: 1px solid rgba(200, 162, 74, 0.28);
    background: var(--glass-bg);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    box-shadow: inset 0 0 0 1px rgba(200, 162, 74, 0.1), 0 14px 34px rgba(0, 0, 0, 0.45), 0 0 26px rgba(200, 162, 74, 0.05);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  }

  .pc-thumb {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    box-shadow: 0 0 0 1px var(--glass-border-soft);
  }

  .pc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: sepia(0.3) contrast(1.04) brightness(0.9);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
  }

  .pc-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    color: var(--gold-1);
    text-shadow: 0 0 12px var(--glow);
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(46, 42, 38, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 162, 74, 0.4);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
  }

  .pc-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px 14px 14px;
    min-width: 0;
  }

  .pc-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  .pc-meta .sep { color: var(--gold-2); opacity: 0.7; }

  .pc-title {
    font-size: clamp(1.1rem, 1.6vw, 1.3rem);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.4px;
    margin: 10px 0 10px;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .pc-title a { color: inherit; text-decoration: none; transition: text-shadow 0.25s ease; }
  .pc-title a:hover { text-shadow: 0 0 14px var(--glow); }

  .pc-excerpt {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, #000 82%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 82%, transparent 100%);
  }

  .pc-link {
    margin-top: auto;
    padding-top: 14px;
    color: var(--gold-1);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    transition: text-shadow 0.25s ease;
  }

  .pc-link:hover { text-shadow: 0 0 14px var(--glow); }

  @media (hover: hover) and (pointer: fine) {
    .premium-card:hover {
      transform: translateY(-6px);
      border-color: rgba(200, 162, 74, 0.5);
      box-shadow: inset 0 0 0 1px rgba(200, 162, 74, 0.18), 0 18px 44px rgba(0, 0, 0, 0.55), 0 0 34px rgba(200, 162, 74, 0.16);
    }
    .premium-card:hover .pc-thumb img { transform: scale(1.06); filter: sepia(0.1) brightness(1); }
  }

  @media (max-width: 900px) {
    .blog-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  }

  @media (max-width: 720px) {
    .blog-list { grid-template-columns: 1fr; gap: 22px; padding-top: 40px; }
  }

  /* ---------- Reveal ---------- */
  .reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; gap: 80px; }
    .chip-1 { right: 10px; }
    .chip-2 { left: 10px; }
    .spotlight-panel { grid-template-columns: 1fr 1fr; }
    .spotlight-body { padding: 34px 24px; }
    .spotlight-book {
      grid-column: 1 / -1;
      border-left: 0;
      border-top: 1px solid rgba(200, 162, 74, 0.16);
      padding: 30px 24px 34px;
    }
  }

  @media (max-width: 720px) {
    .spotlight-panel { grid-template-columns: 1fr; }
    .spotlight-book { grid-column: auto; }
  }

  @media (max-width: 1024px) {
    /* --- compact hamburger nav (tablet + mobile) --- */
    .nav-links { display: none; }

    nav { position: relative; padding: 12px 16px; gap: 10px 12px; }
    nav.nav-open { flex-wrap: wrap; }
    .brand { flex: 1 1 auto; min-width: 0; font-size: 0.86rem; letter-spacing: 1.3px; }
    .nav-actions { gap: 10px; }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    .nav-links {
      flex: 1 1 100%;
      order: 10;
      flex-direction: column;
      align-items: stretch;
      gap: 2px;
      margin: 4px 0 2px;
      padding: 8px;
      border-radius: 16px;
      background: rgba(46, 42, 38, 0.96);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border: 1px solid var(--glass-border);
      box-shadow: inset 0 0 0 1px var(--glass-border-soft), 0 14px 36px rgba(0, 0, 0, 0.5);
      max-height: calc(100dvh - 130px);
      overflow-y: auto;
    }

    .nav-links.open { display: flex; }

    .nav-links a, .nav-links .nav-drop > button {
      display: flex;
      width: 100%;
      padding: 9px 12px;
      font-size: 0.85rem;
      border-radius: 10px;
      justify-content: flex-start;
    }

    .nav-links .nav-drop .drop-menu {
      display: none;
      position: static;
      transform: none;
      opacity: 1;
      visibility: visible;
      margin: 2px 0 2px;
      padding: 6px;
      min-width: 0;
      gap: 2px;
      background: rgba(251, 248, 242, 0.92);
      box-shadow: none;
      border: 1px solid var(--glass-border-soft);
      border-radius: 12px;
    }

    .nav-links .nav-drop.open .drop-menu {
      display: flex;
      transform: none;
    }

    .nav-links .nav-drop .drop-menu .drop-head { padding: 4px 10px 2px; }

    .nav-links .nav-drop .drop-menu a {
      padding: 8px 12px;
      font-size: 0.82rem;
    }
  }

  @media (max-width: 720px) {
    .theme-toggle span.label { display: none; }
    .portrait-card.large img { height: 420px; }
    .portrait-card.small img { height: 260px; }

    /* --- 2-column gallery on mobile --- */
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .wish-grid-sec { padding-left: 0; padding-right: 0; }

    .model-card {
      padding: 8px;
      border-radius: 18px;
    }

    .model-card img {
      height: 255px;
      border-radius: 13px;
    }

    .model-info {
      left: 15px;
      right: 15px;
      bottom: 15px;
      padding: 6px 9px;
      border-radius: 13px;
      gap: 3px;
      flex-wrap: wrap;
    }

    .model-info > div { flex: 1 1 100%; min-width: 0; }

    .model-info .name, .model-info .name-link { font-size: 0.8rem; line-height: 1.2; }
    .model-info .name-link {
      overflow-wrap: anywhere;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .model-info .meta { font-size: 0.62rem; line-height: 1.3; margin-top: 2px; }
    .model-tag { flex-shrink: 0; font-size: 0.5rem; padding: 3px 8px; letter-spacing: 1px; }

    .card-badges { top: 16px; left: 16px; gap: 6px; }
    .badge { padding: 3px 8px; font-size: 0.5rem; letter-spacing: 0.8px; }
    .badge-verified::before { width: 10px; height: 10px; font-size: 0.46rem; }
    .badge-available::before, .badge-tour::before { width: 4px; height: 4px; }

    .wish-btn { top: 16px; right: 16px; width: 32px; height: 32px; }
    .wish-btn svg { width: 14px; height: 14px; }

.card-contact { right: 15px; bottom: 112px; gap: 6px; }
    .contact-btn { width: 34px; height: 34px; }
    .contact-btn svg { width: 15px; height: 15px; }
    .contact-btn.wa svg { width: 17px; height: 17px; }
  }

  @media (max-width: 380px) {
    nav { gap: 8px; padding: 12px 12px; }
    .brand { font-size: 0.78rem; letter-spacing: 1.2px; }
    .nav-actions { gap: 8px; }
    .nav-links { padding: 6px; }
    .model-info .name-link { font-size: 0.76rem; }
  }

  /* ---------- Local areas dropdown menu ---------- */
  .nav-drop { position: relative; }

  .nav-drop > button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 0.92rem;
    padding: 9px 16px;
    border-radius: 12px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.2px;
  }

  .nav-drop > button:hover,
  .nav-drop.open > button {
    color: var(--text-primary);
    background: var(--glass-bg-strong);
    backdrop-filter: blur(8px);
  }

  .nav-drop > button::after {
    content: "▾";
    font-size: 0.68rem;
    color: var(--gold-2);
    transition: transform 0.3s ease;
    margin-top: 1px;
  }

  .nav-drop.open > button::after { transform: rotate(180deg); }

  .drop-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 230px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(251, 248, 242, 0.92);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid var(--glass-border-soft);
    border-radius: 16px;
    box-shadow: var(--shadow-soft), inset 0 0 0 1px rgba(221, 209, 191, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 60;
  }

  .nav-drop.open .drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

  .drop-menu .drop-head {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--gold-1);
    padding: 6px 12px 4px;
    text-shadow: 0 0 12px var(--glow);
  }

  .drop-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    padding: 9px 14px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 9px;
    transition: all 0.2s ease;
  }

  .drop-menu a::before {
    content: "◆";
    font-size: 0.5rem;
    color: var(--gold-2);
    opacity: 0.75;
  }

  .drop-menu a:hover {
    color: var(--text-primary);
    background: var(--glass-bg-strong);
    transform: translateX(3px);
  }

  /* ---------- Pagination ---------- */
  .gallery-pager {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 46px;
  }

  .page-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-family: Georgia, serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    background: var(--glass-bg);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid var(--glass-border-soft);
    box-shadow: inset 0 0 0 1px rgba(216, 184, 106, 0.08), var(--shadow-soft);
    transition: all 0.25s ease;
  }

  .page-btn:hover { color: var(--text-primary); background: var(--glass-bg-strong); border-color: var(--glass-border); }

  .page-btn.active {
    color: #2e2a26;
    background: var(--grad-gold);
    border-color: transparent;
    box-shadow: 0 8px 24px var(--glow);
  }

  .page-btn.arrow { font-size: 1rem; }

  .page-btn:disabled { opacity: 0.35; cursor: default; pointer-events: none; }

