*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
            --bg-body: #ffffff;
            --bg-secondary: #f8f7f5;
            --bg-header: #454545;
            --bg-dark: #141414;
            --text-primary: #111111;
            --text-secondary: #666666;
            --border-light: #e8e5e0;
            --gold: #c4a052;
            --container-padding: 8vw;
            --section-gap: 130px;
        }
html { scroll-behavior: smooth; }
body {
            margin: 0;
            font-family: 'Manrope', sans-serif;
            background-color: var(--bg-body);
            color: var(--text-primary);
            font-size: 16px;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
a, a:visited, a:active {
            text-decoration: none !important;
            color: inherit;
            transition: 0.25s ease;
        }
.page-title-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 320px;
            border-bottom: 1px solid var(--border-light);
        }
.page-title-left {
            padding: clamp(48px, 7vw, 100px) var(--container-padding);
            border-right: 1px solid var(--border-light);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }
.page-label {
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }
.page-title-left h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(36px, 5vw, 64px);
            font-weight: 400;
            font-style: italic;
            line-height: 1.1;
            color: var(--text-primary);
        }
.page-title-right {
            padding: clamp(48px, 7vw, 100px) var(--container-padding);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            gap: 32px;
        }
.page-intro {
            font-size: clamp(15px, 1.4vw, 18px);
            font-weight: 300;
            line-height: 1.75;
            color: var(--text-secondary);
            max-width: 480px;
        }
.page-stats {
            display: flex;
            gap: 40px;
            padding-top: 24px;
            border-top: 1px solid var(--border-light);
        }
.stat-item {}
.stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 400;
            color: var(--text-primary);
            line-height: 1;
        }
.stat-label {
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--text-secondary);
            margin-top: 6px;
        }
.brand-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 420px;
            border-bottom: 1px solid var(--border-light);
        }
.brand-section--reverse {
            direction: rtl;
        }
.brand-section--reverse > * {
            direction: ltr;
        }
.brand-logo-panel {
            background-color: #454545;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px;
            border-right: none;
        }
.brand-section--reverse .brand-logo-panel {
            border-right: none;
            border-left: none;
        }
.brand-logo-panel img {
            max-width: 220px;
            max-height: 80px;
            width: 100%;
            object-fit: contain;
            filter: brightness(0) invert(1);
            opacity: 0.85;
            transition: opacity 0.3s;
        }
.brand-logo-panel:hover img {
            opacity: 1;
        }
.brand-logo-panel.logo-white img {
            filter: none;
            opacity: 0.82;
        }
.brand-logo-panel.logo-white:hover img {
            opacity: 1;
        }
.brand-content-panel {
            padding: clamp(40px, 5vw, 80px) clamp(32px, 4vw, 64px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-left: 1px solid var(--border-light);
        }
.brand-section--reverse .brand-content-panel {
            border-left: none;
            border-right: 1px solid var(--border-light);
        }
.brand-category {
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 14px;
        }
.brand-name {
            font-family: 'Playfair Display', serif;
            font-size: clamp(26px, 3vw, 40px);
            font-weight: 400;
            line-height: 1.15;
            color: var(--text-primary);
            margin-bottom: 24px;
        }
.brand-description {
            font-size: 15px;
            font-weight: 300;
            line-height: 1.8;
            color: var(--text-secondary);
            max-width: 440px;
        }
.brand-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 32px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--text-primary);
            text-decoration: none;
            transition: gap 0.25s;
        }
.brand-link:hover { gap: 16px; }
.brand-link .arrow {
            font-size: 16px;
            transition: transform 0.25s;
        }
.brand-link:hover .arrow { transform: translateX(4px); }
.partners-intro {
            padding: clamp(48px, 6vw, 96px) var(--container-padding);
            background-color: var(--bg-secondary);
            border-bottom: 1px solid var(--border-light);
            text-align: center;
        }
.partners-intro-label {
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--text-secondary);
            margin-bottom: 16px;
        }
.partners-intro-heading {
            font-family: 'Playfair Display', serif;
            font-size: clamp(20px, 2.5vw, 30px);
            font-weight: 400;
            color: var(--text-primary);
            max-width: 640px;
            margin: 0 auto;
            line-height: 1.4;
        }
.cta-strip {
            background-color: #f8f7f5;
            border-top: 1px solid #e8e5e0;
            padding: clamp(64px, 8vw, 120px) var(--container-padding);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }
.cta-strip-left {}
.cta-strip-eyebrow {
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #666666;
            margin-bottom: 16px;
        }
.cta-strip-heading {
            font-family: 'Playfair Display', serif;
            font-size: clamp(28px, 4vw, 52px);
            font-weight: 400;
            font-style: italic;
            color: #111111;
            line-height: 1.2;
            max-width: 520px;
        }
.cta-strip-right {}
.cta-button {
            display: inline-block;
            padding: 18px 40px;
            background: transparent;
            border: 1px solid rgba(0,0,0,0.3);
            color: #111111;
            font-family: 'Manrope', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            text-decoration: none;
            transition: background 0.25s, border-color 0.25s;
            white-space: nowrap;
        }
.cta-button:hover {
            background: #111111;
            color: #ffffff;
            border-color: #111111;
        }
.footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.35);
        }
.footer-copy {
            font-size: 11px;
            color: rgba(255,255,255,0.25);
        }
@media (max-width: 900px) {
.page-title-block {
                grid-template-columns: 1fr;
            }
.page-title-left {
                border-right: none;
                border-bottom: 1px solid var(--border-light);
            }
.brand-section,
            .brand-section--reverse {
                grid-template-columns: 1fr;
                direction: ltr;
            }
.brand-logo-panel {
                min-height: 220px;
                padding: 40px;
                border-right: none !important;
            }
.brand-content-panel {
                border-left: none !important;
                border-right: none !important;
                border-top: 1px solid var(--border-light);
            }
.cta-strip {
                flex-direction: column;
                align-items: flex-start;
            }
}
