/* FRÆK Brand Guidelines - CSS Variables */
:root {
    /* Colors */
    --off-white: #F8F6F2;
    --fog: #E9EAEC;
    --stone: #CEC7BC;
    --charcoal-txt: #2B2727;
    --charcoal: #1F232A;
    --bordeaux: #64110C;
    --ice-blue: #C4E1ED;

    /* Typography */
    --font-heading: 'Arpona', serif;
    --font-accent: 'Sloop Script', cursive;
    --font-body: 'Fustat', sans-serif;

    /* Spacing */
    --space-sm: 1rem;
    --space-md: 2.5rem;
    --space-lg: 5rem;
    --space-xl: 8rem;
    --space-2xl: 12rem;
}

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

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

body {
    background-color: var(--off-white);
    color: var(--charcoal-txt);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Basics */
h1, h2, h3, h4 {
    color: var(--charcoal);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.headline-arpona {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1rem;
    font-weight: normal;
}

.inline-logo {
    height: 1em;
    width: auto;
    vertical-align: baseline;
    display: inline-block;
    margin: 0 0.1em;
}

.logo-tub-inline {
    height: 1.5em;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
    display: inline-block;
}

.flex-center-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3em;
}

.sloop-accent {
    font-family: var(--font-accent);
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 0;
    display: inline-block;
}

.sloop-signature {
    font-family: var(--font-accent);
    font-size: 3rem;
    color: var(--charcoal);
    margin-top: 3rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.bordeaux { color: var(--bordeaux); }
.charcoal { color: var(--charcoal); }
.text-charcoal { color: var(--charcoal); }
.text-offwhite { color: var(--off-white); }
.bg-fog { background-color: var(--fog); }
.bg-stone { background-color: var(--stone); }
.bg-charcoal { background-color: var(--charcoal); }
.bg-ice-blue { background-color: var(--ice-blue); }
.bg-offwhite { background-color: var(--off-white); }

/* Layout & Containers */
.section {
    min-height: 100dvh;
    padding: clamp(2.5rem, 5vh, 4.5rem) var(--space-sm);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.container {
    max-w-[1400px];
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: clamp(1.5rem, 4vh, 3rem);
    text-align: left;
}

@media (min-width: 901px) {
    .hero-text-spacer,
    #flavours,
    #comparison,
    #proof,
    #about {
        height: 100dvh;
    }
}

/* 1. Hero Section (Canvas Scroll & 3D Logo) */
.hero-scroll-section {
    height: 180vh; /* Scroll length for the animation */
    position: relative;
    padding: 0;
    min-height: unset;
}

.hero-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: var(--off-white);
    background-image: url("./assets/Scroll animation/ice coop1 optimized frames/frame_000.jpg");
    background-size: cover;
    background-position: center;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Base overlay layer for UI */
.hero-content-layer {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    pointer-events: none; /* Let clicks pass through if needed, though mostly just text */
}

.hero-text-block {
    max-width: 600px;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--charcoal-txt);
    max-width: 50ch;
    margin-top: var(--space-md);
    font-weight: 500;
}

/* 3D Scene for the Logo */
.logo-3d-scene {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px; /* Enable 3D space */
}

.brand-logo-hero {
    height: auto;
    width: 45vw; /* Make logo significantly larger */
    max-width: 800px;
    min-width: 260px; /* Safe for tiny 320px screens */
    transform-style: preserve-3d;
    backface-visibility: hidden;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}

.pointer-events-none {
    pointer-events: none;
}

.shadow-text {
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.scroll-indicator.absolute-bottom {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.scroll-indicator .line {
    width: 60px;
    height: 1px;
    background-color: var(--charcoal);
}

/* 1.5 Hero Text Spacer */
.hero-text-spacer {
    min-height: 100dvh;
    padding-block: clamp(3rem, 8vh, 5rem);
    pointer-events: none;
}

.hero-text-spacer .hero-sub {
    color: var(--charcoal-txt);
    font-size: 1.5rem;
    max-width: 60ch;
    margin-top: clamp(3rem, 6vh, 4.5rem);
    margin-bottom: 0;
}

/* Global Sticky Nav Bar */
.sticky-nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: rgba(248, 246, 242, 0.85); /* var(--off-white) */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateY(-100%);
}

.nav-brand-logo {
    height: 28px;
    width: auto;
}

/* 2. Flavours */
#flavours {
    padding-block: clamp(2rem, 4vh, 3rem);
}

#flavours .container {
    max-width: 1020px;
}

#flavours .section-title {
    margin-bottom: clamp(1.5rem, 3vh, 2.25rem);
    text-align: center;
}

.flavours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(1.25rem, 2.5vw, 2rem);
    align-items: start;
}

.flavour-card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    background: var(--off-white);
    padding: var(--space-sm);
    box-shadow: 0 10px 30px -15px rgba(0,0,0,0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.flavour-card:hover {
    transform: translateY(-8px);
}

.flavour-img-wrapper {
    width: 100%;
    height: clamp(220px, 32vh, 300px);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.flavour-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.flavour-card:hover .flavour-img-wrapper img {
    transform: scale(1.05);
}

.flavour-info h3 {
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    margin-bottom: 0.5rem;
}

.taste-desc {
    font-size: clamp(1rem, 1.15vw, 1.1rem);
    line-height: 1.4;
    margin-bottom: 0.9rem;
    color: var(--charcoal-txt);
}

.macro-badge {
    background-color: var(--ice-blue);
    padding: 0.55rem 1.1rem;
    border-radius: 100px;
    display: inline-block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.65rem;
    color: var(--charcoal);
    text-align: center;
    line-height: 1.3;
}

.ingredient-details {
    margin-top: 0.55rem;
}

.ingredient-details summary {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    color: var(--charcoal);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.ingredient-details .ingredients {
    font-size: 0.85rem;
    color: var(--charcoal-txt);
    padding-top: 0.5rem;
    line-height: 1.4;
}

.nutrition-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    row-gap: 0.35rem;
    column-gap: 1rem;
    font-size: 0.85rem;
    color: var(--charcoal);
    margin-bottom: 0.6rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-top: 0.6rem;
}
.nutrition-grid .table-header {
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.6;
    grid-column: 1 / -1;
    margin-bottom: 0.2rem;
}
.nutrition-grid .label {
    font-weight: 600;
}
.nutrition-grid .value {
    text-align: right;
}

/* 3. Comparison */
#comparison {
    padding-block: clamp(1.5rem, 3.5vh, 2.75rem);
}

#comparison .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#comparison .section-title {
    text-align: center;
}

.comparison-header {
    max-width: 600px;
    margin: 0 auto calc(clamp(0.5rem, 1.5vh, 1rem) - 3rem);
    padding-top: 3rem;
    text-align: center;
}

.comparison-stack.layout-center {
    width: 100%;
    max-width: 100%;
    gap: clamp(0.2rem, 0.7vh, 0.55rem);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-lg);
    align-items: center;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

.comp-target.no-bg {
    background: transparent;
    box-shadow: none;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto 4rem; /* Increased margin-bottom to 4rem for healthy gap */
    width: min(100%, 720px);
}

.comp-target.no-bg::before {
    content: '';
    position: absolute;
    top: 34%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(260px, 38vw, 480px);
    height: clamp(260px, 38vw, 480px);
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.comp-target img, .comp-target h3, .comp-target .fluid-stack-title, .comp-target .comp-stats {
    position: relative;
    z-index: 2;
}

.comp-target img {
    width: 100%;
    max-width: 250px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.comp-target.no-bg > .comp-target-img.food-img.drop-shadow-lg {
    display: block;
    width: clamp(330px, 45vw, 630px);
    max-width: 100vw;
    height: auto;
    max-height: clamp(285px, 42vh, 435px);
    object-fit: contain;
    margin: 0 auto -0.2rem;
}

.comp-stats {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: 1.5rem; /* Reduced gap between the two stats */
    margin-top: -2.0rem; /* Pull up tighter to logo */
    padding: 0;
}

.comp-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 4.6rem;
    margin: 0;
    padding: 0;
}

.stat .highlight {
    display: block;
    font-size: 2.0rem;
    font-weight: 700;
    font-family: var(--font-body);
}

.comp-vs {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.carousel-viewport {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    overflow-x: auto;
    scrollbar-width: none; /* Hide scrollbar for native drag */
    -ms-overflow-style: none;
    margin-top: clamp(-1.5rem, -2vh, -0.75rem);
    padding: clamp(0.75rem, 1.8vh, 1.25rem) 15vw clamp(1rem, 2vh, 1.5rem) 5vw;
}
.carousel-viewport::-webkit-scrollbar {
    display: none;
}

.comp-vs-stack {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: max-content;
    gap: clamp(0.85rem, 1.5vw, 1.4rem);
    align-items: center;
}

/* Fluid Stacked Typography */
.fluid-stack-title {
    text-align: center;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.comp-logo-lockup {
    margin-top: -3.5rem;
    margin-bottom: 0.5rem;
}
.fluid-line-1 {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 500;
    margin-bottom: clamp(0.15rem, 0.6vh, 0.35rem);
}
.inline-logo-scale {
    height: 4.5rem;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

#comparison .inline-logo-scale {
    height: clamp(2.65rem, 7vh, 4rem);
}

.comp-logo-lockup {
    margin: -1.75rem auto 0;
}
.macro-whitespace-top {
    margin-top: 4rem;
}

.vs-item {
    width: clamp(210px, 21vw, 260px);
    padding: clamp(0.85rem, 1.6vw, 1.25rem);
    border-radius: 24px;
    background: rgba(248, 246, 242, 0.16);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid rgba(255, 255, 255, 0.05); /* Softer, less obvious border */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.02);
}

.vs-img-wrapper.no-bg {
    width: clamp(112px, 12vw, 150px);
    height: clamp(112px, 12vw, 150px);
    background: transparent;
    box-shadow: none;
    overflow: visible;
    padding: 0;
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.flex-row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-col-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.food-img.drop-shadow-lg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: normal;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}

.scale-up-15 {
    transform: scale(1.15);
}

.vs-item:hover .interactive-element {
    transform: scale(1.15) rotate(4deg) !important;
}

.interactive-element {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.vs-item {
    width: clamp(210px, 21vw, 260px);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    align-items: center;
}

.vs-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    justify-content: center;
}

@media (max-width: 600px) {
    .vs-item {
        flex-direction: column;
        align-items: stretch;
    }
    .vs-img-wrapper {
        width: 100%;
        height: 200px;
    }
}

@keyframes scrollTracker {
    to { width: 100%; }
}

/* --- Mobile Responsiveness Patches --- */
@media (max-width: 600px) {
    .premium-contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .comp-stats {
        gap: 0.5rem; /* Prevent overflow on tight iPhones */
    }
    .comp-stats .stat .highlight {
        font-size: 1.6rem; /* Scale down macro numbers safely */
    }
    .brand-logo-hero {
        min-width: 260px;
    }
    .comp-logo-lockup {
        margin-top: -1.0rem; /* Fix text overlapping the tub image on small phones */
    }
}

.vs-label {
    font-weight: 700;
}

#comparison .vs-label.text-large-body,
#comparison .vs-stats.text-large-body,
#comparison .comp-stats .text-large-body {
    margin-bottom: 0 !important;
}

#comparison .vs-bar {
    margin-bottom: 0 !important;
}

#comparison .vs-label {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    line-height: 1.25;
}

#comparison .vs-stats {
    font-size: clamp(0.82rem, 1vw, 0.95rem);
    line-height: 1.3;
}

#comparison .stat {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    line-height: 1.2;
}

#comparison .stat .highlight {
    font-size: clamp(1.4rem, 3.2vh, 1.88rem);
    font-family: var(--font-body);
    font-weight: 700;
}

.vs-bar {
    width: 100%;
    height: 10px;
    margin-inline: auto;
    background-color: var(--fog);
    border-radius: 0;
    overflow: hidden;
    /* Exactly 15 blocks, flawlessly rendering 80% block / 20% gap */
    -webkit-mask-image: linear-gradient(to right, black 80%, transparent 80%);
    mask-image: linear-gradient(to right, black 80%, transparent 80%);
    -webkit-mask-size: calc(100% / 15) 100%;
    mask-size: calc(100% / 15) 100%;
    -webkit-mask-repeat: repeat-x;
    mask-repeat: repeat-x;
}

.vs-bar .fill {
    height: 100%;
    background-color: #2B2727;
    border-radius: 0;
    transform-origin: left;
}

.vs-stats {
    font-size: 0.9rem;
    color: var(--charcoal-txt);
    text-align: right;
}
@media (max-width: 600px) { .vs-stats { text-align: left; } }

/* 4. About Us */
#proof {
    padding-block: clamp(2rem, 5vh, 4rem);
}

#proof .section-title {
    max-width: 12ch;
    margin: 0 auto 1rem;
    text-align: center;
}

#proof .text-large-body {
    margin-bottom: 0;
}

#proof img {
    max-height: 90px;
    margin-top: clamp(1rem, 2.5vh, 1.75rem) !important;
}

#about {
    padding-block: clamp(2.5rem, 5vh, 4rem);
}

#about .container {
    max-width: 1080px;
}

#about .section-title {
    margin-bottom: clamp(0.85rem, 2vh, 1.25rem);
}

#about .macro-whitespace-top {
    margin-top: clamp(1rem, 2.4vh, 1.6rem);
}

#about .inline-logo-scale {
    height: clamp(3rem, 7vh, 3.8rem);
}

.layout-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

@media (max-width: 900px) {
    .layout-split {
        grid-template-columns: 1fr;
    }
}

/* Pull Quote */
.sloop-pullquote {
    font-family: var(--font-accent);
    font-size: clamp(2.5rem, 4vw, 3.6rem);
    line-height: 1.1;
    color: var(--bordeaux);
    margin: clamp(1rem, 2.2vh, 1.6rem) 0;
    padding-left: 1.25rem;
    border-left: 4px solid var(--bordeaux);
}

.about-content p {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    line-height: 1.45;
    margin-bottom: 0.8rem;
    max-width: 45ch;
}

.about-images {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    max-height: min(62vh, 560px);
    border-radius: 20px;
    overflow: hidden;
}

.img-carousel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.img-carousel img.active {
    opacity: 1;
}

/* 5. Connect */
.footer-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.connect-form {
    width: 100%;
    margin-bottom: var(--space-lg);
}

.premium-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.premium-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.premium-contact-form .input-group {
    border-bottom: 2px solid rgba(255,255,255,0.2);
    padding-bottom: 0.5rem;
    transition: border-color 0.3s ease;
}

.premium-contact-form .input-group:focus-within {
    border-color: var(--off-white);
}

.premium-input {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--off-white);
    font-size: 1.25rem;
    font-family: inherit;
    outline: none;
}

textarea.premium-input {
    resize: vertical;
    min-height: 80px;
    margin-top: 0.5rem;
}

.premium-input::placeholder {
    color: rgba(255,255,255,0.4);
}

.premium-button {
    background: transparent;
    border: none;
    color: var(--off-white);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 0.1em;
}

.premium-button.solid {
    background: var(--off-white);
    color: var(--charcoal);
    padding: 1rem 2rem;
    border-radius: 4px;
    align-self: flex-start;
    margin-top: 1rem;
    transition: transform 0.3s, background-color 0.3s;
}

.premium-button.solid:hover {
    transform: translateY(-2px);
    background: #ffffff;
}

.social-links {
    margin-bottom: var(--space-xl);
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--off-white);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.7;
}

.footer-meta {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--space-md);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}

.filter-invert {
    filter: invert(1);
    height: 24px;
    width: auto;
}

/* Side Navigation */
.side-nav {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    mix-blend-mode: difference;
}

@media (max-width: 1024px) {
    .side-nav {
        display: none;
    }
}

.side-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.side-nav a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--off-white);
    gap: 1rem;
    transition: opacity 0.3s;
    opacity: 0.4;
}

.side-nav a:hover, .side-nav a.active {
    opacity: 1;
}

.side-nav .dot {
    width: 6px;
    height: 6px;
    background-color: var(--off-white);
    border-radius: 50%;
    display: block;
    transition: transform 0.3s;
}

.side-nav a.active .dot {
    transform: scale(2);
}

.side-nav .label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
    transform: translateX(10px);
    transition: opacity 0.3s, transform 0.3s;
}

.side-nav a:hover .label, .side-nav a.active .label {
    opacity: 1;
    transform: translateX(0) scale(1.1);
    -webkit-font-smoothing: antialiased;
}

/* Parallax & Proof Section */
.parallax-bg {
    background-image: url('./assets/Products/pool.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform: translateZ(0); /* Hardware accelerate */
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(31, 35, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.text-large {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
}

.shadow-text {
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.layout-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.text-large-body {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.proof-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--charcoal);
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

/* Initial States for GSAP */
.animate-up, .animate-scroll {
    opacity: 0;
    transform: translateY(30px);
}
