:root {
    --navy-900: #0a0f1e;
    --navy-800: #0f172a;
    --navy-700: #1e293b;
    --navy-600: #334155;
    --gold-500: #D4A574;
    --gold-400: #e2b88a;
    --gold-300: #f0cdb0;
    --gold-600: #b8864e;
    --white: #ffffff;
    --off-white: #f8f6f3;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--navy-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all var(--transition-base);
}

.nav.scrolled {
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    box-shadow: 0 1px 0 rgba(212, 165, 116, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1001;
}

.nav-logo-mark {
    width: 40px;
    height: 40px;
    background: var(--gold-500);
    color: var(--navy-900);
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.05em;
}

.nav-logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
}

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

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-500);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--white);
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold-500);
    padding: 0.625rem 1.25rem;
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 4px;
    transition: all var(--transition-fast);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    padding: 4px;
}

.nav-toggle-line {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-fast);
    transform-origin: center;
}

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

.nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background: var(--navy-900);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.6;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 8rem 2rem 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--gold-500);
}

.hero-eyebrow-text {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gold-500);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 2rem;
}

.headline-line {
    display: block;
}

.headline-line.italic {
    font-style: italic;
    color: var(--gold-500);
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 4px;
    transition: all var(--transition-base);
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--gold-500);
    color: var(--navy-900);
}

.btn-primary:hover {
    background: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

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

.btn-ghost:hover {
    border-color: var(--gold-500);
    color: var(--gold-500);
}

.btn-gold {
    background: var(--gold-500);
    color: var(--navy-900);
}

.btn-gold:hover {
    background: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

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

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== FLOATING STAT CARDS ===== */
.hero-stats {
    position: relative;
    height: 500px;
}

.stat-card {
    position: absolute;
    background: var(--navy-700);
    border: 1px solid rgba(212, 165, 116, 0.15);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: floatIn 0.6s ease forwards;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.stat-card--1 {
    top: 0;
    left: 10%;
    animation-delay: 0.3s;
}

.stat-card--2 {
    top: 25%;
    right: 0;
    animation-delay: 0.5s;
}

.stat-card--3 {
    bottom: 25%;
    left: 5%;
    animation-delay: 0.7s;
}

.stat-card--4 {
    bottom: 0;
    right: 10%;
    animation-delay: 0.9s;
}

.stat-card-accent {
    width: 4px;
    height: 48px;
    background: var(--gold-500);
    border-radius: 2px;
    flex-shrink: 0;
}

.stat-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-500);
    line-height: 1;
}

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

@keyframes floatIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating animation for stat cards */
.stat-card--1 { animation: floatIn 0.6s ease forwards, float1 6s ease-in-out infinite 1s; }
.stat-card--2 { animation: floatIn 0.6s ease forwards, float2 7s ease-in-out infinite 1.2s; }
.stat-card--3 { animation: floatIn 0.6s ease forwards, float3 5.5s ease-in-out infinite 1.4s; }
.stat-card--4 { animation: floatIn 0.6s ease forwards, float4 6.5s ease-in-out infinite 1.6s; }

@keyframes float1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

/* ===== SCROLL INDICATOR ===== */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold-500), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== SECTION COMMON ===== */
.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--gold-500);
}

.section-eyebrow-text {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gold-600);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy-800);
    margin-bottom: 1.25rem;
}

.text-gold {
    color: var(--gold-600);
    font-style: italic;
}

.section-subtitle {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--gray-500);
    max-width: 560px;
}

/* ===== SERVICES ===== */
.services {
    padding: 8rem 0;
    background: var(--off-white);
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services .section-header {
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 2.5rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-500);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.service-card:hover {
    border-color: var(--gold-500);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-number {
    font-family: var(--font-serif);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-300);
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.service-card:hover .service-card-number {
    color: var(--gold-500);
}

.service-card-icon {
    width: 56px;
    height: 56px;
    background: var(--navy-800);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-500);
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
}

.service-card:hover .service-card-icon {
    background: var(--gold-500);
    color: var(--navy-900);
}

.service-card-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 0.75rem;
}

.service-card-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy-800);
    transition: all var(--transition-fast);
}

.service-card-link:hover {
    color: var(--gold-600);
    gap: 0.75rem;
}

/* ===== ABOUT ===== */
.about {
    padding: 8rem 0;
    background: var(--white);
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

.about-image {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.about-image img {
    width: 100%;
    height: 750px;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--gold-500);
    border-radius: 8px;
    z-index: 1;
}

.about-experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--navy-800);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.experience-badge-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-500);
    line-height: 1;
}

.experience-badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.about-content {
    padding-top: 2rem;
}

.about-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: 1.25rem;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2.5rem 0;
}

.about-value {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-value-icon {
    width: 24px;
    height: 24px;
    color: var(--gold-500);
    flex-shrink: 0;
}

.about-value span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--navy-800);
}

/* ===== APPROACH ===== */
.approach {
    padding: 8rem 0;
    background: var(--navy-900);
    position: relative;
    overflow: hidden;
}

.approach::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(212, 165, 116, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.approach-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.approach-header {
    text-align: center;
    margin-bottom: 5rem;
}

.approach-header .section-title {
    color: var(--white);
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.approach-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-500), transparent);
    z-index: 0;
}

.approach-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.approach-step-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-500);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.approach-step:hover .approach-step-number {
    opacity: 1;
}

.approach-step-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.approach-step-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

.approach-step-connector {
    display: none;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 6rem 0;
    background: var(--gold-500);
}

.cta-banner-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-banner-content {
    flex: 1;
    min-width: 280px;
}

.cta-banner-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--navy-900);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.cta-banner-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.cta-banner-desc {
    font-size: 1.0625rem;
    color: rgba(10, 15, 30, 0.7);
    line-height: 1.7;
}

.cta-banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact {
    padding: 8rem 0;
    background: var(--off-white);
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info {
    padding-top: 1rem;
}

.contact-desc {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--gray-500);
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: var(--navy-800);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-500);
    flex-shrink: 0;
}

.contact-detail-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-400);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-detail-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--navy-800);
    line-height: 1.6;
}

.contact-detail-value a:hover {
    color: var(--gold-600);
}

/* ===== CONTACT FORM ===== */
.contact-form-wrapper {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--navy-800), var(--gold-500));
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--navy-800);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-input {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--navy-800);
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 4px;
    padding: 0.875rem 1rem;
    transition: all var(--transition-fast);
    outline: none;
    width: 100%;
}

.form-input:focus {
    border-color: var(--gold-500);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-input::placeholder {
    color: var(--gray-400);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1rem;
    gap: 1rem;
}

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

.form-success-icon {
    width: 64px;
    height: 64px;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-500);
}

.form-success-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-800);
}

.form-success-text {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 320px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-900);
    padding: 5rem 0 2rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer-logo-mark {
    width: 40px;
    height: 40px;
    background: var(--gold-500);
    color: var(--navy-900);
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.05em;
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.4);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-link-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-500);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.footer-link-group a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
    line-height: 1.6;
}

.footer-link-group a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-disclaimer {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.2);
    max-width: 400px;
    text-align: right;
    line-height: 1.5;
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 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; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-stats {
        height: 300px;
        order: -1;
    }
    
    .stat-card {
        padding: 1rem 1.25rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-card-accent {
        height: 36px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-image img {
        height: 500px;
    }
    
    .approach-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .approach-steps::before {
        display: none;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 15, 30, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition-base);
    }
    
    .nav-links.open {
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-link {
        font-size: 1.25rem;
    }
    
    .nav-cta {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding: 7rem 0 4rem;
    }
    
    .hero-container {
        padding: 0 1.5rem 4rem;
    }
    
    .hero-stats {
        height: 220px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        order: -1;
    }
    
    .stat-card {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        animation: floatIn 0.6s ease forwards !important;
    }
    
    .stat-card--1 { animation-delay: 0.3s !important; }
    .stat-card--2 { animation-delay: 0.4s !important; }
    .stat-card--3 { animation-delay: 0.5s !important; }
    .stat-card--4 { animation-delay: 0.6s !important; }
    
    .hero-scroll {
        display: none;
    }
    
    .services {
        padding: 5rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about {
        padding: 5rem 0;
    }
    
    .about-image-accent {
        display: none;
    }
    
    .about-experience-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 1rem;
        display: inline-flex;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .approach {
        padding: 5rem 0;
    }
    
    .approach-steps {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .cta-banner {
        padding: 4rem 0;
    }
    
    .cta-banner-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-banner-actions {
        justify-content: center;
    }
    
    .contact {
        padding: 5rem 0;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 4rem 0 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-disclaimer {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
