/* ==========================================================================
   AA Traders — Master Stylesheet (v3 · Black Gold Luxury)
   Design language: editorial luxury · black + grey + warm gold
   ========================================================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Palette — warm charcoal + embossed gold (business-card inspired) */
    --black:        #101010;
    --ink:          #151515;
    --graphite:     #1b1b1b;
    --graphite-2:   #202020;
    --charcoal:     #262626;
    --steel:        #2e2e2e;
    --smoke:        #3a3a3a;
    --ash:          #5a5a5a;
    --silver:       #8a8a8a;
    --pearl:        #b8b8b8;
    --gold:         #c9a24b;
    --gold-2:       #b0882e;
    --gold-3:       #e3c678;
    --gold-4:       #f4e0a1;
    --cream:        #f5f1e8;
    --cream-soft:   #faf7ef;
    --line-light:   rgba(201, 162, 75, 0.12);
    --line-dark:    rgba(255, 255, 255, 0.08);
    --line-darker:  rgba(0, 0, 0, 0.08);

    /* Design tokens */
    --radius-sm:    6px;
    --radius:       12px;
    --radius-lg:    20px;
    --radius-xl:    30px;
    --shadow-xs:    0 1px 3px rgba(0, 0, 0, 0.25);
    --shadow-sm:    0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-md:    0 12px 32px rgba(0, 0, 0, 0.35);
    --shadow-lg:    0 30px 60px rgba(0, 0, 0, 0.45);
    --shadow-gold:  0 20px 40px rgba(201, 162, 75, 0.25);
    --ease:         cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition:   all 0.45s var(--ease);
    --container:    1320px;
    --container-tight: 1100px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--black);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    background: var(--black);
    overflow-x: hidden;
    font-feature-settings: "ss01", "cv11";
    position: relative;
}

/* Subtle paper-like grain — mirrors the business card texture */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.35;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

main, .header, .footer, .hero, .section, .page-hero, .cta-section { position: relative; z-index: 2; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s var(--ease); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--gold); color: var(--black); }

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    line-height: 1.1;
    color: white;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.75rem, 6vw, 5.75rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.035em;
}

h2 {
    font-size: clamp(2.25rem, 4.2vw, 3.85rem);
    font-weight: 400;
    letter-spacing: -0.025em;
}

h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 500; }
h4 { font-size: 1.25rem; font-weight: 500; }

p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.68);
}

.lead {
    font-size: clamp(1.1rem, 1.4vw, 1.3rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.eyebrow.center {
    display: inline-flex;
    align-items: center;
}

.eyebrow.center::after {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
    margin-left: 0.7rem;
}

.italic-serif {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--gold-3);
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.75rem;
}

.container-tight {
    max-width: var(--container-tight);
    margin: 0 auto;
    padding: 0 1.75rem;
}

.gold-text {
    background: linear-gradient(135deg, var(--gold-4) 0%, var(--gold-3) 40%, var(--gold) 70%, var(--gold-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    font-weight: 400;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 1rem 1.9rem;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 50px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn svg { width: 16px; height: 16px; transition: transform 0.4s var(--ease); }
.btn:hover svg { transform: translateX(5px); }

.btn-gold {
    background: linear-gradient(135deg, var(--gold-3) 0%, var(--gold) 55%, var(--gold-2) 100%);
    color: var(--black);
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(201, 162, 75, 0.18);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    filter: brightness(1.05);
}

.btn-light {
    background: white;
    color: var(--black);
    font-weight: 600;
}

.btn-light:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    color: var(--gold-3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: white;
    color: var(--black);
    border-color: white;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--gold-3);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-dark {
    background: var(--graphite);
    color: white;
    border: 1px solid var(--steel);
}

.btn-dark:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn-lg { padding: 1.15rem 2.4rem; font-size: 0.95rem; }

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold-3);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gold);
    transition: var(--transition);
}

.btn-link:hover { color: var(--gold); gap: 1rem; border-color: var(--gold-3); }

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.72);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.92);
    border-bottom-color: var(--line-dark);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.75rem;
    max-width: var(--container);
    margin: 0 auto;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    transition: opacity 0.3s var(--ease);
}

.logo:hover { opacity: 0.85; }

.logo-img {
    height: 54px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu a {
    position: relative;
    font-size: 0.86rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    letter-spacing: 0.01em;
    padding: 0.4rem 0;
    transition: color 0.3s var(--ease);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease);
}

.nav-menu a:hover {
    color: var(--gold-3);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-menu a.active {
    color: var(--gold);
}

.nav-cta { display: flex; align-items: center; gap: 1rem; }

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: var(--graphite);
    border: 1px solid var(--steel);
    border-radius: 50%;
    color: var(--gold);
    transition: var(--transition);
}

.mobile-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: currentColor;
    transition: var(--transition);
}

.mobile-toggle.active { background: var(--gold); color: var(--black); }

.mobile-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    position: relative;
    padding: 11rem 0 8rem;
    background: var(--black);
    color: white;
    overflow: hidden;
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 1200px 600px at 18% 10%, rgba(201, 162, 75, 0.18), transparent 55%),
        radial-gradient(ellipse 900px 600px at 100% 100%, rgba(201, 162, 75, 0.1), transparent 55%);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 90px 90px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 80%);
    z-index: -1;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(201, 162, 75, 0.08);
    border: 1px solid rgba(201, 162, 75, 0.25);
    border-radius: 50px;
    font-size: 0.72rem;
    color: var(--gold-3);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.18);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.45; }
}

.hero h1 {
    color: white;
    margin-bottom: 1.75rem;
    max-width: 820px;
}

.hero h1 .accent-line {
    display: block;
    font-size: 0.92em;
    color: rgba(255,255,255,0.92);
}

.hero .lead {
    color: rgba(255, 255, 255, 0.68);
    max-width: 560px;
    margin-bottom: 2.75rem;
    font-size: 1.15rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--line-dark);
    flex-wrap: wrap;
}

.hero-meta-item { display: flex; flex-direction: column; }

.hero-meta-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    color: var(--gold-3);
    line-height: 1;
    margin-bottom: 0.4rem;
    font-weight: 400;
}

.hero-meta-lbl {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-meta-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.08);
}

/* Hero Visual — floating brand cards */
.hero-visual {
    position: relative;
    height: 540px;
    perspective: 1200px;
}

.hero-card {
    position: absolute;
    background: linear-gradient(160deg, rgba(34, 34, 34, 0.85) 0%, rgba(17, 17, 17, 0.85) 100%);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    width: 260px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: transform 0.6s var(--ease);
    box-shadow: var(--shadow-md);
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(201, 162, 75, 0.5), transparent 50%);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    pointer-events: none;
}

.hero-card:nth-child(1) { top: 0; right: 0; animation: floatA 7s ease-in-out infinite; }
.hero-card:nth-child(2) { top: 170px; left: 0; animation: floatB 7s ease-in-out infinite 1.5s; }
.hero-card:nth-child(3) { bottom: 40px; right: 50px; animation: floatA 7s ease-in-out infinite 3s; }

@keyframes floatA {
    0%, 100% { transform: translateY(0) rotateY(0); }
    50% { transform: translateY(-14px) rotateY(-2deg); }
}

@keyframes floatB {
    0%, 100% { transform: translateY(0) rotateY(0); }
    50% { transform: translateY(-14px) rotateY(2deg); }
}

.hero-card-logo-plate {
    background: white;
    border-radius: var(--radius);
    padding: 1rem;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.hero-card-logo-plate img {
    max-height: 65px;
    max-width: 85%;
    width: auto;
    object-fit: contain;
}

.hero-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.hero-card-badge {
    display: inline-block;
    padding: 0.3rem 0.7rem;
    background: rgba(201, 162, 75, 0.12);
    color: var(--gold-3);
    border-radius: 50px;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-card-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 12px rgba(74, 222, 128, 0.6);
}

.hero-card h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.hero-card p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.75rem;
}

/* Marquee between sections */
.marquee {
    background: var(--graphite);
    padding: 1.3rem 0;
    overflow: hidden;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
}

.marquee-track {
    display: flex;
    gap: 4rem;
    animation: scroll 32s linear infinite;
    width: fit-content;
    align-items: center;
}

.marquee-item {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.4rem;
    color: rgba(255,255,255,0.35);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4rem;
    font-weight: 400;
}

.marquee-item::after {
    content: '❖';
    color: var(--gold);
    font-size: 0.9rem;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section {
    padding: 7rem 0;
    position: relative;
    background: var(--black);
}

.section-sm { padding: 5rem 0; }

.section-alt { background: var(--graphite); }

.section-light {
    background: var(--cream-soft);
    color: var(--black);
}

.section-light h1, .section-light h2, .section-light h3, .section-light h4, .section-light h5 {
    color: var(--black);
}

.section-light p { color: #4a4a4a; }

.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 5rem;
}

.section-header.left {
    text-align: left;
    margin-left: 0;
    max-width: 640px;
}

.section-header h2 { margin-bottom: 1.25rem; }
.section-header .lead { margin-bottom: 0; }

.section-num {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.divider-gold {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 1.5rem;
}

.divider-gold.left { margin-left: 0; }

/* ==========================================================================
   STATS ROW (floating on hero edge)
   ========================================================================== */
.stats-row {
    position: relative;
    z-index: 10;
    margin-top: -80px;
    background: linear-gradient(160deg, var(--graphite) 0%, var(--ink) 100%);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    overflow: hidden;
    position: relative;
}

.stats-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}

.stat-item {
    text-align: center;
    padding: 0.5rem 1.5rem;
    position: relative;
}

.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--line-dark);
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(2.25rem, 3.6vw, 3.25rem);
    color: white;
    line-height: 1;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.stat-num .unit { color: var(--gold); }

.stat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
}

/* ==========================================================================
   ABOUT SPLIT
   ========================================================================== */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(160deg, var(--graphite) 0%, var(--black) 100%);
    border: 1px solid var(--line-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.about-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(201, 162, 75, 0.22), transparent 55%);
}

.about-visual::after {
    content: '';
    position: absolute;
    inset: 8% 8%;
    border: 1px solid rgba(201, 162, 75, 0.22);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.about-visual-content {
    position: relative;
    text-align: center;
    color: white;
    padding: 3rem;
}

.about-visual-num {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(5rem, 10vw, 8.5rem);
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--gold-4) 0%, var(--gold) 50%, var(--gold-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.04em;
}

.about-visual-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.about-visual-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--gold-3);
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 162, 75, 0.2);
}

.about-content h2 { margin-bottom: 1.5rem; }

.about-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.about-bullets {
    margin: 2rem 0 2.5rem;
    display: grid;
    gap: 1rem;
}

.about-bullets li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 1rem;
    align-items: flex-start;
    color: rgba(255,255,255,0.85);
    font-weight: 400;
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.about-bullets li:last-child { border-bottom: none; }

.about-bullets li::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   BRANDS GRID (dark cards with white logo plates)
   ========================================================================== */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.brand-card {
    background: linear-gradient(160deg, var(--graphite) 0%, var(--ink) 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--line-dark);
    display: flex;
    flex-direction: column;
    position: relative;
    color: white;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    z-index: 2;
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 162, 75, 0.35);
}

.brand-card:hover::before { opacity: 1; }

.brand-card-image {
    height: 200px;
    background: var(--cream-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line-dark);
}

.brand-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: radial-gradient(circle at 50% 0%, rgba(201, 162, 75, 0.06), transparent 70%);
    pointer-events: none;
}

.brand-logo-img {
    max-height: 85px;
    max-width: 70%;
    width: auto;
    object-fit: contain;
    transition: transform 0.6s var(--ease);
    z-index: 1;
}

.brand-card:hover .brand-logo-img {
    transform: scale(1.06);
}

.brand-card-mono {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: var(--black);
    font-size: 2rem;
    letter-spacing: -0.02em;
    text-align: center;
    padding: 0 1rem;
}

.brand-card-mono small {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-2);
    margin-top: 0.5rem;
    font-weight: 600;
    font-style: normal;
}

.brand-card-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.brand-card-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
    font-weight: 600;
}

.brand-card-category::before {
    content: '';
    width: 14px;
    height: 1px;
    background: var(--gold);
}

.brand-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: white;
}

.brand-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
    flex: 1;
    line-height: 1.65;
}

.brand-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    margin-top: auto;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding-top: 1rem;
    border-top: 1px solid var(--line-dark);
    transition: color 0.3s var(--ease);
}

.brand-card-link svg {
    transition: transform 0.4s var(--ease);
    width: 14px;
    height: 14px;
}

.brand-card:hover .brand-card-link {
    color: var(--gold-3);
}

.brand-card:hover .brand-card-link svg {
    transform: translateX(6px);
}

/* Placeholder backdrop for brands without logos */
.brand-bg-dark {
    background: linear-gradient(135deg, var(--graphite-2) 0%, var(--black) 100%);
}

/* ==========================================================================
   FEATURES
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    padding: 2.5rem 2rem;
    background: linear-gradient(160deg, var(--graphite) 0%, var(--ink) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line-dark);
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 162, 75, 0.3);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--black);
    color: var(--gold-3);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    position: relative;
    border: 1px solid rgba(201, 162, 75, 0.2);
    transition: var(--transition);
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(201, 162, 75, 0.3);
    border-radius: calc(var(--radius) + 5px);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.feature-card:hover .feature-icon {
    background: var(--gold);
    color: var(--black);
}

.feature-card:hover .feature-icon::after { opacity: 1; }

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: white;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
    color: rgba(255,255,255,0.62);
}

/* ==========================================================================
   SERVICE LIST
   ========================================================================== */
.service-item {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 2.5rem;
    padding: 2.5rem;
    background: linear-gradient(160deg, var(--graphite) 0%, var(--ink) 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    margin-bottom: 1.25rem;
    align-items: center;
    border: 1px solid var(--line-dark);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s var(--ease);
}

.service-item:hover {
    transform: translateX(8px);
    border-color: rgba(201, 162, 75, 0.3);
    box-shadow: var(--shadow-md);
}

.service-item:hover::before { transform: scaleY(1); }

.service-number {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
}

.service-content h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: white;
}

.service-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: rgba(255,255,255,0.62);
    line-height: 1.65;
}

/* ==========================================================================
   TIMELINE
   ========================================================================== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3rem;
    top: 8px;
    width: 36px;
    height: 36px;
    background: var(--black);
    border: 1px solid rgba(201, 162, 75, 0.3);
    border-radius: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: calc(-3rem + 13px);
    top: 21px;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.18);
}

.timeline-year {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.timeline-item h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: white;
}

.timeline-item p {
    font-size: 0.98rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ==========================================================================
   VALUES
   ========================================================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.value-card {
    padding: 2.25rem 2rem;
    background: linear-gradient(160deg, var(--graphite) 0%, var(--ink) 100%);
    border-radius: var(--radius);
    border: 1px solid var(--line-dark);
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0.3);
    transform-origin: center;
    transition: transform 0.5s var(--ease);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 162, 75, 0.3);
}

.value-card:hover::before { transform: scaleY(1); }

.value-card .value-num {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.value-card h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.92rem;
    margin-bottom: 0;
    color: rgba(255,255,255,0.62);
    line-height: 1.7;
}

/* ==========================================================================
   TEAM
   ========================================================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2rem;
}

.team-card { text-align: center; }

.team-image {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, var(--graphite) 0%, var(--black) 100%);
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-3);
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    border: 1px solid var(--line-dark);
    transition: var(--transition);
}

.team-image::after {
    content: '';
    position: absolute;
    inset: 10%;
    border: 1px solid rgba(201, 162, 75, 0.2);
    border-radius: var(--radius);
    pointer-events: none;
}

.team-card:hover .team-image {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 162, 75, 0.3);
}

.team-card h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.3rem;
}

.team-role {
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
    padding: 6rem 0;
    background: var(--black);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 800px 500px at 30% 50%, rgba(201, 162, 75, 0.2), transparent 60%),
        radial-gradient(ellipse 800px 500px at 70% 50%, rgba(201, 162, 75, 0.12), transparent 60%);
}

.cta-section::after {
    content: '❖';
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 1.5rem;
    opacity: 0.4;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.cta-section h2 { color: white; margin-bottom: 1.5rem; }
.cta-section .lead { color: rgba(255,255,255,0.75); margin-bottom: 2.75rem; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: #050505;
    color: rgba(255, 255, 255, 0.55);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}

.footer-top {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
    gap: 3.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--line-dark);
    margin-bottom: 2rem;
}

.footer-brand .logo-img {
    height: 60px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 360px;
    line-height: 1.75;
}

.footer-newsletter {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
    margin-bottom: 2rem;
}

.footer-newsletter input {
    flex: 1;
    padding: 0.85rem 1.15rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    background: rgba(255,255,255,0.03);
    color: white;
    font-family: inherit;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-newsletter input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.06);
}

.footer-newsletter input::placeholder { color: rgba(255,255,255,0.35); }

.footer-newsletter button {
    padding: 0.85rem 1.5rem;
    background: var(--gold);
    color: var(--black);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-newsletter button:hover {
    background: var(--gold-3);
    transform: translateY(-1px);
}

.social-links { display: flex; gap: 0.6rem; }

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer h5 {
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-links li { margin-bottom: 0.85rem; }

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.92rem;
    transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}

.footer-links a:hover {
    color: var(--gold-3);
    padding-left: 6px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
}

.footer-bottom-links { display: flex; gap: 1.75rem; }

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.42);
    transition: color 0.3s var(--ease);
}

.footer-bottom-links a:hover { color: var(--gold-3); }

/* ==========================================================================
   PAGE HERO (inner pages)
   ========================================================================== */
.page-hero {
    padding: 10rem 0 5rem;
    background: var(--black);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 900px 500px at 20% 30%, rgba(201, 162, 75, 0.22), transparent 55%),
        radial-gradient(ellipse 900px 500px at 80% 70%, rgba(201, 162, 75, 0.14), transparent 55%);
    z-index: -1;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}

.page-hero-content {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    letter-spacing: 0.08em;
}

.breadcrumb a { color: var(--gold-3); }
.breadcrumb a:hover { color: var(--gold); }

.breadcrumb svg { width: 12px; height: 12px; opacity: 0.4; }

.page-hero h1 { color: white; margin-bottom: 1.5rem; }

.page-hero .lead {
    color: rgba(255, 255, 255, 0.72);
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.15rem;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    padding: 3rem 2.5rem;
    background: linear-gradient(160deg, var(--graphite) 0%, var(--ink) 100%);
    color: white;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line-dark);
    box-shadow: var(--shadow-md);
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(201, 162, 75, 0.22) 0%, transparent 55%);
    pointer-events: none;
}

.contact-info h3 {
    color: white;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 2.5rem;
    position: relative;
    line-height: 1.7;
}

.contact-method {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 1.75rem;
    position: relative;
}

.contact-icon {
    width: 46px;
    height: 46px;
    background: rgba(201, 162, 75, 0.1);
    border: 1px solid rgba(201, 162, 75, 0.28);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-3);
    flex-shrink: 0;
}

.contact-method h5 {
    color: white;
    font-size: 0.7rem;
    margin-bottom: 0.35rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.contact-method p,
.contact-method a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    margin-bottom: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.contact-method a:hover { color: var(--gold-3); }

.contact-form {
    padding: 3rem;
    background: linear-gradient(160deg, var(--graphite) 0%, var(--ink) 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line-dark);
}

.form-group { margin-bottom: 1.5rem; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold-3);
    margin-bottom: 0.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.95rem 1.1rem;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    background: rgba(0,0,0,0.3);
    color: white;
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.35); }

.form-select { color: white; }
.form-select option { color: var(--black); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(0,0,0,0.4);
    box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.12);
}

.form-textarea { resize: vertical; min-height: 140px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(160deg, var(--graphite) 0%, var(--ink) 100%);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    margin-bottom: 0.85rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover,
.faq-item.active {
    border-color: rgba(201, 162, 75, 0.3);
    box-shadow: var(--shadow-xs);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 1.75rem;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 500;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: 'Playfair Display', serif;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--gold);
    transition: transform 0.4s var(--ease);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 75, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
    padding-bottom: 2px;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
    padding: 0 1.75rem;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    margin-bottom: 0;
    color: rgba(255,255,255,0.62);
    line-height: 1.75;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
    .hero-grid,
    .about-split,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .hero-visual {
        height: 420px;
        max-width: 560px;
        margin: 0 auto;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .stats-row { padding: 2.25rem 1.5rem; }
}

@media (max-width: 768px) {
    .nav { padding: 0.85rem 1.25rem; }
    .logo-img { height: 44px; }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--black);
        flex-direction: column;
        padding: 2.5rem 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--line-dark);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        transition: transform 0.4s var(--ease);
        align-items: flex-start;
    }

    .nav-menu.active { transform: translateY(0); }

    .nav-menu a {
        font-size: 1.25rem;
        font-family: 'Playfair Display', serif;
    }

    .nav-cta .btn:not(.mobile-toggle) { display: none; }
    .mobile-toggle { display: flex; }

    .hero { padding: 8rem 0 5rem; }
    .hero-visual { display: none; }
    .hero-meta { gap: 1.75rem; }
    .hero-meta-divider { display: none; }
    .hero-meta-num { font-size: 1.85rem; }

    .section { padding: 4.5rem 0; }

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

    .service-item {
        grid-template-columns: 60px 1fr;
        padding: 1.75rem;
        gap: 1.25rem;
    }
    .service-item .btn { grid-column: 1 / -1; }
    .service-number { font-size: 2.25rem; }

    .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 1rem; }

    .stats-row {
        grid-template-columns: 1fr 1fr;
        margin-top: -50px;
        gap: 1.25rem 0;
    }
    .stat-item + .stat-item::before { display: none; }

    .about-visual-num { font-size: 4.5rem; }

    .page-hero { padding: 7rem 0 3.5rem; }

    .contact-info, .contact-form { padding: 2rem; }

    .timeline { padding-left: 2.5rem; }
    .timeline::before { left: 14px; }
    .timeline-item::before { left: -2.5rem; width: 30px; height: 30px; }
    .timeline-item::after { left: calc(-2.5rem + 10px); }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .hero-meta { gap: 1.25rem; }
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.85rem; }
    .footer-newsletter { flex-direction: column; }
    .footer-newsletter button { width: 100%; }
}

/* Utilities */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
