:root {
    --bg: #faf9f7;
    --bg-warm: #f0ede8;
    --bg-card: #ffffff;
    --bg-dark: #0f172a;
    --text: #1a1a2e;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --accent: #1e3a5f;
    --accent-light: #2d5a87;
    --border: rgba(30, 58, 95, 0.18);
    --border-solid: #e5e0d8;
    --gold: #c9a96e;
    --gold-light: #d4b87a;
    --success: #10b981;
    --error: #ef4444;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
    mix-blend-mode: difference;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
    opacity: 0.5;
}

.cursor-ring.hover {
    width: 56px;
    height: 56px;
    border-color: var(--gold-light);
    opacity: 0.8;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 0.6s ease 0.2s forwards;
}

.preloader-logo span {
    color: var(--gold);
    font-weight: 400;
    font-style: italic;
}

.preloader-bar {
    width: 200px;
    height: 1px;
    background: rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.preloader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--gold);
    animation: loadBar 0.6s ease forwards;
}

@keyframes loadBar {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}

nav.scrolled {
    background: rgba(250, 249, 247, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-solid);
}

nav.scrolled .logo,
nav.scrolled .nav-links a {
    color: var(--text);
}

nav.scrolled .nav-cta {
    border-color: var(--accent);
    color: var(--accent);
}

nav.scrolled .nav-cta:hover {
    background: var(--accent);
    color: #fff;
}

nav.nav-hidden {
    transform: translateY(-100%);
}

.nav-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.4s ease;
    position: relative;
    z-index: 1003;
}

.logo span {
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 48px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #fff;
}

nav.scrolled .nav-links a:hover {
    color: var(--accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    padding: 10px 24px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--text);
    border-color: var(--gold);
}

/* ===== MOBILE MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 1003;
    background: none;
    border: none;
    position: relative;
}

.hamburger span {
    width: 28px;
    height: 1.5px;
    background: #fff;
    transition: all 0.3s ease;
    display: block;
}

nav.scrolled .hamburger span {
    background: var(--text);
}

/* When hamburger is active (menu open), force white lines */
.hamburger.active span {
    background: #fff !important;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ===== HERO & SLIDER ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #0f172a;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: kenBurnsFade 24s infinite linear;
}
.hero-slide:nth-child(1) {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('/assets/img/The_Equities_Trading_Floor_3.jpg?q=75&w=1600&auto=format&fit=crop');
    animation-delay: 0s;
}

.hero-slide:nth-child(2) {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('/assets/img/Building-Wallpapers-HD-Free-Download.jpg?q=75&w=1600&auto=format&fit=crop');
    animation-delay: 8s;
}

.hero-slide:nth-child(3) {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('/assets/img/2048px-Gaming-Wall-Street_BTS_Prodigium-266.webp?q=75&w=1600&auto=format&fit=crop');
    animation-delay: 16s;
}
@keyframes kenBurnsFade {
    0% { opacity: 0; transform: scale(1); }
    5% { opacity: 1; }
    28% { opacity: 1; }
    33% { opacity: 0; transform: scale(1.12); }
    100% { opacity: 0; transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(15, 23, 42, 0.3) 0%,
        rgba(15, 23, 42, 0.6) 50%,
        rgba(15, 23, 42, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 120px 40px 40px;
}

.hero-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    border-left: 2px solid var(--gold);
    padding-left: 16px;
    opacity: 0;
    animation: slideUp 0.8s ease 0.5s forwards;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    max-width: 900px;
    margin-bottom: 32px;
    opacity: 0;
    animation: slideUp 0.8s ease 0.7s forwards;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 540px;
    margin-bottom: 48px;
    font-weight: 300;
    line-height: 1.7;
    opacity: 0;
    animation: slideUp 0.8s ease 0.9s forwards;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    opacity: 0;
    animation: slideUp 0.8s ease 1.1s forwards;
}

.hero-btn-primary {
    background: var(--gold);
    color: var(--text);
    border: none;
    padding: 16px 36px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

.hero-btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 16px 36px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-btn-secondary:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.08);
}

.hero-stats {
    display: flex;
    gap: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0;
    animation: slideUp 0.8s ease 1.3s forwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #fff;
    font-weight: 600;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 8px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

.scroll-indicator span {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* ===== SECTIONS ===== */
section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 120px 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-solid);
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--text);
    line-height: 1.2;
}

.section-header h2 em {
    font-style: italic;
    color: var(--accent);
}

.section-num {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.8;
}

.about-text p strong {
    color: var(--text);
    font-weight: 500;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
}

.about-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.03);
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--gold);
    opacity: 0.3;
    z-index: -1;
}

/* ===== MARKETS ===== */
.markets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-solid);
}

.market-card {
    background: var(--bg-card);
    padding: 48px 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.market-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.market-card:hover {
    background: var(--bg);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.market-card:hover::before {
    width: 100%;
}

.market-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.market-icon svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.market-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--text);
    font-weight: 400;
    margin-bottom: 8px;
}

.market-card .market-code {
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.market-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.market-card .market-link {
    font-size: 0.8rem;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.market-card .market-link:hover {
    color: var(--accent);
}

.market-card .market-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.market-card .market-link:hover::after {
    transform: translateX(4px);
}

/* ===== PARALLAX QUOTE ===== */
.parallax-quote {
    width: 100%;
    max-width: 100%;
    padding: 160px 40px;
    background-image: url('/assets/img/stock-market-gainers-and-losers-monitor-ut7nswe2jgzx3fth.jpg?q=75&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    text-align: center;
}

.parallax-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
}

.parallax-quote-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.parallax-quote blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: #fff;
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 32px;
}

.parallax-quote cite {
    font-style: normal;
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== OPERATIONS ===== */
.operations {
    background: var(--bg-warm);
    max-width: 100%;
    padding: 120px 0;
}

.operations-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.operations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.operations-image-wrapper {
    position: relative;
    overflow: hidden;
}

.operations-image {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: transform 0.6s ease;
}

.operations-image-wrapper:hover .operations-image {
    transform: scale(1.03);
}

.operations-list {
    list-style: none;
}

.operations-list li {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-solid);
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: padding-left 0.3s ease;
}

.operations-list li:hover {
    padding-left: 8px;
}

.operations-list li:first-child {
    padding-top: 0;
}

.op-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 600;
    min-width: 40px;
    transition: color 0.3s ease;
}

.operations-list li:hover .op-num {
    color: var(--gold);
}

.op-content h4 {
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 8px;
}

.op-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    width: 100%;
    max-width: 100%;
    padding: 120px 0;
    background: var(--bg-card);
}

.testimonials-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 80px;
    text-align: center;
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--text);
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.testimonial-author strong {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
}

.testimonials-nav button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-solid);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-muted);
    font-size: 1rem;
}

.testimonials-nav button:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.testimonials-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--border-solid);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-dots button.active {
    background: var(--accent);
    transform: scale(1.3);
}

/* ===== TEAM ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

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

.team-image-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
}

.team-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.6s ease;
}

.team-card:hover .team-image {
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    background: linear-gradient(to top, rgba(15,23,42,0.9), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.team-social:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--text);
}

.team-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--text);
    font-weight: 400;
    margin-bottom: 4px;
}

.team-card > p {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* ===== CONTACT ===== */
.contact-section {
    background: var(--bg-warm);
    max-width: 100%;
    padding: 120px 0;
}

.contact-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
}

.contact-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text);
    font-weight: 400;
    margin-bottom: 32px;
}

.contact-info h2 em {
    font-style: italic;
    color: var(--accent);
}

.contact-info > p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 48px;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail label {
    display: block;
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-detail p {
    font-size: 1rem;
    color: var(--text);
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-solid);
    padding: 48px;
    position: relative;
}

.form-group {
    margin-bottom: 32px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border-solid);
    padding: 14px 16px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.08);
}

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

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-submit {
    width: 100%;
    background: var(--text);
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.form-submit:hover {
    background: var(--accent);
    transform: translateY(-1px);
}

.form-submit:active {
    transform: translateY(0);
}

/* Form success message */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
}

.form-success svg {
    width: 64px;
    height: 64px;
    color: var(--success);
    margin-bottom: 24px;
}

.form-success h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 12px;
}

.form-success p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--text);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 18px;
    height: 18px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--bg-dark);
    padding: 80px 40px 40px;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 20px;
    color: #fff;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    max-width: 320px;
}

.footer-col h5 {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #fff;
}

.footer-newsletter {
    margin-top: 24px;
}

.footer-newsletter p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 12px;
}

.footer-newsletter-form {
    display: flex;
    gap: 0;
}

.footer-newsletter-form input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-right: none;
    padding: 10px 14px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    outline: none;
}

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

.footer-newsletter-form button {
    background: var(--gold);
    color: var(--text);
    border: none;
    padding: 10px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.footer-newsletter-form button:hover {
    background: var(--gold-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
}

.footer-bottom .disclaimer {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
    max-width: 600px;
    text-align: right;
    line-height: 1.5;
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
    .about-grid,
    .operations-grid,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .markets-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stats {
        gap: 32px;
    }

    .testimonial-slide {
        padding: 0 40px;
    }

    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    .parallax-quote {
        background-attachment: scroll;
    }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
    }

    /* Logo — single line, smaller */
    .logo {
        font-size: 1.25rem;
        white-space: nowrap;
    }

    /* Hide nav CTA on mobile — exists in mobile menu */
    .nav-cta {
        display: none;
    }

    /* Tighter nav */
    .nav-container {
        padding: 0 20px;
        height: 64px;
    }

    /* HERO FIXES */
    .hero {
        min-height: 100vh;
        height: auto;
        padding-top: 64px;
    }

    .hero-content {
        padding: 40px 20px 80px;
    }

    .hero-tag {
        margin-bottom: 16px;
        font-size: 0.7rem;
        letter-spacing: 2px;
        padding-left: 12px;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
        line-height: 1.15;
        margin-bottom: 24px;
    }

    .hero-sub {
        font-size: 0.95rem;
        margin-bottom: 32px;
    }

    .hero-actions {
        flex-direction: column;
        margin-bottom: 32px;
        gap: 12px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        text-align: center;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.8rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px 20px;
        padding-top: 28px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    /* Sections */
    section {
        padding: 80px 20px;
    }

    .operations-inner,
    .contact-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Team */
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-bottom .disclaimer {
        text-align: center;
    }

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

    .contact-inner {
        gap: 48px;
    }

    .contact-form {
        padding: 32px 24px;
    }

    /* Testimonials */
    .testimonial-slide {
        padding: 0 20px;
    }

    /* Hide scroll indicator on mobile */
    .scroll-indicator {
        display: none;
    }
}