/* ============================================================
   Bangalore Hot Kiran - Elite Theme (green & gold)
   ============================================================ */

/* ---------- Reset & Base ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-dark: #073127;
    --green: #0e5c45;
    --green-light: #1d8f6c;
    --gold: #c9a44c;
    --gold-light: #e3c878;
    --dark: #0c1512;
    --ink: #1f2933;
    --light: #f5f7f6;
    --gray: #6b7280;
    --white: #ffffff;
    --radius: 10px;
    --shadow: 0 6px 22px rgba(0, 0, 0, 0.10);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, sans-serif;
    line-height: 1.6;
    color: var(--ink);
    background: var(--light);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 92%;
    max-width: 1240px;
    margin: 0 auto;
}

/* ---------- Top announcement bar ---------- */
.topbar {
    background: #050a08;
    color: #d8d8d8;
    font-size: 0.8rem;
    letter-spacing: 0.3px;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
}

.topbar-note i {
    color: var(--gold);
    font-style: normal;
    margin-right: 4px;
}

.topbar-center {
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--white);
    text-transform: uppercase;
}

.topbar-contact a {
    color: var(--gold-light);
    transition: color 0.2s;
}

.topbar-contact a:hover {
    color: var(--white);
}

.topbar-contact .sep {
    margin: 0 10px;
    opacity: 0.4;
}

/* ---------- Main header (sits over the hero) ---------- */
.site-header {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: var(--white);
    position: relative;
    z-index: 30;
}

/* HOME + inner pages with a hero: header is transparent and overlaps the
   hero / page-head, so the background flows continuously behind it. */
.page-home .site-header,
.page-inner .site-header {
    position: absolute;
    left: 0;
    right: 0;
    background: transparent;
    box-shadow: none;
    z-index: 50;
}

/* On scroll the header pins to the top and gains a solid background. */
.page-home .site-header.scrolled,
.page-inner .site-header.scrolled {
    position: fixed;
    top: 0;
    background: linear-gradient(135deg, rgba(7, 49, 39, 0.78), rgba(14, 92, 69, 0.7));
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
    animation: headerDrop 0.35s ease;
}

@keyframes headerDrop {
    from { transform: translateY(-100%); }
    to   { transform: translateY(0); }
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
}

/* Left navigation */
.nav-left {
    justify-self: start;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 26px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #eafff5;
    transition: color 0.2s ease;
}

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

/* extra menu items + quick actions are mobile-only */
.nav-extra,
.nav-actions { display: none; }

.menu-toggle {
    display: none;
    font-size: 1.6rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
}

/* Center brand / logo */
.brand {
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    height: 140px;
    width: auto;
    display: block;
    transition: transform 0.4s var(--ease-smooth), filter 0.4s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.brand:hover .brand-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 18px rgba(201, 164, 76, 0.55));
}

/* Right actions */
.header-actions {
    justify-self: end;
    text-align: right;
}

.header-phone {
    display: block;
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: #eafff5;
}

.header-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.hbtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: transform 0.15s ease, background 0.25s ease, color 0.25s ease;
}

.hbtn-book {
    background: var(--white);
    color: var(--green-dark);
}

.hbtn-book:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
}

.hbtn-wa {
    background: var(--dark);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hbtn-wa:hover {
    background: #128c4b;
    transform: translateY(-2px);
}

/* Compact mobile/tablet icon bar (hidden on desktop) */
.mobile-icons {
    display: none;
    align-items: center;
    gap: 4px;
}

.micon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.micon svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
}

/* menu toggle: swap hamburger <-> close (X) icon */
.menu-toggle .mt-close { display: none; }
.menu-toggle[aria-expanded="true"] .mt-open { display: none; }
.menu-toggle[aria-expanded="true"] .mt-close { display: inline-block; }
/* highlight the button while the menu is open */
.menu-toggle[aria-expanded="true"] {
    background: rgba(201, 164, 76, 0.18);
    color: var(--gold);
}

.micon:hover,
.micon:active {
    background: rgba(201, 164, 76, 0.18);
    color: var(--white);
}

/* ---------- Buttons (generic) ---------- */
.btn {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.15s ease;
}

.btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold-light);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--dark);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    background:
        linear-gradient(135deg, rgba(7, 49, 39, 0.92), rgba(14, 92, 69, 0.88)),
        url('/images/hero-bg.jpg') center top / cover no-repeat;
    color: var(--white);
    padding: 48px 0 70px;
    overflow: hidden;
}

/* Background video — sits behind the green overlay & content */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

/* Green tint over the video so text & cards stay readable */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(7, 49, 39, 0.86), rgba(14, 92, 69, 0.78));
}

/* Home hero clears the overlapping transparent header (mobile default). */
.page-home .hero {
    padding-top: 150px;
}

/* Desktop: more clearance for the taller logo. */
@media (min-width: 901px) {
    .page-home .hero {
        padding-top: 210px;
    }
}

/* Laptop: keep the full horizontal header but tighten spacing so the
   nav, logo and action buttons all fit comfortably on one row, and keep
   the top bar on a single line. */
@media (min-width: 901px) and (max-width: 1180px) {
    .header-inner { gap: 10px; }
    .nav-links { gap: 16px; }
    .nav-links a { font-size: 0.78rem; letter-spacing: 0.5px; }
    .brand-logo { height: 112px; }
    .header-phone { font-size: 0.85rem; margin-bottom: 8px; }
    .header-buttons { gap: 8px; }
    .hbtn { padding: 9px 13px; font-size: 0.72rem; }

    .topbar { font-size: 0.72rem; }
    .topbar-note,
    .topbar-center,
    .topbar-contact { white-space: nowrap; }
    .topbar-contact .sep { margin: 0 6px; }
}

/* Narrower laptops: drop the pre-booking note so the bar never wraps. */
@media (min-width: 901px) and (max-width: 1060px) {
    .topbar-note { display: none; }
    .topbar-inner { justify-content: space-between; }
}


.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 6px;
}

.hero-eyebrow .star {
    color: var(--gold);
    margin-right: 6px;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 10px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 1px;
    color: var(--white);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

/* ---------- Diamond carousel ---------- */
.diamond-carousel {
    position: relative;
    z-index: 2;
    margin-top: 40px;
    padding: 0 50px;
}

.diamond-track {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding: 30px 0 40px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.diamond-track::-webkit-scrollbar {
    display: none;
}

/* shared easing token */
:root {
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Each tile is an upright SQUARE; the image fills it with object-fit:cover.
   A clip-path turns the square into a diamond, and morphs to a full square
   on hover — so the location photo always completely covers the card. */
.diamond {
    flex: 0 0 auto;
    width: 320px;
    height: 320px;
    position: relative;
    scroll-snap-align: center;
    transform: scale(1);
    z-index: 1;
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.4));
    transition: transform 0.6s var(--ease-smooth), filter 0.5s ease;
    /* staggered entrance — delay set inline per tile in the blade */
    opacity: 1;
    animation: diaIn 0.8s var(--ease-spring) backwards;
}

@keyframes diaIn {
    0%   { opacity: 0; transform: scale(0.6); }
    100% { opacity: 1; transform: scale(1); }
}

/* shared diamond / square clip shapes */
.diamond::before,
.diamond img,
.diamond::after {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transition: clip-path 0.6s var(--ease-smooth);
}

/* gold border sits just behind the photo */
.diamond::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(160deg, var(--gold-light), var(--gold) 55%, #8a6b27);
    z-index: 0;
}

.diamond img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
    filter: saturate(0.95) brightness(0.94);
    transition: clip-path 0.6s var(--ease-smooth), filter 0.45s ease;
}

/* diagonal shine sweep */
.diamond::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 38%, rgba(255, 255, 255, 0.5) 50%, transparent 62%);
    background-size: 250% 100%;
    background-position: 160% 0;
    z-index: 2;
    pointer-events: none;
    transition: clip-path 0.6s var(--ease-smooth), background-position 0.8s var(--ease-smooth);
}

.diamond-label {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    transform: translate(-50%, -50%);
    background: rgba(5, 10, 8, 0.8);
    color: var(--gold-light);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 9px 20px;
    border: 1px solid rgba(201, 164, 76, 0.5);
    white-space: nowrap;
    transition: background 0.4s ease, color 0.4s ease,
        border-color 0.4s ease, transform 0.5s var(--ease-smooth);
}

/* ---- hover: diamond morphs into a full square, photo covers it,
        the tile grows and lifts above its neighbours ---- */
.diamond:hover {
    transform: scale(1.14);
    z-index: 12;
    filter:
        drop-shadow(0 24px 38px rgba(0, 0, 0, 0.55))
        drop-shadow(0 0 18px rgba(201, 164, 76, 0.6));
}

.diamond:hover::before,
.diamond:hover img,
.diamond:hover::after {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.diamond:hover img {
    filter: saturate(1.1) brightness(1.06);
}

.diamond:hover::after {
    background-position: -160% 0;
}

.diamond:hover .diamond-label {
    background: rgba(201, 164, 76, 0.95);
    color: #07130d;
    border-color: var(--gold-light);
    transform: translate(-50%, -50%) scale(1.03);
}

@media (prefers-reduced-motion: reduce) {
    .diamond,
    .diamond::before,
    .diamond img,
    .diamond::after,
    .diamond-label { transition-duration: 0.2s; animation: none; opacity: 1; }
}

.dia-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(7, 49, 39, 0.72);
    color: var(--gold-light);
    border: 1px solid var(--gold);
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 50%;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    transition: background 0.3s var(--ease-smooth), color 0.3s ease,
        transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}

.dia-arrow:hover {
    background: var(--gold);
    color: var(--green-dark);
    box-shadow: 0 8px 24px rgba(201, 164, 76, 0.55);
}

.dia-prev:hover { transform: translateY(-50%) translateX(-3px) scale(1.08); }
.dia-next:hover { transform: translateY(-50%) translateX(3px) scale(1.08); }

.dia-arrow:active { transform: translateY(-50%) scale(0.94); }

.dia-prev { left: 0; }
.dia-next { right: 0; }

/* ---------- Sections ---------- */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    margin-bottom: 10px;
    color: var(--green-dark);
}

.section-title p {
    color: var(--gray);
}

/* gold eyebrow label used across content sections */
.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    position: relative;
}

.section-title .eyebrow::after {
    content: "";
    display: block;
    width: 46px;
    height: 2px;
    background: var(--gold);
    margin: 8px auto 0;
}

/* ---------- Welcome / Intro (text only, cream theme) ---------- */
.intro {
    position: relative;
    background: #f5efe0;
    color: var(--ink);
    overflow: hidden;
}

/* faded logo watermark behind the section */
.intro::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 720px;
    height: 720px;
    max-width: 95%;
    background: url('/images/logo.png') center / contain no-repeat;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
}

.intro-text {
    position: relative;
    z-index: 1;
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
}

.intro-text .eyebrow {
    color: #b08d3c;
}

.intro-text .eyebrow::after {
    content: "";
    display: block;
    width: 46px;
    height: 2px;
    background: var(--gold);
    margin: 8px auto 0;
}

.intro-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    line-height: 1.15;
    color: var(--green-dark);
    margin-bottom: 18px;
}

/* elegant gold flourish divider */
.intro-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    max-width: 260px;
    margin: 0 auto 24px;
    color: var(--gold);
    font-size: 0.95rem;
}

.intro-divider span {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.intro-text p {
    color: #5a6a60;
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.intro-text .intro-lead {
    color: #3f4a44;
    font-size: 1.12rem;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

/* ---------- Features ---------- */
.features {
    background:
        linear-gradient(rgba(7, 49, 39, 0.96), rgba(7, 49, 39, 0.96)),
        url('/images/hero-bg.jpg') center / cover fixed;
    color: var(--white);
}

.features .section-title h2 { color: var(--white); }
.features .section-title p { color: rgba(255, 255, 255, 0.75); }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 26px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 164, 76, 0.25);
    border-radius: 14px;
    padding: 36px 26px;
    text-align: center;
    transition: transform 0.3s var(--ease-smooth), border-color 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    background: rgba(201, 164, 76, 0.08);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--green-dark);
    box-shadow: 0 8px 20px rgba(201, 164, 76, 0.35);
}

.feature-icon svg {
    width: 34px;
    height: 34px;
    fill: currentColor;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--gold-light);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
}

/* ---------- About / SEO content ---------- */
.content-sec {
    background: #f7f1e3;
    color: var(--ink);
}

.cs-body {
    position: relative;
    max-width: 900px;
    margin: 44px auto 0;
    max-height: 190px;
    overflow: hidden;
    transition: max-height 0.55s ease;
}
.cs-body::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 84px;
    background: linear-gradient(to bottom, rgba(247, 241, 227, 0) 0%, #f7f1e3 92%);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.4s ease;
}
.cs-body.cs-expanded::after { opacity: 0; }

.cs-para {
    color: #4f5a53;
    font-size: 1.02rem;
    line-height: 1.85;
    margin-bottom: 20px;
}

.cs-points {
    list-style: none;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 28px;
}

.cs-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.cs-ico {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-top: 2px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold-light);
    background: radial-gradient(circle at 30% 25%, var(--green), var(--green-dark));
    border-radius: 50%;
    box-shadow: inset 0 0 0 1.5px rgba(201, 164, 76, 0.55);
}

.cs-point h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 5px;
}

.cs-point p {
    color: #5a6a60;
    font-size: 0.94rem;
    line-height: 1.65;
}

/* Article-style content (used on the Call Girls page) */
.cs-lead {
    font-size: 1.12rem;
    color: #3f4a43;
}
.cs-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--green-dark);
    margin: 28px 0 8px;
    padding-left: 16px;
    border-left: 3px solid var(--gold);
}

/* Area directory list (used on the Location page) */
.area-list { margin: 28px 0; }
.area-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(11, 47, 38, 0.12);
}
.area-row:last-child { border-bottom: 0; }
.area-pin {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, var(--green), var(--green-dark));
    box-shadow: inset 0 0 0 1.5px rgba(201, 164, 76, 0.55);
}
.area-pin svg { width: 18px; height: 18px; fill: var(--gold-light); }
.area-row p {
    margin: 0;
    color: #4f5a53;
    font-size: 1rem;
    line-height: 1.7;
}

/* Comparison table (used on the Category page) */
.type-table-wrap { margin: 28px 0; }
.type-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 26px rgba(11, 47, 38, 0.08);
}
.type-table thead th {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--gold-light);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    padding: 14px 18px;
    letter-spacing: 0.3px;
}
.type-table tbody td {
    padding: 15px 18px;
    border-top: 1px solid rgba(11, 47, 38, 0.10);
    color: #4f5a53;
    font-size: 0.98rem;
    vertical-align: middle;
}
.type-table tbody tr:nth-child(even) { background: #faf6ec; }
.type-table td:first-child strong { color: var(--green-dark); }
.type-table a { color: var(--green-dark); text-decoration: underline; text-decoration-color: var(--gold); }
.type-table a:hover { color: var(--gold); }

/* Mobile: turn each row into a stacked card with labels */
@media (max-width: 640px) {
    .type-table thead { display: none; }
    .type-table, .type-table tbody, .type-table tr, .type-table td { display: block; width: 100%; }
    .type-table tr {
        border-radius: 12px;
        margin-bottom: 14px;
        box-shadow: 0 4px 16px rgba(11, 47, 38, 0.08);
        overflow: hidden;
    }
    .type-table tbody tr:nth-child(even) { background: #fff; }
    .type-table td {
        display: flex;
        justify-content: space-between;
        gap: 16px;
        border-top: 1px solid rgba(11, 47, 38, 0.08);
    }
    .type-table td:first-child { border-top: 0; }
    .type-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--green-dark);
        flex-shrink: 0;
    }
}

/* Read More toggle — shown whenever the content is clamped (JS decides) */
.cs-toggle {
    display: flex;
    margin: 26px auto 0;
    padding: 12px 34px;
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green-dark);
    background: transparent;
    border: 1.5px solid var(--gold);
    border-radius: 50px;
    cursor: pointer;
    align-items: center;
    gap: 8px;
    transition: background 0.35s ease, color 0.35s ease;
}
.cs-toggle:hover { background: var(--gold); color: #fff; }
.cs-toggle-arrow { transition: transform 0.35s ease; }
.cs-body.cs-expanded + .cs-toggle .cs-toggle-arrow { transform: rotate(180deg); }

/* Mobile: single-column points (height clamp handles the rest) */
@media (max-width: 768px) {
    .cs-points { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- CTA ---------- */
.cta {
    position: relative;
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(7, 49, 39, 0.93), rgba(12, 21, 18, 0.95)),
        url('/images/hero-bg.jpg') center / cover fixed;
}

.cta-inner {
    max-width: 680px;
}

.cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 14px;
}

.cta p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- How to use the service ---------- */
.how-to {
    background:
        linear-gradient(rgba(7, 49, 39, 0.96), rgba(7, 49, 39, 0.96)),
        url('/images/hero-bg.jpg') center / cover fixed;
    color: #fff;
    padding: 70px 0;
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
}

.htu-title {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 56px;
}

.htu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 50px;
    max-width: 1000px;
    margin: 0 auto 46px;
}

.htu-step {
    display: flex;
    align-items: center;
    gap: 18px;
}

.htu-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 7rem;
    line-height: 0.9;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.07);
    flex: 0 0 auto;
}

.htu-text h3 {
    color: var(--gold-light);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.htu-text p {
    color: #e7e8ea;
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 3px;
}

/* step alignment to mirror the reference */
.htu-left { justify-content: flex-start; }
.htu-left .htu-text { text-align: left; }

.htu-right { justify-content: flex-start; }
.htu-right .htu-text { text-align: right; flex: 1; }

.htu-center {
    grid-column: 1 / -1;
    justify-content: center;
}
.htu-center .htu-text { text-align: center; }

/* Telegram CTA box */
.htu-telegram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 430px;
    margin: 0 auto;
    border: 1px solid var(--gold);
    border-radius: 4px;
    padding: 16px 28px;
    color: var(--gold-light);
    transition: background 0.25s ease, color 0.25s ease;
}

.htu-telegram svg { width: 34px; height: 34px; fill: currentColor; flex: 0 0 auto; }

.htu-telegram span {
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.5;
}

.htu-telegram:hover {
    background: rgba(201, 164, 76, 0.12);
    color: #fff;
}

/* ---------- Browse by Category (liquid-gold tiles) ---------- */
.categories {
    position: relative;
    background:
        linear-gradient(180deg, #061f18 0%, #073127 55%, #052019 100%);
    overflow: hidden;
}
.categories .section-title h2 { color: #fff; }
.categories .section-title p { color: rgba(255, 255, 255, 0.72); }
.categories .section-title .eyebrow { color: var(--gold-light); }

/* soft drifting gold glow */
.cx-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(420px circle at 15% 20%, rgba(201, 164, 76, 0.14), transparent 60%),
        radial-gradient(480px circle at 85% 85%, rgba(29, 143, 108, 0.18), transparent 60%);
    pointer-events: none;
}

.cx-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.cx-tile {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 18px;
    border-radius: 14px;
    text-decoration: none;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(201, 164, 76, 0.22);
    backdrop-filter: blur(2px);
    isolation: isolate;
    transition: transform 0.4s var(--ease-smooth), border-color 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(22px);
    animation: cxReveal 0.6s var(--ease-smooth) forwards;
    animation-delay: var(--d, 0s);
}

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

/* big ghost index number */
.cx-index {
    position: absolute;
    top: 6px;
    right: 12px;
    z-index: -1;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(201, 164, 76, 0.14);
    transition: color 0.4s ease, transform 0.5s var(--ease-smooth);
}

/* liquid gold fill that rises on hover */
.cx-fill {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(140deg, var(--gold) 0%, var(--gold-light) 55%, #f0dca0 100%);
    transform: translateY(101%);
    transition: transform 0.5s var(--ease-smooth);
}

.cx-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
    line-height: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, rgba(201,164,76,0.25), rgba(7,49,39,0.6));
    box-shadow: inset 0 0 0 1.5px rgba(201, 164, 76, 0.5);
    transition: transform 0.5s var(--ease-spring), box-shadow 0.4s ease, background 0.4s ease;
}

.cx-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.cx-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.32rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    transition: color 0.4s ease;
}

.cx-count {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    transition: color 0.4s ease;
}
.cx-count b {
    color: #fff;
    font-weight: 700;
    transition: color 0.4s ease;
}

.cx-go {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 1.1rem;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.4s ease, transform 0.4s var(--ease-smooth), color 0.4s ease;
}

/* hover state — gold liquid fills, text flips to green */
.cx-tile:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.4);
}
.cx-tile:hover .cx-fill { transform: translateY(0); }
.cx-tile:hover .cx-name { color: var(--green-dark); }
.cx-tile:hover .cx-count { color: rgba(7, 49, 39, 0.7); }
.cx-tile:hover .cx-count b { color: var(--green-dark); }
.cx-tile:hover .cx-index { color: rgba(7, 49, 39, 0.18); transform: scale(1.05); }
.cx-tile:hover .cx-go { opacity: 1; transform: translateX(0); color: var(--green-dark); }
.cx-tile:hover .cx-icon {
    transform: scale(1.06) rotate(-4deg);
    background: rgba(7, 49, 39, 0.9);
    box-shadow: inset 0 0 0 1.5px rgba(7, 49, 39, 0.4);
}

.cx-cta {
    position: relative;
    text-align: center;
    margin-top: 46px;
}
.cx-cta-btn {
    display: inline-block;
    padding: 15px 46px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--gold-light);
    border: 1.5px solid var(--gold);
    border-radius: 50px;
    transition: background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}
.cx-cta-btn:hover {
    background: var(--gold);
    color: var(--green-dark);
    box-shadow: 0 12px 30px rgba(201, 164, 76, 0.4);
}

@media (max-width: 992px) {
    .cx-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
    .cx-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .cx-tile { padding: 16px 14px; gap: 11px; }
    .cx-icon { width: 44px; height: 44px; font-size: 1.2rem; }
    .cx-name { font-size: 1.12rem; }
    .cx-index { font-size: 2.7rem; }
    .cx-go { display: none; }
}
@media (max-width: 380px) {
    .cx-grid { grid-template-columns: 1fr; }
}

/* ---------- Locations (cinematic filmstrip marquee) ---------- */
.locations-sec {
    position: relative;
    background:
        radial-gradient(circle at 50% -10%, rgba(201, 164, 76, 0.12), transparent 45%),
        linear-gradient(180deg, #07241c 0%, #062019 100%);
    overflow: hidden;
}
.locations-sec .section-title h2 { color: #fff; }
.locations-sec .section-title p { color: rgba(255, 255, 255, 0.72); }
.locations-sec .section-title .eyebrow { color: var(--gold-light); }

.loc-marquee {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    /* soft fade at both edges */
    -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
            mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}

.loc-track {
    display: flex;
    width: max-content;
    will-change: transform;
}
.loc-track--left  { animation: locScrollLeft  46s linear infinite; }
.loc-track--right { animation: locScrollRight 46s linear infinite; }

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

/* pause the whole strip when the user hovers anywhere over it */
.loc-marquee:hover .loc-track { animation-play-state: paused; }

.loc-frame {
    position: relative;
    flex-shrink: 0;
    width: 300px;
    aspect-ratio: 16 / 10;
    margin-right: 22px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    background: #04130e;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
    transition: transform 0.5s var(--ease-smooth), box-shadow 0.5s ease;
}
.loc-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.95) brightness(0.8);
    transition: transform 0.8s var(--ease-smooth), filter 0.5s ease;
}
.loc-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 19, 14, 0.92) 6%, rgba(4, 19, 14, 0.25) 42%, transparent 70%);
    transition: opacity 0.5s ease;
}
/* gold frame outline drawn on hover */
.loc-frame::after {
    content: "";
    position: absolute;
    inset: 9px;
    border: 1.5px solid var(--gold);
    border-radius: 10px;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.45s ease, transform 0.45s var(--ease-smooth);
    z-index: 3;
    pointer-events: none;
}

.loc-chip {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 11px 5px 8px;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--green-dark);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}
.loc-chip svg { width: 12px; height: 12px; fill: var(--green-dark); }

.loc-label {
    position: absolute;
    left: 20px;
    bottom: 16px;
    z-index: 4;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.4px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.loc-label::before {
    content: "";
    position: absolute;
    left: 2px;
    bottom: -6px;
    width: 26px;
    height: 2px;
    background: var(--gold);
    transition: width 0.45s var(--ease-smooth);
}

/* per-frame hover */
.loc-frame:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 46px rgba(0, 0, 0, 0.5);
}
.loc-frame:hover img { transform: scale(1.1); filter: saturate(1.1) brightness(0.92); }
.loc-frame:hover::after { opacity: 1; transform: scale(1); }
.loc-frame:hover .loc-label::before { width: 60px; }

@media (max-width: 680px) {
    .loc-frame { width: 230px; margin-right: 16px; }
    .loc-label { font-size: 1.4rem; left: 16px; bottom: 14px; }
    .loc-marquee { gap: 16px; }
}

@media (prefers-reduced-motion: reduce) {
    .loc-track--left, .loc-track--right { animation: none; }
    .loc-marquee {
        -webkit-mask-image: none; mask-image: none;
        overflow-x: auto;
    }
}

.loc-cta {
    text-align: center;
    margin-top: 54px;
}
.loc-cta-btn {
    display: inline-block;
    padding: 15px 46px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--gold-light);
    border: 1.5px solid var(--gold);
    border-radius: 50px;
    transition: background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}
.loc-cta-btn:hover {
    background: var(--gold);
    color: var(--green-dark);
    border-color: var(--gold);
    box-shadow: 0 12px 30px rgba(201, 164, 76, 0.35);
}

@media (max-width: 992px) {
    .loc-orbit { grid-template-columns: repeat(4, 1fr); gap: 32px 20px; }
}
@media (max-width: 680px) {
    .loc-orbit { grid-template-columns: repeat(3, 1fr); gap: 28px 14px; }
    .loc-title { font-size: 1.12rem; margin-top: 14px; }
}
@media (max-width: 420px) {
    .loc-orbit { grid-template-columns: repeat(2, 1fr); gap: 26px 16px; }
}

/* ---------- Profile detail page (gallery) ---------- */
.profile-detail { background: #f7f1e3; }
.pd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: start;
}
.pd-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(7, 49, 39, 0.18);
    background: #0a1310;
}
.pd-main img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
}
.pd-status {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #fff;
    background: rgba(14, 92, 69, 0.92);
    border-radius: 50px;
}
.pd-status-away { background: rgba(176, 141, 60, 0.92); }
.pd-status-busy { background: rgba(160, 60, 60, 0.92); }

.pd-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}
.pd-thumb {
    width: 78px;
    height: 96px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: none;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-thumb.active { border-color: var(--gold); }
.pd-thumb:hover { transform: translateY(-2px); }

.pd-info h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: var(--green-dark);
    margin: 6px 0 18px;
}
.pd-meta {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 0 0 22px;
}
.pd-meta li {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid rgba(201, 164, 76, 0.3);
    border-radius: 10px;
}
.pd-meta span { font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase; color: #9a8a66; }
.pd-meta strong { color: var(--green-dark); font-size: 1.05rem; }

.pd-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.pd-tag {
    padding: 6px 14px;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--green-dark);
    background: rgba(201, 164, 76, 0.16);
    border: 1px solid rgba(201, 164, 76, 0.4);
    border-radius: 50px;
}
.pd-tag-verified { background: var(--green-dark); color: var(--gold-light); border-color: var(--green-dark); }

.pd-desc { color: #5a6a60; line-height: 1.8; margin-bottom: 26px; }
.pd-actions { display: flex; flex-wrap: wrap; gap: 12px; }

@media (max-width: 860px) {
    .pd-grid { grid-template-columns: 1fr; gap: 26px; }
    .pd-main img { height: 460px; }
    .pd-info h1 { font-size: 2.2rem; }
}
@media (max-width: 480px) {
    .pd-main img { height: 380px; }
    .pd-meta { grid-template-columns: 1fr 1fr; }
    .pd-actions .btn { width: 100%; }
}

/* ---------- Reviews (chat-style carousel) ---------- */
.reviews {
    position: relative;
    background: radial-gradient(circle at 50% 0%, #12241d 0%, #0a1310 60%);
    color: #fff;
    padding: 60px 0;
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
    overflow: hidden;
}

/* twinkling star background */
.rev-stars {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(1.5px 1.5px at 12% 18%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(1.5px 1.5px at 28% 62%, rgba(201, 164, 76, 0.9), transparent),
        radial-gradient(2px 2px at 45% 30%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1.5px 1.5px at 62% 75%, rgba(227, 200, 120, 0.9), transparent),
        radial-gradient(2px 2px at 78% 22%, rgba(255, 255, 255, 0.85), transparent),
        radial-gradient(1.5px 1.5px at 88% 58%, rgba(201, 164, 76, 0.85), transparent),
        radial-gradient(1.5px 1.5px at 8% 82%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 52% 90%, rgba(227, 200, 120, 0.8), transparent);
    background-repeat: repeat;
    background-size: 340px 320px;
    animation: revTwinkle 3.2s ease-in-out infinite alternate;
}
/* second, offset layer for varied blinking */
.rev-stars::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1.5px 1.5px at 18% 42%, rgba(255, 255, 255, 0.85), transparent),
        radial-gradient(2px 2px at 35% 12%, rgba(201, 164, 76, 0.85), transparent),
        radial-gradient(1.5px 1.5px at 58% 50%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1.5px 1.5px at 72% 88%, rgba(227, 200, 120, 0.85), transparent),
        radial-gradient(2px 2px at 92% 35%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1.5px 1.5px at 5% 55%, rgba(201, 164, 76, 0.8), transparent);
    background-repeat: repeat;
    background-size: 300px 280px;
    animation: revTwinkle 2.4s ease-in-out infinite alternate-reverse;
}
@keyframes revTwinkle {
    0%   { opacity: 0.35; }
    50%  { opacity: 0.9; }
    100% { opacity: 0.5; }
}
@media (prefers-reduced-motion: reduce) {
    .rev-stars, .rev-stars::after { animation: none; opacity: 0.6; }
}

/* keep content above the stars */
.reviews .container { position: relative; z-index: 1; }

/* enhanced heading */
.reviews-head { text-align: center; margin-bottom: 40px; }
.reviews-head .eyebrow { color: var(--gold); }
.reviews-sub {
    max-width: 560px;
    margin: 6px auto 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.02rem;
}

.reviews-title {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0;
    text-shadow: 0 2px 20px rgba(201, 164, 76, 0.3);
}

/* viewport clips the sliding track */
.reviews-viewport {
    overflow: hidden;
    padding: 4px 0 12px;
}
.reviews-track {
    display: flex;
    gap: 20px;
    width: max-content;
    transform: translateX(0);
    will-change: transform;
}

.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
    flex: 0 0 auto;
    width: 280px;
    height: 440px;
    border-radius: 12px;
    overflow: hidden;
    scroll-snap-align: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(201, 164, 76, 0.25);
}

.chat {
    height: 100%;
    background: #d8d0c4;
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    overflow: hidden;
}

.bubble {
    max-width: 82%;
    padding: 7px 10px 5px;
    border-radius: 9px;
    font-size: 0.82rem;
    line-height: 1.35;
    color: #102015;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
}

.bubble.in {
    align-self: flex-start;
    background: #ffffff;
    border-top-left-radius: 2px;
}

.bubble.out {
    align-self: flex-end;
    background: #d6fdc8;
    border-top-right-radius: 2px;
}

.bubble .t {
    display: block;
    font-size: 0.6rem;
    color: #5a6b5f;
    text-align: right;
    margin-top: 2px;
}

/* testimonial review card (dynamic) */
.testimonial {
    position: relative;
    height: 100%;
    padding: 30px 24px 26px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(165deg, #103328 0%, #0a2018 100%);
}
.t-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    line-height: 0.7;
    color: rgba(201, 164, 76, 0.35);
    height: 38px;
}
.t-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
    margin: 6px 0 14px;
}
.t-message {
    flex: 1;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #e7efe9;
    font-style: italic;
    overflow: hidden;
}
.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(201, 164, 76, 0.2);
}
.t-avatar {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green-dark);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.t-meta { display: flex; flex-direction: column; line-height: 1.3; }
.t-meta strong { color: #fff; font-size: 0.98rem; }
.t-meta small { color: var(--gold-light); font-size: 0.78rem; letter-spacing: 0.5px; }

/* QR "see more reviews" card */
.review-qr {
    background: #11151f;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 22px;
}

.review-qr h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 6px;
}

.review-qr p {
    color: #d8dde0;
    font-size: 0.95rem;
    margin-bottom: 22px;
}

.qr-box {
    background: #fff;
    padding: 14px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.qr-box img { width: 200px; height: 200px; display: block; }

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.rev-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s ease, transform 0.25s ease;
}

.rev-dot.active {
    background: var(--gold);
    transform: scale(1.25);
    box-shadow: 0 0 8px rgba(201, 164, 76, 0.6);
}

@media (max-width: 680px) {
    .reviews-title { font-size: 2rem; letter-spacing: 3px; }
    .review-card { width: 84vw; max-width: 320px; height: 420px; }
}

/* ---------- "By choosing us you will receive" ---------- */
.receive {
    background:
        linear-gradient(rgba(7, 49, 39, 0.96), rgba(7, 49, 39, 0.96)),
        url('/images/hero-bg.jpg') center / cover fixed;
    color: #fff;
    padding: 70px 0;
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
}

.receive-title {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 54px;
}

.receive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 36px;
    max-width: 1000px;
    margin: 0 auto;
}

.receive-item { text-align: center; }

.receive-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--gold-light);
    transition: transform 0.3s var(--ease-spring), color 0.25s ease;
}

.receive-icon svg {
    width: 54px;
    height: 54px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.receive-item:hover .receive-icon {
    transform: translateY(-5px) scale(1.06);
    color: #fff;
}

.receive-item p {
    color: #e7e8ea;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 300px;
    margin: 0 auto;
}

/* ---------- Inner page header ---------- */
.page-head {
    background:
        linear-gradient(135deg, rgba(7, 49, 39, 0.92), rgba(12, 21, 18, 0.94)),
        url('/images/hero-bg.jpg') center / cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

/* when the header is transparent over it, pad the hero so the title clears the header */
.page-inner .page-head { padding-top: 200px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
    margin-top: 16px;
}
.breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px 8px;
    padding: 0;
    margin: 0;
}
.breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}
.breadcrumb a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.25s ease;
}
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .bc-sep { color: var(--gold); opacity: 0.7; }
.breadcrumb .bc-current { color: var(--gold-light); font-weight: 600; }

/* Pin the breadcrumb to the top-left of the hero (page-head) on every page */
.page-head .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.page-head .breadcrumb {
    order: -1;                 /* move it above the title */
    align-self: flex-start;    /* stick to the left */
    margin: 0 0 22px;
}
.page-head .breadcrumb ol {
    justify-content: flex-start;
}

/* ---------- Other areas / categories — numbered dark tiles (reuse .cx-tile) ---------- */
.other-areas {
    position: relative;
    background:
        radial-gradient(circle at 18% 12%, rgba(201, 164, 76, 0.10), transparent 42%),
        linear-gradient(180deg, #07241c 0%, #062019 100%);
    overflow: hidden;
}
.other-areas .section-title h2 { color: #fff; }
.other-areas .section-title p { color: rgba(255, 255, 255, 0.72); }
.other-areas .section-title .eyebrow { color: var(--gold-light); }
.other-areas .cx-grid { margin-top: 40px; }
/* let the location pin icon sit inside the round cx-icon badge */
.other-areas .cx-icon svg { width: 26px; height: 26px; fill: var(--gold-light); }
.other-areas .cx-tile:hover .cx-icon svg { fill: var(--green-dark); }

.page-head h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 10px;
}

.page-head p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 640px;
    margin: 0 auto;
}

/* ---------- Location grid ---------- */
.loc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.loc-card {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 16px;
    text-decoration: none;
    background: #07120e;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
    transition: transform 0.5s var(--ease-smooth), box-shadow 0.5s ease;
    opacity: 0;
    transform: translateY(22px);
    animation: locCardIn 0.6s var(--ease-smooth) forwards;
    animation-delay: var(--d, 0s);
}
@keyframes locCardIn { to { opacity: 1; transform: translateY(0); } }

.loc-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-smooth);
}

/* dark gradient for legibility */
.loc-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(4, 16, 12, 0.92) 8%, rgba(4, 16, 12, 0.25) 45%, transparent 72%);
}
/* gold frame that draws in on hover */
.loc-card::before {
    content: "";
    position: absolute;
    inset: 10px;
    z-index: 3;
    border: 1.5px solid var(--gold);
    border-radius: 10px;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.45s ease, transform 0.45s var(--ease-smooth);
    pointer-events: none;
}

.loc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.4);
}
.loc-card:hover img { transform: scale(1.1); }
.loc-card:hover::before { opacity: 1; transform: scale(1); }

/* gold profile-count pill (top-left) */
.loc-count {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 11px 5px 8px;
    font-size: 0.74rem;
    font-weight: 700;
    white-space: nowrap;
    color: var(--green-dark);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.loc-count svg { width: 12px; height: 12px; fill: var(--green-dark); }

/* availability micro-label (top-right) */
.loc-avail {
    position: absolute;
    top: 14px;
    right: 12px;
    z-index: 4;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    color: #8fe6ad;
    text-transform: uppercase;
}

.loc-meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    padding: 18px 18px 20px;
}
.loc-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.3px;
    line-height: 1.1;
    position: relative;
    display: inline-block;
    max-width: 100%;
    overflow-wrap: break-word;
}
/* gold underline that grows on hover */
.loc-name::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 26px;
    height: 2px;
    background: var(--gold);
    transition: width 0.45s var(--ease-smooth);
}
.loc-card:hover .loc-name::after { width: 100%; }

.loc-go {
    display: block;
    margin-top: 12px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.45s var(--ease-smooth);
}
.loc-go span { display: inline-block; transition: transform 0.35s var(--ease-smooth); }
.loc-card:hover .loc-go { opacity: 1; transform: translateY(0); }
.loc-card:hover .loc-go span { transform: translateX(6px); }

/* ---------- Category grid (premium cards) ---------- */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.cat-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 24px 30px;
    text-decoration: none;
    background: linear-gradient(160deg, #ffffff 0%, #fbf6ea 100%);
    border: 1px solid rgba(201, 164, 76, 0.3);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(7, 49, 39, 0.06);
    transition: transform 0.45s var(--ease-smooth), box-shadow 0.45s ease, border-color 0.4s ease;
    opacity: 0;
    transform: translateY(22px);
    animation: locCardIn 0.6s var(--ease-smooth) forwards;
    animation-delay: var(--d, 0s);
}

/* gold sheen sweep on hover */
.cat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(201, 164, 76, 0.16), transparent);
    transform: skewX(-18deg);
    transition: left 0.7s var(--ease-smooth);
    pointer-events: none;
}
.cat-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 22px 44px rgba(7, 49, 39, 0.16);
}
.cat-card:hover::before { left: 130%; }

/* profile-count pill (top-right) */
.cat-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 11px;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
    color: var(--green-dark);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 50px;
}
.cat-badge-ic { width: 12px; height: 12px; fill: var(--green-dark); flex: 0 0 auto; }

.cat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    margin-bottom: 18px;
    font-size: 2rem;
    line-height: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, #0e5c45, #073127);
    box-shadow: 0 8px 20px rgba(7, 49, 39, 0.25), inset 0 0 0 2px rgba(201, 164, 76, 0.55);
    transition: transform 0.5s var(--ease-spring);
}
.cat-card:hover .cat-icon { transform: scale(1.08) rotate(-4deg); }

.cat-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 8px;
    white-space: nowrap;      /* keep the category name on one line */
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cat-card p {
    color: #6a756d;
    font-size: 0.9rem;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.cat-go {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
}
.cat-go span { transition: transform 0.35s var(--ease-smooth); }
.cat-card:hover .cat-go span { transform: translateX(6px); }

/* ---------- Floating social bar + back to top ---------- */
.social-bar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 11px 9px;
    background: linear-gradient(180deg, var(--green-dark), var(--green));
    border: 1px solid var(--gold);
    border-right: none;
    border-radius: 14px 0 0 14px;
    box-shadow: -4px 6px 22px rgba(0, 0, 0, 0.4);
    transition: transform 0.35s var(--ease-smooth);
}

/* collapse toggle tab — hidden on desktop */
/* left-pointing arrow tab (clip-path), green fill + gold edge */
.social-toggle {
    display: none;
    position: absolute;
    left: -38px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 58px;
    align-items: center;
    justify-content: flex-end;
    padding-right: 6px;
    background: transparent;
    border: none;
    color: var(--gold-light);
    cursor: pointer;
    filter: drop-shadow(-3px 3px 5px rgba(0, 0, 0, 0.4));
    transition: opacity 0.25s ease, transform 0.3s var(--ease-smooth);
}

.social-toggle::before,
.social-toggle::after {
    content: "";
    position: absolute;
    inset: 0;
    clip-path: polygon(42% 0, 100% 0, 100% 100%, 42% 100%, 0 50%);
}

.social-toggle::before { background: var(--gold); }

.social-toggle::after {
    background: linear-gradient(180deg, var(--green-dark), var(--green));
    transform: scale(0.88);
    transform-origin: 62% 50%;
}

.social-toggle svg {
    position: relative;
    z-index: 2;
    width: 18px;
    height: 18px;
    transition: transform 0.35s var(--ease-smooth);
}

/* hide the arrow once the bar is open */
.social-bar.open .social-toggle {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) translateX(-8px);
}

.social-link {
    position: relative;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    transition: transform 0.25s var(--ease-spring), background 0.25s ease, color 0.25s ease;
}

.social-ic { display: flex; }
.social-link svg { width: 19px; height: 19px; fill: currentColor; }

.social-link:hover {
    background: var(--gold);
    color: var(--green-dark);
    transform: scale(1.12);
}

/* slide-out label */
.social-label {
    position: absolute;
    right: 52px;
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    white-space: nowrap;
    background: var(--green-dark);
    color: var(--gold-light);
    padding: 7px 13px;
    border-radius: 7px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1px solid rgba(201, 164, 76, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s var(--ease-smooth);
    box-shadow: -3px 4px 14px rgba(0, 0, 0, 0.3);
}

.social-label::after {
    content: "";
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 9px;
    height: 9px;
    background: var(--green-dark);
    border-right: 1px solid rgba(201, 164, 76, 0.45);
    border-top: 1px solid rgba(201, 164, 76, 0.45);
}

.social-link:hover .social-label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 200;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: var(--gold-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s var(--ease-spring), background 0.25s ease, color 0.25s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.back-to-top svg { width: 24px; height: 24px; fill: currentColor; }

.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

.back-to-top:hover {
    background: var(--gold);
    color: var(--green-dark);
    transform: translateY(-3px);
}

/* Mobile / tablet: social bar collapses, opens via the arrow tab */
@media (max-width: 900px) {
    /* narrower tab, same hexagon shape but with ~2px rounded corners */
    .social-toggle { display: flex; width: 40px; height: 58px; left: -40px; padding-right: 6px; }
    .social-toggle::before,
    .social-toggle::after {
        clip-path: path('M18.8 0 L38 0 Q40 0 40 2 L40 56 Q40 58 38 58 L18.8 58 Q16.8 58 15.8 56.27 L1 30.73 Q0 29 1 27.27 L15.8 1.73 Q16.8 0 18.8 0 Z');
    }
    .social-bar { transform: translate(100%, -50%); }
    .social-bar.open { transform: translate(0, -50%); }
    .social-bar.open .social-toggle svg { transform: rotate(180deg); }
}

@media (max-width: 680px) {
    .social-bar { gap: 7px; padding: 8px 6px; border-radius: 12px 0 0 12px; }
    .social-link { width: 36px; height: 36px; }
    .social-link svg { width: 16px; height: 16px; }
    .back-to-top { width: 42px; height: 42px; right: 16px; bottom: 16px; }
}

/* ---------- Profile cards section ---------- */
.profiles-section {
    background: #0a1310;
    padding: 64px 0;
}

.profiles-section .section-title h2 { color: #fff; }
.profiles-section .section-title p { color: rgba(255, 255, 255, 0.7); }

/* Desktop: 5 cards per row */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px 18px;
    align-items: start;
}

/* profiles hidden until "Load More" is clicked */
.profile-card.pc-hidden { display: none; }
/* reveal animation for newly-loaded profiles */
.profile-card.pc-reveal {
    animation: pcReveal 0.5s var(--ease-smooth) both;
}
@keyframes pcReveal {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ----- Load More button ----- */
.load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}
.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    background: transparent;
    border: 1.5px solid var(--gold);
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
}
.load-more-btn:hover {
    background: var(--gold);
    color: var(--green-dark);
    box-shadow: 0 12px 30px rgba(201, 164, 76, 0.32);
}
.load-more-btn .lm-count {
    font-size: 0.74rem;
    letter-spacing: 1px;
    opacity: 0.8;
    text-transform: none;
}
.load-more-btn .lm-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform 0.3s ease;
}
.load-more-btn:hover .lm-icon { transform: translateY(3px); }
.load-more-btn.is-loading { pointer-events: none; opacity: 0.7; }
.load-more-btn.is-loading .lm-icon { animation: lmSpin 0.8s linear infinite; }
@keyframes lmSpin { to { transform: rotate(360deg); } }

/* Laptop: 4 per row (placed after the base rule so it overrides) */
@media (max-width: 1180px) {
    .profile-grid { grid-template-columns: repeat(4, 1fr); }
    .cat-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .loc-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 680px) {
    .loc-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .page-head { padding: 44px 0; }
    /* clear the overlapping transparent header, but keep a tidy gap to the breadcrumb */
    .page-inner .page-head { padding-top: 108px; }
    .page-head .breadcrumb { margin-bottom: 18px; }
    .page-head h1 { font-size: 2.1rem; }
    .cat-card { padding: 26px 18px; }

    /* location cards: smaller text, always show "View Profiles" (no hover on touch) */
    .loc-name { font-size: 1.1rem; letter-spacing: 0; }
    .loc-meta { padding: 12px 12px 14px; }
    .loc-count { font-size: 0.62rem; padding: 4px 8px 4px 6px; gap: 3px; top: 9px; left: 9px; }
    .loc-count svg { width: 11px; height: 11px; }
    .loc-avail { display: none; }   /* hide the "Available 24/7" label on mobile */
    .loc-go { opacity: 1; transform: none; margin-top: 8px; font-size: 0.64rem; }
}

/* very small phones: tighten the count badge + name so nothing clips */
@media (max-width: 400px) {
    .loc-count { font-size: 0.56rem; padding: 3px 7px 3px 5px; }
    .loc-count svg { width: 10px; height: 10px; }
    .loc-name { font-size: 0.98rem; }
    .loc-go { font-size: 0.6rem; }
}

/* category cards on phones: hide description, compact & responsive
   (tablet and above keep the description, unchanged) */
@media (max-width: 600px) {
    .cat-card { padding: 22px 14px 18px; }
    .cat-card p { display: none; }
    .cat-card h3 {
        font-size: 1.28rem;
        line-height: 1.15;
        margin-bottom: 8px;
        white-space: normal;   /* mobile: allow wrapping on narrow cards (unchanged) */
        overflow: visible;
        text-overflow: clip;
    }
    .cat-icon { width: 60px; height: 60px; font-size: 1.55rem; margin-bottom: 12px; }
    /* mobile: show just the count + profile icon, drop the "Profiles" word */
    .cat-badge { font-size: 0.66rem; padding: 3px 8px; top: 10px; right: 10px; gap: 3px; }
    .cat-badge-label { display: none; }
    .cat-badge-ic { width: 11px; height: 11px; }
    .cat-go { font-size: 0.66rem; letter-spacing: 1px; }
}

/* How-to: stack on small screens */
@media (max-width: 820px) {
    .htu-grid { grid-template-columns: 1fr; gap: 24px; max-width: 460px; }
    .htu-step,
    .htu-left,
    .htu-right,
    .htu-center { justify-content: flex-start; }
    .htu-left .htu-text,
    .htu-right .htu-text,
    .htu-center .htu-text { text-align: left; flex: 1; }
}

@media (max-width: 680px) {
    .htu-title { font-size: 2rem; letter-spacing: 3px; margin-bottom: 36px; }
    .htu-num { font-size: 5rem; }
    .htu-text h3 { font-size: 1.05rem; }
    .htu-text p { font-size: 0.95rem; }
    .htu-telegram { gap: 16px; padding: 14px 18px; }
    .htu-telegram svg { width: 28px; height: 28px; }
    .htu-telegram span { font-size: 0.76rem; letter-spacing: 1px; }

    .receive-title { font-size: 2rem; letter-spacing: 3px; margin-bottom: 36px; }
    .receive-grid { grid-template-columns: 1fr; gap: 30px; }
    .receive-icon svg { width: 48px; height: 48px; }
}

.profile-card {
    display: block;
    color: inherit;
}

.pc-media {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #11201a;
}

.pc-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.profile-card:hover .pc-media img { transform: scale(1.06); }

/* bottom-to-top black gradient so overlaid text stays readable */
.pc-media::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 48%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0));
    z-index: 1;
    pointer-events: none;
}

/* Selfies / Videos tags (bottom-left, above the availability bar) */
.pc-tags {
    position: absolute;
    left: 0;
    bottom: 38px;
    z-index: 13;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pc-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 13px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

/* Selfies = theme gold */
.pc-tag-gold {
    background: rgba(212, 182, 87, 0.92);
    color: #14110a;
}

/* availability bar: gold line top AND bottom, white italic, overlaid on image */
.pc-availability {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 12;
    border-top: 1px solid #d4b657;
    border-bottom: 1px solid #d4b657;
    text-align: center;
    color: #fff;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2.6px;
    font-style: italic;
    font-weight: 400;
    padding: 5px 0;
}

.pc-availability-available { color: #8fe6ad; }
.pc-availability-away { color: #fff; }
.pc-availability-busy { color: #f0a3a3; }

.pc-info { margin-top: 10px; padding: 0 2px; }

.pc-name {
    font-size: 1.18rem;
    line-height: 1.2;
    color: var(--gold-light);
    margin-bottom: 3px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.profile-card:hover .pc-name { color: #fff; }

/* badge + rating overlays on the card image */
.pc-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 13;
    padding: 5px 13px;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 50px;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}
.pc-badge-top      { background: linear-gradient(135deg, #ef4b4b, #a01919); }
.pc-badge-gold     { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--green-dark); }
.pc-badge-premium  { background: linear-gradient(135deg, #8b5cf6, #5b21b6); }
.pc-badge-new      { background: linear-gradient(135deg, #22c55e, #15803d); }

.pc-rate {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 13;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    font-size: 0.74rem;
    font-weight: 700;
    color: #fff;
    background: rgba(0, 0, 0, 0.58);
    border-radius: 50px;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}
.pc-rate svg { width: 12px; height: 12px; fill: var(--gold); }

.pc-loc {
    font-size: 0.74rem;
    letter-spacing: 1.5px;
    line-height: 1.3;
    color: #8b9a93;
    font-weight: 600;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pc-price {
    font-size: 0.92rem;
    line-height: 1.3;
    color: #c2cbc7;
    margin: 0;
}

/* ---------- Cards Grid ---------- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px 26px;
    text-align: center;
    border-top: 3px solid var(--gold);
    transition: transform 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
}

.card .icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.card h3 {
    margin-bottom: 12px;
    color: var(--green-dark);
}

.card p {
    color: var(--gray);
}

/* ---------- About ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-grid img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: var(--green-dark);
}

.about-text p {
    color: var(--gray);
    margin-bottom: 14px;
}

/* ---------- Contact Form ---------- */
.form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 640px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-light);
}

.alert {
    background: #e6f7ec;
    color: #1d7a44;
    border: 1px solid #b7e4c7;
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 22px;
}

.error {
    color: #c0392b;
    font-size: 0.88rem;
    margin-top: 5px;
}

/* ---------- Contact page (premium two-column) ---------- */
.contact-sec { background: #f7f1e3; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 44px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--green-dark);
    margin: 6px 0 14px;
}
.contact-info > p {
    color: #5a6a60;
    line-height: 1.8;
    margin-bottom: 28px;
}

/* contact method cards */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 26px;
}
.cm-card {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px 16px;
    background: #fff;
    border: 1px solid rgba(201, 164, 76, 0.3);
    border-radius: 14px;
    text-decoration: none;
    transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s ease, border-color 0.35s ease;
}
.cm-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 14px 30px rgba(7, 49, 39, 0.12);
}
.cm-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, #0e5c45, #073127);
    box-shadow: inset 0 0 0 1.5px rgba(201, 164, 76, 0.5);
}
.cm-icon svg { width: 19px; height: 19px; fill: var(--gold-light); }
.cm-text { display: flex; flex-direction: column; min-width: 0; }
.cm-text small { font-size: 0.68rem; letter-spacing: 1px; text-transform: uppercase; color: #9a8a66; }
.cm-text strong { color: var(--green-dark); font-size: 0.92rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.contact-extra { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.contact-extra li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4f5a53;
    font-size: 0.94rem;
}
.contact-extra svg { width: 18px; height: 18px; fill: var(--gold); flex-shrink: 0; }

/* form card */
.contact-form-card {
    position: relative;
    background: #fff;
    padding: 36px 34px;
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(7, 49, 39, 0.12);
    border-top: 4px solid var(--gold);
}
.contact-form-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    color: var(--green-dark);
    margin-bottom: 22px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }

.contact-form-card .form-group input,
.contact-form-card .form-group textarea {
    border-radius: 10px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-form-card .form-group input:focus,
.contact-form-card .form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 164, 76, 0.15);
}
.btn-block { width: 100%; justify-content: center; }
.contact-note {
    margin-top: 14px;
    text-align: center;
    font-size: 0.8rem;
    color: #8a958d;
}

@media (max-width: 860px) {
    .contact-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 480px) {
    .contact-methods { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-card { padding: 26px 20px; }
    .contact-info h2 { font-size: 1.8rem; }
}

/* ---------- Location Explorer (interactive split) ---------- */
.loc-explorer {
    position: relative;
    background: linear-gradient(180deg, #07241c 0%, #051813 100%);
    overflow: hidden;
}
.loc-explorer .section-title h2 { color: #fff; }
.loc-explorer .section-title p { color: rgba(255, 255, 255, 0.72); }
.loc-explorer .section-title .eyebrow { color: var(--gold-light); }
.lx-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(500px circle at 12% 15%, rgba(201, 164, 76, 0.12), transparent 55%),
        radial-gradient(520px circle at 90% 90%, rgba(29, 143, 108, 0.16), transparent 55%);
}

.lx-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 26px;
    margin-top: 46px;
    align-items: stretch;
}

/* featured preview */
.lx-stage {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    background: #04130e;
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.4);
    min-height: 420px;
}
.lx-stage img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.45s ease, transform 0.7s var(--ease-smooth);
}
.lx-stage:hover img { transform: scale(1.05); }
.lx-stage-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 16, 12, 0.92) 6%, rgba(4, 16, 12, 0.25) 45%, transparent 72%);
}
.lx-pin {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px 6px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--green-dark);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 50px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
.lx-pin svg { width: 13px; height: 13px; fill: var(--green-dark); }
.lx-stage-info {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}
.lx-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 4px;
}
.lx-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}
.lx-go {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    padding: 9px 20px;
    align-self: flex-start;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--green-dark);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 50px;
    transition: transform 0.35s var(--ease-spring);
}
.lx-go span { transition: transform 0.35s var(--ease-smooth); }
.lx-stage:hover .lx-go { transform: translateY(-2px); }
.lx-stage:hover .lx-go span { transform: translateX(5px); }

/* location list */
.lx-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 420px;
    overflow-y: auto;
    padding-right: 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(201, 164, 76, 0.5) transparent;
}
.lx-list::-webkit-scrollbar { width: 6px; }
.lx-list::-webkit-scrollbar-thumb { background: rgba(201, 164, 76, 0.5); border-radius: 10px; }

.lx-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 164, 76, 0.14);
    border-radius: 12px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease-smooth);
}
.lx-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 3px;
    border-radius: 3px;
    background: linear-gradient(var(--gold-light), var(--gold));
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.3s var(--ease-smooth);
}
.lx-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.7;
    min-width: 24px;
}
.lx-item-name {
    flex: 1;
    font-size: 1.02rem;
    font-weight: 600;
    color: #e8f3ee;
    transition: color 0.3s ease;
}
.lx-item-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 24px;
    padding: 0 8px;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--gold-light);
    background: rgba(201, 164, 76, 0.14);
    border-radius: 50px;
    transition: background 0.3s ease, color 0.3s ease;
}
.lx-item-arrow {
    color: var(--gold);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.3s ease, transform 0.3s var(--ease-smooth);
}
.lx-item:hover,
.lx-item.active {
    background: rgba(201, 164, 76, 0.08);
    border-color: rgba(201, 164, 76, 0.4);
    transform: translateX(3px);
}
.lx-item:hover::before,
.lx-item.active::before { transform: scaleY(1); }
.lx-item.active .lx-item-name { color: var(--gold-light); }
.lx-item.active .lx-item-count { background: var(--gold); color: var(--green-dark); }
.lx-item:hover .lx-item-arrow,
.lx-item.active .lx-item-arrow { opacity: 1; transform: translateX(0); }

/* tablet: keep the 2-column split like laptop, just tighter */
@media (max-width: 992px) {
    .lx-wrap { grid-template-columns: 1.1fr 1fr; gap: 18px; }
    .lx-stage { min-height: 360px; }
    .lx-list { max-height: 360px; }
    .lx-name { font-size: 2rem; }
}
@media (max-width: 680px) {
    .lx-wrap { gap: 14px; }
    .lx-stage { min-height: 320px; }
    .lx-list { max-height: 320px; }
    .lx-item { padding: 12px 13px; gap: 10px; }
    .lx-item-name { font-size: 0.95rem; }
    .lx-num { font-size: 1rem; min-width: 20px; }
}
/* phones: featured image on top, location list in 2 columns */
@media (max-width: 480px) {
    .lx-wrap { grid-template-columns: 1fr; gap: 16px; min-width: 0; }
    .lx-stage { min-width: 0; min-height: 230px; }
    .lx-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        min-width: 0;
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }
    .lx-item {
        min-width: 0;               /* allow item to shrink to its column */
        padding: 11px 10px;
        gap: 7px;
    }
    .lx-num { min-width: 16px; font-size: 0.9rem; }
    .lx-item-name {
        min-width: 0;               /* allow the name to shrink/wrap */
        flex: 1;
        font-size: 0.85rem;
        line-height: 1.15;
        overflow-wrap: anywhere;
    }
    .lx-item-count {
        flex-shrink: 0;
        min-width: 24px;
        height: 21px;
        padding: 0 6px;
        font-size: 0.68rem;
    }
    .lx-item-arrow { display: none; }
}

/* ---------- 18+ Age Verification Modal ---------- */
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}
/* hidden once verified (class added to <html>) */
.age-ok .age-gate { opacity: 0; visibility: hidden; }
/* lock page scroll while the gate is showing */
html:not(.age-ok) body { overflow: hidden; }

.age-gate-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(7, 49, 39, 0.85), rgba(3, 10, 8, 0.96));
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.age-gate-box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 460px;
    padding: 46px 34px 30px;
    text-align: center;
    background: linear-gradient(170deg, #0c2d23 0%, #06180f 100%);
    border: 1px solid rgba(201, 164, 76, 0.45);
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
    animation: agIn 0.55s var(--ease-spring) both;
}
.age-ok .age-gate-box { animation: none; }
@keyframes agIn {
    from { opacity: 0; transform: translateY(24px) scale(0.94); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.ag-badge {
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-dark);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border: 3px solid #06180f;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.ag-badge sup { font-size: 0.85rem; }

.ag-logo {
    width: 96px;
    height: auto;
    margin: 6px auto 12px;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}

.age-gate-box h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
}
.ag-lead {
    color: var(--gold-light);
    font-size: 1rem;
    margin-bottom: 12px;
}
.ag-text {
    color: #b6c6bd;
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 24px;
}
.ag-text strong { color: #fff; }

.ag-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
}
.ag-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.ag-btn svg { width: 18px; height: 18px; fill: currentColor; }
.ag-enter {
    color: var(--green-dark);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 10px 24px rgba(201, 164, 76, 0.3);
}
.ag-enter:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(201, 164, 76, 0.42); }
.ag-leave {
    color: #cdd9d3;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.25);
}
.ag-leave:hover { color: #fff; border-color: rgba(255, 255, 255, 0.55); }

.ag-note {
    font-size: 0.76rem;
    color: #7f918a;
    line-height: 1.5;
}
.ag-note a { color: var(--gold-light); text-decoration: underline; }

@media (max-width: 480px) {
    .age-gate-box { padding: 40px 22px 26px; max-width: 100%; }
    .age-gate-box h2 { font-size: 1.7rem; }
    .ag-logo { width: 78px; }
    .ag-text { font-size: 0.84rem; }
    .ag-btn { padding: 13px 18px; font-size: 0.85rem; }
}

/* ---------- Legal pages ---------- */
.legal-sec { background: #f7f1e3; }
.legal {
    max-width: 820px;
    margin: 0 auto;
    color: #4f5a53;
    font-size: 1rem;
    line-height: 1.85;
}
.legal-updated {
    display: inline-block;
    margin-bottom: 26px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green-dark);
    background: rgba(201, 164, 76, 0.16);
    border: 1px solid rgba(201, 164, 76, 0.4);
    border-radius: 50px;
}
.legal h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--green-dark);
    margin: 30px 0 10px;
}
.legal p { margin-bottom: 16px; }
.legal ul {
    margin: 0 0 18px;
    padding-left: 22px;
}
.legal li { margin-bottom: 8px; }
.legal a { color: #b8902f; text-decoration: underline; }
.legal a:hover { color: var(--green-dark); }
.legal strong { color: var(--green-dark); }

@media (max-width: 600px) {
    .legal { font-size: 0.95rem; }
    .legal h2 { font-size: 1.4rem; }
}

/* ---------- Footer ---------- */
.footer {
    position: relative;
    padding: 92px 0 28px;
    color: #cdd9d3;
    background:
        linear-gradient(180deg, #062019 0%, #04140f 100%);
}

/* gold top edge line — splits with a clean gap around the centered logo */
.footer-edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0,
        var(--gold) 12%,
        var(--gold-light) calc(50% - 110px),
        transparent calc(50% - 110px),
        transparent calc(50% + 110px),
        var(--gold-light) calc(50% + 110px),
        var(--gold) 88%,
        transparent 100%);
}
/* gold diamond end-caps flanking the logo where the line breaks */
.footer-edge::before,
.footer-edge::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 9px;
    height: 9px;
    background: var(--gold-light);
    transform: translate(-50%, -50%) rotate(45deg);
    box-shadow: 0 0 10px rgba(201, 164, 76, 0.7);
}
.footer-edge::before { left: calc(50% - 110px); }
.footer-edge::after  { left: calc(50% + 110px); }

/* soft radial glow behind the emblem so it feels intentional */
.footer-medallion::after {
    content: "";
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 164, 76, 0.18) 0%, rgba(201, 164, 76, 0.06) 38%, transparent 68%);
    z-index: -1;
    pointer-events: none;
}
/* ambient glow */
.footer-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(520px circle at 12% 0%, rgba(201, 164, 76, 0.10), transparent 55%),
        radial-gradient(560px circle at 88% 100%, rgba(29, 143, 108, 0.14), transparent 55%);
    pointer-events: none;
}

/* floating brand medallion straddling the top border */
.footer-medallion {
    position: absolute;
    top: -64px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: block;
    width: 130px;
    line-height: 0;
    transition: transform 0.45s var(--ease-spring), filter 0.4s ease;
}
.footer-medallion img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
}
.footer-medallion:hover {
    transform: translateX(-50%) translateY(-3px);
}

.footer-main { position: relative; z-index: 2; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr 1.3fr;
    gap: 36px 28px;
    margin-bottom: 30px;
}

.footer-brandname {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px;
}
.footer-about p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: #9fb2aa;
    margin-bottom: 20px;
}

/* circular social buttons */
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(201, 164, 76, 0.4);
    color: var(--gold-light);
    transition: background 0.35s ease, color 0.35s ease, transform 0.35s var(--ease-spring), border-color 0.35s ease;
}
.footer-social a svg { width: 17px; height: 17px; fill: currentColor; }
.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--green-dark);
    transform: translateY(-4px);
}

.footer h4 {
    position: relative;
    color: #fff;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    padding-bottom: 10px;
}
.footer h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer ul { list-style: none; }

.footer-links li { margin-bottom: 11px; }
.footer-links a {
    position: relative;
    display: inline-block;
    color: #a7b8b0;
    font-size: 0.92rem;
    padding-left: 16px;
    transition: color 0.3s ease, transform 0.3s ease;
}
/* gold chevron that slides on hover */
.footer-links a::before {
    content: "\203A";
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--gold);
    opacity: 0.6;
    transition: transform 0.3s var(--ease-smooth), opacity 0.3s ease;
}
.footer-links a:hover {
    color: #fff;
    transform: translateX(3px);
}
.footer-links a:hover::before { transform: translateX(2px); opacity: 1; }

/* contact list with icons */
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 13px;
    font-size: 0.92rem;
    color: #a7b8b0;
    line-height: 1.5;
}
.footer-contact-list svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    fill: var(--gold);
}
.footer-contact-list a { color: #a7b8b0; transition: color 0.3s ease; }
.footer-contact-list a:hover { color: #fff; }

.footer-cta {
    display: inline-block;
    max-width: 100%;
    box-sizing: border-box;
    margin-top: 8px;
    padding: 11px 26px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    color: var(--green-dark);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(201, 164, 76, 0.22);
    transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease;
}
.footer-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(201, 164, 76, 0.36);
    color: var(--green-dark);
}

/* gold flourish divider */
.footer-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--gold);
    font-size: 0.9rem;
    margin: 14px 0 22px;
}
.footer-divider span {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 164, 76, 0.5), transparent);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 24px;
    font-size: 0.85rem;
    color: #8da199;
}
.footer-copy { margin: 0; }

/* legal links row */
.footer-legal-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 18px;
    margin: 0;
    padding: 0;
}
.footer-legal-links li { position: relative; }
.footer-legal-links li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: rgba(201, 164, 76, 0.4);
}
.footer-legal-links a {
    color: #a7b8b0;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}
.footer-legal-links a:hover { color: var(--gold-light); }

/* ---------- Footer responsive ---------- */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
    .footer { padding-top: 84px; }
    .footer-medallion { width: 108px; top: -54px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 22px; text-align: left; }
    .footer-about { text-align: center; }
    .footer-about .footer-social { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    /* WhatsApp button: full width of its column, single line */
    .footer-cta {
        display: block;
        width: 100%;
        padding: 12px 8px;
        font-size: 0.7rem;
        letter-spacing: 0.3px;
    }
}
@media (max-width: 400px) {
    /* keep 2 columns on small phones, just tighten spacing/size */
    .footer-grid { gap: 24px 14px; }
    .footer h4 { font-size: 1rem; }
    .footer-links a { font-size: 0.86rem; }
    .footer-contact-list li { font-size: 0.86rem; }
    .footer-cta { font-size: 0.64rem; padding: 11px 6px; }
}

/* ============================================================
   Responsive
   ============================================================ */

/* Tablet & below — logo left, compact icon bar right, hamburger nav */
@media (max-width: 900px) {
    /* topbar: show only the centred notice */
    .topbar-note,
    .topbar-contact { display: none; }
    .topbar-inner { justify-content: center; }
    .topbar-center { display: block; }

    /* header becomes a simple two-end flex row — tight vertical padding,
       logo keeps its size */
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 5px 0;
    }

    .brand {
        justify-self: start;
        order: 0;
    }

    .brand-logo { height: 84px; }

    /* the nav <ul> drops down full-width; its wrapper takes no space */
    .nav-left { display: contents; }

    /* ===== Unique mobile dropdown menu ===== */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        display: none;
        z-index: 40;
        padding: 8px 0 14px;
        background:
            radial-gradient(420px circle at 85% 0%, rgba(201, 164, 76, 0.12), transparent 55%),
            linear-gradient(180deg, #0a3327 0%, #04140f 100%);
        border-top: 2px solid var(--gold);
        box-shadow: 0 22px 44px rgba(0, 0, 0, 0.5);
        counter-reset: navcount;
        /* scroll inside the menu if it's taller than the screen */
        max-height: calc(100vh - 96px);
        max-height: calc(100dvh - 96px);
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
    }

    .nav-links.open { display: flex; }

    /* re-enable the mobile-only items */
    .nav-extra { display: block; }
    .nav-actions { display: flex; }

    /* lock page scroll while the mobile menu is open */
    body.menu-open { overflow: hidden; }

    .nav-links li {
        counter-increment: navcount;
        position: relative;
        border-bottom: 1px solid rgba(201, 164, 76, 0.12);
        opacity: 0;
        transform: translateX(-22px);
    }
    .nav-links li:last-child { border-bottom: none; }

    /* staggered slide-in once the menu opens */
    .nav-links.open li { animation: navItemIn 0.45s var(--ease-smooth) forwards; }
    .nav-links.open li:nth-child(1) { animation-delay: 0.04s; }
    .nav-links.open li:nth-child(2) { animation-delay: 0.09s; }
    .nav-links.open li:nth-child(3) { animation-delay: 0.14s; }
    .nav-links.open li:nth-child(4) { animation-delay: 0.19s; }
    .nav-links.open li:nth-child(5) { animation-delay: 0.24s; }
    .nav-links.open li:nth-child(6) { animation-delay: 0.29s; }
    .nav-links.open li:nth-child(7) { animation-delay: 0.34s; }
    .nav-links.open li:nth-child(8) { animation-delay: 0.39s; }
    @keyframes navItemIn {
        to { opacity: 1; transform: translateX(0); }
    }

    /* growing gold accent bar on the left (menu links only) */
    .nav-links li:not(.nav-actions)::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(var(--gold-light), var(--gold));
        transform: scaleY(0);
        transform-origin: center;
        transition: transform 0.35s var(--ease-smooth);
    }
    .nav-links li:not(.nav-actions):hover::before,
    .nav-links li:has(a.active)::before { transform: scaleY(1); }

    .nav-links li:not(.nav-actions) > a {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 14px 26px;
        font-size: 0.92rem;
        font-weight: 600;
        letter-spacing: 1.8px;
        color: #e8f3ee;
        transition: color 0.3s ease, background 0.3s ease, padding-left 0.3s ease;
    }
    /* serif index number 01, 02 … */
    .nav-links li:not(.nav-actions) > a::before {
        content: counter(navcount, decimal-leading-zero);
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--gold);
        opacity: 0.75;
        min-width: 22px;
        transition: opacity 0.3s ease;
    }
    /* chevron that slides right */
    .nav-links li:not(.nav-actions) > a::after {
        content: "\203A";
        margin-left: auto;
        font-size: 1.4rem;
        line-height: 1;
        color: var(--gold);
        opacity: 0.6;
        transform: translateX(0);
        transition: transform 0.3s var(--ease-smooth), opacity 0.3s ease;
    }
    .nav-links li:not(.nav-actions) > a:hover,
    .nav-links li:not(.nav-actions) > a.active {
        color: var(--gold-light);
        background: rgba(201, 164, 76, 0.06);
        padding-left: 32px;
    }
    .nav-links li:not(.nav-actions) > a:hover::before,
    .nav-links li:not(.nav-actions) > a.active::before { opacity: 1; }
    .nav-links li:not(.nav-actions) > a:hover::after,
    .nav-links li:not(.nav-actions) > a.active::after { transform: translateX(6px); opacity: 1; }

    /* ===== Quick-action buttons ===== */
    .nav-links li.nav-actions {
        counter-increment: none;
        border-bottom: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 18px 20px 6px;
    }
    .nav-act-row { display: flex; gap: 10px; }

    .nav-act {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        padding: 13px 14px;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease, background 0.3s ease;
    }
    .nav-act svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
    .nav-act:active { transform: scale(0.97); }

    /* primary — full width gold gradient */
    .nav-act-book {
        background: linear-gradient(135deg, var(--gold-light), var(--gold));
        color: var(--green-dark);
        box-shadow: 0 8px 20px rgba(201, 164, 76, 0.28);
    }
    .nav-act-book:active { box-shadow: 0 4px 12px rgba(201, 164, 76, 0.3); }

    /* secondary pair */
    .nav-act-row .nav-act { flex: 1; }

    .nav-act-call {
        background: rgba(201, 164, 76, 0.10);
        border: 1px solid rgba(201, 164, 76, 0.45);
        color: var(--gold-light);
    }
    .nav-act-wa {
        background: rgba(37, 211, 102, 0.14);
        border: 1px solid rgba(37, 211, 102, 0.5);
        color: #4fe089;
    }

    /* hide the desktop text actions, show the icon bar */
    .header-actions { display: none; }
    .mobile-icons { display: flex; }
    .menu-toggle { display: inline-flex; }

    .hero-title { font-size: 2.6rem; }

    /* content sections: drop parallax (janky on mobile) */
    .intro,
    .features,
    .cta,
    .how-to,
    .receive { background-attachment: scroll; }
    .stat + .stat::before { display: none; }

    .receive-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }

    .profile-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* Mobile */
@media (max-width: 680px) {
    .brand-logo { height: 76px; }
    .micon { width: 38px; height: 38px; }
    .micon svg { width: 21px; height: 21px; }

    .hero { padding: 34px 0 50px; }
    .hero-eyebrow { font-size: 0.82rem; }
    .hero-tagline { font-size: 1.3rem; }
    .hero-title { font-size: 2rem; }

    .diamond-carousel { padding: 0 40px; margin-top: 26px; }
    .diamond { width: 270px; height: 270px; }
    .diamond-label { font-size: 0.85rem; padding: 7px 14px; letter-spacing: 1px; }
    .dia-arrow { width: 36px; height: 36px; font-size: 0.95rem; }

    .section { padding: 48px 0; }
    .section-title { margin-bottom: 28px; }
    .section-title h2 { font-size: 1.85rem; line-height: 1.18; margin-bottom: 8px; }
    .section-title p { font-size: 0.95rem; line-height: 1.5; }
    .eyebrow { margin-bottom: 8px; }
    .about-grid { grid-template-columns: 1fr; gap: 30px; }

    /* content sections */
    .intro-text h2 { font-size: 2rem; }
    .intro-text p { font-size: 1rem; }
    .intro::before { width: 420px; height: 420px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 10px; }

    /* profile cards: 2 per row on mobile */
    .profile-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .pc-name { font-size: 1rem; }
    .pc-tag { font-size: 0.6rem; padding: 4px 8px; letter-spacing: 0.5px; }
    .pc-tags { bottom: 32px; }
    .pc-availability { font-size: 0.68rem; letter-spacing: 1.8px; }
    .pc-loc { font-size: 0.68rem; }
    .pc-price { font-size: 0.85rem; }

    /* smaller badge + rating overlays so they fit the 2-col cards */
    .pc-badge {
        top: 7px;
        left: 7px;
        padding: 3px 9px;
        font-size: 0.56rem;
        letter-spacing: 0.6px;
    }
    .pc-rate {
        top: 7px;
        right: 7px;
        padding: 3px 7px;
        font-size: 0.64rem;
        gap: 3px;
    }
    .pc-rate svg { width: 10px; height: 10px; }

    /* Load More button: compact + full layout on one line */
    .load-more-wrap { margin-top: 30px; }
    .load-more-btn {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px 8px;
        padding: 13px 26px;
        font-size: 0.74rem;
        letter-spacing: 1px;
    }
    .load-more-btn .lm-count { font-size: 0.68rem; }

    .stat-num { font-size: 2.5rem; }
    .cta { padding: 60px 0; }
    .cta h2 { font-size: 2.1rem; }
    .cta-buttons .btn { width: 100%; max-width: 280px; }
}

@media (max-width: 430px) {
    .brand-logo { height: 64px; }
    .micon { width: 34px; height: 34px; border-radius: 6px; }
    .micon svg { width: 19px; height: 19px; }
    .mobile-icons { gap: 1px; }
    .diamond { width: 230px; height: 230px; }
    /* smaller logo here -> a little less top clearance keeps the gap tidy */
    .page-inner .page-head { padding-top: 96px; }
}

/* ================= Profile detail page (immersive cover + sheet) ================= */
.pf { background: #f7f1e3; }

/* ---- Gallery (main image + thumbnail rail, dark band) ---- */
.pg { position: relative; overflow: hidden; padding: 196px 0 56px;
    background: radial-gradient(120% 130% at 80% 0%, #124233 0%, #0a2a20 45%, #061510 100%); }
.pg-bg { position: absolute; inset: 0; background-size: cover; background-position: center;
    opacity: 0.13; filter: blur(34px) saturate(1.1); transform: scale(1.15); pointer-events: none; }
.pg .container { position: relative; z-index: 2; }
.pg-wrap { display: flex; gap: 14px; align-items: stretch; }

.pg-rail { display: flex; flex-direction: column; gap: 10px; width: 96px; flex-shrink: 0;
    max-height: 560px; overflow-y: auto; padding-right: 4px; scrollbar-width: thin; scrollbar-color: rgba(201,164,76,.5) transparent; }
.pg-rail::-webkit-scrollbar { width: 5px; }
.pg-rail::-webkit-scrollbar-thumb { background: rgba(201,164,76,.5); border-radius: 50px; }
.pg-thumb { flex: 0 0 auto; width: 100%; height: 112px; padding: 0; border: 2px solid transparent; border-radius: 12px;
    overflow: hidden; cursor: pointer; background: none; opacity: 0.55; transition: opacity .3s ease, border-color .3s ease; }
.pg-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pg-thumb:hover { opacity: 1; }
.pg-thumb.active { border-color: var(--gold); opacity: 1; }

.pg-main { position: relative; flex: 1; min-width: 0; height: 560px; border-radius: 20px; overflow: hidden;
    background: #0a1310; border: 1px solid rgba(201,164,76,.3); box-shadow: 0 30px 70px rgba(0,0,0,.42); }
.pg-main > img { width: 100%; height: 100%; object-fit: cover; display: block; cursor: zoom-in; transition: opacity .4s ease; }
.pf-badge { padding: 6px 15px; font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    color: #fff; border-radius: 50px; box-shadow: 0 4px 14px rgba(0,0,0,.35); }
.pf-badge-top { background: linear-gradient(135deg,#ef4b4b,#a01919); }
.pf-badge-gold { background: linear-gradient(135deg,var(--gold-light),var(--gold)); color: var(--green-dark); }
.pf-badge-premium { background: linear-gradient(135deg,#8b5cf6,#5b21b6); }
.pf-badge-new { background: linear-gradient(135deg,#22c55e,#15803d); }
.pf-live { display: inline-flex; align-items: center; gap: 6px; padding: 6px 13px; font-size: 0.72rem; font-weight: 700;
    color: #fff; background: rgba(0,0,0,.55); border-radius: 50px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.pf-live i { width: 8px; height: 8px; border-radius: 50%; background: #35e07f; animation: pfPulse 1.8s infinite; }
@keyframes pfPulse { 0% { box-shadow: 0 0 0 0 rgba(53,224,127,.6); } 70% { box-shadow: 0 0 0 8px rgba(53,224,127,0); } 100% { box-shadow: 0 0 0 0 rgba(53,224,127,0); } }
.pg-badge { position: absolute; top: 15px; left: 15px; z-index: 3; }
.pg-live { position: absolute; top: 15px; right: 15px; z-index: 3; }
.pg-count { position: absolute; bottom: 15px; left: 15px; z-index: 3; padding: 5px 13px; font-size: 0.74rem; color: #fff;
    background: rgba(0,0,0,.5); border-radius: 50px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.pg-count b { color: var(--gold-light); }
.pg-full { position: absolute; bottom: 15px; right: 15px; z-index: 3; display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 16px; font-size: 0.8rem; font-weight: 600; color: #fff; cursor: pointer;
    background: rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.28); border-radius: 50px;
    -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); transition: background .25s ease; }
.pg-full:hover { background: rgba(0,0,0,.75); }
.pg-full svg { width: 16px; height: 16px; fill: var(--gold-light); }

/* prev / next arrows on the main gallery image */
.pg-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
    width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.7rem; font-weight: 700; line-height: 1; color: #fff; cursor: pointer;
    background: rgba(0,0,0,.42); border: 1px solid rgba(255,255,255,.3); border-radius: 50%;
    -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease; }
.pg-arrow:hover { background: var(--gold); color: #10231b; border-color: var(--gold); }
.pg-prev { left: 12px; }
.pg-next { right: 12px; }
.pg-prev:hover { transform: translateY(-50%) scale(1.06); }
.pg-next:hover { transform: translateY(-50%) scale(1.06); }

/* ---- Bottom sheet ---- */
.pf-sheet { position: relative; z-index: 6; margin-top: -34px; padding: 8px 0 70px; border-radius: 30px 30px 0 0;
    background: #f7f1e3; box-shadow: 0 -14px 40px rgba(7,49,39,.14); }
.pf-handle { display: block; width: 46px; height: 5px; margin: 12px auto 4px; border-radius: 50px; background: #d6cbb0; }

.pf-idrow { padding-top: 12px; }
.pf-name { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 2.9rem; line-height: 1.05;
    color: var(--green-dark); }
.pf-verified { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px;
    font-size: 0.9rem; vertical-align: middle; color: #fff; background: linear-gradient(135deg,#22c55e,#15803d);
    border-radius: 50%; }
.pf-sub { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 6px; font-size: 0.95rem; color: #6a786f; }
.pf-stars { color: var(--gold); letter-spacing: 1px; }
.pf-sub b { color: var(--green-dark); }
.pf-muted { color: #93a096; }
.pf-pin { display: inline-flex; align-items: center; gap: 4px; padding-left: 8px; border-left: 1px solid #d8cdb4; color: #6a786f; }
.pf-pin svg { width: 16px; height: 16px; fill: var(--gold); }

.pf-stats { display: grid; grid-template-columns: repeat(3, 1fr); margin: 22px 0; border-radius: 18px;
    background: linear-gradient(160deg, #0d3327, #061810); overflow: hidden; box-shadow: 0 14px 34px rgba(7,49,39,.18); }
.pf-stat { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 20px 10px; text-align: center;
    border-right: 1px solid rgba(255,255,255,.08); }
.pf-stat:last-child { border-right: none; }
.pf-stat svg { width: 22px; height: 22px; fill: var(--gold-light); margin-bottom: 3px; }
.pf-stat b { color: #fff; font-size: 1.12rem; }
.pf-stat span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: .8px; color: #8ea198; }

.pf-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.pf-tag { padding: 6px 14px; font-size: 0.74rem; font-weight: 600; color: #566;
    background: #fff; border: 1px solid rgba(201,164,76,.32); border-radius: 50px; }
.pf-tag-gold { background: linear-gradient(135deg,var(--gold-light),var(--gold)); color: var(--green-dark); border: none; }

.pf-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pf-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px;
    font-size: 0.98rem; font-weight: 700; letter-spacing: .3px; border-radius: 50px; text-decoration: none;
    transition: transform .3s var(--ease-spring), box-shadow .3s ease; }
.pf-btn svg { width: 20px; height: 20px; fill: currentColor; }
.pf-wa { background: #25d366; color: #fff; box-shadow: 0 12px 26px rgba(37,211,102,.28); }
.pf-call { background: linear-gradient(135deg,var(--gold-light),var(--gold)); color: var(--green-dark); }
.pf-btn:hover { transform: translateY(-3px); }
.pf-note { margin-top: 14px; text-align: center; font-size: 0.82rem; color: #7d8a81; }

.pf-block { margin-top: 44px; }
.pf-block .eyebrow { color: var(--gold); }
.pf-h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.1rem; color: var(--green-dark); margin: 4px 0 0; }
.pf-about { margin-top: 14px; color: #5a6a60; line-height: 1.9; }

.pf-highlights { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 20px; }
.pf-hl { display: flex; flex-direction: column; gap: 3px; padding: 18px 15px;
    background: linear-gradient(160deg,#fff,#fbf6ea); border: 1px solid rgba(201,164,76,.28); border-radius: 14px;
    transition: transform .3s ease, box-shadow .3s ease; }
.pf-hl:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(7,49,39,.1); }
.pf-hl-ic { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; margin-bottom: 5px;
    font-size: 1.05rem; border-radius: 50%; background: radial-gradient(circle at 30% 25%, var(--green), var(--green-dark));
    color: var(--gold-light); box-shadow: inset 0 0 0 1.5px rgba(201,164,76,.5); }
.pf-hl b { color: var(--green-dark); font-size: 1rem; }
.pf-hl small { color: #8a958d; font-size: 0.82rem; }

/* ---- Sticky mobile booking bar ---- */
.pf-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 120; display: none; align-items: center; gap: 10px;
    padding: 10px 14px; background: rgba(6,24,16,.96); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    border-top: 1px solid rgba(201,164,76,.35); }
.pf-bar-info { display: flex; flex-direction: column; line-height: 1.15; margin-right: auto; }
.pf-bar-info strong { color: #fff; font-size: 0.96rem; }
.pf-bar-info span { color: var(--gold-light); font-size: 0.8rem; }
.pf-bar-btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px; height: 46px; padding: 0 20px;
    border-radius: 50px; font-weight: 700; font-size: 0.9rem; text-decoration: none; }
.pf-bar-btn svg { width: 20px; height: 20px; fill: currentColor; }
.pf-bar-call { width: 46px; padding: 0; color: var(--green-dark); background: linear-gradient(135deg,var(--gold-light),var(--gold)); }
.pf-bar-wa { color: #fff; background: #25d366; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .pf-highlights { grid-template-columns: repeat(2, 1fr); }
    .pg-main { height: 500px; }
    /* header collapses to a compact flex row here — tighten top clearance */
    .pg { padding: 120px 0 46px; }
}
@media (max-width: 820px) {
    .pg { padding: 116px 0 46px; }
    .pg-wrap { flex-direction: column-reverse; gap: 12px; }
    .pg-rail { flex-direction: row; width: 100%; max-height: none; overflow-x: auto; overflow-y: hidden; padding: 0 0 4px; }
    .pg-thumb { width: 78px; height: 92px; flex: 0 0 auto; }
    .pg-main { height: 62vh; min-height: 400px; max-height: 560px; }
}
@media (max-width: 600px) {
    .pg-main { height: 58vh; min-height: 360px; }
    .pg-full { padding: 8px 12px; font-size: 0; gap: 0; }
    .pg-full svg { width: 18px; height: 18px; }
    .pg-arrow { width: 38px; height: 38px; font-size: 1.45rem; }
    .pg-prev { left: 8px; } .pg-next { right: 8px; }
    .pf-sheet { margin-top: -28px; padding-bottom: 96px; }
    .pf-name { font-size: 2.3rem; }
    .pf-stat b { font-size: 1rem; }
    .pf-stat { padding: 16px 6px; }
    .pf-cta { grid-template-columns: 1fr; }
    .pf-h2 { font-size: 1.85rem; }
    .pf-bar { display: flex; }
}
@media (max-width: 400px) {
    .pf-highlights { grid-template-columns: 1fr; }
    .pg-thumb { width: 66px; height: 80px; }
}

/* ---- Breadcrumb inside sheet ---- */
.pf-crumb { padding-top: 14px; }
.pf-crumb .breadcrumb { margin: 0; }
.pf-crumb .breadcrumb ol { justify-content: flex-start; }
.pf-crumb .breadcrumb a { color: #6a786f; }
.pf-crumb .breadcrumb a:hover { color: var(--gold); }
.pf-crumb .breadcrumb .bc-sep { color: var(--gold); opacity: 0.9; }
.pf-crumb .breadcrumb .bc-current { color: var(--green-dark); }

/* ---- View-full button on cover ---- */
.pf-expand { position: absolute; left: 22px; bottom: 50px; z-index: 5; display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 16px; font-size: 0.8rem; font-weight: 600; color: #fff; cursor: pointer;
    background: rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.28); border-radius: 50px;
    -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); transition: background .25s ease; }
.pf-expand:hover { background: rgba(0,0,0,.72); }
.pf-expand svg { width: 16px; height: 16px; fill: var(--gold-light); }
.pf-slide { cursor: zoom-in; }

/* ---- Lightbox ---- */
.pf-lb { position: fixed; inset: 0; z-index: 2000; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
    padding: 64px 16px 18px;
    background: rgba(4,10,7,.94); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.pf-lb.open { display: flex; animation: pfLbIn .25s ease; }
@keyframes pfLbIn { from { opacity: 0; } to { opacity: 1; } }
.pf-lb-stage { max-width: 92vw; max-height: 72vh; display: flex; align-items: center; justify-content: center; }
.pf-lb-stage img { max-width: 92vw; max-height: 72vh; width: auto; height: auto; object-fit: contain;
    border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.6); transition: opacity .22s ease; }

/* thumbnail filmstrip */
.pf-lb-thumbs { display: flex; gap: 8px; max-width: 94vw; padding: 6px 4px; overflow-x: auto;
    scrollbar-width: thin; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; }
.pf-lb-thumbs::-webkit-scrollbar { height: 6px; }
.pf-lb-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,.25); border-radius: 50px; }
.pf-lb-thumb { flex: 0 0 auto; width: 58px; height: 74px; padding: 0; border: 2px solid transparent; border-radius: 8px;
    overflow: hidden; background: none; cursor: pointer; opacity: .5;
    transition: opacity .2s ease, border-color .2s ease, transform .15s ease; }
.pf-lb-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pf-lb-thumb:hover { opacity: .85; transform: translateY(-2px); }
.pf-lb-thumb.active { opacity: 1; border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.pf-lb-close { position: absolute; top: 20px; right: 24px; width: 48px; height: 48px; font-size: 1.8rem; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    color: #fff; background: rgba(0,0,0,.55); border: 1.5px solid rgba(255,255,255,.4); border-radius: 50%;
    cursor: pointer; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.pf-lb-close:hover { background: var(--gold); border-color: var(--gold); color: #10231b; transform: rotate(90deg); }
.pf-lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 60px; height: 60px; font-size: 2.4rem; font-weight: 700; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    color: #fff; background: rgba(0,0,0,.55); border: 1.5px solid rgba(255,255,255,.4); border-radius: 50%;
    cursor: pointer; box-shadow: 0 4px 18px rgba(0,0,0,.4); transition: background .2s ease, border-color .2s ease, transform .15s ease; }
.pf-lb-nav:hover { background: var(--gold); border-color: var(--gold); color: #10231b; }
.pf-lb-prev { left: 24px; } .pf-lb-next { right: 24px; }
.pf-lb-prev:hover { transform: translateY(-50%) scale(1.08); } .pf-lb-next:hover { transform: translateY(-50%) scale(1.08); }
.pf-lb-count { position: absolute; top: 26px; left: 24px; padding: 6px 16px;
    font-size: 0.85rem; color: #fff; background: rgba(0,0,0,.5); border-radius: 50px; }

/* ---- More companions slider ---- */
.pf-moresec { margin-top: 48px; padding: 32px 30px 38px; border-radius: 22px;
    background: radial-gradient(120% 130% at 85% 0%, #124233 0%, #0a2a20 48%, #061510 100%);
    box-shadow: 0 18px 44px rgba(7,49,39,.18); }
.pf-moresec .pf-more-head { margin-top: 0; }
.pf-moresec .pf-h2 { color: #fff; }
.pf-moresec .eyebrow { color: var(--gold-light); }
.pf-moresec .pc-loc { color: #9fb0a7; }
.pf-more-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-top: 46px; }
.pf-more-head .eyebrow { color: var(--gold); }
.pf-more-nav { display: flex; gap: 8px; }
.pf-more-nav button { width: 44px; height: 44px; font-size: 1.5rem; line-height: 1; color: var(--green-dark);
    background: #fff; border: 1px solid rgba(201,164,76,.4); border-radius: 50%; cursor: pointer;
    transition: background .2s ease, color .2s ease; }
.pf-more-nav button:hover { background: var(--green-dark); color: var(--gold-light); border-color: var(--green-dark); }
.pf-more-track { display: flex; gap: 18px; margin-top: 20px; padding: 4px 2px 10px; overflow-x: auto;
    scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.pf-more-track::-webkit-scrollbar { display: none; }
.pf-more-track .profile-card { flex: 0 0 250px; width: 250px; scroll-snap-align: start; }

@media (max-width: 900px) {
    .pf-more-track .profile-card { flex-basis: 230px; width: 230px; }
}
@media (max-width: 600px) {
    .pf-expand { left: 14px; bottom: 46px; padding: 8px 13px; font-size: 0.75rem; }
    .pf-moresec { padding: 22px 16px 26px; border-radius: 18px; }
    .pf-more-nav { display: none; }
    .pf-more-track { gap: 12px; }
    .pf-more-track .profile-card { flex-basis: 72%; width: 72%; }
    .pf-lb { padding: 56px 8px 12px; gap: 10px; }
    .pf-lb-nav { width: 40px; height: 40px; font-size: 1.5rem; }
    .pf-lb-prev { left: 8px; } .pf-lb-next { right: 8px; }
    .pf-lb-close { top: 12px; right: 12px; width: 42px; height: 42px; font-size: 1.5rem; }
    .pf-lb-count { top: 18px; left: 14px; font-size: 0.78rem; padding: 5px 12px; }
    .pf-lb-stage, .pf-lb-stage img { max-height: 66vh; }
    .pf-lb-thumb { width: 48px; height: 62px; }
}

/* ---- Rates table ---- */
.pf-rates { margin-top: 30px; padding: 24px 22px 20px; border-radius: 20px; color: #e7efe9;
    background: radial-gradient(120% 130% at 85% 0%, #14322a 0%, #0c211b 50%, #08150f 100%);
    border: 1px solid rgba(201,164,76,.28); box-shadow: 0 16px 40px rgba(7,49,39,.16); }
.pf-rates-head { display: flex; align-items: center; margin-bottom: 16px; }
.pf-rates-title { position: relative; padding-left: 14px; font-size: 1.02rem; font-weight: 700;
    letter-spacing: 1.6px; text-transform: uppercase; color: #fff; }
.pf-rates-title::before { content: ""; position: absolute; left: 0; top: 1px; bottom: 1px; width: 4px;
    border-radius: 50px; background: linear-gradient(var(--gold-light), var(--gold)); }
.pf-rates-cols { display: flex; justify-content: space-between; padding: 0 6px 12px; font-size: 0.7rem;
    letter-spacing: 1.2px; text-transform: uppercase; color: #7f9188; }
.pf-rate-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.pf-rate { display: flex; align-items: center; gap: 13px; padding: 12px 14px; border-radius: 14px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.pf-rate-ic { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; flex-shrink: 0;
    border-radius: 11px; background: rgba(201,164,76,.14); }
.pf-rate-ic svg { width: 19px; height: 19px; fill: var(--gold-light); }
.pf-rate-dur { font-weight: 600; color: #fff; font-size: 1rem; }
.pf-rate-price { margin-left: auto; padding: 8px 16px; font-weight: 700; color: #fff; font-size: 0.98rem;
    background: rgba(255,255,255,.06); border: 1px solid rgba(201,164,76,.3); border-radius: 10px; white-space: nowrap; }
.pf-rate-hl { background: linear-gradient(120deg, rgba(14,92,69,.6), rgba(201,164,76,.16));
    border-color: rgba(201,164,76,.5); }
.pf-rate-hl .pf-rate-ic { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
.pf-rate-hl .pf-rate-ic svg { fill: var(--green-dark); }
.pf-rate-hl .pf-rate-price { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--green-dark); border: none; }
.pf-rates-note { margin: 16px 6px 0; display: flex; align-items: center; gap: 7px; font-size: 0.8rem; color: #8fe6ad; }

@media (max-width: 600px) {
    .pf-rates { padding: 20px 16px 16px; }
    .pf-rate { gap: 10px; padding: 11px 12px; }
    .pf-rate-ic { width: 34px; height: 34px; }
    .pf-rate-dur { font-size: 0.94rem; }
    .pf-rate-price { padding: 7px 12px; font-size: 0.9rem; }
}

/* ---- Reviews section ---- */
.pf-reviews { margin-top: 46px; scroll-margin-top: 120px; }
.pf-rev-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.pf-rev-head .eyebrow { color: var(--gold); }
.pf-rev-score { display: flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 14px;
    background: linear-gradient(160deg, #0d3327, #061810); color: #fff; }
.pf-rev-score b { font-size: 1.5rem; line-height: 1; }
.pf-rev-score-stars { color: var(--gold); letter-spacing: 1px; }
.pf-rev-score small { color: #9fb0a7; font-size: 0.78rem; }

.pf-rev-list { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.pf-rev { padding: 18px 20px; background: #fff; border: 1px solid rgba(201,164,76,.24); border-radius: 16px;
    box-shadow: 0 8px 22px rgba(7,49,39,.05); }
.pf-rev-top { display: flex; align-items: center; gap: 12px; }
.pf-rev-avatar { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; flex-shrink: 0;
    border-radius: 50%; font-weight: 700; font-size: 1.1rem; color: var(--gold-light);
    background: radial-gradient(circle at 30% 25%, var(--green), var(--green-dark)); box-shadow: inset 0 0 0 1.5px rgba(201,164,76,.5); }
.pf-rev-meta { display: flex; flex-direction: column; line-height: 1.3; }
.pf-rev-meta strong { color: var(--green-dark); font-size: 1rem; }
.pf-rev-meta span { color: #8a958d; font-size: 0.8rem; }
.pf-rev-stars { margin-left: auto; color: var(--gold); letter-spacing: 1px; font-size: 1rem; white-space: nowrap; }
.pf-rev-msg { margin: 12px 0 0; color: #5a6a60; line-height: 1.75; font-size: 0.95rem; }
.pf-rev-empty { margin-top: 20px; padding: 22px; text-align: center; color: #8a958d;
    background: #fff; border: 1px dashed rgba(201,164,76,.4); border-radius: 16px; }

/* ---- Add review form ---- */
.pf-rev-form { margin-top: 26px; padding: 26px 24px; background: #fff; border: 1px solid rgba(201,164,76,.28);
    border-radius: 18px; box-shadow: 0 12px 30px rgba(7,49,39,.06); }
.pf-rev-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; color: var(--green-dark); margin: 0 0 16px; }
.pf-rev-alert { padding: 12px 16px; border-radius: 12px; font-size: 0.9rem; margin-bottom: 16px; }
.pf-rev-alert-ok { color: #14663f; background: #e4f6ec; border: 1px solid #a5e0bf; }
.pf-rev-alert-err { color: #922; background: #fdecec; border: 1px solid #f2b8b8; }
.pf-rev-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pf-rev-field { display: flex; flex-direction: column; margin-bottom: 14px; }
.pf-rev-field label { font-size: 0.82rem; font-weight: 600; color: var(--green-dark); margin-bottom: 6px; letter-spacing: .3px; }
.pf-rev-field label span { color: #9aa39c; font-weight: 400; }
.pf-rev-field input, .pf-rev-field textarea { padding: 12px 14px; font-size: 0.95rem; font-family: inherit; color: #33413a;
    background: #faf7ef; border: 1px solid #e0d7c2; border-radius: 11px; transition: border-color .2s ease, box-shadow .2s ease; }
.pf-rev-field input:focus, .pf-rev-field textarea:focus { outline: none; border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,164,76,.18); }
.pf-rev-field textarea { resize: vertical; min-height: 96px; }

.pf-rev-rate { display: inline-flex; flex-direction: row-reverse; justify-content: flex-end; gap: 5px; }
.pf-rev-rate input { position: absolute; left: -9999px; }
.pf-rev-rate label { font-size: 1.95rem; line-height: 1; color: #ddd3ba; cursor: pointer; margin: 0;
    transition: color .15s ease, transform .15s ease; }
.pf-rev-rate label:hover { transform: scale(1.15); }
.pf-rev-rate input:checked ~ label,
.pf-rev-rate label:hover,
.pf-rev-rate label:hover ~ label { color: var(--gold); }

.pf-rev-submit { border: none; cursor: pointer; margin-top: 4px; }

@media (max-width: 600px) {
    .pf-rev-row { grid-template-columns: 1fr; gap: 0; }
    .pf-rev-form { padding: 20px 16px; }
    .pf-rev { padding: 16px; }
    .pf-rev-stars { font-size: 0.9rem; }
}

/* ---- Review success modal ---- */
.pf-modal { position: fixed; inset: 0; z-index: 3000; display: flex; align-items: center; justify-content: center;
    padding: 20px; background: rgba(6,18,13,.62); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
    animation: pfModalIn .3s ease; }
.pf-modal.closing { animation: pfModalOut .3s ease forwards; }
@keyframes pfModalIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pfModalOut { from { opacity: 1; } to { opacity: 0; } }
.pf-modal-box { position: relative; width: 100%; max-width: 380px; padding: 34px 28px 26px; text-align: center;
    background: linear-gradient(165deg, #0d3327 0%, #061810 100%); border: 1px solid rgba(201,164,76,.4);
    border-radius: 22px; box-shadow: 0 30px 70px rgba(0,0,0,.45); overflow: hidden; animation: pfModalPop .4s var(--ease-spring); }
@keyframes pfModalPop { from { transform: translateY(24px) scale(.94); } to { transform: translateY(0) scale(1); } }
.pf-modal-ic { display: inline-flex; align-items: center; justify-content: center; width: 66px; height: 66px;
    margin-bottom: 14px; font-size: 2rem; color: #fff; border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #15803d); box-shadow: 0 8px 22px rgba(34,197,94,.4); }
.pf-modal-box h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; color: #fff; margin: 0 0 8px; }
.pf-modal-box p { color: #adbcb4; font-size: 0.95rem; line-height: 1.6; margin: 0 0 20px; }
.pf-modal-btn { padding: 11px 30px; font-size: 0.92rem; font-weight: 700; cursor: pointer; color: var(--green-dark);
    background: linear-gradient(135deg, var(--gold-light), var(--gold)); border: none; border-radius: 50px;
    transition: transform .25s var(--ease-spring); }
.pf-modal-btn:hover { transform: translateY(-2px); }
.pf-modal-bar { position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: rgba(255,255,255,.1); }
.pf-modal-bar i { display: block; height: 100%; width: 100%; transform-origin: left;
    background: linear-gradient(90deg, var(--gold-light), var(--gold)); animation: pfModalCount 5s linear forwards; }
@keyframes pfModalCount { from { transform: scaleX(1); } to { transform: scaleX(0); } }

/* ================= FAQ (home) ================= */
.faq { position: relative; padding: 84px 0; background: linear-gradient(180deg, #faf6ec 0%, #f4ecdb 100%); }
.faq-head { text-align: center; max-width: 660px; margin: 0 auto 42px; }
.faq-head .eyebrow { color: var(--gold); }
.faq-head h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.7rem; line-height: 1.1; color: var(--green-dark); margin: 6px 0 10px; }
.faq-head p { color: #6a786f; font-size: 1rem; }
.faq-list { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border: 1px solid rgba(201,164,76,.28); border-radius: 16px; overflow: hidden;
    box-shadow: 0 8px 22px rgba(7,49,39,.05); transition: box-shadow .3s ease, border-color .3s ease, transform .3s ease; }
.faq-item.open { border-color: var(--gold); box-shadow: 0 16px 34px rgba(7,49,39,.1); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
    padding: 20px 22px; background: none; border: none; cursor: pointer; text-align: left; font-family: inherit;
    font-size: 1.06rem; font-weight: 600; color: var(--green-dark); line-height: 1.4; transition: color .2s ease; }
.faq-q:hover { color: var(--green); }
.faq-ic { position: relative; flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, var(--green), var(--green-dark)); box-shadow: inset 0 0 0 1.5px rgba(201,164,76,.5); }
.faq-ic::before, .faq-ic::after { content: ""; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%); background: var(--gold-light); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.faq-ic::before { width: 12px; height: 2px; }
.faq-ic::after { width: 2px; height: 12px; }
.faq-item.open .faq-ic { background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: none; }
.faq-item.open .faq-ic::before, .faq-item.open .faq-ic::after { background: var(--green-dark); }
.faq-item.open .faq-ic::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .38s ease; }
.faq-a p { margin: 0; padding: 0 22px 22px; color: #5a6a60; line-height: 1.85; font-size: 0.97rem; }

@media (max-width: 640px) {
    .faq { padding: 60px 0; }
    .faq-head { margin-bottom: 30px; }
    .faq-head h2 { font-size: 2.1rem; }
    .faq-q { padding: 16px 16px; font-size: 0.98rem; gap: 12px; }
    .faq-ic { width: 26px; height: 26px; }
    .faq-a p { padding: 0 16px 18px; font-size: 0.93rem; }
}

/* WhatsApp / icon sizing inside text buttons */
.hbtn svg { width: 15px; height: 15px; vertical-align: -2px; margin-right: 5px; fill: currentColor; }
.cta-buttons .btn svg { width: 18px; height: 18px; vertical-align: -3px; margin-right: 6px; fill: currentColor; }

/* ---- Review form: open on "Write a Review" click ---- */
.pf-rev-open { display: inline-flex; align-items: center; gap: 9px; margin-top: 24px; padding: 13px 28px;
    font-family: inherit; font-size: 0.95rem; font-weight: 700; letter-spacing: .3px; cursor: pointer;
    color: var(--green-dark); background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border: none; border-radius: 50px; box-shadow: 0 10px 24px rgba(201,164,76,.28);
    transition: transform .3s var(--ease-spring), box-shadow .3s ease; }
.pf-rev-open:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(201,164,76,.36); }
.pf-rev-open svg { width: 18px; height: 18px; fill: currentColor; }
.pf-rev-open.is-hidden { display: none; }

.pf-rev-form { display: none; margin-top: 22px; }
.pf-rev-form.is-open { display: block; animation: pfRevIn .4s ease; }
@keyframes pfRevIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* =====================================================================
   Header site search
   · Laptop  (>=901px): always-visible bar in the menu-bar column
   · Tablet  (601-900): always-visible bar centred in the header
   · Mobile  (<=600px): search icon -> slide-down panel
   ===================================================================== */

/* mobile search trigger highlights like the menu toggle when open */
.micon[aria-expanded="true"] {
    background: rgba(201, 164, 76, 0.18);
    color: var(--gold);
}

/* ---- the input row (shared by inline bar + mobile panel) ---- */
.hs-form {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 164, 76, 0.45);
    border-radius: 12px;
    padding: 5px 6px 5px 13px;
}
.hs-form:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 164, 76, 0.18); }
.hs-lens { width: 20px; height: 20px; fill: var(--gold-light); flex: 0 0 auto; }
.hs-input {
    flex: 1 1 auto;
    min-width: 0;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 0.92rem;
    font-family: inherit;
    padding: 8px 4px;
}
.hs-input::placeholder { color: rgba(234, 255, 245, 0.6); }
.hs-input::-webkit-search-cancel-button { -webkit-appearance: none; }

.hs-clear {
    flex: 0 0 auto;
    width: 30px; height: 30px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none; border-radius: 50%;
    color: #eafff5; cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}
.hs-clear svg { width: 15px; height: 15px; fill: currentColor; }
.hs-clear:hover { background: rgba(255, 90, 90, 0.85); color: #fff; transform: scale(1.05); }
.hs-clear[hidden] { display: none; }

.hs-go {
    flex: 0 0 auto;
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    background: var(--gold);
    color: var(--dark);
    border: none; border-radius: 9px;
    padding: 9px 12px;
    font-weight: 700; font-size: 0.82rem; letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}
.hs-go svg { width: 16px; height: 16px; fill: currentColor; }
.hs-go:hover { background: var(--gold-light); transform: translateY(-1px); }

.hs-close {
    flex: 0 0 auto;
    width: 38px; height: 38px;
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent; border: none; border-radius: 9px;
    color: #eafff5; cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}
.hs-close svg { width: 20px; height: 20px; fill: currentColor; }
.hs-close:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }

/* ---- suggestions dropdown (absolutely anchored below the form) ---- */
.hs-suggest {
    position: absolute;
    top: calc(100% + 9px);
    left: 0;
    right: 0;
    z-index: 80;
    display: none;
    max-height: min(62vh, 440px);
    overflow-y: auto;
    background: linear-gradient(180deg, #0a3327, #04140f);
    border: 1px solid rgba(201, 164, 76, 0.3);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    padding: 6px;
}
.hs-suggest.show { display: block; animation: hsFade 0.2s ease; }
@keyframes hsFade { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

.hs-group + .hs-group { margin-top: 4px; border-top: 1px solid rgba(255, 255, 255, 0.07); padding-top: 4px; }
.hs-group-t {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--gold-light);
    padding: 8px 12px 5px;
}
.hs-item {
    display: flex; align-items: center; gap: 12px;
    padding: 9px 12px;
    border-radius: 9px;
    color: #eafff5;
    transition: background 0.15s ease;
}
.hs-item:hover,
.hs-item.active { background: rgba(201, 164, 76, 0.18); }
.hs-thumb {
    width: 44px; height: 44px; flex: 0 0 auto;
    border-radius: 8px; object-fit: cover;
    background: rgba(255, 255, 255, 0.08);
}
.hs-thumb-ph { display: block; }
.hs-ic {
    width: 40px; height: 40px; flex: 0 0 auto;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 8px;
    background: rgba(201, 164, 76, 0.16);
}
.hs-ic svg { width: 20px; height: 20px; fill: var(--gold-light); }
.hs-txt { display: flex; flex-direction: column; min-width: 0; }
.hs-label { font-size: 0.95rem; font-weight: 600; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hs-label mark { background: transparent; color: var(--gold-light); font-weight: 800; }
.hs-sub { font-size: 0.78rem; color: rgba(234, 255, 245, 0.62); }
.hs-none { padding: 18px 14px; color: rgba(234, 255, 245, 0.75); font-size: 0.92rem; text-align: center; }

/* ---- always-visible inline bar (laptop + tablet) ---- */
.hdr-search { position: relative; display: flex; align-items: center; }
.hdr-search .hs-form { width: 100%; }

/* ---- mobile slide-down panel ---- */
.header-search {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 60;
    background: linear-gradient(135deg, rgba(7, 49, 39, 0.98), rgba(14, 92, 69, 0.97));
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(201, 164, 76, 0.4);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.28s var(--ease-smooth, ease), opacity 0.28s ease, visibility 0.28s;
}
.header-search.open { transform: translateY(0); opacity: 1; visibility: visible; }
.hs-inner { padding: 15px 0 18px; }

/* =========== LAPTOP / DESKTOP: bar in the menu-bar column =========== */
@media (min-width: 901px) {
    .header-inner {
        grid-template-columns: 1fr auto 1fr;
        grid-template-rows: auto auto;
        row-gap: 8px;
    }
    /* search bar sits on the first row, the nav menu on the second */
    .hdr-search {
        grid-column: 1; grid-row: 1;
        justify-self: start; align-self: end;
        width: min(320px, 100%);
    }
    .nav-left       { grid-column: 1; grid-row: 2; align-self: start; margin-top: 2px; }
    .brand          { grid-column: 2; grid-row: 1 / span 2; }
    .header-actions { grid-column: 3; grid-row: 1 / span 2; align-self: center; }
    /* the mobile-only panel never applies here */
    .header-search { display: none; }
}

/* laptop widths: keep the bar from crowding the tightened nav */
@media (min-width: 901px) and (max-width: 1180px) {
    .hdr-search { width: min(250px, 100%); }
    .hdr-search .hs-input { font-size: 0.85rem; }
}

/* =========== TABLET: bar centred in the header =========== */
@media (min-width: 601px) and (max-width: 900px) {
    .hdr-search {
        flex: 1 1 auto;
        max-width: 460px;
        margin: 0 14px;
    }
    .micon-search { display: none; }   /* inline bar is visible instead */
    .header-search { display: none; }
}

/* =========== MOBILE: icon + slide-down panel only =========== */
@media (max-width: 600px) {
    .hdr-search { display: none; }
    .hs-form { flex-wrap: wrap; padding: 8px; gap: 6px; }
    .hs-lens { margin-left: 4px; }
    .hs-input { flex: 1 1 60%; order: 1; }
    .hs-clear { order: 2; }
    .hs-close { order: 3; }
    .hs-go { order: 4; flex: 1 1 100%; padding: 11px; }
    .hs-go span { display: inline; }
}

/* =====================================================================
   Search results page
   ===================================================================== */
.search-page-form {
    display: flex; align-items: center; gap: 8px;
    max-width: 620px; margin: 22px auto 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 164, 76, 0.45);
    border-radius: 12px;
    padding: 6px 6px 6px 14px;
}
.search-page-form:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 164, 76, 0.18); }
.search-page-form svg { width: 21px; height: 21px; fill: var(--gold-light); flex: 0 0 auto; }
.search-page-form input {
    flex: 1 1 auto; min-width: 0;
    background: transparent; border: none; outline: none;
    color: #fff; font-size: 1rem; font-family: inherit; padding: 10px 4px;
}
.search-page-form input::placeholder { color: rgba(234, 255, 245, 0.6); }
.search-page-form button {
    flex: 0 0 auto;
    background: var(--gold); color: var(--dark);
    border: none; border-radius: 9px; padding: 11px 20px;
    font-weight: 700; letter-spacing: 0.5px; cursor: pointer;
    transition: background 0.2s ease;
}
.search-page-form button:hover { background: var(--gold-light); }

.search-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.search-chip {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 164, 76, 0.4);
    border-radius: 999px;
    padding: 8px 16px;
    color: #eafff5; font-weight: 600; font-size: 0.9rem;
    transition: background 0.2s ease, transform 0.15s ease;
}
.search-chip:hover { background: rgba(201, 164, 76, 0.2); transform: translateY(-2px); }
.sc-kind {
    font-size: 0.66rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    color: var(--gold-light);
    background: rgba(201, 164, 76, 0.16);
    padding: 3px 8px; border-radius: 999px;
}
.search-empty { text-align: center; color: #eafff5; padding: 30px 0 10px; }
.search-empty h3 { font-size: 1.5rem; color: #fff; margin-bottom: 10px; }
.search-empty a { color: var(--gold-light); text-decoration: underline; }

@media (prefers-reduced-motion: reduce) {
    .header-search { transition: opacity 0.01s; }
    .hs-suggest.show { animation: none; }
}

/* =====================================================================
   Error pages (404 / 500 / 503) — on-brand, full-height, responsive
   ===================================================================== */
.err-page {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: #fff;
    padding: 190px 0 90px;
    background:
        radial-gradient(120% 120% at 50% 0%, rgba(14, 92, 69, 0.55), transparent 60%),
        linear-gradient(135deg, var(--green-dark) 0%, #0a2c22 55%, var(--dark) 100%);
}
.err-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 620px;
    height: 620px;
    max-width: 120vw;
    background: radial-gradient(circle, rgba(201, 164, 76, 0.16), transparent 62%);
    pointer-events: none;
}
.err-inner { position: relative; z-index: 2; }
.err-code {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(6.5rem, 26vw, 15rem);
    line-height: 0.9;
    letter-spacing: 2px;
    background: linear-gradient(180deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--gold);
    filter: drop-shadow(0 10px 26px rgba(201, 164, 76, 0.25));
    margin-bottom: 6px;
}
.err-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: clamp(1.6rem, 6vw, 2.7rem);
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.15;
}
.err-text {
    max-width: 560px;
    margin: 0 auto 30px;
    font-size: clamp(0.95rem, 3.6vw, 1.05rem);
    color: rgba(234, 255, 245, 0.82);
}
.err-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 40px;
}
.err-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-top: 26px;
    border-top: 1px solid rgba(201, 164, 76, 0.22);
    max-width: 480px;
    margin: 0 auto;
}
.err-links-label {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
}
.err-links-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 22px;
}
.err-links-row a {
    color: #eafff5;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    transition: color 0.2s ease;
}
.err-links-row a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -3px;
    width: 0; height: 1.5px;
    background: var(--gold);
    transition: width 0.28s var(--ease-smooth, ease);
}
.err-links-row a:hover { color: var(--gold-light); }
.err-links-row a:hover::after { width: 100%; }

@media (max-width: 680px) {
    .err-page { padding: 130px 0 64px; min-height: 78vh; }
    .err-actions { gap: 10px; }
    .err-actions .btn { padding: 11px 22px; font-size: 0.9rem; }
}
@media (max-width: 430px) {
    .err-page { padding: 112px 0 54px; }
    .err-actions { flex-direction: column; width: 100%; max-width: 280px; margin-left: auto; margin-right: auto; }
    .err-actions .btn { width: 100%; }
    .err-links-row { gap: 8px 16px; }
}

/* =====================================================================
   Content/About keywords — distinct colours so users can tell them apart
   · highlighted (bold) keyword  -> brand green
   · linked keyword              -> gold + underline (clearly clickable)
   ===================================================================== */
.content-sec .cs-body strong,
.content-sec .cs-body b {
    color: var(--green-dark);
    font-weight: 700;
}
.content-sec .cs-body a {
    color: #a6771e;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
    transition: color 0.2s ease;
}
.content-sec .cs-body a:hover { color: var(--green); }
/* a linked keyword is <a><strong>…</strong></a> — keep the link colour, not green */
.content-sec .cs-body a strong,
.content-sec .cs-body a b { color: inherit; }
