/* =========================================
   PROSPER RESULTS — Premium Design System
   ========================================= */

/* CSS Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --color-bg-primary: #0A0A0A;
    --color-bg-secondary: #111111;
    --color-bg-accent: #1A1A1A;
    --color-bg-elevated: #222222;

    --color-gold-primary: #D4AF37;
    --color-gold-light: #E5C97F;
    --color-gold-dark: #B8860B;
    --color-gold-glow: rgba(212, 175, 55, 0.15);

    --color-text-primary: #FAFAFA;
    --color-text-secondary: #CCCCCC;
    --color-text-muted: #888888;
    --color-text-gold: #D4AF37;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;

    /* Spacing */
    --section-padding-y: clamp(5rem, 12vw, 10rem);
    --section-padding-x: clamp(1.5rem, 8vw, 6rem);
    --container-max: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Grain Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1000;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================
   Typography
   ========================================= */

.gold-text {
    color: var(--color-gold-primary);
}

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--section-padding-x);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--color-gold-primary);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-text-primary);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    gap: 1rem;
}

.section-divider::before,
.section-divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold-primary));
}

.section-divider::after {
    background: linear-gradient(to left, transparent, var(--color-gold-primary));
}

.divider-diamond {
    width: 8px;
    height: 8px;
    background: var(--color-gold-primary);
    transform: rotate(45deg);
}

/* =========================================
   Buttons
   ========================================= */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-dark));
    color: var(--color-bg-primary);
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold-primary));
    transition: left var(--transition-smooth);
    z-index: 0;
}

.btn--primary:hover::before {
    left: 0;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.btn--primary span,
.btn--primary svg {
    position: relative;
    z-index: 1;
}

.btn--large {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

.btn-arrow {
    transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* =========================================
   Header
   ========================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: all var(--transition-smooth);
}

.header--scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--section-padding-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
}

.logo-image {
    height: 48px;
    /* Adjust based on logo aspect ratio, typical nav height */
    width: auto;
    object-fit: contain;
    transition: height var(--transition-smooth);
}

.header--scrolled .logo-image {
    height: 40px;
    /* Slightly smaller on scroll */
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-gold-primary);
    white-space: nowrap;
}

.header__nav {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold-primary);
    transition: width var(--transition-smooth);
}

.nav-link:hover {
    color: var(--color-text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.header__cta {
    padding: 0.75rem 1.5rem;
}

.header__mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.header__mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    transition: all var(--transition-fast);
}

.header__mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.header__mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--color-bg-primary);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right var(--transition-smooth);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-menu__nav .nav-link {
    font-size: 1.5rem;
}

/* =========================================
   Hero Section
   ========================================= */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem var(--section-padding-x) 4rem;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero__lines {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 100%;
    background-image:
        linear-gradient(to right, rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
}

.hero__lines::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 200px;
    height: 1px;
    background: linear-gradient(to right, var(--color-gold-primary), transparent);
    transform: rotate(-30deg);
    animation: lineFade 3s ease-in-out infinite;
}

.hero__lines::after {
    content: '';
    position: absolute;
    bottom: 30%;
    right: 10%;
    width: 150px;
    height: 1px;
    background: linear-gradient(to left, var(--color-gold-primary), transparent);
    transform: rotate(30deg);
    animation: lineFade 3s ease-in-out infinite 1.5s;
}

@keyframes lineFade {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.hero__grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, var(--color-bg-primary) 70%);
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--color-gold-primary);
}

.badge-line {
    width: 40px;
    height: 1px;
    background: var(--color-gold-primary);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 500;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero .btn {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero__scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero__scroll span {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-gold-primary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }
}

/* =========================================
   Services Section
   ========================================= */

.services {
    padding: var(--section-padding-y) 0;
    background: var(--color-bg-secondary);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold-primary), transparent);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--color-bg-accent);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-smooth);
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card:nth-child(1) {
    transition-delay: 0.1s;
}

.service-card:nth-child(2) {
    transition-delay: 0.2s;
}

.service-card:nth-child(3) {
    transition-delay: 0.3s;
}

.service-card:nth-child(4) {
    transition-delay: 0.4s;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--color-gold-primary), var(--color-gold-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px var(--color-gold-glow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--color-gold-primary);
}

.service-card__icon svg {
    width: 100%;
    height: 100%;
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.service-card__description {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.service-card__accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-left: 1px solid rgba(212, 175, 55, 0.1);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.service-card:hover .service-card__accent {
    opacity: 1;
}

.service-card {
    cursor: pointer;
    position: relative;
}

/* Elegant hover indicator arrow */
.service-card::after {
    content: '→';
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    color: var(--color-gold-primary);
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 0.7;
    transform: translateX(0);
}

/* =========================================
   Service Modal Overlay
   ========================================= */

.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
}

.service-modal.active {
    opacity: 1;
    visibility: visible;
}

.service-modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
}

.service-modal__content {
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg, var(--color-bg-elevated), var(--color-bg-accent));
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 3rem 2.5rem;
    border-top: 3px solid var(--color-gold-primary);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(212, 175, 55, 0.15);
    transform: scale(0.9) translateY(30px);
    transition: transform var(--transition-smooth);
}

.service-modal.active .service-modal__content {
    transform: scale(1) translateY(0);
}

/* Custom scrollbar for modal */
.service-modal__content::-webkit-scrollbar {
    width: 8px;
}

.service-modal__content::-webkit-scrollbar-track {
    background: var(--color-bg-primary);
}

.service-modal__content::-webkit-scrollbar-thumb {
    background: var(--color-gold-primary);
    border-radius: 4px;
}

.service-modal__content::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-light);
}

.service-modal__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-gold-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-modal__close:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--color-gold-primary);
    transform: rotate(90deg);
}

.service-modal__close svg {
    width: 20px;
    height: 20px;
}

.service-modal__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 2rem;
    color: var(--color-gold-primary);
}

.service-modal__icon svg {
    width: 100%;
    height: 100%;
}

.service-modal__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 500;
    color: var(--color-text-primary);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-modal__description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: 2rem;
}

.service-modal__divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--color-gold-primary), transparent);
    margin: 2rem auto;
}

.service-modal__list {
    list-style: none;
    margin-bottom: 2.5rem;
    padding: 0;
}

.service-modal__list li {
    position: relative;
    padding: 1rem 0 1rem 2rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    transition: all var(--transition-fast);
    opacity: 0;
    transform: translateX(-10px);
    animation: slideInItem 0.4s ease forwards;
}

.service-modal__list li:nth-child(1) {
    animation-delay: 0.1s;
}

.service-modal__list li:nth-child(2) {
    animation-delay: 0.15s;
}

.service-modal__list li:nth-child(3) {
    animation-delay: 0.2s;
}

.service-modal__list li:nth-child(4) {
    animation-delay: 0.25s;
}

.service-modal__list li:nth-child(5) {
    animation-delay: 0.3s;
}

.service-modal__list li:nth-child(6) {
    animation-delay: 0.35s;
}

.service-modal__list li:nth-child(7) {
    animation-delay: 0.4s;
}

.service-modal__list li:nth-child(8) {
    animation-delay: 0.45s;
}

.service-modal__list li:nth-child(9) {
    animation-delay: 0.5s;
}

@keyframes slideInItem {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.service-modal__list li:last-child {
    border-bottom: none;
}

.service-modal__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 2px;
    background: var(--color-gold-primary);
    transition: width var(--transition-fast);
}

.service-modal__list li:hover {
    color: var(--color-text-primary);
    padding-left: 2.25rem;
}

.service-modal__list li:hover::before {
    width: 12px;
}

.service-modal .btn {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

/* =========================================
   Why Us Section
   ========================================= */

.why-us {
    padding: var(--section-padding-y) 0;
    background: var(--color-bg-primary);
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4rem;
}

.value-prop {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: var(--color-bg-secondary);
    border-left: 2px solid transparent;
    transition: all var(--transition-smooth);
    opacity: 0;
    transform: translateX(-30px);
}

.value-prop.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.value-prop:nth-child(1) {
    transition-delay: 0.1s;
}

.value-prop:nth-child(2) {
    transition-delay: 0.2s;
}

.value-prop:nth-child(3) {
    transition-delay: 0.3s;
}

.value-prop:nth-child(4) {
    transition-delay: 0.4s;
}

.value-prop:hover {
    border-left-color: var(--color-gold-primary);
    background: var(--color-bg-accent);
}

.value-prop__number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-gold-primary);
    line-height: 1;
    opacity: 0.5;
    transition: opacity var(--transition-fast);
}

.value-prop:hover .value-prop__number {
    opacity: 1;
}

.value-prop__content {
    flex: 1;
}

.value-prop__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
}

.value-prop__subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--color-gold-primary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.value-prop__description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

/* =========================================
   Quote Section
   ========================================= */

.quote-section {
    padding: var(--section-padding-y) 0;
    background: var(--color-bg-accent);
    position: relative;
    overflow: hidden;
}

.quote-section__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.quote-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transform: translate(-50%, -50%) rotate(45deg);
}

.quote-lines::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transform: translate(-50%, -50%);
}

.quote {
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: scale(0.95);
    transition: all var(--transition-slow);
}

.quote.animate-in {
    opacity: 1;
    transform: scale(1);
}

.quote__mark {
    font-family: var(--font-display);
    font-size: 8rem;
    line-height: 0;
    color: var(--color-gold-primary);
    opacity: 0.3;
    display: block;
    margin-bottom: -2rem;
}

.quote__text {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
    color: var(--color-text-primary);
    max-width: 800px;
    margin: 0 auto;
}

.quote__text em {
    color: var(--color-gold-primary);
    font-style: italic;
}

/* =========================================
   CTA Section
   ========================================= */

.cta-section {
    padding: var(--section-padding-y) 0;
    background: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
}

.cta-section__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-geometric {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, var(--color-gold-glow) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, var(--color-gold-glow) 0%, transparent 40%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slow);
}

.cta-content.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.cta-content__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.cta-content__subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

/* =========================================
   Footer
   ========================================= */

.footer {
    background: var(--color-bg-secondary);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 4rem var(--section-padding-x);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer__tagline {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__link {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

.footer__link:hover {
    color: var(--color-gold-primary);
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-accent);
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--color-gold-primary);
    color: var(--color-bg-primary);
}

.footer__bottom {
    text-align: center;
    padding: 1.5rem var(--section-padding-x);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__bottom p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* =========================================
   About & Founder Sections
   ========================================= */

.about-section {
    padding: var(--section-padding-y) 0;
    background: var(--color-bg-primary);
}

.founder-section {
    padding: var(--section-padding-y) 0;
    background: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
    /* For grain/bg elements */
}

.founder-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.founder-grain {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-layout--reverse .split-layout__content {
    order: 2;
}

.split-layout--reverse .split-layout__image {
    order: 1;
}

.section-header--left {
    text-align: left;
    margin-bottom: 2rem;
}

.section-divider--left {
    justify-content: flex-start;
}

.section-divider--left::before {
    display: none;
    /* Only show line after diamond */
}

.section-divider--left::after {
    width: 80px;
    background: linear-gradient(to right, var(--color-gold-primary), transparent);
}

.text-block p {
    margin-bottom: 1.5rem;
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

.text-block p:last-child {
    margin-bottom: 0;
}

.text-block .lead-text {
    font-size: 1.25rem;
    color: var(--color-text-primary);
    font-weight: 400;
}

.signature-block {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.founder-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-gold-primary);
    margin-bottom: 0.25rem;
}

.founder-title {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Image Placeholders / Frames */
.abstract-frame,
.founder-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--color-bg-elevated);
}

.abstract-frame__inner,
.founder-frame__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--color-bg-elevated), var(--color-bg-accent));
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Decorative elements for frames */
.founder-image,
.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    /* Optional: Matches the black/gold aesthetic, can be removed if user wants color */
    transition: filter var(--transition-smooth);
}

.founder-frame:hover .founder-image,
.abstract-frame:hover .about-image {
    filter: grayscale(0%);
}

.founder-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 2px solid var(--color-gold-primary);
    border-left: 2px solid var(--color-gold-primary);
    z-index: 1;
}

.founder-frame::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-bottom: 2px solid var(--color-gold-primary);
    border-right: 2px solid var(--color-gold-primary);
    z-index: 1;
}

.abstract-frame::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.15);
    z-index: -1;
}

/* =========================================
   Responsive Design
   ========================================= */

@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .header__nav,
    .header__cta {
        display: none;
    }

    .header__mobile-toggle {
        display: flex;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-list li {
        font-size: 0.8rem;
        padding: 0.6rem 0 0.6rem 1.25rem;
    }

    .service-card__details {
        font-size: 0.875rem;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .split-layout--reverse .split-layout__content {
        order: 1;
    }

    .split-layout--reverse .split-layout__image {
        order: 2;
    }

    .section-header--left {
        text-align: center;
    }

    .section-divider--left {
        justify-content: center;
    }

    .section-divider--left::before {
        display: block;
        /* Restore for center alignment */
    }

    .section-divider--left::after {
        background: linear-gradient(to left, transparent, var(--color-gold-primary));
        /* Match default center style */
    }

    .why-us__grid {
        grid-template-columns: 1fr;
    }

    .value-prop {
        flex-direction: column;
        gap: 1rem;
    }

    .value-prop__number {
        font-size: 2rem;
    }

    .footer__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer__nav {
        flex-direction: row;
        justify-content: center;
    }

    .footer__social {
        justify-content: center;
    }

    .hero__scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2.5rem;
    }

    .btn--large {
        width: 100%;
        justify-content: center;
    }
}