:root {
    /* Color Palette */
    --color-tan-light: #FDF8F2;
    --color-tan-medium: #F5E6D3;
    --color-tan-dark: #EADBC8;
    --color-orange-primary: #FF8C42;
    --color-orange-hover: #E67E22;
    --color-orange-soft: #FFB385;
    --color-dark: #2C1810;
    --color-text: #4A3728;
    --color-text-light: #7D6B5D;
    --color-white: #FFFFFF;

    /* Typography */
    --font-heading: 'Merriweather', serif;
    --font-body: 'Outfit', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 0;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-tan-light);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    font-weight: 700;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

/* Header on dark hero (using :has for modern browsers and .has-dark-hero class fallback) */
body:has(.hero-split) #main-header:not(.scrolled) .logo-text,
body.has-dark-hero #main-header:not(.scrolled) .logo-text {
    color: var(--color-white);
}

body:has(.hero-split) #main-header:not(.scrolled) .nav-links a:not(.btn-primary),
body.has-dark-hero #main-header:not(.scrolled) .nav-links a:not(.btn-primary) {
    color: rgba(255, 255, 255, 0.8);
}

body:has(.hero-split) #main-header:not(.scrolled) .nav-links a:not(.btn-primary):hover,
body.has-dark-hero #main-header:not(.scrolled) .nav-links a:not(.btn-primary):hover {
    color: var(--color-white);
}

body:has(.hero-split) #main-header:not(.scrolled) .mobile-menu-toggle span,
body.has-dark-hero #main-header:not(.scrolled) .mobile-menu-toggle span {
    background-color: var(--color-white);
}

#main-header.scrolled {
    background: rgba(253, 248, 242, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

#main-header.scrolled .logo-text {
    color: var(--color-dark);
}

#main-header.scrolled .nav-links a:not(.btn-primary) {
    color: var(--color-text);
}

#main-header.scrolled .mobile-menu-toggle span {
    background-color: var(--color-dark);
}

#main-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-dark);
    letter-spacing: -0.5px;
    transition: var(--transition-smooth);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-orange-primary);
    transition: var(--transition-smooth);
}

.nav-links a:not(.btn-primary):hover {
    color: var(--color-orange-primary);
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

/* Buttons */
.btn-primary {
    background-color: var(--color-orange-primary);
    color: var(--color-white) !important;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
    text-decoration: none;
}

.btn-primary:hover {
    background-color: var(--color-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-dark);
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    border: 2px solid var(--color-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background-color: var(--color-dark);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Hero Section - Minimal Modern Theme (Legacy) */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-minimal {
    background-color: var(--color-tan-light);
}

/* ========================================
   HERO SPLIT - New Modern Design
   ======================================== */

.hero-split {
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    position: relative;
    background: linear-gradient(135deg, #1a1410 0%, #2C1810 40%, #3d2518 100%);
    overflow: hidden;
}

/* Background Effects */
.hero-split-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-noise {
    position: absolute;
    inset: 0;
    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.85' 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;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.25) 0%, transparent 70%);
    top: -150px;
    left: 30%;
    animation: glowPulse 8s ease-in-out infinite;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 179, 133, 0.15) 0%, transparent 70%);
    bottom: -100px;
    right: 10%;
    animation: glowPulse 8s ease-in-out infinite 4s;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

/* Content Side */
.hero-split-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 4rem 80px 4rem;
    max-width: 720px;
    margin-left: auto;
}

/* Intro Row */
.hero-intro {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
}

.hero-intro-text {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.availability-indicator {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
    animation: availabilityPulse 2s ease-in-out infinite;
}

@keyframes availabilityPulse {
    0%, 100% { box-shadow: 0 0 8px rgba(34, 197, 94, 0.6); }
    50% { box-shadow: 0 0 16px rgba(34, 197, 94, 0.8), 0 0 24px rgba(34, 197, 94, 0.4); }
}

/* Headline */
.hero-headline-split {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--color-white);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.headline-row {
    display: block;
    overflow: visible;
    line-height: 1.1;
}

.headline-word {
    display: inline-block;
    animation: wordReveal 1s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.headline-row:first-child .headline-word:first-child { animation-delay: 0.1s; }
.headline-row:first-child .headline-word:last-child { animation-delay: 0.2s; }
.headline-row:last-child .headline-word:first-child { animation-delay: 0.3s; }
.headline-row:last-child .headline-word:last-child { animation-delay: 0.4s; }

@keyframes wordReveal {
    from {
        opacity: 0;
        transform: translateY(100%) rotateX(-20deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.headline-accent {
    color: var(--color-orange-primary);
    position: relative;
    display: inline-block;
    vertical-align: baseline;
    line-height: inherit;
}

/* Handwritten Reality SVG */
.reality-handwritten {
    height: 1.25em;
    width: auto;
    display: inline-block;
    vertical-align: baseline;
    position: relative;
    top: 0.15em;
    overflow: visible;
}

.reality-text-bg,
.reality-text-stroke {
    font-family: 'Merriweather', serif;
    font-size: 60px;
    font-weight: 700;
}

/* Background fill - fades in after stroke completes */
.reality-text-bg {
    fill: var(--color-orange-primary);
    opacity: 0;
    animation: realityFillIn 0.6s ease-out 1.8s forwards;
}

/* Stroke animation - draws the text */
.reality-text-stroke {
    fill: none;
    stroke: url(#reality-gradient);
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 700;
    stroke-dashoffset: 700;
    animation: realityDraw 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

@keyframes realityDraw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes realityFillIn {
    to {
        opacity: 1;
    }
}

/* Subheadline */
.hero-subheadline {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2.5rem;
    animation: fadeSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s backwards;
}

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

/* CTA Group */
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 4rem;
    animation: fadeSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s backwards;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.75rem;
    background: var(--color-orange-primary);
    color: var(--color-white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.hero-cta-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(255, 140, 66, 0.35);
}

.hero-cta-primary:hover::before {
    opacity: 1;
}

.hero-cta-primary svg {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-cta-primary:hover svg {
    transform: translate(3px, -3px);
}

.hero-cta-secondary {
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 0.75rem 0.25rem;
    position: relative;
    transition: color 0.3s ease;
}

.hero-cta-secondary::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 0.25rem;
    right: 0.25rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-cta-secondary:hover {
    color: var(--color-white);
}

.hero-cta-secondary:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Services Strip */
.hero-services-strip {
    animation: fadeSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s backwards;
}

.services-track {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.service-item {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    white-space: nowrap;
}

.service-divider {
    width: 4px;
    height: 4px;
    background: var(--color-orange-primary);
    border-radius: 50%;
    opacity: 0.6;
}

/* Visual Side */
.hero-visual-side {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 4rem 80px 2rem;
}

.visual-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
    animation: fadeSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}

.visual-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.visual-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-frame:hover .visual-main-image {
    transform: scale(1.05);
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(26, 20, 16, 0) 0%,
        rgba(26, 20, 16, 0) 60%,
        rgba(26, 20, 16, 0.6) 100%);
    pointer-events: none;
}

.visual-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--color-white);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-orange-primary);
    line-height: 1;
}

.badge-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

/* Scroll Cue */
.hero-scroll-cue {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    animation: scrollCueFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

@keyframes scrollCueFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.4);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

.hero-scroll-cue span {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

/* ========================================
   HERO SPLIT - Responsive
   ======================================== */

@media (max-width: 1200px) {
    .hero-split-content {
        padding: 140px 3rem 80px 3rem;
    }

    .hero-visual-side {
        padding: 100px 3rem 80px 1rem;
    }
}

@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-split-content {
        max-width: none;
        margin: 0;
        padding: 120px 2rem 60px;
        text-align: center;
        align-items: center;
    }

    .hero-intro {
        justify-content: center;
    }

    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .services-track {
        justify-content: center;
    }

    .hero-visual-side {
        padding: 0 2rem 100px;
    }

    .visual-frame {
        max-width: 400px;
    }

    .visual-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -25px;
    }

    .hero-scroll-cue {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-split-content {
        padding: 110px 1.5rem 40px;
    }

    .hero-intro {
        margin-bottom: 2rem;
    }

    .hero-headline-split {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .reality-handwritten {
        top: 0.2em;
    }

    .hero-subheadline {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .hero-cta-primary {
        width: 100%;
        justify-content: center;
    }

    .services-track {
        gap: 0.75rem 1rem;
    }

    .service-item {
        font-size: 0.7rem;
    }

    .hero-visual-side {
        padding: 0 1.5rem 80px;
    }

    .visual-image-wrapper {
        aspect-ratio: 1;
    }

    .hero-glow-1 {
        width: 350px;
        height: 350px;
        top: -50px;
        left: 10%;
    }

    .hero-glow-2 {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-split-content {
        padding: 100px 1.25rem 30px;
    }

    .hero-headline-split {
        font-size: 2.25rem;
    }

    .reality-handwritten {
        top: 0.25em;
    }

    .hero-intro-text {
        font-size: 0.7rem;
    }

    .visual-frame {
        max-width: 320px;
    }

    .visual-badge {
        padding: 1rem 1.25rem;
    }

    .badge-number {
        font-size: 1.5rem;
    }

    .service-divider {
        display: none;
    }

    .service-item {
        padding: 0.25rem 0.5rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 4px;
    }
}

/* ========================================
   END HERO SPLIT
   ======================================== */

/* Legacy Subtle Grid Background */
.hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(44, 24, 16, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(44, 24, 16, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

.hero-content-centered {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 120px 0 80px;
    max-width: 900px;
    margin: 0 auto;
}

/* Legacy Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--color-white);
    border: 1px solid var(--color-tan-dark);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 2.5rem;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 10px rgba(44, 24, 16, 0.06);
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
}

/* Legacy Hero Headline */
.hero-headline {
    font-size: clamp(2.75rem, 7vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
    font-weight: 900;
    letter-spacing: -0.02em;
}

/* Legacy Hero Subtext */
.hero-subtext {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    margin-bottom: 3rem;
    color: var(--color-text-light);
    font-weight: 400;
    max-width: 600px;
    line-height: 1.7;
}

/* Legacy Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: var(--color-orange-primary);
    color: var(--color-white);
    border: 2px solid var(--color-orange-primary);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.btn-hero-primary:hover {
    background-color: var(--color-orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-hero-secondary:hover {
    background-color: var(--color-dark);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* Legacy Glass Button (for other pages) */
.btn-glass {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: var(--color-white);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    backdrop-filter: blur(5px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border-color: var(--color-white);
}

.btn-glass svg {
    transition: transform 0.3s ease;
}

.btn-glass:hover svg {
    transform: translateX(4px);
}

/* Animations */
.fade-in {
    animation: fadeInUp 1s ease-out forwards;
}

.fade-in-delayed {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.fade-in-delayed-more {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

/* Scroll Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* About Section */
.about {
    padding: var(--section-padding);
    background-color: var(--color-tan-light);
    position: relative;
    overflow: hidden;
}

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

.section-tag {
    display: inline-block;
    color: var(--color-orange-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.about h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--color-dark);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-orange-primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Image Stack Effect */
.about-visual {
    position: relative;
}

.image-stack {
    position: relative;
    height: 500px;
}

.image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 90%;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-sub {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 50%;
    z-index: 3;
    border-radius: 15px;
    overflow: hidden;
    border: 8px solid var(--color-tan-light);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.image-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(var(--color-orange-soft) 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: 1;
    opacity: 0.4;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-visual {
        order: -1;
    }

    .image-stack {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Founder Section */
.founder {
    padding: var(--section-padding);
    background-color: var(--color-tan-medium);
}

.founder-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    background-color: var(--color-white);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(44, 24, 16, 0.05);
}

.founder-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.founder-image:hover img {
    transform: scale(1.05);
}

.founder-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.founder-bio {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.founder-socials {
    display: flex;
    gap: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 600;
    transition: var(--transition-smooth);
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    background-color: var(--color-tan-light);
}

.social-link svg {
    transition: var(--transition-smooth);
}

.social-link:hover {
    background-color: var(--color-orange-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

.social-link:hover svg {
    stroke: var(--color-white);
}

@media (max-width: 992px) {
    .founder-card {
        grid-template-columns: 1fr;
        padding: 3rem;
        gap: 3rem;
        text-align: center;
    }

    .founder-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .founder-socials {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .founder-card {
        padding: 2rem 1.5rem;
    }

    .founder-socials {
        flex-direction: column;
        gap: 1rem;
    }

    .social-link {
        justify-content: center;
    }
}

/* ========================================
   PROJECTS — CASE STUDY LEDGER
   ======================================== */
.projects {
    padding: 120px 0;
    background-color: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.projects-grain {
    position: absolute;
    inset: 0;
    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.85' 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: 0;
}

.projects .container {
    position: relative;
    z-index: 1;
}

.projects .section-tag {
    color: var(--color-orange-primary);
}

/* Header */
.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 3rem;
    margin-bottom: 5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.projects-header-left h2 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1;
    color: var(--color-white);
    letter-spacing: -0.02em;
}

.projects-header-desc {
    max-width: 320px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    flex-shrink: 0;
}

/* Ledger Layout */
.projects-ledger {
    display: flex;
    flex-direction: column;
}

/* ---- Ledger Entry ---- */
.ledger-entry {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem 0;
    position: relative;
}

.ledger-entry:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Index Number */
.ledger-entry__index {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    padding-top: 0.3rem;
    letter-spacing: 0.05em;
}

/* Content grid: info + visual side by side */
.ledger-entry__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Info Side */
.ledger-entry__info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ledger-entry__tags {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.ledger-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.35rem 0.85rem;
    border-radius: 3px;
}

.ledger-tag--client {
    background: var(--color-orange-primary);
    color: var(--color-white);
}

.ledger-tag--venture {
    background: transparent;
    color: var(--color-orange-primary);
    border: 1px solid rgba(255, 140, 66, 0.4);
}

.ledger-tag-text {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.3);
}

.ledger-entry__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.75rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.ledger-entry:hover .ledger-entry__title {
    color: var(--color-orange-primary);
}

.ledger-entry__desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
    max-width: 440px;
}

.ledger-entry__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-orange-primary);
    text-decoration: none;
    transition: gap 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ledger-entry__link:hover {
    gap: 0.85rem;
}

.ledger-entry__link svg {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ledger-entry__link:hover svg {
    transform: translate(2px, -2px);
}

/* Visual / Screenshot */
.ledger-entry__visual {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: rgba(255, 255, 255, 0.03);
    box-shadow:
        0 20px 50px -10px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.ledger-entry__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* ---- Venture Accent ---- */
.ledger-entry--venture {
    padding-left: 0;
}

.ledger-entry--venture .ledger-entry__index {
    color: rgba(255, 140, 66, 0.3);
}

/* ========================================
   PROJECTS — Responsive
   ======================================== */
@media (max-width: 992px) {
    .projects {
        padding: 80px 0;
    }

    .projects-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 3rem;
        padding-bottom: 2rem;
    }

    .projects-header-desc {
        max-width: 100%;
    }

    .ledger-entry {
        grid-template-columns: 50px 1fr;
        padding: 2.5rem 0;
    }

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

    .ledger-entry__visual {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .projects {
        padding: 60px 0;
    }

    .projects-header-left h2 {
        font-size: 2.75rem;
    }

    .ledger-entry {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 2rem 0;
    }

    .ledger-entry__index {
        margin-bottom: 1rem;
    }

    .ledger-entry__content {
        gap: 1.5rem;
    }

    .ledger-entry__title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .projects-header-left h2 {
        font-size: 2.25rem;
    }

    .ledger-entry__tags {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .ledger-entry__visual {
        aspect-ratio: 16 / 11;
    }
}

/* Story Suite Section */
/* Story Suite — Immersive dark section with gradient hero background */
.story-suite {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
    margin-top: -1px;
    margin-bottom: -1px;
}

.story-suite-bg {
    position: absolute;
    inset: -1px;
    z-index: 0;
    background-color: var(--color-dark);
}

.story-suite .container {
    position: relative;
    z-index: 2;
}

.story-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 5rem;
}

.story-suite .section-tag {
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.2);
}

.story-suite h2 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    margin-bottom: 1.5rem;
    color: #fff;
}

.story-suite .lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
    line-height: 1.7;
}

.story-suite .story-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.story-suite .story-feature {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}

.story-suite .story-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
}

.story-suite .feature-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 140, 66, 0.15);
    border: 1px solid rgba(255, 140, 66, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--color-orange-primary);
}

.story-suite .story-feature h4 {
    font-size: 1.1rem;
    margin: 1.25rem 0 0.6rem;
    color: #fff;
}

.story-suite .story-feature p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.story-suite .story-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.story-suite .cta-headline {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.story-suite .cta-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--color-orange-primary);
    line-height: 1.2;
}

.story-suite .cta-availability {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-suite .cta-contact-mini {
    display: flex;
    gap: 2rem;
}

.story-suite .cta-contact-mini a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.story-suite .cta-contact-mini a:hover {
    color: var(--color-orange-primary);
}

/* IT Consulting Section */
.it-consulting {
    padding: var(--section-padding);
    background-color: var(--color-dark);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.pixel-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
    pointer-events: none;
    z-index: 1;
}

.it-consulting .container {
    position: relative;
    z-index: 2;
}

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

.it-header h2 {
    color: var(--color-white);
    font-size: 3rem;
    margin: 1rem 0;
}

.it-header p {
    color: var(--color-tan-light);
    font-size: 1.1rem;
    opacity: 0.8;
}

.it-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.it-card {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.it-card:hover {
    background-color: rgba(255, 255, 255, 0.06);
    transform: translateY(-10px);
    border-color: var(--color-orange-primary);
}

.it-icon {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.it-card h3 {
    color: var(--color-white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.it-card p {
    color: var(--color-tan-light);
    opacity: 0.7;
    line-height: 1.7;
}

.it-contact-banner {
    background: linear-gradient(135deg, var(--color-orange-primary) 0%, var(--color-orange-hover) 100%);
    padding: 4rem;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-white);
}

.banner-text h3 {
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.banner-actions {
    display: flex;
    gap: 1.5rem;
}

.banner-btn {
    background-color: var(--color-white);
    color: var(--color-dark);
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .story-suite .story-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-suite .story-cta-box {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }

    .story-suite .cta-headline {
        width: 100%;
    }

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

    .it-contact-banner {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
        padding: 3rem 2rem;
    }

    .banner-actions {
        flex-direction: column;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .story-suite .story-features-grid {
        grid-template-columns: 1fr;
    }

    .story-suite .story-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.75rem 1.5rem;
    }

    .story-suite .cta-contact-mini {
        flex-direction: column;
        gap: 0.25rem;
    }

    .story-suite {
        padding: 80px 0;
    }

    .story-header {
        margin-bottom: 3rem;
    }
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1100;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--color-dark);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

/* Mobile Menu Overlay */
@media (max-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: var(--color-dark);
        padding: 0;
        gap: 0;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1001;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
        text-align: center;
        width: 100%;
        padding: 0;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }

    .nav-links a {
        color: var(--color-white) !important;
        font-size: 1.75rem;
        font-family: var(--font-heading);
        font-weight: 700;
        display: block;
        padding: 1rem 2rem;
        transition: color 0.3s ease, transform 0.3s ease;
    }

    .nav-links a:not(.btn-primary)::after {
        display: none;
    }

    .nav-links a:hover,
    .nav-links a:active {
        color: var(--color-orange-primary) !important;
        transform: scale(1.05);
    }

    .nav-links a.btn-primary {
        margin-top: 1.5rem;
        background: var(--color-orange-primary);
        color: var(--color-white) !important;
        font-size: 1rem;
        font-family: var(--font-body);
        padding: 1rem 2.5rem;
        border-radius: 6px;
        display: inline-block;
        width: auto;
        box-shadow: 0 4px 20px rgba(255, 140, 66, 0.4);
    }

    .nav-links a.btn-primary:hover {
        background: var(--color-orange-hover);
        transform: scale(1.05);
    }

    /* Hamburger to X animation */
    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span {
        background-color: var(--color-white);
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        min-height: 100vh;
        padding: 100px 0 60px;
        align-items: center;
    }

    .hero-content-centered {
        padding: 80px 1.5rem 40px;
    }

    .hero-headline {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }

    .hero-subtext {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .hero-badge {
        margin-bottom: 1.5rem;
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: auto;
        max-width: 280px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: auto;
        justify-content: center;
        padding: 0.9rem 2rem;
    }
}

/* For Good Section */
.for-good {
    padding: var(--section-padding);
    background-color: var(--color-tan-medium);
    position: relative;
    overflow: hidden;
}

.for-good-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.for-good-visual {
    position: relative;
}

.impact-image-container {
    position: relative;
    aspect-ratio: 4/5;
    background: var(--color-tan-light);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(44, 24, 16, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.impact-image-wrapper {
    width: 100%;
    height: 100%;
}

.impact-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.impact-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--color-orange-primary);
    color: var(--color-white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(255, 140, 66, 0.3);
}

.for-good-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.for-good-content .highlight {
    color: var(--color-orange-primary);
}

.for-good-branding {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.brand-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--color-dark);
    letter-spacing: -0.5px;
}

.brand-tag {
    background-color: var(--color-orange-soft);
    color: var(--color-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.for-good-content .lead {
    font-size: 1.25rem;
    color: var(--color-dark);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.impact-details {
    color: var(--color-text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 550px;
}

.partnership-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--color-white);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(44, 24, 16, 0.05);
}

.partnership-icon {
    width: 100px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partnership-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.partnership-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.partnership-text p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

@media (max-width: 992px) {
    .for-good-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .for-good-visual {
        order: 2;
    }

    .impact-image-container {
        aspect-ratio: 16/9;
    }
}

/* Footer Styles */
#main-footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 100px 0 0 0;
    position: relative;
    overflow: hidden;
}

.footer-pixel-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.15;
    background-image: radial-gradient(var(--color-orange-soft) 1px, transparent 1px);
    background-size: 30px 30px;
}

.footer-container {
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-info .footer-logo {
    text-decoration: none;
}

.footer-info .logo-text {
    color: var(--color-white);
    display: block;
    margin-bottom: 1.5rem;
}

.footer-info p {
    color: var(--color-tan-light);
    opacity: 0.7;
    max-width: 300px;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--color-tan-light);
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    background: var(--color-orange-primary);
    border-color: var(--color-orange-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

.footer-grid h4 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid ul li {
    margin-bottom: 0.85rem;
}

.footer-grid ul a {
    color: var(--color-tan-light);
    opacity: 0.7;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-grid ul a:hover {
    opacity: 1;
    color: var(--color-orange-primary);
}

.footer-contact-inline {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-contact-inline a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-contact-inline a:hover {
    color: var(--color-orange-primary);
}

/* Service Areas Row */
.footer-service-areas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem 0;
    margin-bottom: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-areas-label {
    color: var(--color-tan-light);
    opacity: 0.5;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.service-areas-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-areas-list a {
    color: var(--color-tan-light);
    opacity: 0.7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.service-areas-list a:hover {
    opacity: 1;
    color: var(--color-orange-primary);
    background: rgba(255, 140, 66, 0.1);
}

.area-divider {
    color: var(--color-tan-light);
    opacity: 0.3;
    font-size: 0.8rem;
}

.footer-newsletter p {
    color: var(--color-tan-light);
    opacity: 0.7;
    margin-bottom: 2rem;
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
    color: var(--color-tan-light);
    opacity: 0.5;
    font-size: 0.9rem;
}

.footer-massive-text {
    width: 100%;
    text-align: center;
    line-height: 0.8;
    background: linear-gradient(to bottom, transparent 30%, rgba(255, 255, 255, 0.03) 100%);
    pointer-events: none;
    user-select: none;
}

.footer-massive-text span {
    display: block;
    font-size: 14vw;
    font-weight: 900;
    font-family: var(--font-heading);
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
    letter-spacing: -0.05em;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-info {
        grid-column: 1 / -1;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-info {
        grid-column: auto;
    }
}

/* Contact Section Redesign */
.contact {
    padding: var(--section-padding);
    background-color: var(--color-tan-medium);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.contact-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.contact-content .highlight {
    color: var(--color-orange-primary);
}

.contact-content .lead {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
}

.contact-methods-grid {
    display: grid;
    gap: 1.5rem;
}

.contact-card-v2 {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--color-white);
    padding: 1.5rem 2rem;
    border-radius: 24px;
    text-decoration: none;
    color: var(--color-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(44, 24, 16, 0.05);
    transition: var(--transition-smooth);
}

.contact-card-v2:hover {
    transform: translateY(-5px);
    border-color: var(--color-orange-primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--color-tan-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange-primary);
    transition: var(--transition-smooth);
}

.contact-card-v2:hover .card-icon {
    background: var(--color-orange-primary);
    color: var(--color-white);
}

.card-text span {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
    margin-bottom: 0.2rem;
}

.card-text strong {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Contact Visual (Image Stack) */
.contact-visual {
    position: relative;
    height: 500px;
}

.contact-image-stack {
    position: relative;
    height: 100%;
}

.contact-img-main {
    position: absolute;
    top: 10%;
    left: 0;
    width: 85%;
    height: 80%;
    z-index: 2;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.contact-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-img-sub {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 45%;
    z-index: 3;
    border-radius: 20px;
    overflow: hidden;
    border: 8px solid var(--color-tan-medium);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.contact-img-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-accent-dots {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(var(--color-orange-soft) 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: 1;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-visual {
        order: -1;
        height: 400px;
    }
}

/* Web Design Standalone Section - Light Theme Redesign */
.web-design-standalone {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #FFFFFF 0%, var(--color-tan-light) 100%);
    position: relative;
    overflow: hidden;
}

.wds-background-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(to right, rgba(44, 24, 16, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(44, 24, 16, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
    pointer-events: none;
    z-index: 1;
}

.web-design-standalone .container {
    position: relative;
    z-index: 2;
}

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

.wds-header h2 {
    color: var(--color-dark);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.wds-header .highlight {
    color: var(--color-orange-primary);
}

.wds-header p {
    color: var(--color-text-light);
    font-size: 1.15rem;
}

.wds-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 6rem;
    align-items: center;
}

.wds-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.wds-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-dark);
    font-size: 1.1rem;
    font-weight: 500;
}

.wds-feature-icon {
    width: 32px;
    height: 32px;
    background: var(--color-white);
    border: 1px solid rgba(44, 24, 16, 0.1);
    box-shadow: 0 4px 6px rgba(44, 24, 16, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange-primary);
    flex-shrink: 0;
}

.wds-pricing-options {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.wds-price-card {
    flex: 1;
    background: var(--color-white);
    border: 1px solid rgba(44, 24, 16, 0.08);
    box-shadow: 0 10px 30px rgba(44, 24, 16, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}

.wds-price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(44, 24, 16, 0.1);
    border-color: rgba(255, 140, 66, 0.3);
}

.wds-price-card.featured {
    background: var(--color-white);
    border: 2px solid var(--color-orange-primary);
    box-shadow: 0 20px 40px rgba(44, 24, 16, 0.08);
}

.wds-price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-orange-primary);
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(255, 140, 66, 0.3);
}

.wds-price-label {
    display: block;
    color: var(--color-text-light);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.wds-price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.1rem;
    margin-bottom: 0.5rem;
}

.wds-currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark);
}

.wds-value {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--color-orange-primary);
    line-height: 1;
}

.wds-period {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.wds-price-detail {
    font-size: 0.85rem;
    color: var(--color-text-light);
    display: block;
}

.wds-price-or {
    color: var(--color-text-light);
    font-style: italic;
    font-size: 0.9rem;
    font-weight: 500;
}

.wds-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 20px rgba(44, 24, 16, 0.15);
}

.wds-cta:hover {
    background: var(--color-orange-primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 140, 66, 0.3);
}

.wds-cta svg {
    transition: var(--transition-smooth);
}

.wds-cta:hover svg {
    transform: translateX(5px);
}

/* Visual Side */
.wds-visual {
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 1rem;
}

.wds-device-frame {
    position: relative;
    width: 100%;
    max-width: 450px;
    background: var(--color-white);
    border-radius: 20px;
    padding: 8px;
    box-shadow:
        0 40px 80px -20px rgba(44, 24, 16, 0.2),
        0 0 0 1px rgba(44, 24, 16, 0.05);
}

.wds-device-notch {
    width: 60px;
    height: 4px;
    background: #f0f0f0;
    border-radius: 2px;
    margin: 4px auto 8px;
}

.wds-device-frame img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.wds-floating-card {
    position: absolute;
    bottom: -25px;
    left: -20px;
    background: var(--color-white);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(44, 24, 16, 0.15);
    border: 1px solid rgba(44, 24, 16, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wds-card-icon {
    width: 45px;
    height: 45px;
    background: var(--color-tan-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange-primary);
}

.wds-card-text {
    display: flex;
    flex-direction: column;
}

.wds-card-text strong {
    font-size: 1rem;
    color: var(--color-dark);
    font-weight: 700;
}

.wds-card-text span {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

@media (max-width: 992px) {
    .wds-content-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .wds-visual {
        order: -1;
    }

    .wds-features {
        align-items: center;
    }

    .wds-pricing-options {
        justify-content: center;
    }

    .wds-floating-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
    }

    @keyframes floatCard {

        0%,
        100% {
            transform: translateX(-50%) translateY(0);
        }

        50% {
            transform: translateX(-50%) translateY(-12px);
        }
    }
}

@media (max-width: 576px) {
    .wds-header h2 {
        font-size: 2.25rem;
    }

    .wds-pricing-options {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .wds-price-card {
        width: 100%;
    }

    .wds-price-or {
        display: block;
        margin: -0.5rem 0;
    }

    .wds-cta {
        width: 100%;
        justify-content: center;
    }
}