/* Signal Ridge Partners - Combined Stylesheet */

/* =============================================
   FONTS (Self-hosted)
   ============================================= */

@font-face {
    font-family: 'Instrument Serif';
    src: url('/fonts/instrument-serif-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Instrument Serif';
    src: url('/fonts/instrument-serif-italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/satoshi-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/satoshi-medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/satoshi-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* =============================================
   DESIGN TOKENS
   ============================================= */

:root {
    /* Colors - Backgrounds */
    --color-bg: #07090b;
    --color-bg-elevated: #0d1014;
    --color-bg-card: #12161c;

    /* Colors - Text */
    --color-text: #d4d2cf;
    --color-text-muted: #6b7280;
    --color-text-dim: #3d4450;

    /* Colors - Accent */
    --color-accent: #c9a962;
    --color-accent-hover: #d4b46d;
    --color-accent-dim: rgba(201, 169, 98, 0.10);
    --color-ridge: rgba(201, 169, 98, 0.08);

    /* Colors - Borders */
    --color-border: rgba(255, 255, 255, 0.06);

    /* Typography */
    --font-display: 'Instrument Serif', 'Times New Roman', serif;
    --font-body: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Easing */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* =============================================
   BASE STYLES
   ============================================= */

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

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

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--color-accent);
    color: var(--color-bg);
}

/* Noise Texture Overlay - optimized for HiDPI displays */
.noise {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 512px 512px;
}

/* Topographic Background Pattern */
.topo-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}

.topo-bg svg {
    width: 100%;
    height: 100%;
}

/* =============================================
   LAYOUT
   ============================================= */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}

section {
    padding: clamp(4rem, 10vh, 8rem) 0;
    scroll-margin-top: 5rem;
}

section[id] {
    scroll-margin-top: 5rem;
}

/* =============================================
   HEADER
   ============================================= */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 0;
    background: linear-gradient(to bottom, var(--color-bg) 0%, transparent 100%);
    transition: background 0.4s ease;
}

header.scrolled {
    background: rgba(7, 9, 11, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 98, 0.12);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.logo-mark {
    width: 90px;
    height: 90px;
    position: relative;
}

.logo-mark svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: -0.01em;
}

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

nav a {
    color: var(--color-text);
    text-decoration: none;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--color-accent);
}

/* Mobile Nav Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s ease;
}

/* =============================================
   HERO
   ============================================= */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/hero-ridge.png') no-repeat center center;
    background-size: cover;
    transform: scaleX(-1);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(7, 9, 11, 0.9) 0%, rgba(7, 9, 11, 0.65) 50%, rgba(7, 9, 11, 0.35) 100%);
    z-index: 0;
}

.hero > * {
    position: relative;
    z-index: 1;
}

/* Splash Logo */
.splash-logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 200;
    background: var(--color-bg);
    animation: splashFade 0.8s var(--ease-out-expo) 1.6s forwards;
    pointer-events: none;
}

.splash-logo svg {
    width: 160px;
    height: 160px;
    opacity: 0;
    animation: splashLogoIn 1s var(--ease-out-expo) 0.2s forwards;
}

.splash-name {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--color-text);
    letter-spacing: -0.01em;
    opacity: 0;
    animation: splashLogoIn 0.8s var(--ease-out-expo) 0.6s forwards;
}

@keyframes splashLogoIn {
    from {
        opacity: 0;
        transform: scale(0.7);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes splashFade {
    to {
        opacity: 0;
        visibility: hidden;
    }
}


.hero-content {
    max-width: 900px;
}

.hero-tag {
    display: inline-block;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: var(--color-accent);
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 2s forwards;
}

.cursor {
    font-family: 'Courier New', monospace;
    color: var(--color-accent);
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 2s forwards;
}

.hero-label::before {
    content: '';
    width: 2rem;
    height: 1px;
    background: var(--color-accent);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 2.2s forwards;
}

.hero h1 em {
    font-style: italic;
    color: var(--color-accent);
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--color-text-muted);
    max-width: 650px;
    margin-bottom: 3rem;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 2.4s forwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 2.6s forwards;
}

.hero-accent {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 50vw;
    height: 50vw;
    max-width: 600px;
    max-height: 600px;
    background: radial-gradient(circle at center, var(--color-accent-dim) 0%, rgba(201, 169, 98, 0.03) 40%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    animation: fadeIn 2s ease 2.4s forwards;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-dim);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s ease 3s forwards;
}

.scroll-indicator .line {
    width: 1px;
    height: 3rem;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

/* =============================================
   SECTIONS
   ============================================= */

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

.section-label {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

/* Services Section */
.services {
    background: var(--color-bg-elevated);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.15), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Retro Services Grid */
.services-grid--retro {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(201, 169, 98, 0.2);
}

.service-card--retro {
    background: transparent;
    border: none;
    border-right: 1px solid rgba(201, 169, 98, 0.15);
    padding: 2.5rem 2rem;
    position: relative;
}

.service-card--retro:last-child {
    border-right: none;
}

.service-card--retro::before {
    display: none;
}

.service-card--retro:hover {
    background: rgba(201, 169, 98, 0.03);
    transform: none;
    border-color: rgba(201, 169, 98, 0.15);
}

.service-index {
    display: none;
}

.service-icon--large {
    width: 64px;
    height: 64px;
    color: var(--color-accent);
    opacity: 0.5;
    margin-bottom: 1.5rem;
    transition: opacity 0.4s ease;
}

.service-card--retro:hover .service-icon--large {
    opacity: 0.8;
}

.service-card--retro .service-icon {
    display: none;
}

.service-card--retro h3 {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.02em;
    margin-bottom: 0.75rem;
}

.service-card--retro p {
    font-size: 0.85rem;
    line-height: 1.7;
}


/* Approach Section */
.approach {
    background: var(--color-bg-elevated);
    position: relative;
}

.approach::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.15), transparent);
}

.approach-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.approach-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 1rem;
}

.approach-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.approach-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Impact Section */
.impact {
    position: relative;
}

.impact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.15), transparent);
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.impact > .container > .impact-content {
    max-width: 800px;
}

.impact-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.impact-content p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Clients Section */
.clients {
    position: relative;
}

.clients-header {
    text-align: center;
    margin-bottom: 3rem;
}

.clients-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 400;
}

.client-types {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Founder Section */
.founder-section {
    position: relative;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.15), transparent);
}

.founder-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: center;
}

.founder-photo {
    overflow: hidden;
    border: 1px solid rgba(201, 169, 98, 0.2);
}

.founder-photo img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.4s ease;
}

.founder-photo:hover img {
    filter: grayscale(0%);
}

.founder-bio p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Contact Section */
.contact-simple {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-simple h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.contact-simple > p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact {
    background: var(--color-bg-elevated);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.15), transparent);
}

.contact::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at top right, var(--color-accent-dim) 0%, transparent 60%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.contact-content > p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* =============================================
   FOOTER
   ============================================= */

footer {
    padding: 3rem 0;
    border-top: 1px solid var(--color-border);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-brand span {
    font-family: var(--font-display);
    font-size: 1rem;
}

.footer-copy {
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.4s var(--ease-out-expo);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-bg);
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    color: var(--color-bg);
    transform: translateY(-1px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text);
    border: 1px solid rgba(201, 169, 98, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(201, 169, 98, 0.05);
}

/* =============================================
   CARDS
   ============================================= */

.service-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s var(--ease-out-expo);
}

.service-card:hover {
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateY(-4px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3rem;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.4s var(--ease-out-expo);
}

.service-card:hover::before {
    width: 100%;
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Approach Card */
.approach-card {
    text-align: left;
    padding: 2.5rem;
    padding-left: 2.5rem;
    border: 1px solid var(--color-border);
    border-left: 1px solid var(--color-accent);
    background: var(--color-bg);
    position: relative;
    transition: all 0.4s var(--ease-out-expo);
}

.approach-card:hover {
    border-color: rgba(201, 169, 98, 0.4);
    border-left-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(201, 169, 98, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.approach-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.approach-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Stats Card */
.stats-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--color-accent-dim) 0%, transparent 60%);
    pointer-events: none;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-item:not(:last-child) {
    border-bottom: 1px solid var(--color-border);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

/* Client Tags */
.client-tag {
    padding: 0.625rem 1.25rem;
    background: rgba(201, 169, 98, 0.08);
    border: 1px solid rgba(201, 169, 98, 0.5);
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: var(--color-accent);
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.client-tag:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(201, 169, 98, 0.03);
}

/* =============================================
   FORMS
   ============================================= */

.contact-form-wrapper {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 3rem;
    position: relative;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4rem;
    height: 1px;
    background: var(--color-accent);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.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-group label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-dim);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    background: var(--color-bg-elevated);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238a8f98' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: var(--color-bg-card);
    color: var(--color-text);
}

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

.form-submit {
    margin-top: 0.5rem;
}

.form-submit .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 0.95rem;
}

.form-note {
    font-size: 0.8rem;
    color: var(--color-text-dim);
    text-align: center;
    margin-top: 1rem;
}

/* Form Success State */
.form-success {
    text-align: center;
    padding: 3rem 2rem;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--color-accent);
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.form-success p {
    color: var(--color-text-muted);
}

/* =============================================
   CONTACT INFO
   ============================================= */

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

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
}

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

.contact-info-item a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-primary {
    color: var(--color-text);
}

.contact-info-item a:hover {
    color: var(--color-accent);
}

.contact-info-item span {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    display: block;
}

.contact-info-item span.contact-info-primary {
    color: var(--color-text);
    font-size: 1rem;
}

/* =============================================
   IMPACT LIST
   ============================================= */

.impact-list {
    list-style: none;
}

.impact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(201, 169, 98, 0.15);
}

.impact-list li:last-child {
    border-bottom: none;
}

.impact-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    margin-top: 0.1rem;
}

.impact-marker {
    flex-shrink: 0;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-top: 0.1rem;
    opacity: 0.7;
}

.impact-list strong {
    display: block;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.impact-list span {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* =============================================
   ANIMATIONS
   ============================================= */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scrollLine {
    0%, 100% {
        transform: scaleY(1);
        opacity: 1;
    }
    50% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out-expo);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 900px) {
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .approach-cards {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .founder-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .founder-photo {
        max-width: 280px;
    }

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

    .service-card--retro {
        border-right: none;
        border-bottom: 1px solid rgba(201, 169, 98, 0.15);
    }

    .service-card--retro:last-child {
        border-bottom: none;
    }

    .service-index {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    /* Prevent horizontal overflow */
    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    .container {
        padding: 0 1.25rem;
        width: 100%;
        max-width: 100%;
    }

    .contact-grid {
        display: block;
    }

    .contact-content {
        margin-bottom: 2rem;
    }

    section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    /* Header - compact on mobile */
    header {
        padding: 1rem 0;
    }

    .logo-mark {
        width: 36px;
        height: 36px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .hero-tag {
        display: none;
    }

    /* Mobile Nav */
    .mobile-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-bg-elevated);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        border-left: 1px solid var(--color-border);
        transition: right 0.4s var(--ease-out-expo);
        z-index: 101;
    }

    nav.open {
        right: 0;
    }

    nav a {
        font-size: 1rem;
    }

    /* Hero */
    .hero {
        min-height: 85vh;
        min-height: 85dvh;
        padding-top: 5.5rem;
        padding-bottom: 2.5rem;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1.25rem;
        text-wrap: balance;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
        color: var(--color-text-muted);
    }

    .hero-label {
        font-size: 0.7rem;
        letter-spacing: 0.1em;
        margin-bottom: 1.25rem;
        white-space: nowrap;
    }

    .hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .hero-actions .btn {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-accent {
        display: none;
    }

    /* Splash */
    .splash-name {
        font-size: 1.75rem;
    }

    .splash-logo svg {
        width: 90px;
        height: 90px;
    }

    /* Section Labels */
    .section-label {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    /* Services */
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card--retro {
        padding: 1.5rem 1.25rem;
    }

    .service-icon--large {
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
    }

    .service-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 1rem;
    }

    .service-card h3,
    .service-card--retro h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .service-card p,
    .service-card--retro p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Impact */
    .impact-content h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .impact-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .impact-list li {
        font-size: 0.95rem;
        padding: 1rem 0;
    }

    .impact-list span {
        font-size: 0.9rem;
    }

    .impact-marker {
        font-size: 0.95rem;
    }

    .stats-card {
        padding: 1.75rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    /* Approach */
    .approach-header {
        margin-bottom: 1.5rem;
    }

    .approach-header h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .approach-card {
        padding: 1.5rem;
    }

    .approach-card h3 {
        font-size: 1.1rem;
    }

    .approach-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Clients */
    .clients-header {
        margin-bottom: 1.5rem;
    }

    .clients-header h2 {
        font-size: clamp(1.35rem, 5vw, 1.65rem);
    }

    .client-tag {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .client-types {
        gap: 0.6rem;
    }

    /* Founder on homepage */
    .founder-bio p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* Contact */
    .contact-simple h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .contact-simple > p {
        font-size: 0.95rem;
    }

    .contact-content h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .contact-content > p {
        font-size: 0.95rem;
    }

    .contact-info-text span {
        font-size: 1rem;
    }

    .contact-form-wrapper {
        padding: 1.25rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .contact-form {
        max-width: 100%;
    }

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

    .form-group {
        max-width: 100%;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 16px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    /* Footer */
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .footer-copy {
        font-size: 0.75rem;
    }
}
