/* Sha Tin Group — Luxe Editorial 2026 */

:root {
    --black: #080808;
    --surface: #111111;
    --surface-2: #181818;
    --gold: #c9a84c;
    --gold-light: #e8d5a3;
    --gold-dim: rgba(201, 168, 76, 0.15);
    --white: #fafafa;
    --gray: #9a9a9a;
    --gray-dim: #5a5a5a;
    --border: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(201, 168, 76, 0.35);
    --font-display: "Playfair Display", Georgia, serif;
    --font-ui: "Outfit", system-ui, sans-serif;
    --shell: min(1180px, calc(100% - 48px));
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --topbar: 76px;
    --topbar-social: 34px;
    --header-height: calc(var(--topbar) + var(--topbar-social));
    --success: #4ade80;
    --glass: rgba(17, 17, 17, 0.72);
    --shadow-glass: 0 24px 80px rgba(0, 0, 0, 0.28);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-ui);
    background: var(--black);
    color: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.shell { width: var(--shell); margin-inline: auto; }

.gold { color: var(--gold); }
.gold-text { color: var(--gold); }

/* Aurora background */
.aurora {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.aurora::before,
.aurora::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
    animation: drift 18s ease-in-out infinite alternate;
}

.aurora::before {
    width: 60vw;
    height: 60vw;
    top: -20%;
    right: -10%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.25), transparent 70%);
}

.aurora::after {
    width: 50vw;
    height: 50vw;
    bottom: -15%;
    left: -15%;
    background: radial-gradient(circle, rgba(120, 80, 40, 0.2), transparent 70%);
    animation-delay: -9s;
}

@keyframes drift {
    to { transform: translate(5%, 8%) scale(1.08); }
}

/* Topbar */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: var(--header-height);
    transition: background 0.4s, border-color 0.4s;
}

.topbar-social-bar {
    height: var(--topbar-social);
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
    background: rgba(8, 8, 8, 0.55);
}

.topbar.solid .topbar-social-bar {
    background: rgba(8, 8, 8, 0.88);
}

.topbar-social-bar .shell {
    display: flex;
    justify-content: flex-start;
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 18px;
}

.topbar-social a {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.topbar-social a:hover {
    color: var(--gold-light);
}

.topbar.solid {
    background: rgba(8, 8, 8, 0.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.topbar-row {
    height: var(--topbar);
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.logo-icon {
    color: var(--gold);
    font-size: 0.85rem;
}

.links {
    display: flex;
    gap: 32px;
    margin-left: auto;
}

.links a {
    font-size: 0.875rem;
    color: var(--gray);
    transition: color 0.25s;
}

.links a:hover { color: var(--white); }

.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown-trigger::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    opacity: 0.75;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    width: min(360px, 86vw);
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(8, 8, 8, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.22s ease, transform 0.22s var(--ease), visibility 0.22s;
    z-index: 220;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--white);
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown-menu a:hover {
    background: rgba(201, 168, 76, 0.12);
    color: var(--white);
}

.nav-dropdown-menu strong,
.nav-dropdown-menu small {
    display: block;
}

.nav-dropdown-menu strong {
    color: var(--gold-light);
    font-size: 0.86rem;
    margin-bottom: 3px;
}

.nav-dropdown-menu small {
    color: var(--gray);
    font-size: 0.76rem;
    line-height: 1.45;
}

.topbar-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.link-quiet {
    font-size: 0.875rem;
    color: var(--gray);
    transition: color 0.25s;
}

.link-quiet:hover { color: var(--white); }

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s;
    cursor: pointer;
    white-space: nowrap;
}

.pill:hover { transform: translateY(-2px); }

.pill-fill {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.pill-fill:hover { background: var(--gold-light); }

.pill-line {
    border-color: var(--border-gold);
    color: var(--white);
    background: transparent;
}

.pill-line:hover {
    background: var(--gold-dim);
    border-color: var(--gold);
}

.pill-sm { padding: 10px 18px; font-size: 0.8125rem; }

.burger {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.burger i {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--white);
    transition: transform 0.3s, opacity 0.3s;
}

.burger.on i:first-child { transform: translateY(3.75px) rotate(45deg); }
.burger.on i:last-child { transform: translateY(-3.75px) rotate(-45deg); }

/* Hero */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding: calc(var(--header-height) + 64px) 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding-bottom: 48px;
}

.chip {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border-gold);
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 28px;
    background: var(--gold-dim);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.lead {
    font-size: 1.0625rem;
    color: var(--gray);
    max-width: 480px;
    margin-bottom: 36px;
    font-weight: 300;
}

.lead strong { color: var(--white); font-weight: 500; }

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Bento tiles */
.hero-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 12px;
}

.tile {
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(17, 17, 17, 0.7);
    backdrop-filter: blur(12px);
    transition: border-color 0.3s, transform 0.3s var(--ease);
}

.tile:hover {
    border-color: var(--border-gold);
    transform: translateY(-3px);
}

.tile-main { grid-row: span 2; }

.tile-wide { grid-column: span 2; }

.tile-accent {
    background: linear-gradient(145deg, var(--gold-dim), rgba(17, 17, 17, 0.9));
    border-color: var(--border-gold);
}

.tile-label {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray-dim);
}

.tile-num {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
    margin: 12px 0 4px;
}

.tile-num small {
    font-size: 1.25rem;
    color: var(--gray);
}

.tile-sub, .tile-address {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.5;
}

/* Ticker */
.ticker {
    border-block: 1px solid var(--border);
    background: var(--surface);
    overflow: hidden;
    padding: 14px 0;
}

.ticker-track {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: ticker 28s linear infinite;
}

.ticker-track span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-dim);
    white-space: nowrap;
}

.ticker-track span::before {
    content: "◆ ";
    color: var(--gold);
}

@keyframes ticker {
    to { transform: translateX(-50%); }
}

/* Blocks */
.block {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.block-muted {
    background: var(--surface);
    border-block: 1px solid var(--border);
}

.kicker {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.block-head { margin-bottom: 48px; }

.block-head h2,
.split-copy h2,
.reach-grid h2,
.cta-band h2 {
    font-family: var(--font-display);
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 12px;
}

.block-head p {
    color: var(--gray);
    margin-top: 0;
    max-width: 640px;
    font-weight: 300;
    line-height: 1.7;
}

.block-head-row > div:first-child {
    flex: 1;
    min-width: 0;
}

.block-head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

/* Split */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.frame img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    filter: brightness(0.85);
}

.frame-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 8px 14px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(8, 8, 8, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-gold);
    border-radius: 999px;
    color: var(--gold-light);
}

.split-copy p {
    color: var(--gray);
    margin: 20px 0 28px;
    font-weight: 300;
}

.ticks {
    list-style: none;
}

.ticks li {
    position: relative;
    padding: 10px 0 10px 28px;
    font-size: 0.9375rem;
    color: var(--gray);
    border-bottom: 1px solid var(--border);
}

.ticks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.85rem;
}

/* Offer grid */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.offer-card {
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    transition: border-color 0.3s, transform 0.3s var(--ease);
}

.offer-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
}

.offer-featured {
    background: linear-gradient(160deg, var(--gold-dim), var(--surface-2));
    border-color: var(--border-gold);
}

.offer-icon {
    display: block;
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 16px;
}

.offer-card h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.offer-card p {
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: 300;
}

.offer-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--gold);
    transition: color 0.2s;
}

.offer-link:hover { color: var(--gold-light); }

.fee-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.fee-strip div {
    padding: 20px 24px;
    background: var(--black);
    text-align: center;
}

.fee-strip span {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-dim);
    margin-bottom: 6px;
}

.fee-strip strong {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--gold-light);
}

/* Project scroll */
.scroll-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-dim) transparent;
}

.scroll-row::-webkit-scrollbar { height: 4px; }
.scroll-row::-webkit-scrollbar-thumb { background: var(--border-gold); border-radius: 4px; }

.proj {
    flex: 0 0 min(280px, 80vw);
    scroll-snap-align: start;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface-2);
    transition: transform 0.3s var(--ease);
}

.proj:hover { transform: scale(1.02); }

.proj-img {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.proj-body { padding: 20px; }

.proj-tag {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.proj-body h3 {
    font-size: 1rem;
    margin: 8px 0 4px;
}

.proj-body p {
    font-size: 0.8125rem;
    color: var(--gray-dim);
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step {
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--black);
}

.step-n {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold-dim);
    color: transparent;
    -webkit-text-stroke: 1px var(--gold);
    display: block;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.step p {
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: 300;
}

/* CTA band */
.cta-band {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gold-dim), transparent 60%);
    border-block: 1px solid var(--border-gold);
}

.cta-band-inner {
    text-align: center;
}

.cta-band-inner h2 { margin-bottom: 12px; }

.cta-band-inner p {
    color: var(--gray);
    margin-bottom: 28px;
}

.cta-band-inner .hero-btns { justify-content: center; }

/* Reach */
.reach-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: start;
}

.reach-list {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}

.reach-list a {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
    transition: color 0.2s, padding-left 0.2s;
}

.reach-list a:hover {
    color: var(--gold-light);
    padding-left: 8px;
}

.reach-list span {
    color: var(--gray-dim);
    font-size: 0.8125rem;
}

.reach-map {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 16/11;
}

.reach-map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.4) invert(0.92) contrast(0.9);
}

/* Footer */
.foot {
    position: relative;
    z-index: 1;
    padding: 28px 0;
    border-top: 1px solid var(--border);
}

.foot-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.foot-row p {
    font-size: 0.8125rem;
    color: var(--gray-dim);
}

.foot-links {
    display: flex;
    gap: 24px;
}

.foot-links a {
    font-size: 0.8125rem;
    color: var(--gray);
    transition: color 0.2s;
}

.foot-links a:hover { color: var(--white); }

/* Fade up */
.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    transition-delay: var(--d, 0ms);
}

.fade-up.in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-layout,
    .split,
    .reach-grid { grid-template-columns: 1fr; }

    .offer-grid,
    .steps,
    .fee-strip { grid-template-columns: repeat(2, 1fr); }

    .frame img { aspect-ratio: 16/10; }
}

@media (max-width: 768px) {
    .topbar-social a {
        font-size: 0.75rem;
    }

    .links {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        flex-direction: column;
        padding: 24px;
        gap: 0;
        background: rgba(8, 8, 8, 0.97);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
        transform: translateY(-130%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.35s var(--ease), opacity 0.35s;
        margin-left: 0;
    }

    .links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .links a {
        padding: 16px 0;
        border-bottom: 1px solid var(--border);
    }

    .links .nav-dropdown {
        width: 100%;
    }

    .links .nav-dropdown-trigger {
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
    }

    .links .nav-dropdown-menu {
        position: static;
        width: 100%;
        margin: 10px 0 12px;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
    }

    .links .nav-dropdown-menu a {
        padding: 11px 12px;
        border-bottom: 0;
    }

    .topbar-cta .link-quiet { display: none; }
    .burger { display: flex; margin-left: auto; }

    .hero-bento { grid-template-columns: 1fr; }
    .tile-main { grid-row: auto; }
    .tile-wide { grid-column: auto; }

    .offer-grid,
    .steps,
    .fee-strip { grid-template-columns: 1fr; }

    .block-head-row { flex-direction: column; align-items: flex-start; }
    .foot-row { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
    .ticker-track { animation: none; }
    .fade-up { opacity: 1; transform: none; }
    .aurora::before, .aurora::after { animation: none; }
}

/* === PLATFORM EXTENSIONS === */

.logo img, .logo-mark-img { width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0; }

.logo .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    min-width: 0;
}

.logo .brand-text strong { font-size: 0.95rem; font-weight: 600; }
.logo .brand-text small { font-size: 0.68rem; color: var(--gray); }

.lang-select {
    font-family: inherit;
    font-size: 0.8125rem;
    padding: 8px 32px 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a84c' d='M2 4l4 4 4-4'/%3E%3C/svg%3E") no-repeat right 12px center;
    color: var(--gray);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    min-width: 72px;
}

.lang-select:focus {
    outline: none;
    border-color: var(--border-gold);
    color: var(--white);
}

.lang-select option {
    background: var(--surface);
    color: var(--white);
}

/* Slideshow */
.slideshow-wrap {
    position: relative;
    z-index: 1;
    min-height: 92vh;
    display: flex;
    align-items: flex-end;
    padding: calc(var(--header-height) + 48px) 0 120px;
}

.slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,8,8,0.55) 0%, rgba(8,8,8,0.92) 75%);
}

.slide.active { opacity: 1; }

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.slide-content.in {
    opacity: 1;
    transform: translateY(0);
}

.slide-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 16px;
}

.slide-content p { color: var(--gray); margin-bottom: 24px; max-width: 520px; }

.slide-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
    width: auto;
    pointer-events: auto;
}

.slideshow-wrap > .slide-dots {
    /* Dots sit at bottom of hero, not inside text column */
    bottom: 40px;
}

.site-trust-line {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
    padding: 8px 14px;
    display: inline-block;
    border: 1px solid var(--border-gold);
    border-radius: 999px;
    background: rgba(8, 8, 8, 0.45);
}

.site-trust-line--slide {
    margin-bottom: 14px;
    font-size: 0.68rem;
}

.site-trust-inline {
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 12px;
}

.expo-job-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.expo-job-card {
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--border-gold);
    background: linear-gradient(160deg, var(--gold-dim), var(--surface-2));
    text-align: center;
}

.expo-job-label {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.expo-job-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.expo-job-fee {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold-light);
    line-height: 1;
    margin: 12px 0;
}

.expo-job-sub {
    font-size: 0.8125rem;
    color: var(--gray);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .expo-job-grid { grid-template-columns: 1fr; }
}

.slide-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.slide-dots button.active { background: var(--gold); }

.hero-overlay { position: relative; z-index: 2; width: 100%; }

/* Chairman */
.chairman-box {
    padding: 40px;
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    background: linear-gradient(145deg, var(--gold-dim), var(--surface-2));
}

.chairman-grid {
    display: grid;
    grid-template-columns: minmax(240px, 400px) 1fr;
    gap: 40px;
    align-items: start;
}

.chairman-grid > div:first-child {
    width: 100%;
    max-width: 400px;
}

.chairman-grid img,
.board-photo {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 40 / 40;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: rgba(0, 0, 0, 0.2);
}

.chairman-grid img {
    border-radius: 14px;
    border: 1px solid var(--border-gold);
}

.chairman-caption {
    margin-top: 12px;
    font-size: 0.875rem;
    color: var(--gray);
}

.chairman-caption strong { display: block; color: var(--gold-light); }

/* Board */
.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 24px;
}

.board-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: var(--surface-2);
    transition: border-color 0.3s, transform 0.3s var(--ease);
}

.board-card:hover { border-color: var(--border-gold); transform: translateY(-4px); }

.board-photo {
    border-bottom: 1px solid var(--border-gold);
}

.board-info { padding: 22px; }

.board-info h3 { font-size: 1.05rem; margin-bottom: 4px; }

.board-info .title {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.board-bio { font-size: 0.875rem; color: var(--gray); line-height: 1.65; }

.board-email {
    font-size: 0.8125rem;
    margin-top: 12px;
}

.board-email a {
    color: var(--gold);
    text-decoration: none;
}

.board-email a:hover { text-decoration: underline; }

/* Gallery grid (static) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.project-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface-2);
    transition: border-color 0.3s, box-shadow 0.3s var(--ease);
}

.project-card:hover {
    border-color: var(--border-gold);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.12);
}

.project-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    filter: saturate(1.2) contrast(1.08) brightness(1.04);
    transition: filter 0.35s ease, transform 0.35s var(--ease);
}

.project-card:hover .project-img {
    filter: saturate(1.35) contrast(1.1) brightness(1.08);
    transform: scale(1.03);
}

.project-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(8,8,8,0.8);
    border: 1px solid var(--border-gold);
    color: var(--gold);
}

.project-info { padding: 18px; }
.project-info h3 { font-size: 1rem; margin-bottom: 4px; }
.project-info .location { font-size: 0.8125rem; color: var(--gray-dim); }
.project-info .value { font-family: var(--font-display); color: var(--gold-light); margin: 8px 0; }
.project-info .desc { font-size: 0.8125rem; color: var(--gray); }

/* Luxe footer (full) */
.site-footer-full {
    position: relative;
    z-index: 1;
    padding: 64px 0 28px;
    border-top: 1px solid var(--border);
    background: var(--surface);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 32px;
    margin-bottom: 40px;
}

.footer-grid h4 {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-grid a, .footer-grid p {
    display: block;
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 8px;
    transition: color 0.2s;
}

.footer-grid a:hover { color: var(--gold-light); }

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 0.8125rem;
    color: var(--gray-dim);
}

.footer-bottom-bar .foot-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* Login / portal */
.login-page {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - var(--header-height));
    display: grid;
    place-items: center;
    padding: calc(var(--header-height) + 48px) 24px 80px;
}

.login-card {
    width: min(440px, 100%);
    padding: 40px 36px;
    border-radius: 20px;
    border: 1px solid var(--border-gold);
    background: linear-gradient(160deg, var(--surface-2), var(--black));
    box-shadow: 0 24px 80px rgba(0,0,0,0.45);
}

.login-logo { text-align: center; margin-bottom: 28px; }
.login-logo img { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 14px; }
.login-logo h1 { font-family: var(--font-display); font-size: 1.75rem; font-weight: 500; }
.login-subtitle { font-size: 0.875rem; color: var(--gray); margin-top: 8px; }

.login-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 24px;
}

.login-tabs button {
    padding: 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--gray);
    font-family: inherit;
    font-size: 0.8125rem;
    cursor: pointer;
    transition: all 0.2s;
}

.login-tabs button.active {
    background: var(--gold-dim);
    border-color: var(--border-gold);
    color: var(--gold-light);
}

.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--black);
    color: var(--white);
    font-family: inherit;
    font-size: 0.9375rem;
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
}

textarea.form-control { min-height: 120px; resize: vertical; }

select.form-control { cursor: pointer; }

.login-footer-links {
    margin-top: 24px;
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray);
}

.login-footer-links a { color: var(--gold); }

.loan-note {
    text-align: center;
    padding: 12px 20px;
    margin-bottom: 24px;
    border-radius: 10px;
    border: 1px solid var(--border-gold);
    background: var(--gold-dim);
    font-size: 0.8125rem;
    color: var(--gold-light);
}

@media (max-width: 1024px) {
    .chairman-grid { grid-template-columns: 1fr; }
    .chairman-grid > div:first-child { max-width: 400px; margin: 0 auto; }
    .chairman-grid img { max-width: 100%; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Dashboard bridge — maps luxe tokens to portal/dashboard CSS */
:root {
    --text-primary: var(--white);
    --text-secondary: var(--gray);
    --text-muted: var(--gray-dim);
    --dark: var(--surface);
    --dark-light: var(--surface-2);
    --dark-card: var(--surface-2);
    --font-heading: var(--font-display);
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-gold: 0 4px 30px rgba(201, 168, 76, 0.12);
    --gradient-gold: linear-gradient(135deg, #c9a84c, #e8d5a3, #c9a84c);
}

.btn-gold, .pill-fill { background: var(--gold) !important; color: var(--black) !important; border-color: var(--gold) !important; }
.btn-outline, .pill-line { border-color: var(--border-gold) !important; color: var(--white) !important; }
.card { background: var(--surface-2); border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.card > h2,
.card > h3,
.modal h2,
.modal h3 {
    color: var(--gold-light);
}

/* Form titles & labels — site-wide */
.calc-field label,
.expo-form-group label,
.dashboard-main .form-group label,
.modal .form-group label,
.login-card .form-group label {
    color: var(--white);
    font-weight: 500;
}

.form-group label:has(input[type="checkbox"]),
.form-group label:has(input[type="radio"]),
.expo-form-group label:has(input[type="checkbox"]),
.expo-form-group label:has(input[type="radio"]) {
    text-transform: none;
    letter-spacing: normal;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Content pages (pages/*.html) */
.container { width: var(--shell); margin-inline: auto; padding: 0 20px; }

.content-page {
    position: relative;
    z-index: 1;
    padding-top: var(--header-height);
    min-height: 100vh;
}

.content-page .page-hero {
    height: 280px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.content-page .page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,8,8,0.5), rgba(8,8,8,0.88));
}

.content-page .page-hero h1 {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--gold-light);
    text-align: center;
    padding: 0 24px;
}

.content-body { padding: 64px 0 80px; }

.content-body .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.content-body .content-text {
    color: var(--gray);
    line-height: 1.85;
    font-weight: 300;
}

.content-body .content-text p { margin-bottom: 18px; }
.content-body .content-text h3 {
    font-family: var(--font-display);
    color: var(--white);
    margin: 28px 0 12px;
    font-size: 1.35rem;
}

.content-body .content-image img {
    border-radius: 14px;
    border: 1px solid var(--border-gold);
    width: 100%;
}

.section-title { text-align: center; margin-bottom: 40px; }

.section-title h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 12px;
}

.section-title .divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 12px auto;
}

.section-title p { color: var(--gray); max-width: 640px; margin: 0 auto; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s, border-color 0.2s;
    text-decoration: none;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--border-gold);
}

.btn-outline:hover { background: var(--gold-dim); }

.btn-dark {
    background: var(--surface-2);
    color: var(--gray);
    border-color: var(--border);
}

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--surface-2);
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: transparent;
    border: none;
    color: var(--white);
    font-family: inherit;
    font-size: 0.9375rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s;
    padding: 0 20px;
    color: var(--gray);
    font-size: 0.875rem;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    padding: 0 20px 18px;
    max-height: 600px;
}

.map-section { padding: 0 0 64px; }

.map-container {
    border: 1px solid var(--border-gold);
    border-radius: 14px;
    overflow: hidden;
    height: 400px;
}

.map-container iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3); }

.fee-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.9375rem;
}

.fee-table th, .fee-table td {
    padding: 14px 16px;
    border: 1px solid var(--border);
    text-align: left;
}

.fee-table th {
    background: var(--gold-dim);
    color: var(--gold-light);
    font-weight: 500;
}

.fee-table td { color: var(--gray); }

.table-responsive { overflow-x: auto; margin: 24px 0; }

.table-responsive table,
.content-text table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.content-text table th,
.content-text table td {
    padding: 14px 16px;
    border: 1px solid var(--border);
    text-align: left;
}

.content-text table th {
    background: var(--gold-dim);
    color: var(--gold-light);
}

.contact-form-wrap {
    margin-top: 48px;
    padding: 32px;
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    background: var(--surface-2);
}

.contact-form-wrap h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--white);
}

.contact-form-wrap > p { color: var(--gray); margin-bottom: 24px; }

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form-grid .full { grid-column: 1 / -1; }

.chairman-section { padding: 0 0 48px; }

.chairman-container { max-width: 100%; }

.chairman-image-wrap img {
    width: 100%;
    border-radius: 14px;
    border: 1px solid var(--border-gold);
}

.chairman-message p { color: var(--gray); margin-bottom: 14px; }

.chairman-greeting { color: var(--gold) !important; }

.chairman-name { color: var(--gold-light); font-weight: 600; }

.chairman-title { font-size: 0.875rem; color: var(--gray-dim); }

.page-cta {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.content-wide { max-width: 900px; margin: 0 auto; }

.faq-full .faq-item { margin-bottom: 12px; }

@media (max-width: 768px) {
    .contact-form-grid { grid-template-columns: 1fr; }
}

/* === HOMEPAGE BANKING EXTENSIONS === */

.glass {
    background: var(--glass);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border);
    border-radius: 1rem;
    box-shadow: var(--shadow-glass);
}

.banking-hero { overflow: hidden; }

.banking-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(8, 8, 8, 0.96), rgba(8, 8, 8, 0.72)),
        url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1800&q=80") center/cover;
    z-index: -2;
}

.banking-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 28%, rgba(201, 168, 76, 0.16), transparent 22rem),
        linear-gradient(180deg, transparent 62%, rgba(8, 8, 8, 0.9));
    z-index: -1;
}

.hero-copy { max-width: 620px; }

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.trust-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.06);
    color: var(--gray);
    font-size: 0.78rem;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    padding: clamp(24px, 4vw, 36px);
    isolation: isolate;
}

.portfolio-card::before {
    content: "";
    position: absolute;
    inset: -40% -20% auto;
    height: 180px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transform: rotate(12deg);
    animation: shimmer 4.5s ease-in-out infinite;
    z-index: -1;
}

@keyframes shimmer {
    0%, 45% { translate: -80% 0; opacity: 0; }
    55% { opacity: 1; }
    100% { translate: 110% 0; opacity: 0; }
}

.portfolio-card-head,
.portfolio-metrics,
.portfolio-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.portfolio-card-head h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1.15;
}

.status-pill {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(74, 222, 128, 0.14);
    border: 1px solid rgba(74, 222, 128, 0.34);
    color: var(--success);
    font-size: 0.75rem;
    font-weight: 600;
}

.portfolio-balance { margin: 34px 0; }

.portfolio-balance span,
.portfolio-metrics span,
.portfolio-progress div span:first-child {
    display: block;
    color: var(--gray-dim);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.portfolio-balance strong {
    display: block;
    margin-top: 8px;
    font-size: clamp(2.2rem, 4.2vw, 3.5rem);
    line-height: 1;
    color: var(--gold-light);
}

.portfolio-metrics { margin-bottom: 28px; }

.portfolio-metrics div {
    flex: 1;
    padding: 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
}

.portfolio-metrics strong {
    display: block;
    margin-top: 4px;
    color: var(--white);
    font-size: 1rem;
}

.portfolio-progress { margin-top: 18px; }

.portfolio-progress div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 8px;
    color: var(--gold-light);
    font-size: 0.82rem;
}

.portfolio-progress i {
    display: block;
    height: 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.portfolio-progress i::before {
    content: "";
    display: block;
    width: var(--w);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--gold), var(--success));
    animation: fillBar 1.1s var(--ease) both;
}

@keyframes fillBar {
    from { width: 0; }
}

.portfolio-actions {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.portfolio-actions a {
    color: var(--gold-light);
    font-weight: 600;
    font-size: 0.88rem;
}

.home-video {
    position: relative;
    z-index: 1;
}

.home-video-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-block: 1px solid var(--border);
    background: var(--black);
}

.home-video-frame video {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(72vh, 900px);
    object-fit: contain;
}

.slide-arrows {
    position: absolute;
    right: max(24px, calc((100vw - 1180px) / 2));
    bottom: 34px;
    z-index: 3;
    display: flex;
    gap: 10px;
}

.slide-arrows button {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(8, 8, 8, 0.62);
    backdrop-filter: blur(12px);
    color: var(--white);
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s var(--ease), border-color 0.2s, background 0.2s;
}

.slide-arrows button:hover {
    transform: translateY(-2px);
    border-color: var(--border-gold);
    background: rgba(201, 168, 76, 0.16);
}

/* === HOME SECTION PANELS (Calculator · Testimonials · Customer Care) === */

.home-section-intro {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px 28px;
    align-items: end;
    margin-bottom: 36px;
}

.home-section-intro .kicker,
.home-section-intro h2,
.home-section-intro p {
    grid-column: 1;
}

.home-section-intro .pill {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: end;
    white-space: nowrap;
}

.home-section-intro .kicker { margin-bottom: 0; }

.home-section-intro h2 {
    font-family: var(--font-display);
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    font-weight: 500;
    line-height: 1.15;
    margin: 8px 0 12px;
    color: var(--gold-light);
}

.home-section-intro p {
    color: var(--gray);
    max-width: 640px;
    margin: 0;
    line-height: 1.7;
}

/* Loan Calculator panel */
.calc-panel {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(8, 8, 8, 0.92));
    box-shadow: var(--shadow-glass);
}

.calc-panel-form,
.calc-panel-output {
    padding: clamp(24px, 4vw, 40px);
}

.calc-panel-form {
    background: rgba(17, 17, 17, 0.55);
    border-right: 1px solid var(--border);
}

.calc-panel-label {
    margin-bottom: 20px;
    color: var(--gold-light);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.calc-field { margin-bottom: 18px; }

.calc-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.calc-field input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(8, 8, 8, 0.65);
    color: var(--white);
    font: inherit;
}

.calc-field input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.calc-note {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-top: 8px;
}

.calc-panel-output {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: linear-gradient(160deg, rgba(201, 168, 76, 0.14), rgba(255, 255, 255, 0.04));
}

.calc-result-main {
    padding: 24px;
    border-radius: 18px;
    border: 1px solid var(--border-gold);
    background: rgba(8, 8, 8, 0.45);
}

.calc-result-main span,
.calc-result-grid span {
    display: block;
    color: var(--gray-dim);
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.calc-result-main strong {
    display: block;
    color: var(--gold-light);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
}

.calc-result-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.calc-result-grid div {
    padding: 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(8, 8, 8, 0.38);
}

.calc-result-grid strong {
    color: var(--white);
    font-size: 0.95rem;
}

.calc-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
    padding-top: 8px;
}

/* Testimonials panel */
.testimonials-panel {
    border-radius: 28px;
    border: 1px solid var(--border);
    background: var(--glass);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--shadow-glass);
    overflow: hidden;
}

.testimonials-stage {
    position: relative;
    min-height: 380px;
}

.testimonial-card,
.success-story-card {
    display: none;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: stretch;
    animation: testimonialIn 0.45s var(--ease);
}

.testimonial-card.active,
.success-story-card.active {
    display: grid;
}

@keyframes testimonialIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-photo,
.success-story-img {
    min-height: 380px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.testimonial-photo::after,
.success-story-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 40%, rgba(8, 8, 8, 0.55));
}

.testimonial-body,
.success-story-copy {
    padding: clamp(28px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.testimonial-meta,
.success-story-copy span {
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.testimonial-body blockquote,
.success-story-copy p {
    margin: 0;
    color: var(--gray);
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    line-height: 1.75;
    font-style: normal;
}

.testimonial-body blockquote::before {
    content: "\201C";
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 2.4rem;
    line-height: 1;
}

.testimonial-body cite,
.success-story-copy h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-style: normal;
    color: var(--gold-light);
}

.testimonials-nav,
.success-story-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 24px;
    border-top: 1px solid var(--border);
    background: rgba(8, 8, 8, 0.55);
}

.success-story-controls {
    position: static;
    transform: none;
    border-radius: 0;
    backdrop-filter: none;
}

.success-story-controls button {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.success-story-controls button:hover {
    border-color: var(--border-gold);
    background: rgba(201, 168, 76, 0.16);
}

.success-story-dots {
    display: flex;
    gap: 8px;
}

.success-story-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    background: transparent;
    cursor: pointer;
}

.success-story-dots button.active { background: var(--gold); }

/* Customer Care panel */
.care-panel {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 0;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    background: linear-gradient(145deg, rgba(201, 168, 76, 0.1), rgba(17, 17, 17, 0.95));
    box-shadow: var(--shadow-glass);
}

.care-panel-content {
    padding: clamp(28px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.care-panel-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.2vw, 2.6rem);
    line-height: 1.15;
    margin: 10px 0 16px;
    color: var(--gold-light);
}

.care-panel-content > p {
    color: var(--gray);
    line-height: 1.75;
    max-width: 52ch;
}

.care-services {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 28px 0;
}

.care-services li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(8, 8, 8, 0.45);
}

.care-services strong {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--gold-dim);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    font-size: 0.72rem;
}

.care-services span {
    color: var(--white);
    font-size: 0.875rem;
}

.care-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.care-panel-visual {
    position: relative;
    min-height: 420px;
    border-left: 1px solid var(--border);
}

.care-panel-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.08) contrast(1.03);
}

.care-panel-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.05), rgba(8, 8, 8, 0.45));
    pointer-events: none;
}

.care-panel-badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    z-index: 2;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid var(--border-gold);
    background: rgba(8, 8, 8, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--gold-light);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.chairman-signoff {
    margin-top: 20px;
    color: var(--gray) !important;
}

@media (max-width: 1024px) {
    .home-section-intro {
        grid-template-columns: 1fr;
    }

    .home-section-intro .pill {
        grid-column: 1;
        grid-row: auto;
        justify-self: start;
    }

    .calc-panel,
    .care-panel { grid-template-columns: 1fr; }

    .calc-panel-form { border-right: none; border-bottom: 1px solid var(--border); }

    .care-panel-visual {
        border-left: none;
        border-top: 1px solid var(--border);
        min-height: 320px;
    }

    .testimonial-card.active,
    .success-story-card.active { grid-template-columns: 1fr; }

    .testimonial-photo,
    .success-story-img { min-height: 260px; }

    .testimonial-photo::after,
    .success-story-img::after {
        background: linear-gradient(180deg, transparent, rgba(8, 8, 8, 0.55));
    }
}

@media (max-width: 768px) {
    .home-video-frame video { max-height: 56vh; }

    .testimonials-stage { min-height: 0; }

    .care-services { grid-template-columns: 1fr; }

    .calc-result-grid { grid-template-columns: 1fr; }

    .slide-arrows { right: 24px; bottom: 82px; }
}

@media (max-width: 480px) {
    .home-video-frame video { max-height: 48vh; }
}
