/* ===== CSS Custom Properties ===== */
:root {
    --navy-950: #070E1F;
    --navy-900: #0C1C3A;
    --navy-800: #112240;
    --navy-700: #1A2F54;
    --navy-600: #233D6B;
    --gold-600: #B8943E;
    --gold-500: #C8A961;
    --gold-400: #D4BA7A;
    --gold-300: #E0CC99;
    --gold-200: #EEDCB5;
    --gold-100: #F5EFC8;
    --cream-50: #FAFAF8;
    --cream-100: #F5F4F0;
    --cream-200: #EAE8E2;
    --warm-gray-50: #F8F7F5;
    --warm-gray-100: #F0EFEC;
    --warm-gray-200: #E2E0DA;
    --warm-gray-300: #C8C5BC;
    --warm-gray-400: #9E9B91;
    --warm-gray-500: #7A776E;
    --warm-gray-600: #5C5950;
    --warm-gray-700: #3D3A34;
    --warm-gray-800: #2A2722;
    --white: #FFFFFF;
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 3px rgba(12, 28, 58, 0.06), 0 1px 2px rgba(12, 28, 58, 0.04);
    --shadow-md: 0 4px 16px rgba(12, 28, 58, 0.08), 0 2px 6px rgba(12, 28, 58, 0.04);
    --shadow-lg: 0 12px 40px rgba(12, 28, 58, 0.12), 0 4px 12px rgba(12, 28, 58, 0.06);
    --shadow-xl: 0 24px 60px rgba(12, 28, 58, 0.16), 0 8px 20px rgba(12, 28, 58, 0.08);
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--warm-gray-700);
    background-color: var(--cream-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

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

ul {
    list-style: none;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy-900);
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Section Headers ===== */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-600);
    margin-bottom: 16px;
}

.section-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--gold-500);
}

.section-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.15;
    color: var(--navy-900);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--warm-gray-500);
    max-width: 560px;
}

.section-header {
    margin-bottom: 64px;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 14px 28px;
    border-radius: 4px;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold-500);
    color: var(--navy-950);
    border: 1.5px solid var(--gold-500);
}

.btn-primary:hover {
    background: var(--gold-400);
    border-color: var(--gold-400);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--navy-900);
    border: 1.5px solid var(--warm-gray-300);
}

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

.btn-full {
    width: 100%;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(250, 250, 248, 0.97);
    border-bottom-color: var(--warm-gray-200);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--navy-900);
    color: var(--gold-500);
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-name {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy-900);
    letter-spacing: -0.01em;
}

.logo-sub {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--warm-gray-500);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--warm-gray-600);
    transition: color var(--transition-fast);
    position: relative;
}

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

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

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

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-600);
    background: var(--navy-900);
    padding: 9px 18px;
    border-radius: 4px;
    transition: all var(--transition-base);
}

.nav-cta:hover {
    background: var(--navy-800);
    color: var(--gold-400);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 4px;
}

.hamburger {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--navy-900);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--navy-900);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.hamburger::before {
    margin-top: 5px;
}

.hamburger::after {
    margin-top: 5px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg) translateY(5px);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg) translateY(-5px);
}

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

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: 
        radial-gradient(circle at 20% 30%, var(--gold-500) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, var(--gold-500) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, var(--gold-500) 0.5px, transparent 0.5px);
    background-size: 60px 60px, 80px 80px, 40px 40px;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 169, 97, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 169, 97, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
    align-items: stretch;
}

/* Main Hero Card */
.hero-card {
    position: relative;
    background: var(--navy-800);
    border-radius: 12px;
    padding: 56px;
    border: 1px solid rgba(200, 169, 97, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300), var(--gold-500));
}

.hero-card-accent {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(200, 169, 97, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 28px;
}

.accent-line {
    display: block;
    width: 32px;
    height: 1.5px;
    background: var(--gold-500);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 600;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-accent {
    color: var(--gold-400);
    font-style: italic;
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-actions .btn-primary {
    background: var(--gold-500);
    color: var(--navy-950);
    border-color: var(--gold-500);
}

.hero-actions .btn-primary:hover {
    background: var(--gold-400);
    border-color: var(--gold-400);
}

.hero-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
}

.hero-actions .btn-outline:hover {
    border-color: var(--gold-500);
    color: var(--gold-400);
}

/* Stat Cards */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    border-radius: 10px;
    border: 1px solid;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.stat-card--gold {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    border-color: var(--gold-400);
    color: var(--navy-950);
}

.stat-card--light {
    background: var(--white);
    border-color: var(--warm-gray-200);
    color: var(--navy-900);
}

.stat-card--navy {
    background: var(--navy-700);
    border-color: rgba(200, 169, 97, 0.2);
    color: var(--white);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    flex-shrink: 0;
}

.stat-card--gold .stat-icon {
    background: rgba(12, 28, 58, 0.15);
    color: var(--navy-950);
}

.stat-card--light .stat-icon {
    background: var(--cream-100);
    color: var(--gold-600);
}

.stat-card--navy .stat-icon {
    background: rgba(200, 169, 97, 0.15);
    color: var(--gold-400);
}

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

.stat-number {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    opacity: 0.75;
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(200, 169, 97, 0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===== Services ===== */
.services {
    padding: 120px 0;
    background: var(--cream-50);
}

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

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

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

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--cream-100);
    border-radius: 10px;
    color: var(--navy-900);
    margin-bottom: 20px;
    transition: all var(--transition-base);
}

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

.service-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--navy-900);
}

.service-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--warm-gray-500);
}

/* ===== About ===== */
.about {
    padding: 120px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
}

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

.about-image-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--gold-500);
    border-radius: 10px;
    z-index: -1;
    opacity: 0.4;
}

.about-badge {
    position: absolute;
    bottom: 24px;
    left: -24px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--navy-900);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.badge-year {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 700;
    color: var(--gold-400);
}

.badge-line {
    width: 20px;
    height: 1px;
    background: var(--gold-500);
    opacity: 0.5;
}

.badge-text {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.7);
}

.about-content {
    padding: 8px 0;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--warm-gray-600);
    margin-bottom: 20px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--cream-100);
    border-radius: 6px;
    color: var(--gold-600);
    flex-shrink: 0;
    margin-top: 2px;
}

.value-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--warm-gray-700);
    line-height: 1.5;
}

/* ===== Approach ===== */
.approach {
    padding: 120px 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 80% 50%, rgba(200, 169, 97, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.approach .section-eyebrow {
    color: var(--gold-400);
}

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

.approach .section-subtitle {
    color: rgba(255, 255, 255, 0.55);
}

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

.process-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-500), var(--gold-500), transparent);
    opacity: 0.3;
}

.process-step {
    display: flex;
    gap: 20px;
    position: relative;
    padding-right: 20px;
}

.step-number {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--gold-500);
    opacity: 0.2;
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
}

.step-divider {
    display: none;
}

.step-content {
    padding-top: 8px;
}

.step-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.step-desc {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== Contact ===== */
.contact {
    padding: 120px 0;
    background: var(--cream-50);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info {
    padding-top: 8px;
}

.contact-desc {
    font-size: 16px;
    line-height: 1.75;
    color: var(--warm-gray-500);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 10px;
    color: var(--gold-600);
    border: 1px solid var(--warm-gray-200);
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--warm-gray-400);
}

.contact-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--navy-900);
    line-height: 1.6;
}

.contact-value a {
    color: var(--navy-900);
    transition: color var(--transition-fast);
}

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

/* Form */
.contact-form-wrap {
    position: relative;
}

.contact-form-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid var(--warm-gray-200);
    box-shadow: var(--shadow-md);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 28px;
}

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

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

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray-500);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--navy-900);
    background: var(--cream-50);
    border: 1.5px solid var(--warm-gray-200);
    border-radius: 6px;
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold-500);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(200, 169, 97, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--warm-gray-400);
}

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

/* Success Message */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--cream-100);
    border-radius: 50%;
    color: var(--gold-600);
    margin-bottom: 16px;
}

.success-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 8px;
}

.success-text {
    font-size: 15px;
    color: var(--warm-gray-500);
    line-height: 1.6;
}

/* ===== Footer ===== */
.footer {
    background: var(--navy-950);
    color: rgba(255, 255, 255, 0.6);
    padding: 72px 0 0;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo .logo-mark {
    width: 32px;
    height: 32px;
    font-size: 16px;
}

.footer-logo .logo-name {
    font-size: 16px;
    color: var(--white);
}

.footer-logo .logo-sub {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.45);
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 20px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--gold-500);
    opacity: 0.7;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    gap: 16px;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
}

/* ===== Reveal Animations ===== */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal[data-reveal-state="hidden"] {
    opacity: 0;
    transform: translateY(24px);
}

@media (prefers-reduced-motion: no-preference) {
    .reveal[data-reveal-state="hidden"] {
        opacity: 0;
        transform: translateY(24px);
    }
    
    .reveal[data-reveal-state="visible"] {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1;
        min-width: 160px;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-wrap {
        max-width: 480px;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .process-steps::before {
        display: none;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 250, 248, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--warm-gray-200);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-cta {
        justify-content: center;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-card {
        padding: 36px 28px;
    }

    .hero-stats {
        flex-direction: column;
    }

    .stat-card {
        min-width: auto;
    }

    .hero-scroll {
        display: none;
    }

    .services {
        padding: 80px 0;
    }

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

    .about {
        padding: 80px 0;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .about-badge {
        left: 0;
    }

    .approach {
        padding: 80px 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .contact {
        padding: 80px 0;
    }

    .contact-form-card {
        padding: 28px;
    }

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

    .footer {
        padding: 56px 0 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-card {
        padding: 28px 20px;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .section-title {
        font-size: 28px;
    }
}
