:root {
    --bg: #050505;
    --bg-soft: #111114;
    --panel: rgba(14, 14, 17, 0.68);
    --panel-heavy: rgba(10, 10, 12, 0.88);
    --text: #f8f2e9;
    --muted: #c3b7a5;
    --gold: #b8955a;
    --gold-strong: #e2c487;
    --gold-soft: rgba(184, 149, 90, 0.18);
    --line: rgba(255, 240, 218, 0.1);
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
    --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    background: linear-gradient(180deg, rgba(17,17,20,0.9), rgba(5,5,5,0.98));
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    cursor: none;
}
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    z-index: 1200;
    background: linear-gradient(90deg, var(--gold-strong), #fff0cf, var(--gold));
    box-shadow: 0 0 18px rgba(226,196,135,0.7);
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; border-radius: 24px; }
h1, h2, h3, h4 {
    font-family: "Cormorant Garamond", serif;
    line-height: 1.08;
    letter-spacing: 0.02em;
    margin: 0 0 1rem;
}
p { margin: 0 0 1rem; line-height: 1.75; color: var(--muted); }
main, .dashboard-main { padding: 0 1.25rem 5rem; position: relative; z-index: 2; }
.site-shell { width: min(1280px, calc(100% - 2rem)); margin: 0 auto; }

.site-backdrop {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}
.site-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    animation: slideFade 21s infinite;
    filter: saturate(0.9) brightness(0.35);
}
.site-slide:nth-child(1) { animation-delay: 0s; }
.site-slide:nth-child(2) { animation-delay: 7s; }
.site-slide:nth-child(3) { animation-delay: 14s; }
.gold-dust {
    position: absolute;
    width: 45vw;
    height: 45vw;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(226, 196, 135, 0.2) 0%, rgba(226, 196, 135, 0.05) 20%, transparent 62%),
        radial-gradient(circle at 40% 35%, rgba(255,255,255,0.16) 0%, transparent 12%);
    mix-blend-mode: screen;
    filter: blur(14px);
    animation: drift 12s ease-in-out infinite alternate;
}
.gold-dust-a { top: -8vw; left: -10vw; }
.gold-dust-b { right: -8vw; bottom: -12vw; animation-duration: 15s; }

.cursor-orb,
.cursor-ring {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    z-index: 1000;
    transform: translate(-50%, -50%);
}
.cursor-orb {
    width: 8px;
    height: 8px;
    background: var(--gold-strong);
    box-shadow: 0 0 18px rgba(226, 196, 135, 0.8);
}
.cursor-ring {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(226, 196, 135, 0.38);
    background: rgba(226, 196, 135, 0.05);
}

.glass-card {
    background:
        linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
        var(--panel);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    border-radius: var(--radius);
}
.shimmer-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.shimmer-card::before {
    content: "";
    position: absolute;
    inset: -120% auto auto -20%;
    width: 45%;
    height: 300%;
    transform: rotate(18deg);
    background: linear-gradient(90deg, transparent, rgba(226, 196, 135, 0.2), transparent);
    transition: transform 0.65s ease;
}
.shimmer-card:hover {
    transform: translateY(-8px);
    border-color: rgba(226, 196, 135, 0.25);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.55), 0 0 35px rgba(184,149,90,0.12);
}
.shimmer-card:hover::before { transform: translateX(280%) rotate(18deg); }

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.72rem;
    line-height: 1.5;
    color: var(--gold-strong);
    margin-bottom: 1rem;
    max-width: 34ch;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(226, 196, 135, 0.2);
    background: linear-gradient(135deg, var(--gold-strong), var(--gold));
    color: #110c03;
    padding: 0.95rem 1.5rem;
    font-weight: 800;
    cursor: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(184, 149, 90, 0.35);
}
.button-secondary, .button-outline {
    background: rgba(8, 8, 8, 0.35);
    color: var(--text);
}
.floating-cta {
    position: fixed;
    right: 1rem;
    bottom: 5.75rem;
    z-index: 58;
    padding: 0.85rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(226,196,135,0.24);
    background: rgba(10,10,10,0.88);
    color: var(--gold-strong);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
.page-contact .floating-cta {
    display: none;
}
.page-contact main,
.page-inquiry main {
    padding-bottom: 8rem;
}
.page-inquiry .floating-cta,
.page-inquiry .concierge-widget {
    display: none;
}
.page-inquiry .site-footer {
    padding-top: 1rem;
}
.page-thank-you .floating-cta,
.page-thank-you .concierge-widget {
    display: none;
}
.page-thank-you main {
    padding-bottom: 6rem;
}
.whatsapp-float {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 61;
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 220px;
    padding: 0.95rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(132, 255, 189, 0.28);
    background:
        radial-gradient(circle at top left, rgba(94, 255, 154, 0.24), transparent 32%),
        linear-gradient(135deg, rgba(6, 58, 31, 0.96), rgba(16, 103, 59, 0.94));
    box-shadow: 0 22px 52px rgba(2, 30, 15, 0.48);
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    animation: whatsappFloat 3.6s ease-in-out infinite;
}
.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: -120% auto auto -25%;
    width: 42%;
    height: 320%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.24), transparent);
    transform: rotate(16deg);
    animation: whatsappSweep 3.8s linear infinite;
    z-index: -1;
}
.whatsapp-float:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 28px 60px rgba(3, 47, 22, 0.58);
    border-color: rgba(173, 255, 208, 0.44);
}
.whatsapp-float-rings,
.whatsapp-button-pulse {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(191, 255, 216, 0.45);
    transform: translate(-50%, -50%) scale(0.8);
    animation: whatsappRing 2.2s ease-out infinite;
}
.whatsapp-float-icon,
.whatsapp-button-mark {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    font-weight: 900;
    color: #041a0d;
}
.whatsapp-float-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #f5fffa, #7effb2 42%, #17b45d 80%);
    box-shadow: 0 0 28px rgba(126, 255, 178, 0.45);
}
.whatsapp-float-copy {
    display: grid;
    gap: 0.12rem;
}
.whatsapp-float-copy strong {
    color: #f4fff8;
    font-size: 0.98rem;
}
.whatsapp-float-copy small {
    color: rgba(230, 255, 241, 0.78);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 1rem 0;
    backdrop-filter: blur(18px);
}
.nav-wrap, .dashboard-header, .dashboard-sidebar { width: min(1280px, calc(100% - 2rem)); margin: 0 auto; }
.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.95rem 1.15rem;
}
.site-brand, .sidebar-brand { display: flex; align-items: center; gap: 0.9rem; }
.site-brand small, .sidebar-brand small { display: block; color: var(--muted); }
.site-nav { display: flex; align-items: center; gap: 0.95rem; flex-wrap: wrap; }
.site-nav[hidden] {
    display: none !important;
}
.site-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: 1px solid rgba(226, 196, 135, 0.18);
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    color: var(--text);
    padding: 0.75rem 1rem;
    font: inherit;
    cursor: pointer;
}
.site-nav-toggle-box {
    display: inline-grid;
    gap: 0.28rem;
}
.site-nav-toggle-box span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold-strong);
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.site-nav-toggle-label {
    font-size: 0.95rem;
    font-weight: 700;
}
.site-nav-toggle[aria-expanded="true"] .site-nav-toggle-box span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.site-nav-toggle[aria-expanded="true"] .site-nav-toggle-box span:nth-child(2) {
    opacity: 0;
}
.site-nav-toggle[aria-expanded="true"] .site-nav-toggle-box span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}
.site-nav a:not(.button) {
    padding: 0.6rem 0.7rem;
    border-radius: 999px;
    transition: background 0.25s ease, color 0.25s ease;
}
.site-nav a:not(.button):hover {
    background: rgba(226, 196, 135, 0.09);
    color: var(--gold-strong);
}
.secret-portal-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #fff7e8, var(--gold-strong) 38%, var(--gold) 65%, #453116 100%);
    box-shadow: 0 0 18px rgba(226, 196, 135, 0.55);
    display: inline-block;
    margin-left: 0.35rem;
    transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.secret-portal-dot:hover {
    transform: scale(1.15);
    box-shadow: 0 0 28px rgba(226, 196, 135, 0.8);
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(226, 196, 135, 0.35), rgba(184, 149, 90, 0.05));
    border: 1px solid rgba(226, 196, 135, 0.35);
    position: relative;
    overflow: hidden;
}
.brand-mark.small { width: 52px; height: 52px; }
.brand-mark span { position: absolute; font-family: "Cormorant Garamond", serif; font-weight: 700; }
.brand-mark span:nth-child(1) { left: 18px; top: 16px; }
.brand-mark span:nth-child(2) { right: 18px; top: 26px; }
.brand-mark span:nth-child(3) { left: 30px; bottom: 16px; }

.framed-panel { position: relative; }
.hero-section, .section-grid, .contact-grid, .copy-grid, .dashboard-grid, .module-grid { display: grid; gap: 1.35rem; }
.hero-section {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
    min-height: calc(100vh - 130px);
    padding: 2rem 0 2.5rem;
}
.hero-copy {
    padding: 2.25rem 2.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-copy h1 {
    font-size: clamp(1.12rem, 2.2vw, 1.6rem);
    max-width: 28ch;
    line-height: 1.22;
}
.hero-copy .eyebrow { max-width: none; }
.hero-text {
    max-width: 58ch;
    font-size: 0.98rem;
    padding-right: 1rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }
.layered-media { position: relative; min-height: 620px; }
.layered-media img {
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    border-radius: 32px;
    border: 1px solid rgba(255,255,255,0.08);
}
.hero-metric {
    position: absolute;
    right: 1.1rem;
    bottom: 1.1rem;
    max-width: 300px;
    padding: 1.2rem 1.3rem;
    background: var(--panel-heavy);
}
.hero-metric strong { display: block; font-size: 1.7rem; margin-bottom: 0.35rem; color: var(--gold-strong); }

.feature-strip, .card-grid, .gallery-grid, .kpi-grid, .service-family-grid { display: grid; gap: 1rem; }
.feature-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 1rem 0 4rem; }
.service-family-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 1rem 0 4rem; }
.metric-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    margin-bottom: 4rem;
}
.metric-pill {
    padding: 1rem 1.1rem;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.02);
}
.metric-pill strong {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    color: var(--gold-strong);
}
.metric-pill span {
    color: var(--muted);
}
.feature-card, .service-card, .kpi-card, .feed-item, .timeline-item, .module-grid > .glass-card, .dashboard-grid > .glass-card, .copy-grid .glass-card, .auth-card, .process-intro {
    padding: 1.45rem;
}
.card-link-shell {
    display: block;
    color: inherit;
    text-decoration: none;
    position: relative;
    isolation: isolate;
    z-index: 1;
    cursor: pointer;
    transition: transform 0.34s ease, z-index 0.34s ease;
}
.card-link-shell::after {
    content: "";
    position: absolute;
    inset: -0.65rem;
    border-radius: 2rem;
    background: radial-gradient(circle at top, rgba(226, 196, 135, 0.18), transparent 62%);
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.34s ease, transform 0.34s ease;
    pointer-events: none;
    z-index: -1;
}
.card-link-shell:hover,
.card-link-shell:focus-visible {
    transform: translateY(-0.45rem) scale(1.035);
    z-index: 12;
}
.card-link-shell:hover::after,
.card-link-shell:focus-visible::after {
    opacity: 1;
    transform: scale(1);
}
.category-card {
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.34s ease, border-color 0.34s ease, box-shadow 0.34s ease, background 0.34s ease;
}
.card-link-shell:hover .category-card,
.card-link-shell:focus-visible .category-card {
    transform: translateY(-14px) scale(1.01);
    border-color: rgba(226, 196, 135, 0.42);
    box-shadow: 0 50px 108px rgba(0, 0, 0, 0.62), 0 0 48px rgba(184,149,90,0.18);
}
.card-link-shell:focus-visible {
    outline: none;
}
.card-link-shell:focus-visible .category-card {
    box-shadow: 0 0 0 3px rgba(226,196,135,0.25), 0 50px 108px rgba(0, 0, 0, 0.62);
}
.card-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    align-self: flex-start;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(226, 196, 135, 0.18);
    background: rgba(255, 255, 255, 0.035);
    color: var(--accent);
    font-size: 0.79rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: transform 0.26s ease, background 0.26s ease, border-color 0.26s ease, color 0.26s ease;
}
.card-cta::after {
    content: ">";
    font-size: 0.92rem;
    transition: transform 0.26s ease;
}
.card-link-shell:hover .card-cta,
.card-link-shell:focus-visible .card-cta {
    background: rgba(226, 196, 135, 0.16);
    border-color: rgba(226, 196, 135, 0.34);
    color: #fff2d1;
    transform: translateY(-2px);
}
.card-link-shell:hover .card-cta::after,
.card-link-shell:focus-visible .card-cta::after {
    transform: translateX(0.25rem);
}
.feature-card-premium {
    min-height: 360px;
    padding: 1.7rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.9rem;
    background:
        radial-gradient(circle at top right, rgba(226,196,135,0.16), transparent 34%),
        linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)),
        var(--panel);
}
.feature-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.feature-card-premium strong {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 3vw, 2.65rem);
    line-height: 1.02;
    color: #fff6e6;
    margin-top: -0.2rem;
}
.feature-card-premium p {
    margin: 0;
}
.feature-card-premium > p:not(.eyebrow) {
    color: #ddd0bf;
    font-size: 1.02rem;
    line-height: 1.8;
}
.feature-index {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    color: rgba(226,196,135,0.75);
}
.feature-meta {
    margin-top: auto;
    display: inline-flex;
    width: fit-content;
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(226,196,135,0.18);
    background: rgba(255,255,255,0.04);
    color: var(--gold-strong);
    font-size: 0.92rem;
}
.service-logo, .brand-inline-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 12px rgba(226, 196, 135, 0.28));
}
.brand-inline-logo { width: 96px; height: 96px; margin-top: 1rem; }
.section-grid, .contact-grid, .copy-grid, .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 0 4rem;
}
.story-grid,
.manifesto-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 0 0 4rem;
}
.story-card {
    overflow: hidden;
    padding: 0;
}
.story-card img {
    border-radius: 28px 28px 0 0;
    height: 280px;
    object-fit: cover;
}
.story-copy {
    padding: 1.25rem;
}
.manifesto-panel {
    grid-column: span 2;
    padding: 1.5rem;
}
.material-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}
.material-list div {
    padding: 0.95rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.03);
}
.testimonial-marquee {
    overflow: hidden;
    padding: 1.4rem;
}
.marquee-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: marqueeMove 28s linear infinite;
}
.marquee-track blockquote {
    width: 280px;
    margin: 0;
    padding: 1rem;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.03);
}
.marquee-track span {
    color: var(--gold-strong);
    font-size: 0.9rem;
}
.about-brand-copy { padding: 1.7rem; }
.stack-cards { display: grid; gap: 1rem; }
.stack-cards .glass-card {
    min-height: 270px;
    padding-top: 1.95rem;
}
.about-slideshow-card {
    position: relative;
    overflow: hidden;
    min-height: 270px;
    padding: 0 !important;
}
.about-slideshow-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.about-slideshow-image.is-active {
    opacity: 1;
    transform: scale(1);
}
.section-heading { margin-bottom: 1.4rem; }
.section-heading h2, .inner-hero h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); max-width: 11ch; }
.wide-heading { max-width: none !important; width: 100%; }
.services-preview, .gallery-panel, .process-runway { margin: 0 0 4rem; }
.card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid.condensed { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card { min-height: 280px; }
.service-card h3 {
    font-size: 2rem;
    color: #fff6e6;
}
.service-card p {
    color: #ddcfbd;
}
.gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gallery-grid-large { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gallery-filter-bar {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 1rem;
    margin-bottom: 1rem;
}
.gallery-filter {
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.03);
    color: var(--muted);
    border-radius: 999px;
    padding: 0.6rem 0.9rem;
    cursor: none;
}
.gallery-filter.is-active {
    color: #110c03;
    background: linear-gradient(135deg, var(--gold-strong), var(--gold));
}
.gallery-item { padding: 0.8rem; }
.gallery-item img { aspect-ratio: 4 / 3; object-fit: cover; }

.inner-hero {
    padding: 2.5rem 0 1.5rem;
    position: relative;
}
.campaign-hero,
.campaign-inquiry-grid {
    margin-top: 1.2rem;
}
.campaign-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.8fr);
    gap: 1.25rem;
    padding: 1.6rem;
}
.campaign-copy {
    display: grid;
    gap: 1rem;
    align-content: start;
}
.campaign-copy .wide-heading {
    max-width: 11ch;
    margin: 0;
}
.campaign-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.campaign-pill-row span {
    padding: 0.72rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(226,196,135,0.18);
    background: rgba(255,255,255,0.03);
    color: var(--gold-strong);
    font-size: 0.88rem;
}
.campaign-proof,
.campaign-proof-card {
    display: grid;
    gap: 0.9rem;
    align-content: start;
}
.campaign-proof-card {
    padding: 1.35rem;
}
.campaign-proof-card > a:not(.whatsapp-button) {
    padding: 0.9rem 1rem;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.03);
}
.campaign-inquiry-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
    gap: 1.35rem;
    align-items: start;
}
.inquiry-benefits,
.inquiry-form-card {
    min-height: 100%;
}
.inquiry-benefits {
    padding: 1.55rem;
}
.inquiry-benefits h2,
.inquiry-form-head h2 {
    margin: 0 0 0.95rem;
}
.inquiry-benefit-list {
    display: grid;
    gap: 0.95rem;
}
.inquiry-benefit-list > div {
    padding: 1rem 1.05rem;
    border-radius: 22px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--line);
}
.inquiry-benefit-list strong {
    display: block;
    margin-bottom: 0.32rem;
    color: #fff4de;
}
.inquiry-benefit-list p {
    margin: 0;
}
.inquiry-form-card {
    padding: 1.7rem;
    padding-top: 1.95rem;
}
.inquiry-form-head {
    margin-bottom: 0.2rem;
}
.thank-you-shell {
    margin-top: 1.2rem;
    padding: 2rem;
    display: grid;
    gap: 1rem;
    max-width: 880px;
}
.thank-you-shell .wide-heading {
    margin: 0;
    max-width: 11ch;
}
.thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 0.4rem;
}
.timeline.timeline-luxury {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.timeline-item {
    display: grid;
    grid-template-columns: 76px 1fr;
    align-items: start;
}
.timeline-step {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold-strong);
    border: 1px solid rgba(226,196,135,0.3);
    background: rgba(226,196,135,0.08);
    font-size: 1.4rem;
    font-family: "Cormorant Garamond", serif;
}

.contact-card,
.premium-contact-grid > form.glass-card {
    min-height: 420px;
    padding: 1.7rem;
    padding-top: 1.95rem;
}
.contact-card .eyebrow {
    margin-bottom: 0.8rem;
    line-height: 1.5;
    padding-top: 0.15rem;
}
.contact-card h3 {
    padding: 0;
    margin-bottom: 0.9rem;
    line-height: 1.18;
}
.contact-card > p:not(.eyebrow) {
    margin-bottom: 1.25rem;
}
.premium-contact-grid {
    grid-template-columns: 1.05fr 1fr;
    align-items: stretch;
}
.contact-card-highlight img {
    margin-top: 1rem;
    min-height: 220px;
    object-fit: cover;
}
.contact-action-list {
    display: grid;
    gap: 0.75rem;
    margin: 1rem 0 0.5rem;
}
.contact-action-list a {
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--line);
}
.whatsapp-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.95rem;
    padding: 1rem 1.05rem;
    border-radius: 24px;
    border: 1px solid rgba(132, 255, 189, 0.24);
    background:
        radial-gradient(circle at top left, rgba(94,255,154,0.18), transparent 35%),
        linear-gradient(135deg, rgba(5, 53, 28, 0.96), rgba(20, 97, 58, 0.92));
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}
.whatsapp-button::after {
    content: "";
    position: absolute;
    inset: -80% auto auto -20%;
    width: 34%;
    height: 260%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    transform: rotate(14deg);
    animation: whatsappSweep 4.2s linear infinite;
}
.whatsapp-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 54px rgba(4, 42, 21, 0.44);
    border-color: rgba(173, 255, 208, 0.4);
}
.whatsapp-button span:last-child {
    display: grid;
    gap: 0.12rem;
    align-content: center;
    min-width: 0;
}
.whatsapp-button strong {
    display: block;
    color: #f4fff8;
    line-height: 1.2;
}
.whatsapp-button small {
    display: block;
    color: rgba(231,255,241,0.82);
    line-height: 1.35;
}
.whatsapp-button-icon {
    position: relative;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #f7fffa, #82ffb7 42%, #11a957 78%);
    box-shadow: 0 0 26px rgba(126,255,178,0.36);
}
.whatsapp-button-pulse {
    width: 52px;
    height: 52px;
}

.stack-cards .glass-card h3,
.contact-grid .glass-card h3 {
    padding-left: 0.12em;
    padding-top: 0.08em;
    overflow: visible;
}
.contact-card.contact-card-highlight h3 {
    padding-left: 0;
    padding-top: 0;
    margin-bottom: 0.9rem;
    line-height: 1.18;
}

.form-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field-full, .invoice-form > .invoice-row, .form-grid button, .form-grid textarea { grid-column: 1 / -1; }
label span {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
    padding-top: 0.12rem;
}
input, textarea, select {
    width: 100%;
    border-radius: 18px;
    border: 1px solid var(--line);
    padding: 0.95rem 1rem;
    background: rgba(255,255,255,0.03);
    color: var(--text);
    font: inherit;
    outline: none;
}
input:focus, textarea:focus, select:focus { border-color: rgba(226,196,135,0.45); box-shadow: 0 0 0 3px rgba(226,196,135,0.08); }

.auth-page, .plain-page {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 2rem;
}
.auth-shell { width: min(680px, 100%); position: relative; z-index: 2; }
.auth-card {
    background: rgba(10,10,12,0.78);
    border-radius: 30px;
}
.executive-banner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}
.executive-banner-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.executive-banner-pills span {
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.03);
    color: var(--gold-strong);
}

.dashboard-page { padding: 1.25rem; }
.dashboard-shell { display: grid; grid-template-columns: 290px 1fr; gap: 1.25rem; min-height: calc(100vh - 2.5rem); }
.dashboard-sidebar {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: sticky;
    top: 1.25rem;
    height: calc(100vh - 2.5rem);
}
.sidebar-nav { display: grid; gap: 0.35rem; margin: 1.6rem 0 auto; }
.sidebar-nav a {
    padding: 0.9rem 1rem;
    border-radius: 16px;
    color: var(--muted);
    transition: background 0.2s ease, color 0.2s ease;
}
.sidebar-nav a:hover { background: rgba(216, 183, 124, 0.1); color: var(--text); }
.dashboard-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.25rem;
}
.header-actions { display: flex; gap: 0.75rem; align-items: center; }
.kpi-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-bottom: 1.25rem; }
.kpi-card strong { font-size: 2rem; font-family: "Cormorant Garamond", serif; }
.dashboard-grid { grid-template-columns: 1.4fr 1fr; margin-bottom: 1.25rem; }
.dashboard-grid.single { grid-template-columns: 1fr; }
.dashboard-grid.tri-grid { grid-template-columns: 1.05fr 1fr 1fr; }
.control-panel-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.control-tile {
    display: grid;
    gap: 0.7rem;
    padding: 1.3rem;
}
.control-tile strong {
    font-size: 1.15rem;
    color: var(--text);
}
.dashboard-stat-panel .mini-metric-grid,
.role-summary-grid,
.template-preset-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}
.mini-metric-grid div {
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.02);
}
.mini-metric-grid strong {
    display: block;
    font-size: 2rem;
    color: var(--gold-strong);
    font-family: "Cormorant Garamond", serif;
}
.mini-metric-grid span { color: var(--muted); }
.feed-list { display: grid; gap: 0.75rem; }
.feed-item { border: 1px solid var(--line); background: rgba(255,255,255,0.02); }
.feed-item img { margin-top: 0.75rem; max-height: 180px; object-fit: cover; }
.preset-card small { color: var(--muted); }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 1rem 0.8rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.warning-row { background: rgba(184,149,90,0.08); }
.table-actions, .form-inline, .footer-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.site-footer { position: relative; z-index: 2; padding-bottom: 2rem; }
.footer-shell {
    width: min(1280px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
}
.footer-brand { display: flex; gap: 1rem; align-items: flex-start; }
.footer-logo { width: 86px; height: 86px; object-fit: contain; filter: drop-shadow(0 8px 16px rgba(226,196,135,0.28)); }
.footer-links > div { min-width: 150px; display: grid; gap: 0.6rem; }
.footer-links h4 { color: var(--gold-strong); margin-bottom: 0.25rem; }

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at center, rgba(226, 196, 135, 0.12), transparent 38%),
        #050505;
    transition: opacity 0.75s ease, visibility 0.75s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-rain {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.loader-rain span {
    position: absolute;
    top: -20%;
    left: var(--x);
    width: 2px;
    height: 90px;
    background: linear-gradient(180deg, rgba(226,196,135,0.85), rgba(10,10,10,0));
    opacity: 0.7;
    animation: rainFall 1.6s linear infinite;
    animation-delay: var(--delay);
}
.loader-sequence { display: grid; gap: 0.7rem; }
.loader-brand-lockup {
    display: grid;
    justify-items: center;
    gap: 0.9rem;
    margin-bottom: 0.5rem;
}
.loader-logo-shell {
    width: 120px;
    height: 120px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1), rgba(226,196,135,0.08));
    border: 1px solid rgba(226,196,135,0.28);
    box-shadow: 0 0 48px rgba(184,149,90,0.24);
}
.loader-logo {
    width: 88px;
    height: 88px;
    object-fit: contain;
    filter: drop-shadow(0 10px 24px rgba(226,196,135,0.3));
}
.loader-tag {
    margin: 0;
    color: var(--gold-strong);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.78rem;
}
.loader-word {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(18px);
}
.loader-word.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.loader-letter {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(226,196,135,0.38);
    color: var(--gold-strong);
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
}
.loader-text {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 5vw, 3.8rem);
    color: var(--text);
}

.concierge-widget {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 60;
    display: grid;
    justify-items: end;
    gap: 0.85rem;
}
.concierge-panel {
    width: min(420px, calc(100vw - 2rem));
    padding: 1.15rem;
    background: linear-gradient(145deg, rgba(10,10,10,0.95), rgba(20,16,12,0.92));
}
.concierge-feed {
    display: grid;
    gap: 0.75rem;
    max-height: 280px;
    overflow: auto;
    margin-bottom: 0.9rem;
    padding-right: 0.2rem;
}
.concierge-bubble {
    padding: 0.9rem 1rem;
    border-radius: 18px;
    border: 1px solid var(--line);
    line-height: 1.6;
}
.concierge-bubble-user {
    background: rgba(226,196,135,0.14);
    color: var(--text);
}
.concierge-bubble-system {
    background: rgba(255,255,255,0.03);
    color: var(--muted);
}
.concierge-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 0.9rem;
}
.concierge-suggestions button {
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.03);
    color: var(--gold-strong);
    border-radius: 999px;
    padding: 0.55rem 0.85rem;
    cursor: none;
}
.concierge-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
}
.concierge-toggle {
    box-shadow: 0 18px 38px rgba(0,0,0,0.4);
}

.faq-panel {
    padding: 1.5rem;
    margin-bottom: 4rem;
}
.faq-list {
    display: grid;
    gap: 0.85rem;
}
.faq-item {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255,255,255,0.02);
    overflow: hidden;
}
.faq-toggle {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.15rem;
    font: inherit;
    text-align: left;
    cursor: none;
}
.faq-answer {
    padding: 0 1.15rem 1rem;
}

.site-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(4,4,5,0.88);
    display: none;
    place-items: center;
    z-index: 1300;
    padding: 2rem;
}
.site-lightbox.is-open {
    display: grid;
}
.site-lightbox img {
    max-width: min(1100px, 100%);
    max-height: 82vh;
    object-fit: contain;
    border-radius: 28px;
}
.site-lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: 1px solid var(--line);
    background: rgba(12,12,12,0.8);
    color: var(--gold-strong);
    border-radius: 999px;
    padding: 0.7rem 1rem;
    cursor: none;
}

.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.toast-stack {
    position: fixed;
    right: 1rem;
    top: 1rem;
    z-index: 999;
    display: grid;
    gap: 0.85rem;
    width: min(380px, calc(100% - 2rem));
}
.toast {
    position: relative;
    overflow: hidden;
    padding: 1rem 1.15rem;
    border-radius: 22px;
    backdrop-filter: blur(14px);
    border: 1px solid rgba(226,196,135,0.22);
    background:
        radial-gradient(circle at 20% 30%, rgba(226,196,135,0.18), transparent 26%),
        linear-gradient(145deg, rgba(10,10,10,0.96), rgba(22,18,14,0.92));
}
.toast::after {
    content: "";
    position: absolute;
    inset: -40% auto auto -20%;
    width: 40%;
    height: 220%;
    background: linear-gradient(90deg, transparent, rgba(226,196,135,0.24), transparent);
    transform: rotate(16deg);
    animation: toastSweep 2.5s linear infinite;
}

.sparkle {
    position: fixed;
    width: 8px;
    height: 8px;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255,255,255,0.95), rgba(226,196,135,0.7) 55%, transparent 70%);
    border-radius: 50%;
    z-index: 999;
    animation: sparkleOut 0.9s ease-out forwards;
}

@keyframes slideFade {
    0%, 28% { opacity: 0; transform: scale(1.06); }
    5%, 23% { opacity: 1; transform: scale(1); }
    33%, 100% { opacity: 0; transform: scale(1.03); }
}
@keyframes drift {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(30px, -18px, 0) scale(1.08); }
}
@keyframes toastSweep {
    from { transform: translateX(-30%) rotate(16deg); }
    to { transform: translateX(420%) rotate(16deg); }
}
@keyframes sparkleOut {
    from { opacity: 1; transform: scale(0.8); }
    to { opacity: 0; transform: translateY(-18px) scale(2.2); }
}
@keyframes rainFall {
    from { transform: translateY(-120%); opacity: 0; }
    20% { opacity: 0.85; }
    to { transform: translateY(140vh); opacity: 0; }
}
@keyframes marqueeMove {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@keyframes whatsappRing {
    0% { opacity: 0.9; transform: translate(-50%, -50%) scale(0.82); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.5); }
}
@keyframes whatsappSweep {
    from { transform: translateX(-30%) rotate(16deg); }
    to { transform: translateX(420%) rotate(16deg); }
}
@keyframes whatsappFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@media (max-width: 1100px) {
    .hero-section, .feature-strip, .service-family-grid, .card-grid, .gallery-grid, .section-grid, .contact-grid, .copy-grid, .dashboard-shell, .kpi-grid, .dashboard-grid, .module-grid, .card-grid.condensed, .timeline.timeline-luxury, .footer-shell, .control-panel-grid, .dashboard-grid.tri-grid, .premium-contact-grid, .executive-banner, .metric-band, .story-grid, .manifesto-grid, .material-list, .campaign-hero, .campaign-inquiry-grid {
        grid-template-columns: 1fr;
    }
    .dashboard-sidebar { position: static; height: auto; width: 100%; }
    .manifesto-panel { grid-column: span 1; }
}
@media (max-width: 720px) {
    body { cursor: auto; }
    body.nav-open { overflow: hidden; }
    .cursor-orb, .cursor-ring { display: none; }
    .nav-wrap, .dashboard-header, .header-actions, .footer-brand { flex-direction: column; align-items: stretch; }
    .nav-wrap {
        position: relative;
        align-items: stretch;
    }
    .site-nav-toggle {
        display: inline-flex;
        align-self: flex-end;
    }
    .site-nav {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(255, 240, 218, 0.08);
    }
    .site-nav.is-open {
        display: flex;
    }
    .site-nav a:not(.button) {
        width: 100%;
        padding: 0.95rem 1rem;
        background: rgba(255,255,255,0.03);
    }
    .secret-portal-dot {
        margin-left: 0;
        align-self: center;
    }
    .hero-copy, .auth-card, .footer-shell { padding: 1.35rem; }
    .layered-media, .layered-media img { min-height: 360px; }
    .hero-metric { position: static; margin-top: 1rem; }
    .form-grid { grid-template-columns: 1fr; }
    .concierge-widget { left: 1rem; right: 1rem; justify-items: stretch; }
    .concierge-form { grid-template-columns: 1fr; }
    .floating-cta { left: 1rem; right: 1rem; bottom: 5.5rem; text-align: center; }
    .whatsapp-float {
        left: 1rem;
        right: 1rem;
        min-width: 0;
        justify-content: center;
    }
}
