@font-face {
    font-family: "Cormorant Garamond";
    src: url("/assets/fonts/cormorant-garamond-500.ttf") format("truetype");
    font-weight: 500;
}

@font-face {
    font-family: "Cormorant Garamond";
    src: url("/assets/fonts/cormorant-garamond-600.ttf") format("truetype");
    font-weight: 600;
}

@font-face {
    font-family: "Cormorant Garamond";
    src: url("/assets/fonts/cormorant-garamond-700.ttf") format("truetype");
    font-weight: 700;
}

@font-face {
    font-family: "Montserrat";
    src: url("/assets/fonts/montserrat-400.ttf") format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: "Montserrat";
    src: url("/assets/fonts/montserrat-500.ttf") format("truetype");
    font-weight: 500;
}

@font-face {
    font-family: "Montserrat";
    src: url("/assets/fonts/montserrat-600.ttf") format("truetype");
    font-weight: 600;
}

@font-face {
    font-family: "Montserrat";
    src: url("/assets/fonts/montserrat-700.ttf") format("truetype");
    font-weight: 700;
}

:root {
    --bg: #f7f0ea;
    --surface: #fffaf6;
    --surface-alt: #efe8df;
    --ink: #1d1a17;
    --muted: #6a6258;
    --line: rgba(42, 33, 21, 0.12);
    --gold: #d4af37;
    --gold-deep: #8d6a10;
    --navy: #13263f;
    --navy-soft: #223958;
    --success: #133d2d;
    --danger: #7d1f1f;
    --radius: 22px;
    --shadow: 0 18px 60px rgba(8, 16, 29, 0.12);
    --brand-logo-desktop-height: 150px;
    --brand-logo-mobile-height: 116px;
    --brand-logo-hang-offset: 28px;
    --brand-logo-glow-blur: 44px;
    --brand-logo-glow-color: rgba(240, 201, 113, 0.42);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #fcf7f4 0%, #f2ebe4 100%);
}

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

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

input,
textarea,
select,
button {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.narrow {
    width: min(760px, calc(100% - 40px));
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 30;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    overflow: visible;
}

.site-header.is-solid {
    background: rgba(12, 21, 34, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
}

.site-header-light.is-solid {
    background: rgba(251, 244, 238, 0.94);
    border-bottom-color: var(--line);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    gap: 20px;
}

.site-header-with-logo .nav-wrap {
    min-height: calc(86px + var(--brand-logo-hang-offset));
}

.brand {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--gold);
    letter-spacing: -0.03em;
}

.site-brand-link {
    display: inline-flex;
    align-items: flex-start;
}

.site-brand-logo-wrap {
    position: relative;
    display: inline-flex;
    transform: translateY(var(--brand-logo-hang-offset));
}

.site-brand-logo-glow {
    position: absolute;
    left: 50%;
    top: 54%;
    width: calc(var(--brand-logo-desktop-height) * 1.24);
    height: calc(var(--brand-logo-desktop-height) * 0.9);
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--brand-logo-glow-color) 0%, rgba(255, 255, 255, 0) 72%);
    filter: blur(var(--brand-logo-glow-blur));
    pointer-events: none;
}

.site-brand-logo {
    position: relative;
    z-index: 1;
    display: block;
    width: auto;
    max-height: var(--brand-logo-desktop-height);
    filter: drop-shadow(0 14px 22px rgba(28, 27, 27, 0.12));
}

.site-nav {
    display: flex;
    gap: 24px;
    color: #f8f4ef;
}

.site-header-light .site-nav,
.compact-header .site-nav {
    color: var(--navy);
}

.site-nav a {
    font-size: 0.95rem;
}

.site-lang-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 82px;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.site-lang-switch:hover {
    transform: translateY(-2px);
    background: rgba(212, 175, 55, 0.14);
}

.site-header-light .site-lang-switch,
.compact-header .site-lang-switch {
    background: rgba(19, 38, 63, 0.04);
    border-color: rgba(19, 38, 63, 0.14);
    color: var(--gold-deep);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 16px;
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    cursor: pointer;
}

.button:hover {
    transform: translateY(-2px);
}

.button-gold {
    color: #2b2207;
    background: linear-gradient(180deg, #f5dc89 0%, #d4af37 100%);
    box-shadow: 0 14px 36px rgba(212, 175, 55, 0.28);
}

.button-dark {
    background: var(--navy);
    color: #fff;
}

.button-glass {
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.button-small {
    padding: 10px 14px;
    border-radius: 12px;
}

.hero,
.coming-hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    align-items: center;
    overflow: hidden;
}

.hero-media,
.coming-image {
    position: absolute;
    inset: 0;
    background-image: url("/assets/img/coming-soon-hero.jpg");
    background-position: center;
    background-size: cover;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.18), transparent 28%),
        linear-gradient(120deg, rgba(7, 15, 26, 0.9), rgba(16, 27, 45, 0.62));
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    padding: 140px 0 90px;
}

.hero-copy h1,
.coming-copy h1,
.page-hero h1,
.section-heading h2,
.story-section h2,
.concierge-section h2,
.admin-topbar h1,
.auth-card h1,
.panel h2 {
    font-family: "Cormorant Garamond", serif;
    letter-spacing: -0.03em;
}

.hero-copy h1,
.coming-copy h1 {
    font-size: clamp(3.2rem, 7vw, 6rem);
    line-height: 0.92;
    color: #fff8f1;
    margin: 0 0 20px;
    max-width: 12ch;
}

.hero-text,
.hero-copy p,
.coming-copy p {
    color: rgba(249, 241, 231, 0.84);
    font-size: 1.06rem;
    line-height: 1.8;
    max-width: 58ch;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.74rem;
    color: var(--gold);
    margin-bottom: 14px;
}

.hero-actions,
.admin-userbar,
.footer-links,
.countdown,
.contact-list {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 30px;
}

.trust-grid article,
.booking-card,
.story-panel,
.offer-card,
.mini-card,
.panel,
.stat-card,
.prose-card,
.floating-card {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow);
}

.trust-grid article {
    padding: 18px;
    border-radius: 18px;
}

.trust-grid strong {
    display: block;
    color: #fff8f1;
    margin-bottom: 8px;
}

.trust-grid span {
    color: rgba(255, 245, 236, 0.8);
    font-size: 0.92rem;
    line-height: 1.6;
}

.booking-card {
    padding: 28px;
    border-radius: 28px;
    align-self: end;
    background: rgba(253, 248, 243, 0.9);
}

.booking-card h2 {
    margin: 0 0 12px;
    font-size: 2rem;
    color: var(--navy);
}

.stack-form,
.form-grid {
    display: grid;
    gap: 14px;
}

.stack-form input,
.stack-form textarea,
.stack-form select,
.form-grid input,
.form-grid textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    border-radius: 14px;
    padding: 14px 15px;
}

.inline-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.story-section,
.services-section,
.metrics-section,
.concierge-section,
.page-body,
.admin-section {
    padding: 90px 0;
}

.story-grid,
.concierge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: start;
}

.story-section h2,
.concierge-section h2,
.section-heading h2,
.page-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.1rem);
    margin: 0 0 16px;
}

.story-section p,
.concierge-section p,
.page-hero p,
.prose-card p {
    color: var(--muted);
    line-height: 1.85;
}

.story-panels {
    display: grid;
    gap: 16px;
}

.story-panel,
.mini-card,
.offer-card,
.stat-card,
.prose-card {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
}

.story-panel span {
    color: var(--gold-deep);
    font-size: 0.86rem;
    letter-spacing: 0.22em;
}

.offer-grid,
.mini-grid,
.stats-grid,
.metrics-grid {
    display: grid;
    gap: 20px;
}

.offer-grid {
    grid-template-columns: repeat(2, 1fr);
}

.offer-card {
    padding: 0;
    overflow: hidden;
}

.offer-image {
    min-height: 250px;
    background-size: cover;
    background-position: center;
}

.offer-body {
    padding: 22px;
}

.offer-meta,
.offer-footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.offer-meta span,
.offer-meta strong,
.offer-footer small {
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.offer-meta strong {
    color: var(--gold-deep);
}

.offer-body h3,
.mini-card h3,
.story-panel h3 {
    margin: 12px 0;
    font-size: 1.45rem;
    font-family: "Cormorant Garamond", serif;
}

.offer-body p,
.mini-card p,
.story-panel p,
.offer-footer a {
    color: var(--muted);
    line-height: 1.7;
}

.metrics-grid {
    grid-template-columns: repeat(3, 1fr);
}

.metrics-grid article {
    padding: 34px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.metrics-grid strong {
    display: block;
    font-size: clamp(2.7rem, 6vw, 4.8rem);
    font-family: "Cormorant Garamond", serif;
    color: var(--navy);
}

.concierge-section {
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.15), transparent 26%),
        linear-gradient(180deg, #f5ede7 0%, #fefbf8 100%);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    flex-direction: column;
    gap: 10px;
}

.concierge-visual {
    min-height: 420px;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(19, 38, 63, 0.85), rgba(44, 62, 91, 0.5)),
        url("/assets/img/coming-soon-hero.jpg") center/cover;
    position: relative;
    overflow: hidden;
}

.floating-card {
    position: absolute;
    right: 30px;
    bottom: 30px;
    padding: 20px;
    border-radius: 24px;
    display: grid;
    gap: 10px;
}

.floating-card span {
    background: rgba(255, 255, 255, 0.88);
    padding: 12px 14px;
    border-radius: 14px;
}

.site-footer {
    padding: 40px 0;
    background: #101923;
    color: rgba(255, 248, 241, 0.86);
}

.dark-footer {
    margin-top: 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.footer-brand {
    display: inline-block;
    margin-bottom: 10px;
}

.footer-brand-link {
    display: inline-flex;
    margin-bottom: 10px;
}

.site-footer-logo {
    width: auto;
    max-height: 108px;
}

.lux-footer {
    background:
        linear-gradient(180deg, #22262d 0%, #181d24 100%);
    color: rgba(248, 243, 235, 0.92);
    border-top: 1px solid rgba(212, 175, 55, 0.16);
    margin-top: 0;
}

.lux-footer-main {
    padding: 56px 0 28px;
}

.lux-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 30px;
}

.lux-footer-column h3 {
    margin: 0 0 18px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}

.lux-footer-brand-col {
    max-width: 340px;
}

.lux-footer-logo-link,
.lux-footer-brand-text {
    display: inline-flex;
    margin-bottom: 18px;
}

.lux-footer-logo {
    width: auto;
    max-height: 92px;
}

.lux-footer-description {
    margin: 0;
    color: rgba(248, 243, 235, 0.76);
    line-height: 1.85;
    font-size: 0.98rem;
}

.lux-footer-links,
.lux-footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.lux-footer-links a,
.lux-footer-contact-list a,
.lux-footer-legal-links a {
    color: rgba(248, 243, 235, 0.84);
    transition: color 0.25s ease, transform 0.25s ease;
}

.lux-footer-links a:hover,
.lux-footer-contact-list a:hover,
.lux-footer-legal-links a:hover {
    color: var(--gold);
}

.lux-footer-contact-list a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.lux-footer-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    background: rgba(255, 255, 255, 0.02);
    color: var(--gold);
    flex: 0 0 38px;
}

.lux-footer-icon svg {
    width: 18px;
    height: 18px;
}

.lux-footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.lux-footer-socials a {
    display: inline-flex;
}

.lux-footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.14);
    background: rgba(9, 12, 17, 0.28);
}

.lux-footer-bottom-inner {
    min-height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.lux-footer-copy {
    color: rgba(248, 243, 235, 0.64);
    font-size: 0.94rem;
}

.lux-footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    align-items: center;
}

.front-flash {
    position: fixed;
    left: 50%;
    top: 92px;
    transform: translateX(-50%);
    z-index: 40;
    width: min(560px, calc(100% - 40px));
}

.flash {
    padding: 14px 18px;
    border-radius: 16px;
    margin-bottom: 16px;
}

.flash-success {
    background: rgba(19, 61, 45, 0.12);
    color: var(--success);
    border: 1px solid rgba(19, 61, 45, 0.18);
}

.flash-error {
    background: rgba(125, 31, 31, 0.12);
    color: var(--danger);
    border: 1px solid rgba(125, 31, 31, 0.18);
}

.coming-soon-page {
    background: #fcf8f8;
}

.zip-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.zip-hero-image {
    position: absolute;
    inset: 0;
    background-image: url("/assets/img/coming-soon-hero.jpg");
    background-size: cover;
    background-position: center;
}

.zip-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(49, 48, 48, 0.8);
}

.zip-hero-inner {
    position: relative;
    z-index: 2;
    width: min(900px, calc(100% - 40px));
    text-align: center;
    color: #fff;
    padding: 24px 0 10px;
}

.zip-hero-inner h1 {
    margin: 0 auto 18px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 0.98;
    max-width: 18ch;
    color: #fff;
}

.zip-hero-inner h1 span {
    display: block;
}

.zip-hero-inner p {
    max-width: 980px;
    margin: 0 auto 34px;
    color: rgba(246, 243, 242, 0.92);
    font-size: 1rem;
    line-height: 1.65;
}

.zip-countdown {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 38px;
}

.zip-countdown article {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.zip-countdown strong {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: var(--gold);
    line-height: 1;
}

.zip-countdown span {
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.82rem;
    color: #f0edec;
}

.zip-countdown em {
    color: rgba(212, 175, 55, 0.6);
    font-style: normal;
    font-family: "Cormorant Garamond", serif;
    font-size: 3rem;
    line-height: 1;
}

.zip-subscribe-form {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.zip-email-wrap {
    position: relative;
    width: min(100%, 420px);
}

.zip-email-wrap::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    opacity: 0.45;
    background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f6f3f2' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6h16v12H4z'/%3E%3Cpath d='m4 7 8 6 8-6'/%3E%3C/svg%3E");
}

.zip-subscribe-form input {
    width: 100%;
    border: 1px solid rgba(208, 197, 175, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 12px;
    padding: 16px 18px 16px 48px;
    backdrop-filter: blur(10px);
}

.zip-subscribe-form input::placeholder {
    color: rgba(246, 243, 242, 0.5);
}

.zip-services-section {
    position: relative;
    z-index: 20;
    padding: 56px 0 64px;
    background: #fcf8f8;
}

.zip-heading {
    text-align: center;
    margin-bottom: 24px;
}

.zip-heading h2 {
    margin: 0 0 12px;
    color: #735c00;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.zip-heading p {
    margin: 0 auto;
    max-width: 700px;
    color: #4d4635;
    line-height: 1.6;
}

.zip-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.zip-service-card {
    background: #fff;
    border: 1px solid rgba(208, 197, 175, 0.12);
    border-radius: 24px;
    padding: 24px 24px 26px;
    box-shadow: 0 10px 30px rgba(49, 48, 48, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 286px;
}

.zip-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 36px rgba(49, 48, 48, 0.08);
}

.zip-service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.7), transparent);
    opacity: 0;
    transform: translateY(-2px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.zip-service-card:hover::before {
    opacity: 1;
    transform: translateY(0);
}

.zip-featured-card::before {
    opacity: 0.5;
    transform: translateY(0);
}

.zip-icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #f0edec;
    color: #735c00;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
}

.zip-icon svg,
.zip-footer-icons svg {
    width: 20px;
    height: 20px;
}

.zip-service-card h3 {
    margin: 0 0 10px;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: #1c1b1b;
    line-height: 1.12;
}

.zip-service-card p {
    margin: 0;
    color: #4d4635;
    line-height: 1.55;
    font-size: 0.96rem;
}

.zip-footer {
    background: #313030;
    color: #f3f0ef;
    padding: 80px 0;
    border-top: 1px solid rgba(127, 118, 99, 0.1);
}

.zip-footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;
}

.zip-footer-brand {
    max-width: 360px;
}

.zip-footer-brand p,
.zip-footer-copy p,
.zip-footer-copy a,
.zip-footer-links a {
    color: rgba(243, 240, 239, 0.82);
}

.zip-footer-icons {
    display: flex;
    gap: 14px;
    margin-top: 26px;
}

.zip-footer-icons a {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(233, 195, 73, 0.28);
    color: var(--gold);
}

.zip-footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.zip-footer-copy {
    text-align: right;
}

.countdown {
    justify-content: center;
    margin: 28px 0;
}

.countdown article {
    min-width: 110px;
    padding: 18px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
}

.countdown strong {
    display: block;
    font-size: 2.4rem;
    color: var(--gold);
    font-family: "Cormorant Garamond", serif;
}

.countdown span {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 248, 241, 0.72);
    font-size: 0.7rem;
}

.subscribe-form {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.subscribe-form input {
    min-width: min(420px, 100%);
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.mini-grid {
    grid-template-columns: repeat(4, 1fr);
}

.content-page {
    min-height: 100vh;
    background: linear-gradient(180deg, #fbf7f2 0%, #f3ece5 100%);
}

.contact-page-shell {
    min-height: 100vh;
    background: linear-gradient(180deg, #fbf7f2 0%, #f3ece5 100%);
}

.contact-page-intro {
    padding: 180px 0 36px;
}

.contact-page-heading {
    text-align: center;
    max-width: 840px;
}

.contact-page-heading h1 {
    margin: 0 0 18px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: -0.03em;
}

.contact-page-heading p {
    margin: 0 auto;
    color: var(--muted);
    line-height: 1.85;
    font-size: 1.02rem;
}

.contact-page-section {
    padding: 0 0 90px;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    align-items: start;
}

.contact-page-flash {
    width: 100%;
    margin: 0 0 18px;
}

.floating-whatsapp-button {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 70;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    padding: 0;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    box-shadow: 0 16px 34px rgba(17, 94, 49, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(17, 94, 49, 0.24);
}

.floating-whatsapp-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #27c43a 0%, #18a92c 100%);
    border: none;
}

.floating-whatsapp-icon svg {
    width: 31px;
    height: 31px;
    stroke: #fff;
}

.floating-whatsapp-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contact-page-card,
.contact-page-note {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(42, 33, 21, 0.08);
    box-shadow: var(--shadow);
    border-radius: 28px;
    padding: 28px;
}

.contact-page-card h2,
.contact-page-note h3 {
    margin: 0 0 14px;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
}

.contact-page-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 16px;
}

.contact-page-list li {
    display: grid;
    gap: 6px;
    color: var(--muted);
}

.contact-page-list strong {
    color: var(--navy);
}

.contact-page-side {
    display: grid;
    gap: 20px;
}

.contact-page-note p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.page-hero {
    padding: 180px 0 60px;
}

.prose-card {
    margin-top: 10px;
}

.policy-section + .policy-section {
    margin-top: 28px;
}

.policy-section h2 {
    margin: 0 0 12px;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    color: var(--navy);
}

.policy-section p {
    margin: 0 0 14px;
}

.auth-body,
.admin-shell {
    background: linear-gradient(180deg, #f6efe8 0%, #ede4db 100%);
}

.auth-wrap {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.auth-card {
    width: min(520px, 100%);
    padding: 34px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.auth-note {
    color: var(--muted);
    font-size: 0.92rem;
}

.admin-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: #0f1c2d;
    color: rgba(255, 248, 241, 0.82);
    padding: 28px;
    position: sticky;
    top: 0;
    height: 100vh;
}

.admin-brand {
    display: inline-block;
    margin-bottom: 24px;
}

.admin-nav {
    display: grid;
    gap: 10px;
}

.admin-nav a {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
}

.admin-main {
    padding: 32px;
}

.admin-page-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.admin-page-tab,
.admin-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(19, 27, 40, 0.1);
    background: rgba(255, 255, 255, 0.72);
    color: var(--navy);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.admin-page-tab:hover,
.admin-tab:hover {
    transform: translateY(-1px);
    border-color: rgba(212, 175, 55, 0.38);
}

.admin-page-tab.is-active,
.admin-tab.is-active {
    background: linear-gradient(180deg, #f5dc89 0%, #d4af37 100%);
    color: #2b2207;
    border-color: rgba(212, 175, 55, 0.68);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
}

.admin-tabbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 24px;
}

.admin-tab-panels {
    display: grid;
    gap: 20px;
}

.admin-tab-panel[hidden] {
    display: none !important;
}

.admin-tab-panel.is-active {
    display: block;
}

.admin-panel-stack {
    display: grid;
    gap: 20px;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 26px;
}

.admin-topbar h1 {
    margin: 4px 0 0;
    font-size: 2.6rem;
}

.admin-userbar {
    align-items: center;
    justify-content: flex-end;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.wide-left {
    grid-template-columns: 0.9fr 1.1fr;
}

.panel {
    padding: 24px;
    border-radius: 24px;
}

.wide-panel {
    width: 100%;
    max-width: none;
}

.form-grid {
    grid-template-columns: 1fr 1fr;
}

.form-grid label,
.stack-form label {
    display: grid;
    gap: 8px;
}

.checkbox {
    display: flex !important;
    align-items: center;
    gap: 10px !important;
}

.checkbox input {
    width: auto;
}

.stats-grid {
    grid-template-columns: repeat(4, 1fr);
}

.stat-card strong {
    display: block;
    font-size: 2.8rem;
    font-family: "Cormorant Garamond", serif;
    color: var(--navy);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.link-button {
    background: none;
    border: 0;
    color: var(--danger);
    cursor: pointer;
    padding: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1024px) {
    .hero-grid,
    .story-grid,
    .concierge-grid,
    .contact-page-grid,
    .two-col,
    .wide-left,
    .admin-grid,
    .offer-grid,
    .mini-grid,
    .stats-grid,
    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: relative;
        height: auto;
    }

    .admin-topbar,
    .footer-grid,
    .nav-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .lux-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lux-footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 0;
    }
}

@media (max-width: 768px) {
    .admin-page-tabs,
    .admin-tabbar {
        gap: 8px;
    }

    .admin-page-tab,
    .admin-tab {
        width: 100%;
        justify-content: flex-start;
    }

    .site-nav {
        display: none;
    }

    .site-header-with-logo .nav-wrap {
        min-height: calc(76px + var(--brand-logo-hang-offset));
    }

    .site-brand-link,
    .nav-wrap {
        align-items: flex-start;
    }

    .site-brand-logo-wrap {
        transform: translateY(calc(var(--brand-logo-hang-offset) * 0.82));
    }

    .site-brand-logo-glow {
        width: calc(var(--brand-logo-mobile-height) * 1.18);
        height: calc(var(--brand-logo-mobile-height) * 0.86);
    }

    .site-brand-logo {
        max-height: var(--brand-logo-mobile-height);
    }

    .hero-copy h1,
    .coming-copy h1 {
        max-width: 100%;
    }

    .trust-grid,
    .form-grid,
    .inline-grid {
        grid-template-columns: 1fr;
    }

    .countdown article {
        min-width: calc(50% - 7px);
    }

    .zip-countdown {
        gap: 14px;
        flex-wrap: wrap;
    }

    .zip-hero-inner h1 {
        font-size: clamp(2.2rem, 9vw, 3.1rem);
        max-width: 10ch;
        line-height: 1;
    }

    .zip-subscribe-form {
        flex-direction: column;
        align-items: center;
    }

    .desktop-only {
        display: none !important;
    }

    .zip-card-grid,
    .zip-footer-grid {
        grid-template-columns: 1fr;
        display: grid;
    }

    .zip-footer-copy {
        text-align: left;
    }

    .lux-footer-main {
        padding: 42px 0 20px;
    }

    .lux-footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .lux-footer-logo {
        max-height: 82px;
    }

    .floating-whatsapp-button {
        right: 14px;
        bottom: 14px;
        width: 56px;
        height: 56px;
    }

    .floating-whatsapp-icon {
        width: 56px;
        height: 56px;
    }

    .floating-whatsapp-icon svg {
        width: 28px;
        height: 28px;
    }
}

.footer-settings-block {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(19, 27, 40, 0.1);
}

.footer-settings-head p,
.footer-settings-panel-head p {
    margin: 0.35rem 0 0;
    color: var(--muted);
}

.footer-settings-groups {
    display: grid;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.footer-settings-panel {
    border: 1px solid rgba(19, 27, 40, 0.1);
    border-radius: 22px;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.66);
}

.footer-settings-panel-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.footer-settings-panel h4 {
    margin: 0;
}

.footer-links-editor {
    display: grid;
    gap: 0.9rem;
}

.footer-link-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.3fr) minmax(160px, 0.8fr) auto auto;
    gap: 0.9rem;
    align-items: end;
    padding: 0.95rem;
    border: 1px solid rgba(19, 27, 40, 0.08);
    border-radius: 18px;
    background: #fff;
}

.footer-settings-panel[data-has-icon="0"] .footer-link-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.4fr) auto auto;
}

.footer-link-row label {
    margin: 0;
}

.footer-link-toggle {
    align-self: center;
    margin-top: 1.35rem;
}

.footer-link-remove {
    align-self: center;
    margin-top: 1.35rem;
}

@media (max-width: 980px) {
    .footer-link-row,
    .footer-settings-panel[data-has-icon="0"] .footer-link-row {
        grid-template-columns: 1fr 1fr;
    }

    .footer-link-toggle,
    .footer-link-remove {
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    .footer-settings-panel-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-link-row,
    .footer-settings-panel[data-has-icon="0"] .footer-link-row {
        grid-template-columns: 1fr;
    }
}

.form-grid .span-2 {
    grid-column: span 2;
}

.muted {
    color: var(--muted);
}

html[dir="rtl"] body {
    text-align: right;
}

html[dir="rtl"] .site-nav,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .offer-meta,
html[dir="rtl"] .offer-footer,
html[dir="rtl"] .lux-footer-bottom-inner,
html[dir="rtl"] .lux-footer-legal-links {
    direction: rtl;
}

html[dir="rtl"] .hero-grid,
html[dir="rtl"] .story-grid,
html[dir="rtl"] .concierge-grid,
html[dir="rtl"] .contact-page-grid,
html[dir="rtl"] .footer-grid,
html[dir="rtl"] .nav-wrap {
    direction: rtl;
}

html[dir="rtl"] .trust-grid article,
html[dir="rtl"] .booking-card,
html[dir="rtl"] .story-section,
html[dir="rtl"] .services-section,
html[dir="rtl"] .metrics-section,
html[dir="rtl"] .concierge-section,
html[dir="rtl"] .page-body,
html[dir="rtl"] .contact-page-card,
html[dir="rtl"] .contact-page-heading,
html[dir="rtl"] .section-heading,
html[dir="rtl"] .lux-footer-column,
html[dir="rtl"] .lux-footer-brand-col {
    text-align: right;
}

html[dir="rtl"] .booking-card select,
html[dir="rtl"] .booking-card input,
html[dir="rtl"] .booking-card textarea,
html[dir="rtl"] .contact-page-card input,
html[dir="rtl"] .contact-page-card textarea {
    text-align: right;
}

html[dir="rtl"] .contact-list,
html[dir="rtl"] .lux-footer-contact-list,
html[dir="rtl"] .lux-footer-links {
    justify-items: start;
}

html[dir="rtl"] .floating-card {
    left: 30px;
    right: auto;
}

html[dir="rtl"] .floating-whatsapp-button {
    left: 22px;
    right: auto;
}

@media (max-width: 768px) {
    .form-grid .span-2 {
        grid-column: auto;
    }

    html[dir="rtl"] .floating-whatsapp-button {
        left: 14px;
        right: auto;
    }
}
