/* ==========================================================================
   REAL Operating Partners — Premium Stylesheet
   ========================================================================== */

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
    --gold:    #3d6b8e;
    --gold-l:  #5a8baa;
    --gold-d:  #2c5270;
    --dark:    #181a1f;
    --dark-2:  #1e2026;
    --dark-3:  #25272e;
    --dark-4:  #2d2f36;
    --gray:    #888;
    --light:   #f0ece4;
    --white:   #fff;
    --danger:  #e74c3c;
    --success: #27ae60;
    --nav-h:   72px;
    --font:    'Inter', sans-serif;
    --font-h:  'Cormorant Garamond', serif;
    --ease:    cubic-bezier(.4,0,.2,1);
    --ease-bounce: cubic-bezier(.34,1.56,.64,1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body { font-family: var(--font); background: var(--dark); color: var(--light); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--gold-l); }
ul { list-style: none; }
button { border: none; outline: none; cursor: pointer; font-family: var(--font); }
::selection { background: var(--gold); color: var(--dark); }

/* ---------- PRELOADER ---------- */
.preloader { position: fixed; inset: 0; z-index: 99999; display: flex; align-items: center; justify-content: center; background: var(--dark); transition: opacity .6s var(--ease), visibility .6s; }
.preloader.hide { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo { font-family: var(--font-h); font-size: 2rem; letter-spacing: .6em; color: var(--gold); margin-bottom: 1.5rem; animation: pulse-gold 1.2s infinite alternate; }
.preloader-logo-img { max-width: 200px; height: auto; margin-bottom: 1.5rem; filter: brightness(0) invert(1); animation: pulse-gold 1.2s infinite alternate; }
.light-mode .preloader-logo-img { filter: none; }
.preloader-bar { width: 200px; height: 2px; background: var(--dark-4); border-radius: 2px; overflow: hidden; }
.preloader-fill { width: 0%; height: 100%; background: linear-gradient(90deg, var(--gold-d), var(--gold-l)); animation: preloader-fill 1.6s var(--ease) forwards; }

@keyframes preloader-fill { to { width: 100%; } }
@keyframes pulse-gold { from { opacity: .5; } to { opacity: 1; } }

/* ---------- UTILITY ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 80px 0; position: relative; }
.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .25em; color: var(--gold); font-weight: 600; margin-bottom: .75rem; }
.section-label.light { color: var(--gold-l); }
.section-title { font-family: var(--font-h); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; line-height: 1.2; color: var(--white); }
.section-title.light { color: var(--white); }
.title-underline { width: 60px; height: 3px; background: var(--gold); margin-top: 1rem; border-radius: 2px; }
.title-underline.center { margin-left: auto; margin-right: auto; }
.title-underline.light { background: var(--gold-l); }
.section-subtitle { margin-top: 1rem; font-size: 1.05rem; color: var(--gray); max-width: 650px; }
.section-subtitle.light { color: rgba(255,255,255,.6); }
.section-header.center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ---------- BUTTONS ---------- */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 2rem; font-size: .9rem; font-weight: 600; border-radius: 4px; letter-spacing: .03em; transition: all .35s var(--ease); }
.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: var(--gold-l); color: var(--dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(61,107,142,.35); }
.btn-ghost { border: 1px solid rgba(255,255,255,.25); color: var(--white); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-arrow { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---------- NAVBAR ---------- */
.navbar { position: fixed; top: 0; left: 0; width: 100%; height: var(--nav-h); z-index: 1000; transition: background .4s var(--ease), box-shadow .4s var(--ease); }
.navbar.scrolled { background: rgba(13,13,13,.95); backdrop-filter: blur(12px); box-shadow: 0 1px 0 rgba(61,107,142,.1); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav-logo-img { height: 56px; width: auto; filter: brightness(0) invert(1); transition: filter .3s; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,.7); font-size: .85rem; font-weight: 500; text-transform: uppercase; letter-spacing: .1em; transition: color .3s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.lang-btn { background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: .35rem .9rem; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; border-radius: 3px; transition: all .3s var(--ease); }
.lang-btn:hover { background: var(--gold); color: var(--dark); }

/* Language dropdown */
.lang-dropdown-wrap { position: relative; }
.lang-dropdown-btn { display: flex; align-items: center; gap: .35rem; background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: .35rem .8rem; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; border-radius: 3px; transition: all .3s var(--ease); cursor: pointer; }
.lang-dropdown-btn:hover { background: var(--gold); color: var(--dark); }
.lang-dropdown-btn:hover .lang-chevron { stroke: var(--dark); }
.lang-chevron { width: 10px; height: 6px; transition: transform .25s var(--ease); }
.lang-dropdown-wrap.open .lang-chevron { transform: rotate(180deg); }
.lang-dropdown-menu { position: absolute; top: calc(100% + 8px); right: 0; background: var(--dark-3); border: 1px solid rgba(61,107,142,.25); border-radius: 6px; overflow: hidden; min-width: 70px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all .25s var(--ease); z-index: 100; }
.lang-dropdown-wrap.open .lang-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-option { display: block; width: 100%; padding: .5rem 1rem; background: transparent; border: none; color: rgba(255,255,255,.6); font-size: .75rem; font-family: var(--font); letter-spacing: .12em; text-transform: uppercase; text-align: center; cursor: pointer; transition: all .2s var(--ease); }
.lang-option:hover { background: rgba(61,107,142,.15); color: var(--gold); }
.lang-option--active { color: var(--gold); font-weight: 600; }

/* Theme toggle */
.theme-btn { background: transparent; border: 1px solid rgba(255,255,255,.2); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all .3s var(--ease); position: relative; }
.theme-btn:hover { border-color: var(--gold); }
.theme-btn svg { width: 16px; height: 16px; position: absolute; transition: opacity .3s, transform .3s; }
.theme-icon-sun { color: var(--gold); opacity: 1; transform: rotate(0deg); }
.theme-icon-moon { color: var(--gold); opacity: 0; transform: rotate(-90deg); }
.light-mode .theme-icon-sun { opacity: 0; transform: rotate(90deg); }
.light-mode .theme-icon-moon { opacity: 1; transform: rotate(0deg); }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all .3s var(--ease); border-radius: 1px; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.32) saturate(.6); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(24,26,31,.5) 0%, rgba(24,26,31,.75) 50%, var(--dark) 100%); }
.hero-particles { position: absolute; inset: 0; z-index: 1; }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 10rem 2rem 2rem; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.hero-badge { display: inline-block; border: 1px solid var(--gold); color: var(--gold); font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; padding: .4rem 1.2rem; border-radius: 99px; margin-bottom: 2rem; opacity: 0; animation: fadInUp .8s var(--ease) .3s forwards; }
.hero-logo-img { max-width: clamp(280px, 40vw, 500px); height: auto; filter: brightness(0) invert(1); opacity: 0; animation: fadInUp .8s var(--ease) .5s forwards; }
.hero-logo-text { font-family: var(--font-h); font-size: clamp(4rem, 10vw, 8rem); font-weight: 700; letter-spacing: .15em; color: var(--white); margin-bottom: .5rem; }
.hero-logo-text .letter { display: inline-block; opacity: 0; animation: letterPop .5s var(--ease-bounce) calc(.5s + var(--i) * .12s) forwards; }
.hero-tagline { font-size: 1.3rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 1.5rem; opacity: 0; animation: fadInUp .8s var(--ease) 1.2s forwards; }
.hero-divider { width: 60px; height: 2px; background: var(--gold); margin: 0 auto 0; opacity: 0; animation: fadInUp .8s var(--ease) 1.4s forwards; }
.hero-subtitle { font-family: var(--font-h); font-size: clamp(1rem, 2.5vw, 1.4rem); color: rgba(255,255,255,.7); font-style: italic; max-width: 550px; margin: 0 auto 2.5rem; opacity: 0; animation: fadInUp .8s var(--ease) 1.6s forwards; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadInUp .8s var(--ease) 1.8s forwards; }
.hero-bottom-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 200px; background: linear-gradient(to bottom, transparent, var(--dark)); z-index: 1; pointer-events: none; }

/* Hero animations */
@keyframes fadInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes letterPop { from { opacity: 0; transform: translateY(30px) scale(.7); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* Scroll indicator */
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 3; text-align: center; opacity: 0; animation: fadInUp .8s var(--ease) 2.2s forwards; }
.scroll-mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.3); border-radius: 12px; margin: 0 auto 8px; position: relative; }
.scroll-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { opacity: 1; transform:translateX(-50%) translateY(0); } 100% { opacity: 0; transform: translateX(-50%) translateY(16px); } }
.scroll-text { font-size: .65rem; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .2em; }

/* ---------- STATS BAR ---------- */
.stats-bar { background: var(--dark-2); border-top: 1px solid rgba(61,107,142,.12); border-bottom: 1px solid rgba(61,107,142,.12); padding: 3rem 0; }
.stats-grid { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number { font-family: var(--font-h); font-size: 2.5rem; font-weight: 700; color: var(--gold); }
.stat-suffix { font-family: var(--font-h); font-size: 2rem; color: var(--gold); }
.stat-label { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .15em; color: var(--gray); margin-top: .25rem; }
.stat-divider { width: 1px; height: 40px; background: rgba(61,107,142,.2); }

/* ---------- ABOUT / INTRO ---------- */
.section-about { background: var(--dark); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: 8px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.about-img-main img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-img-float { position: absolute; bottom: -30px; right: -30px; width: 55%; border-radius: 8px; overflow: hidden; border: 4px solid var(--dark); box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.about-img-float img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-accent-box { position: absolute; top: -20px; left: -20px; background: var(--gold); color: var(--dark); padding: 1.2rem 1.6rem; border-radius: 6px; text-align: center; box-shadow: 0 8px 30px rgba(61,107,142,.3); }
.about-accent-number { display: block; font-family: var(--font-h); font-size: 2rem; font-weight: 700; line-height: 1; }
.about-accent-text { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }

.about-text p { margin-bottom: 1rem; color: rgba(255,255,255,.7); font-size: .95rem; line-height: 1.8; }
.about-text p:last-of-type { margin-bottom: 1.5rem; }

.usp-pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.usp-pill { padding: .4rem 1rem; border: 1px solid rgba(61,107,142,.3); border-radius: 99px; font-size: .75rem; letter-spacing: .05em; color: var(--gold); transition: all .3s var(--ease); }
.usp-pill:hover { background: var(--gold); color: var(--dark); }

/* ---------- PARALLAX DIVIDER ---------- */
.parallax-divider { position: relative; height: 50vh; min-height: 340px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.parallax-img { position: absolute; inset: -20% 0; width: 100%; height: 140%; object-fit: cover; filter: brightness(.3); }
.parallax-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, var(--dark), rgba(13,13,13,.4), var(--dark)); }
.parallax-content { position: relative; z-index: 1; text-align: center; padding: 2rem; }
.parallax-quote { font-family: var(--font-h); font-size: clamp(1.4rem, 3vw, 2.2rem); font-style: italic; color: var(--white); max-width: 700px; line-height: 1.5; }

/* ---------- TEAM ---------- */
.section-team { background: var(--dark-2); }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; max-width: 1100px; margin: 0 auto; }
.team-card { position: relative; border-radius: 12px; overflow: hidden; display: flex; }
.team-card-glow { position: absolute; inset: -1px; border-radius: 12px; background: linear-gradient(135deg, rgba(61,107,142,.2), transparent 50%, rgba(61,107,142,.1)); opacity: 0; transition: opacity .5s var(--ease); }
.team-card:hover .team-card-glow { opacity: 1; }
.team-card-inner { position: relative; background: var(--dark-3); border: 1px solid rgba(255,255,255,.05); border-radius: 12px; padding: 2.5rem 2rem; text-align: center; transition: transform .4s var(--ease), box-shadow .4s var(--ease); display: flex; flex-direction: column; width: 100%; }
.team-card:hover .team-card-inner { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.team-avatar { position: relative; margin: 0 auto 1.5rem; width: 90px; height: 90px; }
.avatar-ring { position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--gold); opacity: .4; animation: spin-slow 12s linear infinite; }
@keyframes spin-slow { to { transform: rotate(360deg); } }
.avatar-placeholder { width: 90px; height: 90px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-d), var(--gold)); display: flex; align-items: center; justify-content: center; font-family: var(--font-h); font-size: 1.6rem; color: var(--dark); font-weight: 600; }
.avatar-img { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; }
.team-name { font-family: var(--font-h); font-size: 1.3rem; color: var(--white); margin-bottom: .25rem; }
.team-role { font-size: .8rem; text-transform: uppercase; letter-spacing: .15em; color: var(--gold); }
.team-divider { width: 40px; height: 2px; background: var(--gold); margin: 1rem auto; opacity: .4; }
.team-points { text-align: left; margin-bottom: 1.5rem; flex: 1; }
.team-points li { position: relative; padding-left: 1.2rem; margin-bottom: .5rem; font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.6; }
.team-points li::before { content: ''; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); opacity: .6; }
.team-contact-links { display: flex; gap: .8rem; justify-content: center; }
.team-link { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(61,107,142,.25); display: flex; align-items: center; justify-content: center; transition: all .3s var(--ease); }
.team-link svg { width: 18px; height: 18px; color: var(--gold); }
.team-link:hover { background: var(--gold); border-color: var(--gold); }
.team-link:hover svg { color: var(--dark); }

/* ---------- SERVICES ---------- */
.section-services { background: var(--dark); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { position: relative; background: var(--dark-3); border: 1px solid rgba(255,255,255,.05); border-radius: 12px; padding: 1.5rem 1.25rem; overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.service-card-bg { position: absolute; top: -80px; right: -80px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(61,107,142,.08), transparent 70%); border-radius: 50%; transition: transform .5s var(--ease); }
.service-card:hover .service-card-bg { transform: scale(1.4); }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 16px 50px rgba(0,0,0,.35); }
.service-number { font-family: var(--font-h); font-size: 2.5rem; font-weight: 700; color: rgba(61,107,142,.1); position: absolute; top: 0.75rem; right: 1rem; transition: color .3s; }
.service-card:hover .service-number { color: rgba(61,107,142,.2); }
.service-icon-wrap { margin-bottom: 0.75rem; }
.service-icon-wrap svg { width: 36px; height: 36px; color: var(--gold); }
.service-card h3 { font-family: var(--font-h); font-size: 1.1rem; color: var(--white); margin-bottom: 0.75rem; }
.service-card ul { list-style: none; margin-bottom: 0.5rem; }
.service-card li { position: relative; padding-left: 1rem; margin-bottom: .3rem; font-size: .8rem; color: rgba(255,255,255,.6); line-height: 1.5; }
.service-card li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.service-card-line { width: 40px; height: 2px; background: var(--gold); opacity: 0; transform: scaleX(0); transform-origin: left; transition: all .4s var(--ease); }
.service-card:hover .service-card-line { opacity: 1; transform: scaleX(1); }

/* ---------- APPROACH ---------- */
.section-approach { background: var(--dark-2); }
.approach-table-wrapper { overflow-x: auto; margin-bottom: 4rem; }
.approach-table { width: 100%; border-collapse: collapse; }
.approach-table th { font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); padding: 1rem 1.5rem; text-align: left; border-bottom: 2px solid var(--gold); }
.approach-th-icon { margin-right: .3rem; }
.approach-table td { padding: .9rem 1.5rem; font-size: .9rem; color: rgba(255,255,255,.6); border-bottom: 1px solid rgba(255,255,255,.05); }
.approach-table .highlight-cell { color: var(--gold-l); font-weight: 600; }
.arrow-col { width: 50px; text-align: center; }
.table-arrow { color: var(--gold); font-size: 1.2rem; }
.approach-table tr { transition: background .3s; }
.approach-table tbody tr:hover { background: rgba(61,107,142,.04); }

.approach-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.approach-feature { background: var(--dark-3); border: 1px solid rgba(255,255,255,.05); border-radius: 12px; padding: 2rem; text-align: center; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.approach-feature:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.3); }
.feature-icon { margin-bottom: 1rem; }
.feature-icon svg { width: 48px; height: 48px; color: var(--gold); margin: 0 auto; }
.approach-feature h4 { font-family: var(--font-h); font-size: .95rem; color: var(--white); margin-bottom: .5rem; white-space: nowrap; }
.approach-feature p { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.7; }
.approach-feature ul { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.7; text-align: left; list-style: disc; padding-left: 1.2rem; }
.approach-feature ul li { margin-bottom: .4rem; }
.approach-text { max-width: 850px; margin: 0 auto 3rem; text-align: center; }
.approach-text p { color: rgba(255,255,255,.7); font-size: 1rem; line-height: 1.8; margin-bottom: 1rem; }
.approach-highlight { color: var(--white) !important; font-size: 1.05rem !important; }
.approach-phase-header { margin-top: 4rem; margin-bottom: 2rem; }

/* About lead */
.about-lead { font-size: 1.15rem; font-weight: 600; color: var(--gold); margin-bottom: 1.5rem; line-height: 1.6; }

/* ---------- INTRO HIGHLIGHTS ---------- */
.section-intro-highlights { background: var(--dark); padding: 80px 0; }

/* Hero intro blocks — Editorial magazine style */
.hero-intro-blocks { position: relative; z-index: 3; padding: 2rem 0 4rem; }
.hero-intro-editorial { max-width: 960px; margin: 0 auto; }
.hero-intro-statement { font-family: var(--font-h); font-size: clamp(1.3rem, 2.5vw, 1.65rem); font-weight: 600; color: var(--white); line-height: 1.55; text-align: center; margin: 0; }
.hero-intro-rule { width: 50px; height: 1px; background: var(--gold); margin: 1.8rem auto; opacity: .6; }
.hero-intro-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.hero-intro-columns p { color: rgba(255,255,255,.65); font-size: .9rem; line-height: 1.85; margin: 0; }
.intro-highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.intro-highlight-block { background: var(--dark-3); border: 1px solid rgba(255,255,255,.05); border-radius: 12px; padding: 2.5rem 2rem; border-top: 3px solid var(--gold); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.intro-highlight-block:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(0,0,0,.35); }
.intro-highlight-block p { color: rgba(255,255,255,.7); font-size: .95rem; line-height: 1.8; }

/* ---------- APPROACH NUMBERED ---------- */
.approach-numbered { display: flex; flex-direction: column; gap: 0; margin-bottom: 4rem; }
.approach-numbered-item { display: grid; grid-template-columns: 80px 1fr; gap: 2rem; align-items: baseline; padding: 2rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.approach-numbered-item:first-child { border-top: 1px solid rgba(255,255,255,.06); }
.approach-num { font-family: var(--font-h); font-size: 2.2rem; font-weight: 300; color: var(--gold); line-height: 1; }
.approach-numbered-item p { color: rgba(255,255,255,.7); font-size: .95rem; line-height: 1.85; }

/* ---------- CONTACT LINKS ROW ---------- */
.contact-links-row { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2rem; }
.contact-link-item { display: inline-flex; align-items: center; gap: .5rem; color: var(--gold); font-size: .95rem; font-weight: 500; padding: .6rem 1.2rem; background: var(--dark-3); border: 1px solid rgba(61,107,142,.2); border-radius: 8px; transition: all .3s var(--ease); }
.contact-link-item:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.contact-link-item svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Avatar placeholder */
.avatar-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: var(--font-h); font-size: 1.5rem; font-weight: 700; color: var(--gold); background: var(--dark-3); border-radius: 50%; letter-spacing: .1em; position: relative; z-index: 1; }

/* General email */
.contact-general-email { margin-bottom: 1.5rem; }
.contact-general-email a { display: inline-flex; align-items: center; gap: .5rem; color: var(--gold); font-size: 1rem; font-weight: 500; }
.contact-general-email svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Legal / Privacy */
.section-legal { background: var(--dark-2); padding: 4rem 0; border-top: 1px solid rgba(255,255,255,.05); }
.legal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.legal-block h3 { font-family: var(--font-h); font-size: 1.2rem; color: var(--white); margin-bottom: 1rem; }
.legal-block p { font-size: .85rem; color: var(--gray); line-height: 1.8; font-style: italic; }

/* ---------- CONTACT ---------- */
.section-contact { background: var(--dark); position: relative; overflow: hidden; }
.contact-bg-pattern { position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: radial-gradient(ellipse at top right, rgba(61,107,142,.04), transparent 60%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info-centered { max-width: 600px; margin: 0 auto; text-align: center; }
.contact-info-centered .contact-why { text-align: left; }
.contact-info-centered .contact-links-row { justify-content: center; }
.contact-info h3 { font-family: var(--font-h); font-size: 1.2rem; color: var(--white); margin-bottom: 1.5rem; }
.contact-person-card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.2rem; background: var(--dark-3); border: 1px solid rgba(255,255,255,.05); border-radius: 10px; margin-bottom: 1rem; transition: border-color .3s; }
.contact-person-card:hover { border-color: rgba(61,107,142,.2); }
.contact-person-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-d), var(--gold)); display: flex; align-items: center; justify-content: center; font-family: var(--font-h); font-size: .9rem; color: var(--dark); font-weight: 600; flex-shrink: 0; }
.contact-person-details h4 { font-size: .95rem; color: var(--white); margin-bottom: .3rem; }
.contact-person-details a { display: flex; align-items: center; gap: .4rem; font-size: .8rem; color: rgba(255,255,255,.5); margin-bottom: .2rem; transition: color .3s; }
.contact-person-details a:hover { color: var(--gold); }
.contact-person-details svg { width: 14px; height: 14px; flex-shrink: 0; }

.contact-why { padding: 1.5rem; background: var(--dark-3); border-left: 3px solid var(--gold); border-radius: 0 10px 10px 0; }
.contact-why h4 { font-size: .9rem; color: var(--gold); margin-bottom: .75rem; }
.contact-why li { position: relative; padding-left: 1rem; font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: .4rem; line-height: 1.6; }
.contact-why li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-size: .8rem; }
.contact-closing { margin-top: 1.5rem; font-style: italic; color: rgba(255,255,255,.5); font-size: .9rem; }

/* ---------- FORM ---------- */
.contact-form-wrapper { position: relative; background: var(--dark-3); border: 1px solid rgba(255,255,255,.05); border-radius: 16px; padding: 2.5rem; }
.form-decoration { position: absolute; top: -1px; left: 2rem; right: 2rem; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); border-radius: 0 0 2px 2px; }
.contact-form-wrapper h3 { font-family: var(--font-h); font-size: 1.2rem; color: var(--white); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { position: relative; margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: .4rem; font-weight: 500; }
.form-group input, .form-group textarea { width: 100%; background: var(--dark); border: 1px solid rgba(255,255,255,.08); border-radius: 6px; padding: .85rem 1rem; font-size: .9rem; color: var(--white); font-family: var(--font); transition: border-color .3s var(--ease); resize: vertical; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.input-focus-line { position: absolute; bottom: 0; left: 50%; width: 0; height: 2px; background: var(--gold); transition: all .35s var(--ease); border-radius: 1px; }
.form-group input:focus ~ .input-focus-line,
.form-group textarea:focus ~ .input-focus-line { width: 100%; left: 0; }

.form-feedback { min-height: 1.5rem; font-size: .85rem; margin-bottom: .5rem; }
.form-feedback.success { color: var(--success); }
.form-feedback.error { color: var(--danger); }
.btn-submit { width: 100%; justify-content: center; }

/* ---------- FOOTER ---------- */
.footer { background: var(--dark-2); border-top: 1px solid rgba(255,255,255,.05); padding: 3rem 0 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.footer-logo-img { height: 80px; filter: brightness(0) invert(1); opacity: .6; }
.footer-tagline { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gray); margin-top: .3rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.4); font-size: .8rem; letter-spacing: .05em; transition: color .3s; }
.footer-links a:hover { color: var(--gold); }
.footer-divider { width: 100%; height: 1px; background: rgba(255,255,255,.05); margin: 2rem 0; }
.footer-bottom { text-align: center; }
.footer-copy { font-size: .75rem; color: rgba(255,255,255,.3); }

/* ---------- BACK TO TOP ---------- */
.back-to-top { position: fixed; bottom: 2rem; right: 2rem; width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: var(--dark); display: flex; align-items: center; justify-content: center; z-index: 900; opacity: 0; visibility: hidden; transform: translateY(20px); transition: all .4s var(--ease); box-shadow: 0 4px 15px rgba(61,107,142,.3); }
.back-to-top svg { width: 20px; height: 20px; }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(61,107,142,.4); }

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.reveal-left { transform: translateX(-40px); }
.reveal.reveal-right { transform: translateX(40px); }
.reveal.visible { opacity: 1; transform: translate(0); }

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-images { max-width: 500px; margin: 0 auto; }
    .services-grid { grid-template-columns: 1fr 1fr 1fr; }
    .approach-features { grid-template-columns: 1fr 1fr; }
    .intro-highlights-grid { grid-template-columns: 1fr; }
    .hero-intro-columns { grid-template-columns: 1fr; gap: 1.5rem; }
    .approach-numbered-item { grid-template-columns: 60px 1fr; gap: 1.5rem; }
}

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

@media (max-width: 768px) {
    .nav-hamburger { display: flex; }
    .nav-links { position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(13,13,13,.97); backdrop-filter: blur(12px); flex-direction: column; align-items: center; padding: 2rem; gap: 1.5rem; transform: translateY(-100%); opacity: 0; visibility: hidden; transition: all .4s var(--ease); }
    .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }
    .light-mode .nav-links { background: rgba(255,255,255,.97); }
    .hero-logo-text { font-size: clamp(3rem, 12vw, 5rem); }
    .team-grid { grid-template-columns: 1fr; max-width: 450px; }
    .approach-features { grid-template-columns: 1fr; }
    .intro-highlights-grid { grid-template-columns: 1fr; }
    .hero-intro-columns { grid-template-columns: 1fr; gap: 1.5rem; }
    .approach-numbered-item { grid-template-columns: 60px 1fr; gap: 1.5rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .legal-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .stats-grid { gap: 1.5rem; }
    .stat-divider { display: none; }
    .section { padding: 80px 0; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.2rem; }
    .about-img-float { right: -10px; bottom: -15px; width: 50%; }
    .about-accent-box { top: -10px; left: -10px; padding: .8rem 1rem; }
}

/* ==========================================================================
   LIGHT MODE THEME
   ========================================================================== */
body.light-mode { background: #f5f3ef; color: #2a2a2a; }

/* Nav */
.light-mode .navbar { background: rgba(255,255,255,.95); backdrop-filter: blur(12px); box-shadow: 0 1px 8px rgba(0,0,0,.06); }
.light-mode .nav-logo-img { filter: none; }
.light-mode .nav-links a { color: rgba(0,0,0,.6); }
.light-mode .nav-links a:hover, .light-mode .nav-links a.active { color: var(--gold-d); }
.light-mode .nav-hamburger span { background: #333; }
.light-mode .theme-btn { border-color: rgba(0,0,0,.15); }
.light-mode .theme-icon-moon { color: #333; }
.light-mode .lang-btn { border-color: var(--gold-d); color: var(--gold-d); }
.light-mode .lang-btn:hover { background: var(--gold-d); color: #fff; }
.light-mode .lang-dropdown-btn { border-color: var(--gold-d); color: var(--gold-d); }
.light-mode .lang-dropdown-btn:hover { background: var(--gold-d); color: #fff; }
.light-mode .lang-dropdown-menu { background: #fff; border-color: rgba(44,82,112,.2); }
.light-mode .lang-option { color: #555; }
.light-mode .lang-option:hover { background: rgba(44,82,112,.08); color: var(--gold-d); }
.light-mode .lang-option--active { color: var(--gold-d); }
.light-mode .navbar.scrolled { background: rgba(255,255,255,.97); box-shadow: 0 1px 8px rgba(0,0,0,.08); }

/* Hero — always cinematic dark */
.light-mode .hero-bg-img { filter: brightness(.28) saturate(.5); }
.light-mode .hero-overlay { background: linear-gradient(180deg, rgba(24,26,31,.6) 0%, rgba(24,26,31,.8) 55%, rgba(245,243,239,1) 100%); }
.light-mode .hero-bottom-fade { background: linear-gradient(to bottom, transparent, #f5f3ef); }
.light-mode .hero-intro-blocks { background: #f5f3ef; }

/* Scroll indicator — dark in light mode */
.light-mode .scroll-mouse { border-color: rgba(0,0,0,.25); }
.light-mode .scroll-dot { background: var(--gold-d); }
.light-mode .scroll-text { color: rgba(0,0,0,.3); }

/* Preloader */
.light-mode .preloader { background: #f5f3ef; }
.light-mode .preloader-bar { background: #ddd; }

/* Stats bar */
.light-mode .stats-bar { background: #fff; border-color: rgba(61,107,142,.15); }
.light-mode .stat-label { color: #888; }
.light-mode .stat-divider { background: rgba(0,0,0,.08); }

/* About */
.light-mode .section-about { background: #f5f3ef; }
.light-mode .section-title { color: #1a1a1a; }
.light-mode .section-label { color: var(--gold-d); }
.light-mode .section-subtitle { color: #666; }
.light-mode .about-text p { color: #555; }
.light-mode .usp-pill { border-color: rgba(61,107,142,.4); color: var(--gold-d); }
.light-mode .usp-pill:hover { background: var(--gold); color: #fff; }
.light-mode .about-img-main { box-shadow: 0 20px 60px rgba(0,0,0,.12); }
.light-mode .about-img-float { border-color: #f5f3ef; box-shadow: 0 12px 40px rgba(0,0,0,.1); }

/* Team */
.light-mode .section-team { background: #edeae4; }
.light-mode .section-title.light { color: #1a1a1a; }
.light-mode .section-label.light { color: var(--gold-d); }
.light-mode .section-subtitle.light { color: #666; }
.light-mode .title-underline.light { background: var(--gold-d); }
.light-mode .team-card-inner { background: #fff; border-color: rgba(0,0,0,.06); }
.light-mode .team-card:hover .team-card-inner { box-shadow: 0 20px 60px rgba(0,0,0,.1); }
.light-mode .team-name { color: #1a1a1a; }
.light-mode .team-points li { color: #555; }
.light-mode .team-link { border-color: rgba(61,107,142,.3); }

/* Services */
.light-mode .section-services { background: #f5f3ef; }
.light-mode .service-card { background: #fff; border-color: rgba(0,0,0,.06); }
.light-mode .service-card:hover { box-shadow: 0 16px 50px rgba(0,0,0,.08); }
.light-mode .service-card h3 { color: #1a1a1a; }
.light-mode .service-card li { color: #555; }
.light-mode .service-number { color: rgba(61,107,142,.12); }
.light-mode .service-card:hover .service-number { color: rgba(61,107,142,.25); }

/* Parallax — keep dark overlays */

/* Approach */
.light-mode .section-approach { background: #edeae4; }
.light-mode .approach-table th { color: var(--gold-d); border-bottom-color: var(--gold-d); }
.light-mode .approach-table td { color: #555; border-bottom-color: rgba(0,0,0,.06); }
.light-mode .approach-table .highlight-cell { color: var(--gold-d); }
.light-mode .table-arrow { color: var(--gold-d); }
.light-mode .approach-table tbody tr:hover { background: rgba(61,107,142,.06); }
.light-mode .approach-feature { background: #fff; border-color: rgba(0,0,0,.06); }
.light-mode .approach-feature:hover { box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.light-mode .approach-feature h4 { color: #1a1a1a; }
.light-mode .approach-feature p { color: #666; }
.light-mode .approach-feature ul { color: #666; }
.light-mode .approach-text p { color: #555; }
.light-mode .approach-highlight { color: #1a1a1a !important; }
.light-mode .feature-icon svg { color: var(--gold-d); }

/* Legal */
.light-mode .section-legal { background: #edeae4; border-top-color: rgba(0,0,0,.06); }
.light-mode .legal-block h3 { color: #1a1a1a; }
.light-mode .legal-block p { color: #666; }

/* About lead */
.light-mode .about-lead { color: var(--gold-d); }

/* Intro highlights */
.light-mode .section-intro-highlights { background: #f5f3ef; }
.light-mode .hero-intro-statement { color: #1a1a1a; }
.light-mode .hero-intro-rule { background: var(--gold-d); }
.light-mode .hero-intro-columns p { color: #555; }
.light-mode .intro-highlight-block { background: #fff; border-color: rgba(0,0,0,.06); border-top-color: var(--gold-d); }
.light-mode .intro-highlight-block:hover { box-shadow: 0 16px 50px rgba(0,0,0,.08); }
.light-mode .intro-highlight-block p { color: #555; }

/* Approach numbered */
.light-mode .approach-numbered-item { border-bottom-color: rgba(0,0,0,.08); }
.light-mode .approach-numbered-item:first-child { border-top-color: rgba(0,0,0,.08); }
.light-mode .approach-num { color: var(--gold-d); }
.light-mode .approach-numbered-item p { color: #555; }

/* Contact links */
.light-mode .contact-link-item { background: #fff; border-color: rgba(61,107,142,.25); color: var(--gold-d); }
.light-mode .contact-link-item:hover { background: var(--gold-d); color: #fff; border-color: var(--gold-d); }

/* Avatar placeholder */
.light-mode .avatar-placeholder { background: #f0ece4; color: var(--gold-d); }

/* Contact */
.light-mode .section-contact { background: #f5f3ef; }
.light-mode .contact-bg-pattern { background: radial-gradient(ellipse at top right, rgba(61,107,142,.06), transparent 60%); }
.light-mode .contact-info h3 { color: #1a1a1a; }
.light-mode .contact-person-card { background: #fff; border-color: rgba(0,0,0,.06); }
.light-mode .contact-person-details h4 { color: #1a1a1a; }
.light-mode .contact-person-details a { color: #666; }
.light-mode .contact-why { background: #fff; }
.light-mode .contact-why li { color: #555; }
.light-mode .contact-closing { color: #888; }

/* Form */
.light-mode .contact-form-wrapper { background: #fff; border-color: rgba(0,0,0,.06); }
.light-mode .contact-form-wrapper h3 { color: #1a1a1a; }
.light-mode .form-group label { color: var(--gold-d); }
.light-mode .form-group input, .light-mode .form-group textarea { background: #f5f3ef; border-color: rgba(0,0,0,.1); color: #1a1a1a; }
.light-mode .form-group input:focus, .light-mode .form-group textarea:focus { border-color: var(--gold); }
.light-mode .form-group input::placeholder, .light-mode .form-group textarea::placeholder { color: #aaa; }

/* Ghost btn */
.light-mode .btn-ghost { border-color: rgba(0,0,0,.2); color: #333; }
.light-mode .btn-ghost:hover { border-color: var(--gold); color: var(--gold-d); }

/* Footer */
.light-mode .footer { background: #edeae4; border-top-color: rgba(0,0,0,.06); }
.light-mode .footer-logo-img { filter: none; opacity: .7; }
.light-mode .footer-tagline { color: #888; }
.light-mode .footer-links a { color: #888; }
.light-mode .footer-links a:hover { color: var(--gold-d); }
.light-mode .footer-divider { background: rgba(0,0,0,.06); }
.light-mode .footer-copy { color: #aaa; }

/* Back to top */
.light-mode .back-to-top { background: var(--gold-d); color: #fff; }

/* Mobile nav — light mode background only in mobile menu */

/* Scrollbar */
.light-mode ::selection { background: var(--gold); color: #fff; }
