:root {
    --navy: #061827;
    --navy-2: #0b2437;
    --navy-3: #102f45;
    --gold: #d8aa55;
    --gold-2: #f3d28b;
    --cream: #fbf7ef;
    --soft: #f5f1ea;
    --ink: #10202e;
    --text: #4c5c68;
    --muted: #79838c;
    --border: #e5ded2;
    --white: #ffffff;
    --shadow: 0 26px 70px rgba(6, 24, 39, .14);
    --shadow-soft: 0 18px 46px rgba(6, 24, 39, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.65;
    overflow-x: hidden;
}
a { text-decoration: none; }
img { max-width: 100%; }

.public-navbar {
    padding: 14px 0;
    background: rgba(6, 24, 39, .78);
    backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(216, 170, 85, .18);
    transition: .25s ease;
}
.public-navbar.is-scrolled {
    padding: 10px 0;
    background: rgba(6, 24, 39, .94);
    box-shadow: 0 12px 40px rgba(6, 24, 39, .20);
}
.public-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff !important;
    line-height: 1.05;
}
.public-logo-wrap {
    width: 62px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    overflow: hidden;
}
.public-logo-wrap img {
    width: 64px;
    height: auto;
    transform: scale(1.08);
}
.public-brand-text strong {
    display: block;
    font-weight: 900;
    letter-spacing: -.035em;
    font-size: 1rem;
}
.public-brand-text small {
    display: block;
    color: rgba(255, 255, 255, .68);
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .66rem;
}
.public-toggler { background: rgba(255,255,255,.88); border: 0; }
.public-navbar .nav-link {
    color: rgba(255, 255, 255, .80);
    font-weight: 800;
    font-size: .92rem;
    padding: 10px 14px !important;
    border-radius: 999px;
}
.public-navbar .nav-link:hover,
.public-navbar .nav-link.active {
    color: var(--gold-2);
    background: rgba(255, 255, 255, .07);
}
.public-nav-btn {
    border-radius: 999px;
    font-weight: 900;
    padding: 10px 18px;
}
.btn-gold {
    color: #1b160e;
    border: 1px solid rgba(255, 255, 255, .16);
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    box-shadow: 0 14px 34px rgba(216, 170, 85, .28);
    font-weight: 900;
}
.btn-gold:hover {
    color: #1b160e;
    transform: translateY(-1px);
    box-shadow: 0 18px 42px rgba(216, 170, 85, .36);
}
.btn-glass {
    color: #fff;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .25);
    backdrop-filter: blur(12px);
    font-weight: 900;
}
.btn-glass:hover { color: #fff; background: rgba(255,255,255,.16); }
.btn-outline-light { color: rgba(255,255,255,.88); border-color: rgba(255,255,255,.25); font-weight: 900; }
.btn-outline-light:hover { color: var(--navy); background: #fff; border-color: #fff; }

.public-flash-wrap { padding-top: 100px; }
.public-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
    font-size: .76rem;
    margin-bottom: 14px;
}
.public-kicker:before {
    content: '';
    width: 30px;
    height: 1px;
    background: currentColor;
}

.lux-hero {
    position: relative;
    min-height: 100vh;
    padding: 180px 0 100px;
    color: #fff;
    background: var(--navy);
    overflow: hidden;
}
.lux-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 24, 39, .96), rgba(6, 24, 39, .76) 44%, rgba(6, 24, 39, .36)),
        url('/assets/images/public/hero-beach.png') center/cover no-repeat;
    transform: scale(1.02);
}
.lux-hero:after {
    content: '';
    position: absolute;
    inset: auto -10% -30% -10%;
    height: 55%;
    background: radial-gradient(circle at center, rgba(216, 170, 85, .20), transparent 64%);
}
.lux-hero .container { position: relative; z-index: 2; }
.lux-hero h1,
.public-page-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #fff;
    font-size: clamp(3.25rem, 7vw, 7rem);
    line-height: .92;
    letter-spacing: -.055em;
    font-weight: 900;
    margin-bottom: 24px;
    max-width: 940px;
}
.lux-hero-text,
.public-page-hero p {
    color: rgba(255, 255, 255, .76);
    font-size: 1.15rem;
    max-width: 720px;
}
.lux-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 42px;
    max-width: 680px;
}
.lux-hero-metrics div {
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(14px);
}
.lux-hero-metrics strong {
    display: block;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 900;
}
.lux-hero-metrics span {
    color: rgba(255, 255, 255, .64);
    font-weight: 800;
    font-size: .84rem;
}
.lux-hero-card {
    border-radius: 36px;
    overflow: hidden;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 32px 90px rgba(0, 0, 0, .28);
    backdrop-filter: blur(18px);
}
.lux-hero-card-image {
    min-height: 285px;
    background-size: cover;
    background-position: center;
}
.lux-hero-card-body { padding: 28px; }
.lux-hero-card-body h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #fff;
    font-weight: 900;
    font-size: 2rem;
    letter-spacing: -.04em;
}
.lux-hero-card-body p { color: rgba(255,255,255,.70); }
.lux-mini-list { display: grid; gap: 10px; margin-top: 18px; }
.lux-mini-list span { color: rgba(255,255,255,.84); font-weight: 800; }
.lux-mini-list i { color: var(--gold-2); margin-right: 8px; }

.public-section { padding: 104px 0; }
.public-section-heading { max-width: 820px; margin: 0 auto 48px; }
.public-section-heading h2,
.public-section-title,
.public-rules-intro h2,
.public-contact-card h2,
.lux-cta-box h2 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--ink);
    font-weight: 900;
    letter-spacing: -.05em;
    font-size: clamp(2.35rem, 4.4vw, 4.2rem);
    line-height: .98;
}
.public-section-heading p,
.public-section-text,
.public-rules-intro p,
.public-contact-card p {
    color: var(--muted);
    font-size: 1.06rem;
}
.lux-resort-strip { background: linear-gradient(180deg, var(--cream), #fff); }
.lux-destination-card {
    position: relative;
    display: block;
    min-height: 420px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    color: #fff;
    border: 1px solid rgba(216, 170, 85, .22);
    background: var(--navy);
}
.lux-destination-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.lux-destination-card,
.lux-plan-preview,
.lux-membership-card,
.lux-destination-feature,
.public-rule-item,
.public-contact-card,
.public-form-card { transition: transform .25s ease, box-shadow .25s ease, opacity .6s ease; }
.lux-destination-image,
.lux-destination-overlay {
    position: absolute;
    inset: 0;
}
.lux-destination-image { background-size: cover; background-position: center; transition: transform .7s ease; }
.lux-destination-card:hover .lux-destination-image { transform: scale(1.08); }
.lux-destination-overlay {
    background: linear-gradient(180deg, rgba(6, 24, 39, .08), rgba(6, 24, 39, .84));
}
.lux-destination-content {
    position: absolute;
    inset: auto 0 0 0;
    padding: 28px;
    display: grid;
    gap: 8px;
}
.lux-destination-content strong {
    font-family: 'Playfair Display', Georgia, serif;
    color: #fff;
    font-size: 2.2rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.045em;
}
.lux-destination-content small { color: rgba(255,255,255,.72); font-weight: 800; }
.lux-pill {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(12px);
    font-size: .74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.lux-membership-preview { background: var(--navy); color: #fff; }
.lux-membership-preview .public-section-title { color: #fff; }
.lux-membership-preview .public-section-text { color: rgba(255,255,255,.66); }
.lux-process-list { display: grid; gap: 14px; margin-top: 26px; }
.lux-process-list div {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 6px 14px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
}
.lux-process-list span {
    grid-row: span 2;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #1b160e;
    font-weight: 900;
}
.lux-process-list strong { color: #fff; font-weight: 900; }
.lux-process-list small { color: rgba(255,255,255,.62); font-weight: 700; }
.lux-plan-preview {
    overflow: hidden;
    border-radius: 32px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 24px 70px rgba(0,0,0,.18);
    height: 100%;
}
.lux-plan-preview.highlight { border-color: rgba(216,170,85,.55); }
.lux-plan-card-image { min-height: 190px; background-size: cover; background-position: center; }
.lux-plan-preview-body { padding: 26px; }
.lux-plan-preview h3,
.lux-plan-preview .public-plan-price { color: #fff; }
.lux-plan-preview ul { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.lux-plan-preview li { color: rgba(255,255,255,.72); font-weight: 800; }
.lux-plan-preview li:before { content: '✓'; color: var(--gold-2); font-weight: 900; margin-right: 10px; }
.public-plan-badge {
    display: inline-flex;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(216, 170, 85, .14);
    color: var(--gold-2);
    border: 1px solid rgba(216, 170, 85, .28);
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 14px;
}
.public-plan-price,
.public-membership-price {
    color: var(--gold);
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: -.055em;
    margin: 8px 0 10px;
}

.lux-cta-section { background: linear-gradient(180deg, #fff, var(--cream)); }
.lux-cta-box {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(6,24,39,.96), rgba(16,47,69,.88)),
        url('/assets/images/public/hero-sunset.png') center/cover no-repeat;
    border-radius: 40px;
    padding: clamp(34px, 6vw, 70px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: var(--shadow);
}
.lux-cta-box .public-kicker,
.lux-cta-box h2,
.lux-cta-box p { color: #fff; }
.lux-cta-box p { max-width: 700px; opacity: .72; margin-bottom: 0; }

.public-page-hero {
    position: relative;
    padding: 170px 0 86px;
    min-height: 520px;
    display: flex;
    align-items: end;
    color: #fff;
    background: var(--navy);
    overflow: hidden;
}
.public-page-hero:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6,24,39,.92), rgba(6,24,39,.70), rgba(6,24,39,.32));
    z-index: 1;
}
.public-page-hero .container { position: relative; z-index: 2; }
.destinations-hero { background: url('/assets/images/public/hero-beach.png') center/cover no-repeat; }
.membership-hero { background: url('/assets/images/public/card-premium.png') center/cover no-repeat; }
.rules-hero { background: url('/assets/images/public/gallery-lagona-view.jpg') center/cover no-repeat; }
.inquiry-hero { background: url('/assets/images/public/hero-sunset.png') center/cover no-repeat; }

.lux-destination-feature {
    display: grid;
    grid-template-columns: minmax(280px, .46fr) 1fr;
    border-radius: 38px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
}
.lux-destination-feature-visual {
    min-height: 420px;
    background-size: cover;
    background-position: center;
    padding: 28px;
    display: flex;
    align-items: flex-end;
}
.lux-destination-feature-content { padding: clamp(28px, 4vw, 48px); }
.lux-destination-feature-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--ink);
    font-weight: 900;
    letter-spacing: -.05em;
    font-size: clamp(2rem, 3.7vw, 3.4rem);
    margin-bottom: 8px;
}
.lux-destination-feature-content h5 { color: var(--gold); font-weight: 900; margin-bottom: 16px; }
.public-location { color: var(--navy-3); font-weight: 900; }
.public-feature-pill {
    height: 100%;
    padding: 14px;
    border-radius: 18px;
    background: var(--soft);
    border: 1px solid var(--border);
    display: flex;
    gap: 10px;
    font-weight: 800;
    color: var(--ink);
}
.public-feature-pill i { color: var(--gold); }
.lux-gallery-row { display: flex; gap: 10px; flex-wrap: wrap; }
.lux-gallery-row span {
    width: 116px;
    height: 82px;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    border: 2px solid #fff;
    box-shadow: 0 10px 26px rgba(6,24,39,.14);
}

.lux-membership-card {
    overflow: hidden;
    border-radius: 38px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}
.lux-membership-card.highlight { border-color: rgba(216, 170, 85, .55); box-shadow: var(--shadow); }
.lux-membership-visual { min-height: 270px; background-size: cover; background-position: center; }
.lux-membership-body { padding: clamp(28px, 4vw, 40px); }
.lux-membership-body h2 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--ink);
    font-weight: 900;
    letter-spacing: -.05em;
    font-size: clamp(2rem, 4vw, 3.2rem);
}
.public-stat-box {
    height: 100%;
    padding: 18px;
    border-radius: 22px;
    background: var(--soft);
    border: 1px solid var(--border);
}
.public-stat-box strong { display: block; color: var(--ink); font-size: 1.5rem; font-weight: 900; }
.public-stat-box span { color: var(--muted); font-size: .84rem; font-weight: 800; }
.public-check-list { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.public-check-list li { display: flex; gap: 10px; color: var(--ink); font-weight: 800; }
.public-check-list li:before { content: '✓'; color: var(--gold); font-weight: 900; }
.public-computation-box {
    margin-top: 26px;
    padding: 22px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(216,170,85,.14), rgba(6,24,39,.04));
    border: 1px solid rgba(216,170,85,.28);
}
.public-computation-box h5 { color: var(--ink); font-weight: 900; margin-bottom: 12px; }
.public-computation-box div { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid rgba(6,24,39,.08); }
.public-computation-box div:last-child { border-bottom: 0; }
.public-computation-box span { color: var(--muted); font-weight: 800; }
.public-computation-box strong { color: var(--ink); font-weight: 900; text-align: right; }
.public-note-box {
    padding: 20px 22px;
    border-radius: 24px;
    background: #fff8e8;
    border: 1px solid rgba(216,170,85,.35);
    color: #725016;
    font-weight: 800;
}

.public-rules-intro { max-width: 900px; margin-bottom: 34px; }
.public-rule-item {
    height: 100%;
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 12px 34px rgba(6,24,39,.055);
}
.public-rule-item span {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1b160e;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    font-weight: 900;
}
.public-rule-item p { margin: 0; font-weight: 800; color: var(--ink); }

.public-contact-card,
.public-form-card {
    padding: clamp(28px, 4vw, 42px);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 38px;
    box-shadow: var(--shadow-soft);
}
.public-contact-line {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    font-weight: 800;
    color: var(--ink);
}
.public-contact-line:last-of-type { border-bottom: 0; }
.public-contact-line i { color: var(--gold); font-size: 1.2rem; }
.lux-contact-image {
    margin-top: 26px;
    min-height: 230px;
    border-radius: 28px;
    background-size: cover;
    background-position: center;
}
.form-control,
.form-select {
    border-radius: 17px;
    border-color: var(--border);
    padding: 13px 15px;
    font-weight: 800;
    background-color: #fff;
}
.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 .22rem rgba(216, 170, 85, .16);
}
.form-label { color: var(--ink); font-weight: 900; }

.public-footer {
    background: var(--navy);
    color: #fff;
    padding: 72px 0 26px;
    border-top: 1px solid rgba(216,170,85,.22);
}
.footer-brand .public-logo-wrap { background: rgba(255,255,255,.07); }
.public-footer h6 { font-weight: 900; margin-bottom: 16px; color: var(--gold-2); text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; }
.public-footer a { display: block; color: rgba(255,255,255,.62); font-weight: 800; margin-bottom: 9px; }
.public-footer a:hover { color: #fff; }
.public-footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.public-footer-badges span { padding: 8px 11px; border-radius: 999px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.72); font-size: .78rem; font-weight: 800; }
.public-footer-bottom { margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.52); font-weight: 700; }

.reveal-on-scroll { opacity: 0; transform: translateY(22px); }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 991px) {
    .public-navbar { background: rgba(6,24,39,.96); }
    .public-navbar .navbar-collapse { padding-top: 16px; }
    .lux-hero { padding-top: 150px; }
    .lux-hero-metrics { grid-template-columns: 1fr; }
    .lux-destination-feature { grid-template-columns: 1fr; }
    .lux-destination-feature-visual { min-height: 330px; }
    .lux-cta-box { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 575px) {
    .public-section { padding: 76px 0; }
    .lux-hero h1,
    .public-page-hero h1 { font-size: clamp(2.7rem, 15vw, 4rem); }
    .public-logo-wrap { width: 54px; height: 48px; }
    .public-brand-text strong { font-size: .9rem; }
    .public-brand-text small { font-size: .58rem; }
    .lux-destination-card { min-height: 360px; }
    .lux-destination-content strong { font-size: 1.85rem; }
}
