:root {
    /* Color Palette */
    --color-bg: #071D3E;
    /* Deep navy */
    --color-text: #F8F9FA;
    /* Off-white */
    --color-text-muted: rgba(248, 249, 250, 0.65);
    --color-accent: #F5A3C7;
    /* Pink accent */
    --color-secondary: #C9B796;
    /* Gold/beige */
    --color-bg-light: rgba(255, 255, 255, 0.03);
    --color-bg-border: rgba(201, 183, 150, 0.15);

    /* Typography */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Outfit', sans-serif;

    /* Layout */
    --container-width: 1500px;
    --padding-side: 5vw;
    --section-padding: 180px 0;

    /* Animation */
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --transition-slow: 0.8s var(--ease-out-expo);
    --transition-standard: 0.4s ease;
}

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

html {
    scroll-behavior: initial;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none;
    /* Custom cursor */
    overflow-x: clip;
    /* clip instead of hidden to prevent Lenis breaking */
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.1;
}

h2.section-heading {
    font-size: clamp(3rem, 6vw, 4.5rem);
    margin-bottom: 2rem;
    color: var(--color-text);
}

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

.mt-4 {
    margin-top: 2rem;
}

/* Site-wide Ambient Glows */
.ambient-glow {
    position: fixed;
    /* Fix to viewport */
    z-index: -1;
    /* Place behind everything */
    width: 60vw;
    height: 60vw;
    max-width: 800px;
    max-height: 800px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0;
    /* Handled by JS on load */
    mix-blend-mode: screen;
    pointer-events: none;
    /* Transformation and movement now handled strictly by JS */
}

/* Centering coordinates for JS to manipulate */
.ambient-glow.pink {
    background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ambient-glow.champagne {
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

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

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

.section-padding {
    padding: var(--section-padding);
}

/* Custom Cursor */
.cursor {
    width: 6px;
    height: 6px;
    background-color: var(--color-accent);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

#cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9998;
}

.cursor-follower {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(245, 163, 199, 0.4);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
}

.cursor.hover {
    width: 8px;
    height: 8px;
    background-color: var(--color-text);
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Loader */
.loader {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease;
    pointer-events: none;
}

.loader-line {
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    animation: loadLine 1.5s var(--ease-out-expo) forwards;
}

@keyframes loadLine {
    to {
        width: 200px;
        opacity: 0;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.25rem 3rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
    border-radius: 100px;
    /* Pill shape for luxury feel */
}

.btn span {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

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

.btn-primary::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-accent);
    transition: top var(--transition-standard);
    z-index: 1;
    border-radius: 100px;
}

.btn-primary:hover::before {
    top: 0;
}

.btn-primary:hover span {
    color: var(--color-bg);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-bg-border);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-text);
    transition: top var(--transition-standard);
    z-index: 1;
    border-radius: 100px;
}

.btn-secondary:hover::before {
    top: 0;
}

.btn-secondary:hover span {
    color: var(--color-bg);
}

/* Hover Underline Effect */
.hover-underline {
    position: relative;
    display: inline-block;
}

.hover-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--color-secondary);
    transition: width 0.3s ease;
}

.hover-underline:hover::after {
    width: 100%;
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 4rem;
    /* Lowered from 2rem */
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: 90%;
    max-width: 1200px;
    transition: transform var(--transition-standard);
}

.floating-nav.hidden {
    transform: translate(-50%, -150%);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(7, 29, 62, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-bg-border);
    padding: 1rem 2rem;
    border-radius: 100px;
}

.nav-brand {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-text);
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 32px;
    /* Adjust based on actual proportion when added */
    width: auto;
    object-fit: contain;
}

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

.nav-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    transition: color 0.3s ease;
}

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

.nav-cta {
    background: var(--color-text);
    color: var(--color-bg);
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.3s ease, color 0.3s ease;
}

.nav-cta:hover {
    background: var(--color-accent);
    color: var(--color-bg);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: none;
    z-index: 1001;
    /* Above overlay */
}

.hamburger-line {
    width: 24px;
    height: 1px;
    background-color: var(--color-text);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.hamburger-line:first-child {
    transform: translateY(-4px);
}

.hamburger-line:last-child {
    transform: translateY(4px);
}

.mobile-menu-btn.active .hamburger-line:first-child {
    transform: translateY(0) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:last-child {
    transform: translateY(-1px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-bg);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.mobile-menu-overlay.active .mobile-nav-links {
    transform: translateY(0);
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--color-text);
    transition: color 0.3s ease;
}

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

.mobile-nav-cta {
    margin-top: 1rem;
    background: var(--color-text);
    color: var(--color-bg);
    padding: 1rem 2rem;
    border-radius: 100px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hero-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 10vh;
    /* Adjust vertical centering visually */
}

.hero-portrait-col {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    /* Align image to the bottom */
    justify-content: center;
}

.founder-image {
    width: 100%;
    max-width: 600px;
    height: 90vh;
    /* Allow overlapping depending on natural aspect ratio */
    min-height: 600px;
    background-image: url('founder.png');
    /* The user's uploaded portrait */
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
    filter: drop-shadow(0px 30px 40px rgba(0, 0, 0, 0.4));
    transform-origin: bottom center;
}

.hero-title-wrapper {
    overflow: hidden;
}

.hero-title {
    font-size: clamp(4rem, 10vw, 8rem);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 2rem;
}

.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100px);
}

.hero-meta {
    max-width: 500px;
}

.hero-positioning {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Layered Hero Graphics Layer */
.hero-graphics {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.grain-overlay {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
    opacity: 0.3;
    mix-blend-mode: overlay;
}

/* Marquee Section */
.marquee-section {
    padding: 3rem 0;
    border-top: 1px solid var(--color-bg-border);
    border-bottom: 1px solid var(--color-bg-border);
    overflow: hidden;
    position: relative;
}

.marquee-container {
    display: flex;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding-right: 3rem;
    will-change: transform;
}

.marquee-content span:not(.dot) {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

.marquee-content .dot {
    color: var(--color-secondary);
    font-size: 1.5rem;
}

/* About Section */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.lead-text {
    font-size: 2rem;
    font-family: var(--font-serif);
    color: var(--color-secondary);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.about-text p:not(.lead-text) {
    font-size: 1.15rem;
    color: var(--color-text-muted);
}

.parallax-img-wrapper {
    overflow: hidden;
    height: 700px;
    position: relative;
    border-radius: 4px;
}

.parallax-img {
    width: 100%;
    height: 120%;
    background: #1a2a40;
    /* We'll use a placeholder gradient mimicking architectural shadows */
    background: linear-gradient(135deg, #112644 0%, #0a172a 100%);
    position: absolute;
    top: -10%;
    background-size: cover;
    background-position: center;
}

.parallax-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="n3"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n3)"/></svg>');
    opacity: 0.2;
    mix-blend-mode: overlay;
}

/* Features (Approach Stack) */
.features-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* Gap is managed by sticky offsets, keep 0 so they can overlap fully if needed, though they will stack naturally until sticky hits */
    margin-top: 4rem;
    position: relative;
    padding-bottom: 20vh;
    /* Extra padding so the last card has room to scroll and stick before next section */
}

.feature-card {
    background: var(--color-bg);
    /* Opaque background to hide cards underneath */
    border: 1px solid var(--color-bg-border);
    border-radius: 12px;
    padding: 4rem;
    position: sticky;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.4);
    /* Shadow to differentiate layers */
    transition: transform 0.4s ease;
    will-change: transform;
    /* Hint for browser hardware acceleration */
}

/* 
  Sticky offsets create the cascading deck effect. 
  Each successive card sticks slightly lower than the previous one.
  Assuming navbar is ~100px tall. 
*/
.sticky-card:nth-child(1) {
    top: 120px;
    z-index: 10;
    transform: scale(1);
}

.sticky-card:nth-child(2) {
    top: 140px;
    z-index: 11;
    transform: scale(1);
}

.sticky-card:nth-child(3) {
    top: 160px;
    z-index: 12;
    transform: scale(1);
}

.sticky-card:nth-child(4) {
    top: 180px;
    z-index: 13;
    transform: scale(1);
}

.sticky-card:nth-child(5) {
    top: 200px;
    z-index: 14;
    transform: scale(1);
}

/* Very subtle scale down effect on hover for interactivity */
.feature-card:hover {
    border-color: var(--color-accent);
}

.card-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--color-secondary);
    opacity: 0.5;
    margin-bottom: 1rem;
    line-height: 1;
}

.feature-card h3 {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 800px;
}

/* Services */
.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.sub-heading {
    font-size: 1.25rem;
    color: var(--color-secondary);
}

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

.service-card {
    background: var(--color-bg-light);
    border: 1px solid var(--color-bg-border);
    padding: 3rem;
    border-radius: 8px;
    transition: transform var(--transition-standard), background var(--transition-standard);
    cursor: pointer;
}

.card-inner h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-family: var(--font-serif);
}

.card-inner p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.card-arrow {
    display: inline-block;
    padding: 10px;
    border: 1px solid var(--color-bg-border);
    border-radius: 50%;
    color: var(--color-secondary);
    transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease;
}

.service-card:hover {
    background: rgba(245, 163, 199, 0.05);
    /* Very subtle pink tint */
    border-color: var(--color-accent);
}

.service-card:hover .card-arrow {
    transform: translateX(10px) rotate(-45deg);
    background: var(--color-accent);
    color: var(--color-bg);
    border-color: var(--color-accent);
}

/* Gallery / Portfolio */
.work-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.view-all-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-secondary);
}

.view-all-link:hover {
    color: var(--color-accent);
}

.gallery-horizontal-wrapper {
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    /* Full bleed override within container */
    padding: 0 5vw;
    /* Initial padding to align first card with content */
}

.gallery-horizontal-track {
    display: flex;
    width: max-content;
    gap: 4rem;
    padding-right: 5vw;
    /* End padding */
}

.gallery-item {
    position: relative;
    overflow: hidden;
    display: block;
    width: 65vw;
    /* Large, editorial width */
    height: 70vh;
    min-width: 800px;
    flex-shrink: 0;
    border-radius: 4px;
}

/* Meet the Founder (About) Section */
.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    /* Extra generous editorial spacing */
    align-items: center;
}

.founder-portrait {
    position: relative;
    height: 100%;
    min-height: 80vh;
}

.founder-img-container {
    width: 100%;
    height: 100%;
    /* Matches min-height */
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.founder-img-container img {
    width: 100%;
    height: 120%;
    /* For parallax room */
    object-fit: cover;
    display: block;
}

.founder-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-name {
    font-size: 2.5rem;
    color: var(--color-secondary);
    /* Champagne accent */
    margin-bottom: 1.5rem;
    font-style: italic;
    /* Adding an editorial flair */
}

.item-img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.item-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Abstract luxury placeholders */
.placeholder-1 {
    background: linear-gradient(135deg, #112644 0%, #071D3E 100%);
}

.placeholder-2 {
    background: linear-gradient(45deg, #0a172a 0%, #152f52 100%);
}

.placeholder-3 {
    background: linear-gradient(to bottom, #112644 0%, #071D3E 100%);
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    background: linear-gradient(to top, rgba(7, 29, 62, 0.9) 0%, rgba(7, 29, 62, 0) 100%);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.gallery-item:hover .item-img {
    transform: scale(1.05);
}

.gallery-item:hover .item-overlay {
    opacity: 1;
    transform: translateY(0);
}

.item-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.item-category {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-secondary);
}

/* Testimonials Slide */
.testimonials {
    background: var(--color-bg-light);
    border-top: 1px solid var(--color-bg-border);
    border-bottom: 1px solid var(--color-bg-border);
}

.testimonial-slider {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
    pointer-events: auto;
}

.quote {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-family: var(--font-serif);
    line-height: 1.2;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.author {
    font-style: normal;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-secondary);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.slide-btn {
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-bg-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: border-color 0.3s ease, color 0.3s ease;
}

.slide-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

/* CTA */
.cta {
    position: relative;
    overflow: hidden;
}

.cta-headline {
    font-size: clamp(4rem, 8vw, 7rem);
    margin-bottom: 1.5rem;
}

.cta-sub {
    font-size: 1.25rem;
    color: var(--color-text-muted);
}

.cta-graphics {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.stroke-3 {
    width: 100vw;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(201, 183, 150, 0.1) 0%, rgba(7, 29, 62, 0) 60%);
    filter: blur(80px);
}

.cta .container {
    position: relative;
    z-index: 10;
}

/* Footer */
.site-footer {
    padding: 6rem 0 2rem;
    border-top: 1px solid var(--color-bg-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-left p {
    color: var(--color-text-muted);
}

.footer-links,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-transform: uppercase;
}

.footer-links a,
.footer-social a {
    color: var(--color-text);
    font-size: 1rem;
    text-transform: uppercase;
}

.footer-bottom {
    border-top: 1px solid var(--color-bg-border);
    padding-top: 2rem;
    color: rgba(248, 249, 250, 0.4);
    font-size: 0.85rem;
}

/* Utility Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
}

/* Responsive */
@media (max-width: 991px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .nav-links {
        display: none;
        /* Hide desktop links */
    }

    .mobile-menu-btn {
        display: flex;
        /* Show hamburger */
    }

    .gallery-item.portrait,
    .gallery-item.landscape {
        grid-column: span 12;
        height: 50vh;
    }

    .gallery-item.large {
        height: 60vh;
    }

    .hero-title {
        font-size: 4rem;
    }

    .parallax-img-wrapper {
        height: 400px;
    }

    /* Mobile Overrides for Hero */
    .hero {
        height: auto;
        min-height: 100vh;
        padding-bottom: 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding-top: 15vh;
    }

    .hero-text-col {
        padding-top: 0;
        align-items: center;
    }

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

    .hero-portrait-col {
        height: 50vh;
    }

    .founder-image {
        min-height: auto;
        height: 100%;
        max-width: 80%;
    }

    /* Mobile Overrides for Founder Section */
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .founder-portrait {
        min-height: auto;
    }

    .founder-img-container {
        height: 60vh !important;
        /* Strict height to prevent any layout collapse */
        width: 100%;
    }

    .founder-img-container img {
        height: 100% !important;
        /* Remove the 120% parallax overlap */
        object-position: top center;
        /* Ensure head stays in frame */
        transform: none !important;
        /* Disable GSAP inline transform on mobile which breaks height:100% images */
    }
}