:root { --vsp-navy: #0A192F; --vsp-slate: #8892B0; --vsp-gold: #D4AF37; --vsp-white: #F3F4F6; --vsp-pure-white: #FFFFFF; --vsp-font-head: 'Playfair Display', serif; --vsp-font-body: 'Lora', serif; } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: var(--vsp-font-body); background-color: var(--vsp-white); color: var(--vsp-navy); line-height: 1.6; overflow-x: hidden; } img { width: 100%; height: auto; object-fit: cover; display: block; } .vsp-global-head { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 4vw; background-color: var(--vsp-pure-white); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 15px rgba(0,0,0,0.05); } .vsp-logo-block { display: flex; align-items: center; gap: 1rem; } .vsp-brand-text { font-family: var(--vsp-font-head); font-weight: 700; font-size: 1.25rem; letter-spacing: 0.5px; } .vsp-nav-chain { display: flex; gap: 2rem; } .vsp-nav-node { text-decoration: none; color: var(--vsp-navy); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s ease; } .vsp-nav-node:hover { color: var(--vsp-gold); } .vsp-hero-matrix { display: grid; grid-template-columns: 1fr 1fr; min-height: 85vh; background-color: var(--vsp-navy); color: var(--vsp-pure-white); } .vsp-hero-content { padding: 10vw 6vw; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; } .vsp-hero-title { font-family: var(--vsp-font-head); font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1; margin-bottom: 1.5rem; color: var(--vsp-pure-white); } .vsp-hero-tagline { font-size: 1.25rem; color: var(--vsp-slate); margin-bottom: 3rem; max-width: 90%; } .vsp-action-trigger { display: inline-block; padding: 1rem 2.5rem; background-color: var(--vsp-gold); color: var(--vsp-navy); text-decoration: none; font-weight: 700; font-family: var(--vsp-font-head); font-size: 1.1rem; border: none; cursor: pointer; transition: transform 0.3s ease, background-color 0.3s ease; } .vsp-action-trigger:hover { background-color: #F1C40F; transform: translateY(-2px); } .vsp-hero-visual-wrap { width: 100%; height: 100%; } .vsp-hero-img { height: 100%; object-position: center; } .vsp-section-heading { font-family: var(--vsp-font-head); font-size: 2.5rem; color: var(--vsp-navy); margin-bottom: 2rem; position: relative; } .vsp-section-heading::after { content: ''; display: block; width: 60px; height: 3px; background-color: var(--vsp-gold); margin-top: 1rem; } .vsp-center-text { text-align: center; } .vsp-center-text::after { margin: 1rem auto 0; } .vsp-body-copy { font-size: 1.1rem; color: #4A5568; margin-bottom: 1.5rem; } .vsp-highlight { color: var(--vsp-navy); font-weight: 600; } .vsp-data-point { display: inline-block; background-color: var(--vsp-gold); color: var(--vsp-navy); padding: 0.2rem 0.5rem; font-weight: bold; font-family: var(--vsp-font-head); } .vsp-inline-link { color: var(--vsp-gold); text-decoration: underline; text-underline-offset: 4px; } .vsp-firm-profile { display: flex; flex-wrap: wrap; padding: 8vw 4vw; gap: 4rem; background-color: var(--vsp-pure-white); align-items: center; } .vsp-profile-text { flex: 1 1 500px; } .vsp-profile-image-wrap { flex: 1 1 400px; position: relative; } .vsp-profile-image-wrap::before { content: ''; position: absolute; top: -20px; left: -20px; right: 20px; bottom: 20px; border: 2px solid var(--vsp-gold); z-index: 0; } .vsp-profile-img { position: relative; z-index: 1; box-shadow: 0 10px 30px rgba(0,0,0,0.1); } .vsp-capabilities-deck { padding: 6vw 4vw; background-color: var(--vsp-white); } .vsp-tab-container { max-width: 1000px; margin: 3rem auto 0; background: var(--vsp-pure-white); box-shadow: 0 5px 20px rgba(0,0,0,0.05); } .vsp-tab-list { display: flex; border-bottom: 1px solid #E2E8F0; } .vsp-tab-trigger { flex: 1; padding: 1.5rem 1rem; background: none; border: none; font-family: var(--vsp-font-head); font-size: 1.1rem; font-weight: 600; color: var(--vsp-slate); cursor: pointer; transition: all 0.3s ease; border-bottom: 3px solid transparent; } .vsp-tab-trigger:hover { color: var(--vsp-navy); background-color: #F8FAFC; } .vsp-tab-active { color: var(--vsp-navy); border-bottom-color: var(--vsp-gold); background-color: var(--vsp-pure-white); } .vsp-tab-content-area { padding: 3rem; } .vsp-tab-panel { display: none; animation: fadeIn 0.5s ease; } .vsp-panel-active { display: block; } @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } } .vsp-panel-title { font-family: var(--vsp-font-head); font-size: 1.8rem; margin-bottom: 1rem; color: var(--vsp-navy); } .vsp-panel-img { margin-top: 2rem; max-height: 400px; border-radius: 4px; } .vsp-client-voices { padding: 8vw 4vw; background-color: var(--vsp-navy); color: var(--vsp-pure-white); } .vsp-client-voices .vsp-section-heading { color: var(--vsp-pure-white); } .vsp-voice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; max-width: 1200px; margin: 4rem auto 0; } .vsp-voice-card { background-color: rgba(255,255,255,0.05); padding: 3rem 2rem; border-top: 4px solid var(--vsp-gold); position: relative; } .vsp-voice-avatar { width: 80px; height: 80px; border-radius: 50%; position: absolute; top: -40px; left: 2rem; border: 3px solid var(--vsp-navy); } .vsp-quote { font-style: italic; font-size: 1.1rem; margin-bottom: 1.5rem; color: #CBD5E1; } .vsp-author { font-family: var(--vsp-font-head); font-weight: 700; color: var(--vsp-gold); } .vsp-inquiry-zone { padding: 6vw 4vw; background-color: var(--vsp-pure-white); display: flex; justify-content: center; } .vsp-inquiry-container { max-width: 700px; width: 100%; } .vsp-inquiry-form { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; } .vsp-form-field { width: 100%; padding: 1rem; border: 1px solid #CBD5E1; font-family: var(--vsp-font-body); font-size: 1rem; background-color: #F8FAFC; transition: border-color 0.3s ease; } .vsp-form-field:focus { outline: none; border-color: var(--vsp-gold); background-color: var(--vsp-pure-white); } .vsp-textarea { min-height: 150px; resize: vertical; } .vsp-submit-btn { align-self: flex-start; } .vsp-disclaimer { font-size: 0.85rem; color: #94A3B8; margin-top: 0.5rem; display: block; } .vsp-basement { background-color: #050D1A; color: #94A3B8; padding: 5vw 4vw 2vw; font-size: 0.95rem; } .vsp-basement-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; max-width: 1200px; margin: 0 auto; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 3rem; } .vsp-base-title { color: var(--vsp-pure-white); font-family: var(--vsp-font-head); display: block; margin-bottom: 1.5rem; font-size: 1.2rem; } .vsp-base-text { margin-bottom: 0.5rem; } .vsp-base-link { color: #94A3B8; text-decoration: none; transition: color 0.3s ease; } .vsp-base-link:hover { color: var(--vsp-gold); } .vsp-basement-links { display: flex; flex-direction: column; gap: 0.8rem; } .vsp-base-bottom { text-align: center; padding-top: 2rem; } @media (max-width: 900px) { .vsp-hero-matrix { grid-template-columns: 1fr; } .vsp-hero-visual-wrap { min-height: 400px; } .vsp-nav-chain { display: none; } .vsp-tab-list { flex-direction: column; } .vsp-tab-trigger { border-left: 3px solid transparent; border-bottom: none; text-align: left; } .vsp-tab-active { border-left-color: var(--vsp-gold); } }