:root {
    --primary-yellow: #F4C400;
    --primary-yellow-light: #FFD93D;
    --secondary-black: #0D0D0D;
    --dark-charcoal: #333333;
    --white: #FFFFFF;
    --bg-yellow: #FFCF00;
    /* Vibrant baseline yellow */

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;

    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    --section-spacing: 160px;
    --logo-landing-scale: 0.65;
    /* Default landing size */
}

/* Cinematic Intro */
.intro-overlay {
    position: fixed;
    inset: 0;
    background-color: var(--bg-yellow);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    /* Prevents blocking clicks after animation */
    animation: overlay-hide 1.2s 1.8s forwards cubic-bezier(0.85, 0, 0.15, 1);
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 10001;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.main-header.header-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

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

.intro-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(255, 207, 0, 0.85);
    /* Brand yellow */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10000;
    /* Behind logo (10001), above content */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.intro-logo img {
    height: 64px;
    width: auto;
    opacity: 0;
    transform: translateY(calc(50vh - 50px)) scale(2.5);
    /* Starts centered in viewport */
    filter: blur(16px);
    animation: intro-logo-anim 2.5s forwards cubic-bezier(0.85, 0, 0.15, 1);
}

@keyframes intro-logo-anim {
    0% {
        opacity: 0;
        transform: translateY(calc(50vh - 50px)) scale(2.5);
        filter: blur(16px);
    }

    30% {
        opacity: 1;
        transform: translateY(calc(50vh - 50px)) scale(1);
        filter: blur(0);
    }

    60% {
        opacity: 1;
        transform: translateY(calc(50vh - 50px)) scale(1);
        filter: blur(0);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(var(--logo-landing-scale));
        /* Dynamic landing scale based on device */
        filter: blur(0);
    }
}


@keyframes overlay-hide {
    0% {
        opacity: 1;
        pointer-events: auto;
    }

    100% {
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }
}

/* Seamless content reveal starting during logo glide */
.page-wrapper {
    opacity: 0;
    animation: content-reveal 1.4s 2.1s forwards cubic-bezier(0.8, 0, 0.2, 1);
}

@keyframes content-reveal {
    to {
        opacity: 1;
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--secondary-black);
    z-index: 9999;
    transition: width 0.1s linear;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark-charcoal);
    background-color: var(--bg-yellow);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Background Blobs */
.blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    /* Unblurred for definition as requested */
    filter: none;
    pointer-events: none;
}

.blob {
    position: absolute;
    transition: all 5s var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.4);
    /* Border lines as requested */
    backdrop-filter: blur(40px);
    /* Add blur to the blob itself for depth instead of global blur */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

/* Blob 1: Top Left */
.blob-tl {
    width: 350px;
    height: 350px;
    top: -80px;
    left: -80px;
    background: linear-gradient(135deg, #FFF7CC, rgba(255, 255, 255, 0.4));
    opacity: 0.6;
    mix-blend-mode: overlay;
    animation: blob-tl-anim 20s infinite ease-in-out;
}

@keyframes blob-tl-anim {

    0%,
    100% {
        transform: translate(0, 0) rotate(0) scale(1);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    25% {
        transform: translate(120px, 80px) rotate(90deg) scale(1.1);
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    50% {
        transform: translate(-40px, 120px) rotate(180deg) scale(0.9);
        border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
    }

    75% {
        transform: translate(60px, -40px) rotate(270deg) scale(1.05);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

/* Blob 2: Top Right */
.blob-tr {
    width: 340px;
    height: 340px;
    top: -40px;
    right: -40px;
    background: linear-gradient(225deg, #FDBA74, #FDE047);
    opacity: 0.5;
    mix-blend-mode: overlay;
    animation: blob-tr-anim 22s infinite ease-in-out;
}

@keyframes blob-tr-anim {

    0%,
    100% {
        transform: translate(0, 0) rotate(0) scale(1);
        border-radius: 20% 80% 20% 80% / 80% 20% 80% 20%;
    }

    33% {
        transform: translate(-100px, 80px) rotate(-120deg) scale(1.2);
        border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
    }

    66% {
        transform: translate(40px, -60px) rotate(120deg) scale(0.95);
        border-radius: 40% 60% 30% 70% / 70% 30% 60% 40%;
    }
}

/* Blob 3: Middle Left */
.blob-ml {
    width: 380px;
    height: 380px;
    top: 45%;
    left: -80px;
    background: linear-gradient(225deg, #FDBA74, #FDE047);
    opacity: 0.5;
    mix-blend-mode: overlay;
    animation: blob-ml-anim 25s infinite ease-in-out;
}

@keyframes blob-ml-anim {

    0%,
    100% {
        transform: translate(0, 0) rotate(0) scale(1);
        border-radius: 20% 80% 20% 80% / 80% 20% 80% 20%;
    }

    25% {
        transform: translate(100px, -100px) rotate(-90deg) scale(1.15);
        border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
    }

    50% {
        transform: translate(-60px, 80px) rotate(90deg) scale(0.9);
        border-radius: 45% 55% 55% 45% / 55% 45% 45% 55%;
    }

    75% {
        transform: translate(40px, -60px) rotate(-45deg) scale(1.1);
        border-radius: 20% 80% 20% 80% / 80% 20% 80% 20%;
    }
}

/* Blob 4: Center */
.blob-cf {
    width: 300px;
    height: 300px;
    top: 40%;
    right: 35%;
    background: var(--white);
    opacity: 0.4;
    animation: blob-cf-anim 24s infinite ease-in-out;
}

@keyframes blob-cf-anim {

    0%,
    100% {
        transform: translate(0, 0) rotate(0) scale(1);
        border-radius: 50%;
    }

    25% {
        transform: translate(80px, -120px) rotate(120deg) scale(0.85);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    50% {
        transform: translate(-100px, 100px) rotate(240deg) scale(1.1);
        border-radius: 60% 40% 40% 60% / 40% 60% 60% 40%;
    }

    75% {
        transform: translate(60px, -70px) rotate(360deg) scale(0.95);
        border-radius: 50%;
    }
}

/* Blob 5: Bottom Left */
.blob-bl {
    width: 320px;
    height: 320px;
    bottom: -40px;
    left: 40px;
    background: var(--white);
    opacity: 0.3;
    animation: blob-bl-anim 26s infinite ease-in-out;
}

@keyframes blob-bl-anim {

    0%,
    100% {
        transform: translate(0, 0) rotate(0) scale(1);
        border-radius: 50%;
    }

    25% {
        transform: translate(70px, -110px) rotate(90deg) scale(0.9);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    50% {
        transform: translate(-90px, 90px) rotate(180deg) scale(1.15);
        border-radius: 55% 45% 45% 55% / 45% 55% 55% 45%;
    }

    75% {
        transform: translate(50px, -60px) rotate(270deg) scale(0.95);
        border-radius: 50%;
    }
}

/* Blob 6: Bottom Right */
.blob-br {
    width: 380px;
    height: 380px;
    bottom: -80px;
    right: -80px;
    background: linear-gradient(135deg, #FFF7CC, rgba(255, 255, 255, 0.4));
    opacity: 0.3;
    mix-blend-mode: overlay;
    animation: blob-br-anim 23s infinite ease-in-out;
}

@keyframes blob-br-anim {

    0%,
    100% {
        transform: translate(0, 0) rotate(0) scale(1);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    25% {
        transform: translate(-100px, -80px) rotate(70deg) scale(1.2);
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    50% {
        transform: translate(80px, 60px) rotate(-50deg) scale(0.9);
        border-radius: 45% 55% 50% 50% / 50% 50% 55% 45%;
    }

    75% {
        transform: translate(-60px, -40px) rotate(30deg) scale(1.05);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

.noise-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    mix-blend-mode: overlay;
    background-image: url('https://www.transparenttextures.com/patterns/noise.png');
    pointer-events: none;
}

/* Navigation */
nav {
    padding-top: 40px;
    padding-bottom: 40px;
}

.logo {
    display: none;
    /* Removed from HTML, but cleaning up CSS just in case */
}

.logo img {
    height: 48px;
    /* Bigger logo */
    width: auto;
    display: block;
    transition: transform 0.8s var(--transition-smooth);
}

.logo:hover img {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    /* Center vertically */
    min-height: 100vh;
    gap: 20px;
    padding-bottom: 40px;
    padding-top: 260px;
    /* Massive top padding to ensure it starts comfortably below the logo */
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: reveal-hero 1s forwards var(--transition-smooth);
}

@keyframes reveal-hero {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.label {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2.5px;
    color: var(--secondary-black);
    margin-bottom: 24px;
    opacity: 0.5;
    text-transform: uppercase;
}

h2.hero-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-title-large {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(50px, 10vw, 130px);
    line-height: 0.8;
    color: var(--secondary-black);
    margin-bottom: 16px;
    letter-spacing: -4px;
    text-transform: uppercase;
}



.serif {
    font-family: var(--font-serif);
    font-weight: 400;
    /* Lighter weight serif is much more luxurious */
    font-style: italic;
    color: var(--secondary-black);
    letter-spacing: -1px;
    opacity: 0.95;
}

.badge-wrapper {
    margin-bottom: 32px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--secondary-black);
    text-transform: uppercase;
}

.subheadline {
    font-size: clamp(18px, 1.4vw, 22px);
    color: var(--dark-charcoal);
    margin-bottom: 56px;
    max-width: 580px;
    opacity: 0.85;
    font-weight: 400;
}

.scroll-link {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    color: var(--secondary-black);
    opacity: 0.6;
    transition: opacity 0.3s var(--transition-smooth);
}

.scroll-link:hover {
    opacity: 1;
}

/* Supporting Sections */
.supporting-section {
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
}

#commitment-section {
    padding-top: var(--section-spacing);
}

h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    color: var(--secondary-black);
    margin-bottom: 32px;
    letter-spacing: -1.5px;
}


.section-text p {
    font-size: clamp(18px, 1.3vw, 24px);
    max-width: 800px;
    color: var(--dark-charcoal);
    opacity: 0.8;
}

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

.text-center p {
    margin-left: auto;
    margin-right: auto;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.grid-2-alt {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.texture-shot {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    aspect-ratio: 1;
}

.texture-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--transition-smooth);
}

.texture-shot:hover img {
    transform: scale(1.1);
}

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

.aura-interactive {
    position: relative;
}

.interactive-aura-follower {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(244, 196, 0, 0.2) 30%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    filter: blur(60px);
}

.aura-interactive:hover .interactive-aura-follower {
    opacity: 1;
}

.button-group-ghost {
    display: flex;
    gap: 16px;
    margin-top: 60px;
    margin-bottom: 40px;
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: var(--secondary-black);
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
}

.btn-ghost:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.split-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.emphasized {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--secondary-black) !important;
    opacity: 1 !important;
    font-size: 18px !important;
    letter-spacing: 0.5px;
}

/* CTA Section */
.cta-section {
    padding-bottom: var(--section-spacing);
}

.cta-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 100px 40px;
    border-radius: 60px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.02);
}

.cta-card h2 {
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 18px;
    opacity: 0.6;
    margin-bottom: 48px;
}



/* Subscription Form */
.subscription-form {
    max-width: 520px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    background: #f8f8f8;
    padding: 8px;
    border-radius: 100px;
    transition: transform 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth);
}

.input-group:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    background: var(--white);
}

input[type="email"] {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0 32px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--secondary-black);
    outline: none;
}

button {
    background-color: var(--secondary-black);
    color: var(--white);
    border: none;
    padding: 18px 48px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.btn-shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transform: rotate(45deg);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

button:hover {
    background-color: #000;
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */

/* Tablet & Smaller Laptops */


/* Hero Image */
/* Hero Image Implementations */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 40px;
}

.image-wrapper {
    position: relative;
    width: 90vw;
    /* Heroic presence on small screens */
    max-width: 500px;
    margin: 0 auto;
    /* Ensure centering in its container */
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

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

.image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: brightness(1.05) contrast(1.05);
    display: block;
    border-radius: 60px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.04);
}



footer {
    padding: 120px 0 60px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-logo img {
    height: 28px;
    opacity: 0.6;
    filter: brightness(0);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


footer p {
    opacity: 0.3;
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* Reveal Animation - More Premium & Moving */
.reveal {
    opacity: 0;
    transform: translateY(100px) scale(0.95);
    filter: blur(10px);
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal>* {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Staggered children */
.reveal.visible>*:nth-child(1) {
    transition-delay: 0.2s;
}

.reveal.visible>*:nth-child(2) {
    transition-delay: 0.4s;
}

@media (max-width: 768px) {
    :root {
        --logo-landing-scale: 0.7;
        /* Prestige scale for mobile */
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    :root {
        --logo-landing-scale: 0.7;
        /* Same prestige scale for tablets */
    }
}

/* ============================= */
/* 📱 MOBILE VIEW (max-width:768px) */
/* ============================= */

@media (max-width: 768px) {

    /* General Container */
    .container {
        padding: 0 20px;
    }

    /* Hero Section */
    .hero {
        display: flex;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
        gap: 40px;
        padding-top: 240px;
        /* Luxury pushdown */
    }

    .hero-title-large {
        font-size: 48px;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .subheadline {
        font-size: 15px;
        margin-left: auto;
        margin-right: auto;
        max-width: 90vw;
    }

    .hero-image img {
        width: 90vw;
        max-width: 500px;
        height: auto;
        margin: 0 auto;
    }

    /* Grid 2 Layout → Stack */
    .grid-2-alt {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    /* Product Grid */
    .product-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

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

    .product-image img {
        width: 100%;
        height: auto;
    }

    /* Supporting Sections */
    .supporting-section {
        padding: 60px 0;
    }

    #commitment-section {
        padding-top: 80px;
    }

    .section-text h2 {
        font-size: 26px;
    }

    /* Footer */
    .footer-grid {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    /* Buttons */
    .button-group-ghost {
        flex-direction: column;
        gap: 15px;
    }

}


/* ============================= */
/* 📲 TABLET VIEW (769px–1024px) */
/* ============================= */

@media (min-width: 769px) and (max-width: 1024px) {

    .container {
        padding: 0 40px;
    }

    /* Hero Adjustments */
    .hero {
        display: flex;
        /* Ensure centering */
        flex-direction: column;
        align-items: center;
        gap: 60px;
        padding-top: 260px;
        /* Tablet luxury gap */
    }

    .hero-title-large {
        font-size: 64px;
    }

    .hero-subtitle {
        font-size: 26px;
    }

    /* Grid Adjustments */
    .grid-2-alt {
        gap: 50px;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Section Spacing */
    .supporting-section {
        padding: 80px 0;
    }

    #commitment-section {
        padding-top: 100px;
    }

}

/* ================================================= */
/* 💻 LAPTOP VIEW FIX (1025px – 1440px) */
/* ================================================= */

@media (min-width: 1025px) and (max-width: 1440px) {

    :root {
        --section-spacing: 140px;
        --logo-landing-scale: 0.65;
    }

    .container {
        max-width: 1200px;
        padding: 0 60px;
    }

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

    .hero {
        display: grid;
        /* Restore grid for laptop layout */
        grid-template-columns: 1.1fr 1fr;
        min-height: 100vh;
        padding-top: 240px;
        /* Luxury gap */
        padding-bottom: 80px;
        gap: 60px;
        align-items: center;
    }

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

    .hero-title-large {
        font-size: clamp(70px, 8vw, 110px);
        letter-spacing: -3px;
    }

    h2.hero-subtitle {
        font-size: clamp(28px, 3vw, 42px);
    }

    .subheadline {
        font-size: 18px;
        max-width: 520px;
    }

    /* Hero Image */
    .hero-image {
        justify-content: center;
        padding-top: 0;
    }

    .image-wrapper {
        width: 100%;
        max-width: 520px;
    }

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

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

    .grid-2-alt {
        grid-template-columns: 1fr 1.1fr;
        gap: 80px;
        align-items: center;
    }

    .grid-2 {
        gap: 80px;
    }

    /* ================= PRODUCT GRID ================= */

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }

    .product-card {
        border-radius: 36px;
    }

    .product-info {
        padding: 35px;
    }

    /* ================= CTA ================= */

    .cta-card {
        padding: 100px 60px;
        border-radius: 60px;
    }

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

    .footer-grid {
        gap: 40px;
    }

    /* ================= POLISH ================= */

    .texture-shot {
        border-radius: 36px;
    }

    h2 {
        font-size: clamp(34px, 3vw, 44px);
    }

}

/* ========================================= */
/* 🔥 GLOBAL OVERFLOW FIX */
/* ========================================= */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Prevent any element from breaking layout */
.hero,
.supporting-section,
.product-grid,
.grid-2,
.grid-2-alt {
    max-width: 100%;
}

/* ========================================= */
/* 💻 DESKTOP / LAPTOP HERO FIX */
/* ========================================= */

@media (min-width: 1025px) {

    .hero {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        align-items: center;
        min-height: 100vh;
        padding-top: 200px;
        padding-bottom: 80px;
        gap: 60px;
    }

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

    .hero-title-large {
        font-size: clamp(80px, 7vw, 120px);
        line-height: 0.9;
        letter-spacing: -2px;
    }

    h2.hero-subtitle {
        font-size: clamp(30px, 2.5vw, 42px);
    }

    .subheadline {
        font-size: 18px;
        max-width: 500px;
    }

    /* IMPORTANT: Fix image wrapper breaking layout */
    .image-wrapper {
        width: 100%;
        max-width: 520px;
    }

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

/* ========================================= */
/* 🎨 BLOB SAFETY FIX */
/* ========================================= */

/* Prevent blobs from visually pushing layout */
.blob {
    max-width: 100vw;
}

/* Reduce extreme blob movement on medium screens */
@media (max-width: 1400px) {

    .blob-tl,
    .blob-tr,
    .blob-ml,
    .blob-bl,
    .blob-br {
        transform: scale(0.85);
    }
}

/* ===================================== */
/* 📱 PERFECT MOBILE FIX */
/* ===================================== */

@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .container {
        padding: 0 24px;
    }

    /* HERO */
    .hero {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-top: 80px;
        /* Matched to example image */
        padding-bottom: 60px;
        gap: 12px;
        /* Ultra-tight gap like reference */
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        order: 1;
        /* Text back to top */
    }

    .hero-title-large {
        font-size: 56px;
        /* Restored premium scale */
        line-height: 1.0;
        letter-spacing: -2px;
        margin-bottom: 10px;
        /* Tighter spacing */
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .subheadline {
        font-size: 18px;
        /* Restored readability */
        max-width: 580px;
        margin: 0 auto 20px auto;
        /* Perfect gap before image */
        opacity: 0.7;
        line-height: 1.5;
    }

    /* HERO IMAGE FIX */
    .hero-image {
        width: 100%;
        display: flex;
        justify-content: center;
        padding-top: 0;
        order: 2;
        /* Image down */
    }

    .image-wrapper {
        width: 90vw;
        /* Heroic mobile presence */
        max-width: 500px;
        margin: 0 auto;
    }

    .image-wrapper img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* STACK GRID PROPERLY */
    .grid-2-alt {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .texture-shot {
        width: 100%;
        max-width: 90%;
        order: 2;
        /* Image down */
    }

    .section-text {
        order: 1;
        /* Text top */
    }

    /* PRODUCT GRID */
    .product-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .product-card {
        width: 100%;
        max-width: 95%;
    }

    .product-info {
        padding: 28px;
    }

    /* BUTTONS */
    .button-group-ghost {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    /* FOOTER */
    .footer-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    footer {
        padding: 80px 0 40px 0;
    }

}