:root {
    --bg-color: #121416;
    --logo-color: #F2F0EC;
    --aperture-bg: #F2F0EC;
    /* The "paper" inside the logo */
    --texture-text: #121416;
    /* The "ink" text inside the logo */
    --font-main: 'IBM Plex Sans', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;

    --intro-height: 400vh;
    /* Total scroll height: 3vh for intro animation + 1vh buffer */

    /* Reusable effects */
    --text-muted: rgba(242, 240, 236, 0.85);
    --glow-shadow: 0 0 8px rgba(242, 240, 236, 0.4), 0 0 16px rgba(242, 240, 236, 0.2);
    --glow-shadow-strong: 0 0 10px rgba(242, 240, 236, 0.9), 0 0 20px rgba(242, 240, 236, 0.5);
}

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

html,
body {
    width: 100%;
    background-color: var(--bg-color);
    color: var(--logo-color);
    font-family: var(--font-main);
    overflow-x: hidden;
}

/* Scroll Workspace */
#scroll-workspace {
    height: var(--intro-height);
    width: 100%;
    pointer-events: none;
    /* purely for scroll height */
    visibility: hidden;
}

/* Fixed Stage */
#stage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    will-change: transform;
    /* Hint for hero transition */
}

/* Content Cluster (Logo + Wordmark) */
#content-cluster {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center content vertically if height allows */
    /* transition: transform 0.1s linear; Handled via JS for sync */
    will-change: transform;
}

/* Logo Block Wrapper */
#logo-block {
    width: 80vw;
    max-width: 500px;
    aspect-ratio: 408.08 / 265;
    /* Keep logo aspect ratio */
    position: relative;
    /* Context for absolute children */
    overflow: hidden;
    isolation: isolate;
    /* Create new stacking context for blending */

    opacity: 0;
    /* Fade in on load */
    transition: opacity 3s ease-out;
}

/* 1. Texture Underlay (Bottom Layer) */
#texture-underlay {
    position: absolute;
    /* Pull back from edge to prevent subpixel white bleed */
    top: 1px;
    left: 1px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    overflow: hidden;
    background-color: var(--aperture-bg);
    /* Paper white background inside aperture */
}

#texture-content {
    position: absolute;
    /* Take out of flow to prevent any parent expansion */
    top: 0;
    left: 0;
    width: 100%;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    line-height: 1.2;
    color: var(--texture-text);
    word-break: break-all;
    white-space: pre-wrap;
    opacity: 1;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
    will-change: opacity;
    transition: opacity 1.5s ease;
    /* Smooth fade out */
    padding: 10px;
}

#texture-content.hidden {
    opacity: 0;
}

/* Highlighted words in texture */
.highlight {
    color: inherit;
    font-weight: 700;
    text-shadow: 0 0 8px currentColor;
    /* Uses current text color for glow */
}

/* 2. SVG Overlay (Top Layer - The Mask) */
svg#main-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Reverted scale */
    display: block;
    overflow: visible;
    pointer-events: none;
    /* Allow interactions to pass through SVG layer */
    z-index: 2;
    /* Above texture */
}

/* Logo Overlay Style */
.logo-overlay {
    /* The visible outline of the logo */
    fill: transparent;
    stroke: var(--logo-color);
    stroke-width: 1.5px;
    vector-effect: non-scaling-stroke;
}

/* Wordmark */
#wordmark-container {
    margin-top: 2vh;
    height: 3rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}

#wordmark-inner {
    display: flex;
    gap: 0.15em;
}

.char-span {
    display: inline-block;
    font-weight: 600;
    font-size: clamp(1.4rem, 6vw, 2.4rem);
    letter-spacing: 0.1em;
    color: var(--logo-color);

    /* Reveal State Default */
    opacity: 0;
    filter: blur(8px);
    transform: scale(0.95);
    transition: opacity 0.6s ease-out, filter 0.6s ease-out, transform 0.8s ease-out;
}

.char-span.revealed {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}

/* Hero Final Text (Subhead + CTA) */
#hero-final-text {
    position: relative;
    width: 100%;
    margin-top: 2vh;
    /* Tightened from 5vh */

    display: flex;
    flex-direction: column;
    align-items: center;
    /* Equalize spacing between subhead and button */

    text-align: center;

    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s ease, transform 1.2s ease-out;
    pointer-events: none;
    /* Inactive until visible */
}

#hero-final-text.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

#hero-final-text h2 {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.25rem;
    margin-bottom: 0;
    /* Let flex gap handle spacing */
    color: var(--logo-color);
}

#hero-final-text button {
    background: transparent;
    border: 1px solid var(--logo-color);
    color: var(--logo-color);
    margin-top: 4vh;
    padding: 0.8em 2em;
    font-family: var(--font-main);
    /* Back to IBM Plex Sans */
    font-size: 0.9rem;
    /* Slightly smaller for all caps */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(242, 240, 236, 0.4);
    animation: buttonGlow 4s ease-in-out infinite;
}

@keyframes buttonGlow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(242, 240, 236, 0.3);
    }

    50% {
        box-shadow: 0 0 20px rgba(242, 240, 236, 0.6), 0 0 30px rgba(242, 240, 236, 0.3);
    }
}

#hero-final-text button:hover {
    background: var(--logo-color);
    color: var(--bg-color);
    animation: none;
    box-shadow: 0 0 30px rgba(242, 240, 236, 0.8);
}

#hero-final-text button.clicked {
    animation: none;
    box-shadow: 0 0 30px rgba(242, 240, 236, 0.8);
}

/* Glowing Line */
#glowing-line {
    position: absolute;
    top: calc(100%);
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 65vh;
    background: linear-gradient(to bottom, rgba(242, 240, 236, 1), rgba(242, 240, 236, 0));
    box-shadow: 0 0 10px rgba(242, 240, 236, 0.8), 0 0 20px rgba(242, 240, 236, 0.4);
    opacity: 0;
    transform-origin: top center;
    transition: opacity 0.3s ease;
    scale: 1 0;
}

@media (min-width: 1024px) {
    #glowing-line {
        height: 60vh;
    }
}

#glowing-line.extending {
    opacity: 1;
    animation: extendLine 3s ease-out forwards;
}

@keyframes extendLine {
    0% {
        scale: 1 0;
    }

    100% {
        scale: 1 1;
    }
}

/* What is an Overlay Section */
#what-is-overlay {
    position: relative;
    min-height: 100vh;
    background-color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

#what-is-overlay.visible {
    opacity: 1;
}

.content-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    transition: gap 2s ease, transform 2s ease;
}

.content-wrapper.expanded {
    gap: 1.5rem;
    transform: translateY(-5vh);
}

#what-is-overlay h1 {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: clamp(2rem, 5vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--logo-color);
    text-align: center;
    text-shadow: 0 0 0 rgba(242, 240, 236, 0);
    transform: translateY(0);
    transition: transform 0.6s ease;
    will-change: text-shadow, transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.content-wrapper.expanded h1 {
    transform: translateY(-1rem);
}

#what-is-overlay.visible h1 {
    animation: textGlowPulse 3.2s ease-in-out 1;
}

.subtitle {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 300;
    font-size: clamp(1.35rem, 4vw, 1.8rem);
    color: var(--logo-color);
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    margin: 0;
    max-width: 600px;
    padding: 0 2.5rem;
}

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

/* Prompt Line (Bridge between intro and site) */
.prompt-line {
    position: absolute;
    top: calc(100% + 2.5rem);
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 0;
    background: linear-gradient(to bottom, rgba(242, 240, 236, 1), rgba(242, 240, 236, 0));
    box-shadow: 0 0 10px rgba(242, 240, 236, 0.8), 0 0 20px rgba(242, 240, 236, 0.4);
    transition: height 1.5s ease-in-out;
}

.prompt-line.visible {
    height: 43vh;
}

/* Main Content Container */
#main-content {
    display: none;
    /* Hidden strictly until unlocked */
}

#main-content.unlocked {
    display: block;
    animation: fadeInSite 1s ease forwards;
}

@keyframes fadeInSite {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ========================================
   STICKY SECTION HEADER & NAVIGATION
   ======================================== */

/* Sticky Header */
#section-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(18, 20, 22, 0.95), rgba(18, 20, 22, 0.85));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    z-index: 1000;
    /* Initially hidden */
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

#section-header.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Section Title in Header */
#header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateX(calc(50vw - 50% - 1.5rem));
    transition: transform 0.5s ease, opacity 0.3s ease;
}

#section-header.visible #header-left {
    transform: translateX(0);
    opacity: 1;
}

#header-logo {
    height: 28px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

/* Override the SVG fill color to match site color scheme */
#header-logo .st0,
#header-logo path {
    fill: var(--logo-color);
}

#header-logo:hover {
    opacity: 1;
}

#section-title-wrapper {
    position: relative;
    height: 1.4em;
    overflow: hidden;
}

#section-title {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.12em;
    color: var(--logo-color);
    text-transform: uppercase;
    display: block;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Animation classes for title change */
#section-title.slide-out {
    transform: translateY(-100%);
    opacity: 0;
}

#section-title.slide-in {
    transform: translateY(100%);
    opacity: 0;
}

#section-title.slide-in-active {
    transform: translateY(0);
    opacity: 1;
}

/* Hamburger Menu Button */
#menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    opacity: 0;
    transition: opacity 0.4s ease 0.2s;
}

#section-header.visible #menu-toggle {
    opacity: 1;
}

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

#menu-toggle:hover .hamburger-line {
    box-shadow: 0 0 8px rgba(242, 240, 236, 0.5);
}

/* Slide-out Navigation Menu */
#nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 80vw;
    height: 100vh;
    background: linear-gradient(135deg, rgba(18, 20, 22, 0.98), rgba(30, 32, 36, 0.98));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1001;
    padding: 80px 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    border-left: 1px solid rgba(242, 240, 236, 0.1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

#nav-menu.open {
    transform: translateX(0);
}

/* Close Button */
#menu-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--logo-color);
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    line-height: 1;
}

#menu-close:hover {
    opacity: 1;
}

/* Navigation Links */
#nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#nav-menu li {
    margin-bottom: 1.5rem;
}

#nav-menu a {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    color: var(--logo-color);
    text-decoration: none;
    text-transform: uppercase;
    opacity: 0.7;
    transition: opacity 0.3s ease, padding-left 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

#nav-menu a:hover {
    opacity: 1;
    padding-left: 0.5rem;
}

#nav-menu a.active {
    opacity: 1;
    position: relative;
}

#nav-menu a.active::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: var(--logo-color);
    box-shadow: 0 0 10px rgba(242, 240, 236, 0.5);
}

/* Overlay behind menu */
#nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

#nav-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

/* The Experience Section */
#the-experience {
    min-height: 100vh;
    padding: 10vh 1rem 8vh;
    background-color: var(--bg-color);
}

.experience-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Experience Cards */
.experience-card {
    position: relative;
    margin-bottom: 13vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* "Safe" invisible state (0.01) so browser sees content */
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.2s ease, transform 1.2s ease;
    transition-delay: 0.2s;
}

.experience-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stacking order: Each card container gets z-index to preserve order during animations */
.experience-card:nth-child(2) {
    z-index: 10;
}

.experience-card:nth-child(3) {
    z-index: 20;
}

.experience-card:nth-child(4) {
    z-index: 30;
}

.experience-card:nth-child(5) {
    z-index: 40;
}

.experience-card:nth-child(6) {
    z-index: 50;
}

.experience-card:nth-child(7) {
    z-index: 60;
}

/* Child elements maintain relative stacking within their card */
.experience-card .card-content {
    z-index: 1;
}

.experience-card .card-image {
    z-index: 2;
}


/* Card Content - Frosted Glass Effect */
.card-content {
    position: relative;
    background: rgba(242, 240, 236, 0.08);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border: 1px solid rgba(242, 240, 236, 0.15);
    border-radius: 3px;
    padding: 1.75rem 1.5rem;
    padding-bottom: 6rem;
    width: 95%;
    max-width: none;
    margin-left: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    /* z-index set per card above */
    transition: backdrop-filter 5s ease 0.8s, -webkit-backdrop-filter 5s ease 0.8s;
}

/* Apply frosted glass effect when card is visible */
.experience-card.visible .card-content {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.card-content h3 {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: 0.08em;
    color: var(--logo-color);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    text-transform: uppercase;
    position: relative;
}

.card-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 75%;
    height: 1px;
    background: linear-gradient(to right, rgba(242, 240, 236, 1), rgba(242, 240, 236, 0));
    box-shadow: 0 0 8px rgba(242, 240, 236, 0.6), 0 0 12px rgba(242, 240, 236, 0.3);
}

.card-content p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.7;
    color: var(--logo-color);
    margin-bottom: 1.2rem;
}

.card-content p:last-child {
    margin-bottom: 0;
}

.card-content em {
    font-style: italic;
    color: rgba(242, 240, 236, 0.9);
}

/* Card Images - Positioned on right side, landscape ratio */
.card-image {
    position: absolute;
    bottom: -7.5em;
    left: auto;
    right: 0;
    transform: none;
    width: 65%;
    height: 200px;
    /* z-index set per card above */
    overflow: hidden;
    border-radius: 3px;
    border: 1px solid rgba(242, 240, 236, 0.15);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(242, 240, 236, 0.3),
        0 0 40px rgba(242, 240, 236, 0.15);
}

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

/* Tablet and larger screens */
@media (min-width: 768px) {
    .experience-card {
        margin-bottom: 23vh;
    }

    .card-content {
        padding: 3rem 2.5rem;
        padding-bottom: 6rem;
        width: 95%;
        margin-left: 0;
    }


    .card-image {
        bottom: -13em;
        left: auto;
        right: 0;
        width: 55%;
        height: 280px;
    }
}

/* Desktop screens */
@media (min-width: 1024px) {

    .experience-card {
        margin-bottom: 32vh;
    }


    .card-content {
        padding: 4rem 3.5rem;
        padding-bottom: 6rem;
        width: 80%;
        margin-left: 0;
    }


    .card-image {
        bottom: -18em;
        left: auto;
        right: 0;
        width: 55%;
        height: 360px;
    }
}



/* ========================================
   THE APPROACH SECTION
   ======================================== */

#the-approach {
    min-height: 100vh;
    padding: 10vh 1rem 8vh;
    background-color: var(--bg-color);
}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Timeline wrapper */
.approach-timeline {
    position: relative;
    padding-top: 2vh;
    /* Initially hide content until animation triggers */
    opacity: 0;
    transition: opacity 0.5s ease;
}

.approach-timeline.animating {
    opacity: 1;
}

/* Vertical connecting line */
.timeline-line {
    position: absolute;
    top: 2vh;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100%);
    background: linear-gradient(to bottom,
            rgba(242, 240, 236, 0.8),
            rgba(242, 240, 236, 0.6) 50%,
            rgba(242, 240, 236, 0));
    box-shadow:
        0 0 8px rgba(242, 240, 236, 0.6),
        0 0 16px rgba(242, 240, 236, 0.3);
    z-index: 0;
    /* Animation: starts scaled to 0 height */
    transform-origin: top center;
    scale: 1 0;
    opacity: 0;
    transition: scale 3.5s ease-out, opacity 0.3s ease;
}

.timeline-line.extending {
    scale: 1 1;
    opacity: 1;
}

/* Approach Items - updated animation */
.approach-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8vh;
    gap: 0;
}

/* Side containers - with slide animations */
.approach-side {
    flex: 1;
    display: flex;
    min-width: 0;
    /* Slide animation setup */
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.approach-side--left {
    justify-content: flex-end;
    padding-right: 1.5rem;
    transform: translateX(-60px);
}

.approach-side--right {
    justify-content: flex-start;
    padding-left: 1.5rem;
    transform: translateX(60px);
}

/* Animated state for sides */
.approach-side.slide-in {
    opacity: 1;
    transform: translateX(0);
}

/* Timeline dot (centered) */
.timeline-dot {
    width: 12px;
    height: 12px;
    background-color: var(--logo-color);
    border-radius: 50%;
    flex-shrink: 0;
    z-index: 1;
    box-shadow:
        0 0 10px rgba(242, 240, 236, 0.9),
        0 0 20px rgba(242, 240, 236, 0.5);
    /* Fade in animation */
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-dot.visible {
    opacity: 1;
    transform: scale(1);
}

/* Circular Image Container */
.approach-image {
    /* On mobile: fill available width, matching text container */
    width: 100%;
    max-width: 180px;
    aspect-ratio: 1;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(242, 240, 236, 0.35);
    box-shadow:
        0 0 25px rgba(242, 240, 236, 0.4),
        0 0 50px rgba(242, 240, 236, 0.2),
        0 0 80px rgba(242, 240, 236, 0.1),
        0 8px 32px rgba(0, 0, 0, 0.4);
}

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

/* Approach Content */
.approach-content {
    max-width: 280px;
}

.approach-content h3 {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: clamp(1rem, 3.5vw, 1.25rem);
    letter-spacing: 0.08em;
    color: var(--logo-color);
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    position: relative;
    padding-bottom: 0.4rem;
}

.approach-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 1px;
    background: linear-gradient(to right, rgba(242, 240, 236, 0.8), rgba(242, 240, 236, 0));
    box-shadow: 0 0 6px rgba(242, 240, 236, 0.5);
}

/* Right-aligned content (for item 2) */
.approach-content--right-aligned {
    text-align: right;
}

.approach-content--right-aligned h3::after {
    left: auto;
    right: 0;
    background: linear-gradient(to left, rgba(242, 240, 236, 0.8), rgba(242, 240, 236, 0));
}

.approach-content p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    line-height: 1.55;
    color: var(--logo-color);
    margin: 0;
}

/* Tablet and larger screens */
@media (min-width: 768px) {
    .approach-item {
        margin-bottom: 12vh;
    }

    .approach-side--left {
        padding-right: 2.5rem;
    }

    .approach-side--right {
        padding-left: 2.5rem;
    }

    .approach-image {
        max-width: 180px;
    }

    .approach-content {
        max-width: 350px;
    }

    .timeline-dot {
        width: 14px;
        height: 14px;
    }
}

/* Desktop screens */
@media (min-width: 1024px) {
    .approach-item {
        margin-bottom: 14vh;
    }

    .approach-side--left {
        padding-right: 3.5rem;
    }

    .approach-side--right {
        padding-left: 3.5rem;
    }

    .approach-image {
        max-width: 220px;
    }

    .approach-content {
        max-width: 420px;
    }

    .approach-content h3 {
        font-size: 1.25rem;
    }

    .approach-content p {
        font-size: 1rem;
        line-height: 1.65;
    }

    .timeline-dot {
        width: 16px;
        height: 16px;
    }
}

@keyframes textGlowPulse {
    0% {
        text-shadow: 0 0 5px rgba(242, 240, 236, 0.3);
    }

    50% {
        text-shadow: 0 0 20px rgba(242, 240, 236, 0.6), 0 0 30px rgba(242, 240, 236, 0.3);
    }

    100% {
        text-shadow: 0 0 0 rgba(242, 240, 236, 0);
    }
}

/* ========================================
   SHARED SECTION STYLES
   ======================================== */

.section-heading {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 0.15em;
    color: var(--logo-color);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 6vh;
    position: relative;
    z-index: 1;
}

.section-heading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4em;
    height: 2.8em;
    background: url('assets/od-logo.svg') no-repeat center center;
    background-size: contain;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}

.section-intro {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.7;
    color: var(--logo-color);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 6vh;
    opacity: 0.9;
}


/* ========================================
   THE POSSIBILITIES SECTION
   ======================================== */

#the-possibilities {
    min-height: 100vh;
    padding: 10vh 1rem 8vh;
    background-color: var(--bg-color);
}

.possibilities-container {
    max-width: 1200px;
    margin: 0 auto;
}

.possibilities-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 6vh;
}

.possibility-tier {
    position: relative;
    background: rgba(242, 240, 236, 0.04);
    border: 1px solid rgba(242, 240, 236, 0.12);
    border-radius: 3px;
    padding: 2rem 1.5rem;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
}

.possibility-tier.visible {
    opacity: 1;
    transform: translateY(0);
}

.possibility-tier:hover {
    background: rgba(242, 240, 236, 0.07);
    border-color: rgba(242, 240, 236, 0.25);
    box-shadow: 0 0 40px rgba(242, 240, 236, 0.1);
}

/* Top accent line */
.possibility-tier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(242, 240, 236, 0.8), rgba(242, 240, 236, 0));
    border-radius: 3px 3px 0 0;
    box-shadow: 0 0 10px rgba(242, 240, 236, 0.3);
}

.tier-image {
    width: 100%;
    height: 240px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 3px;
}

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

.tier-content h3 {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    letter-spacing: 0.06em;
    color: var(--logo-color);
    margin-bottom: 0.5rem;
}

.tier-tagline {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(242, 240, 236, 0.8);
    margin-bottom: 1.5rem;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tier-features li {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--logo-color);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.tier-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: var(--logo-color);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(242, 240, 236, 0.5);
}

.section-cta {
    text-align: center;
    margin-top: 4vh;
}

.cta-scroll-button {
    background: transparent;
    border: 1px solid var(--logo-color);
    color: var(--logo-color);
    padding: 1em 2.5em;
    font-family: var(--font-main);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(242, 240, 236, 0.4);
}

.cta-scroll-button:hover {
    background: var(--logo-color);
    color: var(--bg-color);
    box-shadow: 0 0 30px rgba(242, 240, 236, 0.5);
}

/* Tablet: Horizontal tier layout */
@media (min-width: 768px) {
    .possibility-tier {
        display: flex;
        gap: 2rem;
        padding: 2.5rem;
        align-items: flex-start;
    }

    .tier-image {
        width: 40%;
        max-width: 280px;
        height: auto;
        aspect-ratio: 4 / 3;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .tier-content {
        flex: 1;
        min-width: 0;
    }
}

/* Desktop: Three columns */
@media (min-width: 1024px) {
    #the-possibilities {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .possibilities-grid {
        flex-direction: row;
        gap: 2rem;
    }

    .possibility-tier {
        flex: 1;
        flex-direction: column;
        padding: 2rem;
    }

    .tier-image {
        width: 100%;
        height: 220px;
        max-width: none;
        aspect-ratio: unset;
        margin-bottom: 1.5rem;
    }
}

/* ========================================
   THE WORK SECTION
   ======================================== */

#the-work {
    min-height: 100vh;
    padding: 10vh 1rem 8vh;
    background-color: var(--bg-color);
}

.work-container {
    max-width: 900px;
    margin: 0 auto;
}

.project-card {
    position: relative;
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.project-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.project-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.project-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid rgba(242, 240, 236, 0.15);
    box-shadow: var(--glow-shadow);
}

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

.project-image img.align-left {
    object-position: left top;
}

@media (min-width: 768px) {
    .project-image img.align-left {
        object-position: left center;
    }
}

.project-intro {
    flex: 1;
}

.project-intro h3 {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: clamp(1.5rem, 4vw, 2rem);
    letter-spacing: 0.06em;
    color: var(--logo-color);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.project-intro h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, rgba(242, 240, 236, 0.9), rgba(242, 240, 236, 0));
    box-shadow: 0 0 10px rgba(242, 240, 236, 0.5);
}

.project-intro p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.75;
    color: var(--logo-color);
    margin-bottom: 1.5rem;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: 1px solid rgba(242, 240, 236, 0.5);
    color: var(--logo-color);
    padding: 0.6em 1.5em;
    font-family: var(--font-main);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    border-color: var(--logo-color);
    background: rgba(242, 240, 236, 0.08);
}

.read-more-btn .btn-icon {
    font-size: 1.2em;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.read-more-btn[aria-expanded="true"] .btn-icon {
    transform: rotate(45deg);
}

.read-more-btn[aria-expanded="true"] .btn-text {
    display: none;
}

.read-more-btn[aria-expanded="true"]::before {
    content: 'Read Less';
}

/* Expandable Details */
.project-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, opacity 0.4s ease;
    opacity: 0;
}

.project-details[aria-hidden="false"] {
    max-height: 1500px;
    opacity: 1;
}

.details-content {
    padding: 2rem 0;
    border-left: 2px solid rgba(242, 240, 236, 0.15);
    margin-left: 0.5rem;
    padding-left: 1.5rem;
    padding-right: 2rem;
}

.details-content p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.8;
    color: rgba(242, 240, 236, 0.9);
    margin-bottom: 1.25rem;
}

.details-content p:last-child {
    margin-bottom: 0;
}

/* Links in project text */
.project-intro p a,
.details-content p a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.3s ease;
}

.project-intro p a:hover,
.details-content p a:hover {
    opacity: 0.8;
}

/* Tablet and up: Side-by-side layout */
@media (min-width: 768px) {
    .project-header {
        flex-direction: row;
        gap: 2.5rem;
    }

    .project-image {
        width: 280px;
        height: 280px;
        aspect-ratio: unset;
        flex-shrink: 0;
    }

    .details-content {
        margin-left: 1rem;
        padding-left: 2rem;
        padding-right: 3rem;
    }
}

/* ========================================
   THE PURPOSE SECTION
   ======================================== */

#the-purpose {
    min-height: 100vh;
    padding: 10vh 1rem 8vh;
    background-color: var(--bg-color);
}

.purpose-container {
    max-width: 1100px;
    margin: 0 auto;
}

.purpose-lead {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    line-height: 1.6;
    color: var(--logo-color);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6vh;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.purpose-lead.visible {
    opacity: 1;
    transform: translateY(0);
}

.purpose-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 1.5rem;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}

.purpose-content.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Glowing vertical line */
.purpose-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(242, 240, 236, 0.8),
            rgba(242, 240, 236, 0.6) 50%,
            rgba(242, 240, 236, 0.2));
    box-shadow:
        0 0 8px rgba(242, 240, 236, 0.6),
        0 0 16px rgba(242, 240, 236, 0.3);
    z-index: 3;
    /* Animation: starts scaled to 0 height */
    transform-origin: top center;
    scale: 1 0;
    opacity: 0;
    transition: scale 3.5s ease-out, opacity 0.3s ease;
}

.purpose-line.extending {
    scale: 1 1;
    opacity: 1;
}

.purpose-content p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.8;
    color: var(--logo-color);
    position: relative;
    z-index: 1;
    margin: 0;
}

.purpose-image {
    /* Align left edge with the glowing line */
    width: calc(100% + 1.5rem);
    margin-left: -1.5rem;
    margin-right: 0;
    aspect-ratio: 3 / 2;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 1rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(242, 240, 236, 0.15);
    box-shadow: var(--glow-shadow);
}

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

/* Tablet and up */
@media (min-width: 768px) {
    .purpose-content {
        gap: 2.5rem;
        padding-left: 2rem;
    }

    .purpose-image {
        width: calc(100% + 2rem);
        margin-left: -2rem;
        aspect-ratio: 16 / 9;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

/* ========================================
   THE STUDIO SECTION
   ======================================== */

#the-studio {
    min-height: 100vh;
    padding: 10vh 1rem 0;
    background-color: var(--bg-color);
}

.studio-container {
    max-width: 900px;
    margin: 0 auto;
}

.studio-content {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.studio-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.studio-intro {
    margin-bottom: 4rem;
}

.studio-lead {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    line-height: 1.7;
    color: var(--logo-color);
    margin-bottom: 1.5rem;
}

.studio-intro p:not(.studio-lead) {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.75;
    color: var(--text-muted);
}

/* Founder Section */
.founder-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(242, 240, 236, 0.04);
    border-radius: 3px;
    border: 1px solid rgba(242, 240, 236, 0.1);
}

.founder-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto;
    border: 1px solid rgba(242, 240, 236, 0.15);
    box-shadow: var(--glow-shadow);
    overflow: hidden;
}

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

.founder-bio p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.8;
    color: var(--logo-color);
    text-align: center;
}

.founder-bio strong {
    font-weight: 600;
    color: var(--logo-color);
}

.founder-bio a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.3s ease;
}

.founder-bio a:hover {
    opacity: 0.8;
}

.founder-bio em {
    font-style: italic;
    color: rgba(242, 240, 236, 0.9);
}

/* Studio Outro */
.studio-outro {
    text-align: center;
    margin-bottom: 4rem;
}

.studio-outro p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: var(--logo-color);
    margin-bottom: 1rem;
}

.studio-cta-text {
    font-family: var(--font-main);
    font-size: clamp(1.2rem, 2.5vw, 1.4rem) !important;
    font-weight: 600;
    color: rgba(242, 240, 236, 0.9) !important;
}

/* Studio Banner Image */
.studio-banner {
    /* Edge-to-edge on mobile */
    width: calc(100% + 2rem);
    margin-left: -1rem;
    margin-right: -1rem;
    aspect-ratio: 5 / 1;
    overflow: hidden;
}

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

/* Tablet: Founder horizontal */
@media (min-width: 768px) {
    .founder-section {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
        padding: 2.5rem;
    }

    .founder-image {
        width: 180px;
        height: 180px;
        margin: 0;
        flex-shrink: 0;
    }

    .founder-bio p {
        text-align: left;
    }

    .studio-banner {
        /* Container width on tablet/desktop */
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        border-radius: 3px;
    }
}

/* ========================================
   CONTACT SECTION
   ======================================== */

#contact {
    min-height: 100vh;
    padding: 10vh 1rem 8vh;
    background-color: var(--bg-color);
    display: flex;
    align-items: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.contact-content {
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.contact-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-mission {
    margin-bottom: 3rem;
}

.mission-statement {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    line-height: 1.6;
    color: var(--logo-color);
    margin-bottom: 1.5rem;
}

.contact-mission p:not(.mission-statement) {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    line-height: 1.7;
    color: var(--text-muted);
}

.contact-image {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 16 / 9;
    margin: 0 auto 3rem;
    border-radius: 3px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

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

.contact-cta {
    margin-bottom: 4rem;
}

.contact-cta p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.7;
    color: var(--logo-color);
    margin-bottom: 2rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Tablet: Widen contact container */
@media (min-width: 768px) {
    .contact-container {
        max-width: 850px;
    }
}

/* Desktop: Widen contact container further */
@media (min-width: 1024px) {
    .contact-container {
        max-width: 900px;
    }
}

.primary-button {
    display: inline-block;
    background: var(--logo-color);
    color: var(--bg-color);
    padding: 1em 3em;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(242, 240, 236, 0.3);
    animation: primaryButtonGlow 3s ease-in-out infinite;
}

@keyframes primaryButtonGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(242, 240, 236, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(242, 240, 236, 0.6), 0 0 60px rgba(242, 240, 236, 0.3);
    }
}

.primary-button:hover {
    animation: none;
    box-shadow: 0 0 50px rgba(242, 240, 236, 0.7);
    transform: translateY(-2px);
}

.contact-secondary {
    border-top: 1px solid rgba(242, 240, 236, 0.15);
    padding-top: 3rem;
}

.contact-secondary p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1rem;
    color: rgba(242, 240, 236, 0.7);
    margin-bottom: 1.5rem;
}

.secondary-button {
    display: inline-block;
    background: transparent;
    color: var(--logo-color);
    padding: 0.8em 2em;
    font-family: var(--font-main);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border: 1px solid rgba(242, 240, 236, 0.5);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    border-color: var(--logo-color);
    background: rgba(242, 240, 236, 0.08);
    box-shadow: 0 0 20px rgba(242, 240, 236, 0.2);
}

/* Landscape Mobile Adjustment */
@media (orientation: landscape) and (max-height: 600px) {
    #logo-block {
        width: auto;
        height: 40vh;
        /* Cap height */
    }

    #hero-final-text {
        margin-top: 2vh;
        /* Specific gap for landscape */
    }
}


/* Reduced Motion Override */
@media (prefers-reduced-motion: reduce) {
    #scroll-workspace {
        display: none;
    }

    #stage {
        position: relative;
        height: auto;
        padding-top: 4rem;
        justify-content: flex-start;
    }

    #logo-block {
        opacity: 1;
        width: 150px;
        /* Hero size */
    }

    #texture-content {
        display: none;
        /* No texture effects */
    }

    #wordmark-inner .char-span {
        opacity: 1;
        filter: none;
        transform: none;
    }

    #hero-final-text {
        position: relative;
        top: auto;
        opacity: 1;
        transform: none;
        margin-top: 3rem;
    }

    body {
        height: auto;
        overflow-y: auto;
    }

    /* Disable animations for new sections */
    .possibility-tier,
    .project-card,
    .purpose-lead,
    .purpose-content,
    .studio-content,
    .contact-content {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    /* Force visibility of guarded content */
    #what-is-overlay {
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    #main-content {
        display: block !important;
        opacity: 1 !important;
        animation: none !important;
    }

    .subtitle,
    .prompt-line {
        opacity: 1 !important;
        transform: none !important;
    }

    .prompt-line {
        height: 100px !important;
        /* Static height instead of grow animation */
    }

    .content-wrapper {
        transform: none !important;
        gap: 1.5rem !important;
    }
}

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

.site-footer {
    padding: 4rem 1rem 3rem;
    text-align: center;
    background-color: var(--bg-color);
}

.site-footer p {
    font-family: var(--font-main);
    font-size: 0.85rem;
    color: rgba(242, 240, 236, 0.5);
    letter-spacing: 0.05em;
    margin: 0;
}

#footer-logo-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    margin-top: 0.5rem;
    padding: 10px;
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#footer-logo-btn:hover {
    opacity: 1;
    transform: translateY(-2px);
}

#footer-logo-btn img {
    height: 40px;
    width: auto;
    display: block;
}

/* ========================================
   PARK CITY SPLASH MODAL
   ======================================== */

/* PARK CITY SPLASH STYLES (COMMENTED OUT - can be reactivated when needed)

/* Prevent scrolling when splash is active */
/*
html.splash-active,
body.splash-active {
    overflow: hidden !important;
    height: 100%;
}

.splash-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-color);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.6s ease;
    overflow: hidden;
}

.splash-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    max-width: 500px;
}

.splash-logo {
    width: 300px;
    height: auto;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.splash-wordmark {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    letter-spacing: 0.15em;
    color: var(--logo-color);
    margin-bottom: 1.5rem;
}

.splash-question {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(1.3rem, 4vw, 1.6rem);
    color: var(--logo-color);
    margin-bottom: 2rem;
}

.splash-cta {
    background: transparent;
    border: 1px solid var(--logo-color);
    color: var(--logo-color);
    padding: 1em 2em;
    font-family: var(--font-main);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: buttonGlow 4s ease-in-out infinite;
}

.splash-cta:hover {
    background: var(--logo-color);
    color: var(--bg-color);
    animation: none;
    box-shadow: 0 0 30px rgba(242, 240, 236, 0.8);
}

.splash-note {
    color: var(--logo-color);
    font-family: var(--font-body);
    font-size: 0.9rem;
    margin-top: 2.5rem;
    opacity: 0.5;
}

.splash-dismiss {
    background: transparent;
    border: none;
    color: var(--logo-color);
    font-family: var(--font-body);
    font-size: 0.9rem;
    margin-top: 0.2rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.splash-dismiss:hover {
    opacity: 1;
}
*/