/* ============================================================================
 * VALTIERI GROUP — SHARED COMPONENTS v1.0
 * Premium institutional component library
 * Used across all brands: Valtieri, Presidio, Vibrato, Vigilio
 * ============================================================================ */

/* ============================================================================
 * PAGE HERO — Inner page header (not homepage hero)
 * ============================================================================ */

.page-hero {
    padding: var(--space-20) 0 var(--space-12);
    text-align: center;
}

.page-hero .container {
    max-width: var(--max-w-prose);
}

.page-hero__kicker {
    display: block;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--accent-color, var(--vg-accent));
    margin-bottom: var(--space-5);
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(var(--text-2xl), 5vw, var(--text-4xl));
    font-weight: var(--weight-light);
    line-height: var(--leading-tight);
    letter-spacing: -0.03em;
    color: var(--grey-900);
    margin-bottom: var(--space-6);
}

.page-hero__lead {
    font-size: var(--text-md);
    line-height: var(--leading-relaxed);
    color: var(--grey-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================================
 * KICKER — Standalone eyebrow text
 * ============================================================================ */

.kicker {
    display: block;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--accent-color, var(--vg-accent));
    margin-bottom: var(--space-4);
}

/* ============================================================================
 * SECTION TITLE — Enhanced h2 with optional divider
 * ============================================================================ */

.section-title {
    font-family: var(--font-display);
    font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
    font-weight: var(--weight-light);
    line-height: var(--leading-snug);
    color: var(--grey-900);
    margin-bottom: var(--space-5);
}

.section-title--center {
    text-align: center;
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 1px;
    background: var(--accent-color, var(--vg-accent));
    margin-top: var(--space-5);
}

.section-title--center::after {
    margin-left: auto;
    margin-right: auto;
}

.section-title--no-rule::after {
    display: none;
}

/* ============================================================================
 * CALLOUT — Bordered highlight block
 * ============================================================================ */

.callout {
    padding: var(--space-8);
    background: #FFFFFF;
    border-left: 3px solid var(--accent-color, var(--vg-accent));
    margin: var(--space-8) 0;
}

.callout__title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: var(--weight-regular);
    color: var(--grey-900);
    margin-bottom: var(--space-4);
}

.callout__text {
    font-size: var(--text-base);
    color: var(--grey-700);
    line-height: var(--leading-relaxed);
}

.callout__text + .callout__text {
    margin-top: var(--space-4);
}

.callout--subtle {
    background: var(--grey-50);
    border-left-color: var(--grey-300);
}

.callout--centered {
    border-left: none;
    border-top: 3px solid var(--accent-color, var(--vg-accent));
    text-align: center;
    max-width: var(--max-w-prose);
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================================
 * PILL — Inline tag / badge
 * ============================================================================ */

.pill {
    display: inline-flex;
    align-items: center;
    padding: var(--space-1) var(--space-3);
    font-family: var(--font-data);
    font-size: 0.6875rem;
    font-weight: var(--weight-medium);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    line-height: 1.4;
    border: 1px solid var(--accent-color, var(--vg-accent));
    color: var(--accent-color, var(--vg-accent));
}

.pill--filled {
    background: var(--accent-color, var(--vg-accent));
    color: #FFFFFF;
    border-color: transparent;
}

.pill--subtle {
    background: var(--grey-50);
    border-color: var(--grey-200);
    color: var(--grey-700);
}

/* ============================================================================
 * LIST STYLES — Check marks, dashes, clean
 * ============================================================================ */

.list-check {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-check li {
    position: relative;
    padding-left: var(--space-6);
    font-size: var(--text-sm);
    color: var(--grey-700);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-3);
}

.list-check li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 14px;
    height: 7px;
    border-left: 1.5px solid var(--accent-color, var(--vg-accent));
    border-bottom: 1.5px solid var(--accent-color, var(--vg-accent));
    transform: rotate(-45deg);
}

.list-dash {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-dash li {
    position: relative;
    padding-left: var(--space-5);
    font-size: var(--text-sm);
    color: var(--grey-700);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-3);
}

.list-dash li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent-color, var(--vg-accent));
}

/* ============================================================================
 * CARDS — Premium enhancements
 * ============================================================================ */

.card--accent-top {
    border-top: 2px solid var(--accent-color, var(--vg-accent));
}

.card--accent-left {
    border-left: 3px solid var(--accent-color, var(--vg-accent));
}

.card--featured {
    border: 1.5px solid var(--accent-color, var(--vg-accent));
    box-shadow: var(--shadow-sm);
}

.card__number {
    font-family: var(--font-data);
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    letter-spacing: var(--tracking-wider);
    color: var(--accent-color, var(--vg-accent));
    margin-bottom: var(--space-4);
    display: block;
}

.card__kicker {
    display: block;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--accent-color, var(--vg-accent));
    margin-bottom: var(--space-3);
}

.card__title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: var(--weight-regular);
    color: var(--grey-900);
    margin-bottom: var(--space-3);
    line-height: var(--leading-snug);
}

.card__subtitle {
    font-size: var(--text-sm);
    color: var(--grey-600);
    font-style: italic;
    margin-bottom: var(--space-5);
}

.card__body {
    font-size: var(--text-sm);
    color: var(--grey-700);
    line-height: var(--leading-relaxed);
}

.card__body p + p {
    margin-top: var(--space-4);
}

.card__body h4 {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-wide);
    color: var(--grey-900);
    margin-bottom: var(--space-3);
    margin-top: var(--space-6);
}

.card__body h4:first-child {
    margin-top: 0;
}

.card__footer {
    margin-top: var(--space-6);
    padding-top: var(--space-5);
    border-top: var(--border-subtle);
}

.card__action {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--accent-color, var(--vg-accent));
    text-decoration: none;
    transition: gap var(--duration-normal) var(--ease-default);
}

.card__action:hover {
    gap: var(--space-3);
}

.card__action::after {
    content: '\2192';
}

/* ============================================================================
 * TABLE PREMIUM — Styled comparison / data table
 * ============================================================================ */

.table-premium {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--text-sm);
    margin: var(--space-8) 0;
}

.table-premium thead th {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--grey-600);
    padding: var(--space-4) var(--space-5);
    border-bottom: 2px solid var(--grey-200);
    text-align: left;
}

.table-premium tbody td {
    padding: var(--space-4) var(--space-5);
    border-bottom: var(--border-subtle);
    color: var(--grey-700);
    line-height: var(--leading-relaxed);
    vertical-align: top;
}

.table-premium tbody tr:last-child td {
    border-bottom: none;
}

.table-premium tbody td:first-child {
    font-weight: var(--weight-medium);
    color: var(--grey-900);
    white-space: nowrap;
    width: 160px;
}

.table-premium tbody td:last-child {
    color: var(--grey-900);
    font-weight: var(--weight-medium);
}

.table-premium--highlight-last tbody td:last-child {
    background: rgba(168, 147, 90, 0.04);
}

@media (max-width: 768px) {
    .table-premium {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .table-premium tbody td:first-child {
        white-space: normal;
        width: auto;
        min-width: 120px;
    }
}

/* ============================================================================
 * CTA BAND — Full-width call-to-action section
 * ============================================================================ */

.cta-band {
    padding: var(--space-16) 0;
    text-align: center;
    background: #FFFFFF;
}

.cta-band .container {
    max-width: var(--max-w-prose);
}

.cta-band__title {
    font-family: var(--font-display);
    font-size: clamp(var(--text-xl), 3vw, var(--text-2xl));
    font-weight: var(--weight-light);
    color: var(--grey-900);
    margin-bottom: var(--space-5);
    line-height: var(--leading-snug);
}

.cta-band__text {
    font-size: var(--text-base);
    color: var(--grey-600);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
}

.cta-band--dark {
    background: var(--grey-900);
}

.cta-band--dark .cta-band__title {
    color: #FFFFFF;
}

.cta-band--dark .cta-band__text {
    color: rgba(255, 255, 255, 0.6);
}

.cta-band--surface {
    background: var(--grey-50);
}

/* ============================================================================
 * PROCESS / STEPS — Numbered vertical process
 * ============================================================================ */

.process {
    display: grid;
    gap: 0;
    counter-reset: process-step;
    max-width: var(--max-w-content);
    margin: 0 auto;
}

.process__step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: var(--space-6);
    padding: var(--space-8) 0;
    border-bottom: var(--border-subtle);
    counter-increment: process-step;
    position: relative;
}

.process__step:last-child {
    border-bottom: none;
}

.process__number {
    font-family: var(--font-data);
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    color: var(--accent-color, var(--vg-accent));
    letter-spacing: var(--tracking-wider);
    padding-top: var(--space-1);
}

.process__number::before {
    content: counter(process-step, decimal-leading-zero);
}

.process__title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: var(--weight-regular);
    color: var(--grey-900);
    margin-bottom: var(--space-2);
    line-height: var(--leading-snug);
}

.process__tagline {
    font-size: var(--text-sm);
    color: var(--accent-color, var(--vg-accent));
    font-style: italic;
    margin-bottom: var(--space-4);
}

.process__text {
    font-size: var(--text-sm);
    color: var(--grey-700);
    line-height: var(--leading-relaxed);
}

.process__text p + p {
    margin-top: var(--space-4);
}

@media (max-width: 480px) {
    .process__step {
        grid-template-columns: 40px 1fr;
        gap: var(--space-4);
    }
}

/* ============================================================================
 * FEATURE GRID — Clean feature/highlight blocks
 * ============================================================================ */

.feature-grid {
    display: grid;
    gap: var(--space-6);
}

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

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

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

@media (max-width: 1024px) {
    .feature-grid--3,
    .feature-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .feature-grid--2,
    .feature-grid--3,
    .feature-grid--4 {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    padding: var(--space-6);
    background: #FFFFFF;
    border: var(--border-subtle);
    transition: border-color var(--duration-normal) var(--ease-default),
                box-shadow var(--duration-normal) var(--ease-default);
}

.feature-item:hover {
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: var(--shadow-xs);
}

.feature-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--accent-color, var(--vg-accent));
    margin-bottom: var(--space-5);
    font-size: var(--text-lg);
}

.feature-item__title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: var(--weight-regular);
    color: var(--grey-900);
    margin-bottom: var(--space-3);
    line-height: var(--leading-snug);
}

.feature-item__text {
    font-size: var(--text-sm);
    color: var(--grey-700);
    line-height: var(--leading-relaxed);
}

/* ============================================================================
 * MANDATE / PRICING CARDS
 * ============================================================================ */

.mandate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    align-items: start;
}

@media (max-width: 1024px) {
    .mandate-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

.mandate-card {
    background: #FFFFFF;
    border: var(--border-subtle);
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color var(--duration-normal) var(--ease-default);
}

.mandate-card:hover {
    border-color: rgba(0, 0, 0, 0.12);
}

.mandate-card--featured {
    border: 1.5px solid var(--accent-color, var(--vg-accent));
    box-shadow: var(--shadow-sm);
}

.mandate-card__badge {
    position: absolute;
    top: 0;
    right: var(--space-6);
    transform: translateY(-50%);
    background: var(--accent-color, var(--vg-accent));
    color: #FFFFFF;
    font-family: var(--font-data);
    font-size: 0.6875rem;
    font-weight: var(--weight-medium);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    padding: var(--space-1) var(--space-4);
}

.mandate-card__title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: var(--weight-regular);
    color: var(--grey-900);
    margin-bottom: var(--space-2);
}

.mandate-card__subtitle {
    font-size: var(--text-sm);
    color: var(--grey-600);
    font-style: italic;
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-6);
    border-bottom: var(--border-subtle);
}

.mandate-card__section-title {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--grey-500);
    margin-bottom: var(--space-3);
    margin-top: var(--space-6);
}

.mandate-card__section-title:first-of-type {
    margin-top: 0;
}

.mandate-card__text {
    font-size: var(--text-sm);
    color: var(--grey-700);
    line-height: var(--leading-relaxed);
}

.mandate-card__action {
    margin-top: auto;
    padding-top: var(--space-6);
}

.mandate-card__action .btn {
    width: 100%;
    justify-content: center;
}

/* ============================================================================
 * SERVICE CARDS — For prestations / services pages
 * ============================================================================ */

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    padding: var(--space-6) var(--space-8);
    background: #FFFFFF;
    border: var(--border-subtle);
    border-left: 3px solid var(--accent-color, var(--vg-accent));
    transition: border-color var(--duration-normal) var(--ease-default),
                box-shadow var(--duration-normal) var(--ease-default);
}

.service-card:hover {
    box-shadow: var(--shadow-xs);
}

.service-card__title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: var(--weight-regular);
    color: var(--grey-900);
    margin-bottom: var(--space-3);
    line-height: var(--leading-snug);
}

.service-card__text {
    font-size: var(--text-sm);
    color: var(--grey-700);
    line-height: var(--leading-relaxed);
}

/* ============================================================================
 * SPLIT LAYOUT — 2-column asymmetric content
 * ============================================================================ */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    align-items: start;
}

.split--wide-left {
    grid-template-columns: 3fr 2fr;
}

.split--wide-right {
    grid-template-columns: 2fr 3fr;
}

@media (max-width: 768px) {
    .split,
    .split--wide-left,
    .split--wide-right {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
}

/* ============================================================================
 * PROSE — Long-form text styling
 * ============================================================================ */

.prose {
    max-width: var(--max-w-prose);
}

.prose p {
    font-size: var(--text-base);
    color: var(--grey-700);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-5);
}

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

.prose--centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ============================================================================
 * SECTION VARIANTS
 * ============================================================================ */

.section--surface {
    background: var(--grey-50);
}

.section--white {
    background: #FFFFFF;
}

/* ============================================================================
 * RESPONSIVE UTILITIES
 * ============================================================================ */

@media (max-width: 768px) {
    .page-hero {
        padding: var(--space-16) 0 var(--space-8);
    }

    .cta-band {
        padding: var(--space-10) 0;
    }

    .process__step {
        padding: var(--space-6) 0;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: var(--space-12) 0 var(--space-6);
    }
}

/* ============================================================================
 * TRUST RIBBON — Horizontal institutional trust badges
 * ============================================================================ */

.trust-ribbon {
    padding: var(--space-10) 0;
    border-top: var(--border-subtle);
    border-bottom: var(--border-subtle);
    overflow: hidden;
}

.trust-ribbon__label {
    display: block;
    text-align: center;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--grey-400);
    margin-bottom: var(--space-6);
}

.trust-ribbon__track {
    display: flex;
    align-items: center;
    gap: var(--space-10);
    white-space: nowrap;
}

.trust-ribbon__item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    opacity: 0.5;
    transition: opacity var(--duration-normal) var(--ease-default);
}

.trust-ribbon__item:hover {
    opacity: 0.8;
}

.trust-ribbon__item img,
.trust-ribbon__item svg {
    height: 32px;
    width: auto;
}

/* Static grid variant (no marquee) */
.trust-ribbon--grid .trust-ribbon__track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-8);
    white-space: normal;
}

@media (max-width: 768px) {
    .trust-ribbon__track {
        gap: var(--space-6);
    }
    .trust-ribbon__item img,
    .trust-ribbon__item svg {
        height: 26px;
    }
}

/* ============================================================================
 * HERO LUXURY — Full viewport editorial hero
 * ============================================================================ */

.hero-luxury {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--luxury-ivory, var(--vg-surface));
}

.hero-luxury--dark {
    background: var(--luxury-ink);
}

.hero-luxury--dark .hero-luxury__title,
.hero-luxury--dark .hero-luxury__subtitle {
    color: #FFFFFF;
}

.hero-luxury--dark .hero-luxury__lead {
    color: rgba(255, 255, 255, 0.6);
}

.hero-luxury__inner {
    text-align: center;
    max-width: var(--max-w-content);
    padding: var(--space-20) var(--space-6);
    position: relative;
    z-index: 1;
}

.hero-luxury__kicker {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--accent-color, var(--luxury-gold));
    margin-bottom: var(--space-6);
    padding: var(--space-2) var(--space-5);
    border: 1px solid var(--accent-color, var(--luxury-gold));
}

.hero-luxury__title {
    font-family: var(--font-display);
    font-size: clamp(var(--text-3xl), 7vw, var(--text-6xl, 5rem));
    font-weight: var(--weight-light);
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--grey-900);
    margin-bottom: var(--space-6);
}

.hero-luxury__subtitle {
    font-family: var(--font-display);
    font-size: clamp(var(--text-lg), 2.5vw, var(--text-2xl));
    font-weight: var(--weight-light);
    line-height: var(--leading-snug);
    color: var(--grey-700);
    margin-bottom: var(--space-5);
}

.hero-luxury__lead {
    font-size: var(--text-md);
    line-height: var(--leading-relaxed);
    color: var(--grey-500);
    max-width: 640px;
    margin: 0 auto var(--space-8);
}

.hero-luxury__divider {
    width: 48px;
    height: 1px;
    background: var(--gradient-gold, var(--luxury-gold));
    margin: var(--space-6) auto;
}

.hero-luxury__actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-8);
}

@media (max-width: 768px) {
    .hero-luxury {
        min-height: 75vh;
    }
    .hero-luxury__inner {
        padding: var(--space-16) var(--space-5);
    }
}

@media (max-width: 480px) {
    .hero-luxury {
        min-height: 65vh;
    }
    .hero-luxury__actions {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================================================
 * STAT BLOCK — Premium metric display
 * ============================================================================ */

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.stat-block {
    text-align: center;
    padding: var(--space-8) var(--space-5);
    position: relative;
}

.stat-block::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: var(--grey-200);
}

.stat-block:last-child::after {
    display: none;
}

.stat-block__value {
    font-family: var(--font-display);
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    font-weight: var(--weight-light);
    color: var(--accent-color, var(--luxury-gold));
    line-height: 1;
    margin-bottom: var(--space-3);
    letter-spacing: -0.02em;
}

.stat-block__label {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--grey-500);
    line-height: var(--leading-relaxed);
}

.stat-block__context {
    font-size: var(--text-xs);
    color: var(--grey-400);
    margin-top: var(--space-2);
}

/* Dark variant */
.stat-grid--dark {
    background: var(--luxury-ink);
    padding: var(--space-12) var(--space-8);
}

.stat-grid--dark .stat-block__value {
    color: var(--luxury-gold);
}

.stat-grid--dark .stat-block__label {
    color: rgba(255, 255, 255, 0.5);
}

.stat-grid--dark .stat-block::after {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-block:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .stat-grid {
        grid-template-columns: 1fr;
    }
    .stat-block::after {
        display: none;
    }
    .stat-block {
        border-bottom: var(--border-subtle);
        padding: var(--space-6) 0;
    }
    .stat-block:last-child {
        border-bottom: none;
    }
}

/* ============================================================================
 * ACCORDION — Expandable content sections (pairs with luxury.js)
 * ============================================================================ */

.accordion {
    max-width: var(--max-w-content);
    margin: 0 auto;
}

.accordion__item {
    border-bottom: var(--border-subtle);
}

.accordion__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-6) 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: var(--weight-regular);
    color: var(--grey-900);
    line-height: var(--leading-snug);
    transition: color var(--duration-normal) var(--ease-default);
}

.accordion__trigger:hover {
    color: var(--accent-color, var(--luxury-gold));
}

.accordion__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    position: relative;
    margin-left: var(--space-5);
}

.accordion__icon::before,
.accordion__icon::after {
    content: '';
    position: absolute;
    background: var(--grey-400);
    transition: transform var(--duration-normal) var(--ease-default);
}

.accordion__icon::before {
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    transform: translateY(-50%);
}

.accordion__icon::after {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
}

.accordion__trigger.active .accordion__icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.accordion__panel {
    padding: 0 0 var(--space-6);
}

.accordion__panel p {
    font-size: var(--text-sm);
    color: var(--grey-600);
    line-height: var(--leading-relaxed);
}

.accordion__panel p + p {
    margin-top: var(--space-4);
}

/* ============================================================================
 * MARQUEE — Infinite horizontal scroll container (pairs with luxury.js)
 * ============================================================================ */

.marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee::before,
.marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 1;
    pointer-events: none;
}

.marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--vg-surface, #FAFAF8), transparent);
}

.marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--vg-surface, #FAFAF8), transparent);
}

.marquee__track {
    display: inline-flex;
    gap: var(--space-10);
    align-items: center;
    will-change: transform;
}

.marquee__item {
    flex-shrink: 0;
}

/* ============================================================================
 * SECTION DARK — Premium dark section with gold accents
 * ============================================================================ */

.section--dark {
    background: var(--luxury-ink);
    color: #FFFFFF;
}

.section--dark h2,
.section--dark h3 {
    color: #FFFFFF;
}

.section--dark p {
    color: rgba(255, 255, 255, 0.6);
}

.section--dark .kicker {
    color: var(--luxury-gold);
}

.section--dark .section-title::after {
    background: var(--luxury-gold);
}

.section--dark .card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.section--dark .card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

.section--dark .card__title,
.section--dark .feature-item__title {
    color: #FFFFFF;
}

.section--dark .card__body,
.section--dark .feature-item__text {
    color: rgba(255, 255, 255, 0.6);
}

.section--dark .feature-item {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
}

.section--dark .feature-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

/* ============================================================================
 * SECTION GRADIENT — Subtle warm gradient background
 * ============================================================================ */

.section--gradient {
    background: var(--gradient-surface, linear-gradient(180deg, #FAF9F6, #F5F3EE));
}

/* ============================================================================
 * EDITORIAL IMAGE — Premium full-width image with caption
 * ============================================================================ */

.editorial-image {
    position: relative;
    overflow: hidden;
    margin: var(--space-10) 0;
}

.editorial-image__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.editorial-image--tall .editorial-image__img {
    height: 480px;
}

.editorial-image--wide {
    margin-left: calc(-1 * var(--space-6));
    margin-right: calc(-1 * var(--space-6));
}

.editorial-image__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-10) var(--space-8) var(--space-6);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
}

.editorial-image__caption strong {
    color: #FFFFFF;
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: var(--weight-regular);
    margin-bottom: var(--space-2);
}

/* ============================================================================
 * QUOTE BLOCK — Premium pull quote
 * ============================================================================ */

.quote-block {
    position: relative;
    padding: var(--space-10) var(--space-12);
    max-width: var(--max-w-prose);
    margin: var(--space-12) auto;
    text-align: center;
}

.quote-block::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 6rem;
    line-height: 1;
    color: var(--accent-color, var(--luxury-gold));
    opacity: 0.3;
    position: absolute;
    top: -0.2em;
    left: 50%;
    transform: translateX(-50%);
}

.quote-block__text {
    font-family: var(--font-display);
    font-size: clamp(var(--text-lg), 2.5vw, var(--text-2xl));
    font-weight: var(--weight-light);
    line-height: var(--leading-snug);
    color: var(--grey-800);
    font-style: italic;
    position: relative;
}

.quote-block__attribution {
    margin-top: var(--space-6);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    letter-spacing: var(--tracking-wide);
    color: var(--grey-500);
}

/* ============================================================================
 * SCROLL PROGRESS BAR (pairs with luxury.js)
 * ============================================================================ */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--gradient-gold, var(--luxury-gold));
    z-index: 9999;
    transition: width 50ms linear;
    pointer-events: none;
}

/* ============================================================================
 * GOLD DIVIDER — Premium gradient divider
 * ============================================================================ */

.divider--gold {
    background: var(--gradient-gold, var(--luxury-gold));
    height: 2px;
}

/* ============================================================================
 * BUTTON PREMIUM VARIANTS
 * ============================================================================ */

.btn--luxury {
    background: var(--luxury-ink);
    color: var(--luxury-gold);
    border-color: var(--luxury-gold);
    letter-spacing: var(--tracking-widest);
}

.btn--luxury:hover {
    background: var(--luxury-gold);
    color: var(--luxury-ink);
}

.btn--ghost {
    background: transparent;
    color: var(--grey-700);
    border-color: var(--grey-300);
}

.btn--ghost:hover {
    border-color: var(--grey-900);
    color: var(--grey-900);
}

/* ============================================================================
 * CARD LUXURY — Premium card with subtle hover
 * ============================================================================ */

.card--luxury {
    border: none;
    box-shadow: var(--shadow-luxury);
    background: #FFFFFF;
}

.card--luxury:hover {
    box-shadow: var(--shadow-luxury-hover);
    transform: translateY(-4px);
}

/* ============================================================================
 * RESPONSIVE UTILITIES (luxury additions)
 * ============================================================================ */

@media (max-width: 768px) {
    .quote-block {
        padding: var(--space-6) var(--space-4);
    }
    .editorial-image--wide {
        margin-left: calc(-1 * var(--space-5));
        margin-right: calc(-1 * var(--space-5));
    }
    .editorial-image--tall .editorial-image__img {
        height: 320px;
    }
}

/* ============================================================================
 * PRINT
 * ============================================================================ */

@media print {
    .cta-band { display: none; }
    .trust-ribbon { page-break-inside: avoid; }
    .marquee { display: none; }
    .scroll-progress { display: none; }

    .card, .feature-item, .service-card, .mandate-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
