/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #201C4C;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* CSS Variables from design.json */
:root {
    --primary: #FF6700;
    --secondary: #FFF01F;
    --dark: #201C4C;
    --light: #F5F4FF;
    --accent: #E74E13;
    --background: #FFF01F;
    --site-max-width: 1360px;
    --home-navbar-height: 72px;
    --home-navbar-offset: 14px;
    --font-primary: 'Lilita One', cursive;
    --font-secondary: 'Montserrat', sans-serif;
}

/* Container */
.container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-title {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 1rem;
    /* margin-top: 3rem; */
    text-align: center;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navigation Logo with SVG Circular Text */
.nav-logo {
    position: relative;
}

.logo-container {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circular-text-svg {
    position: absolute;
    width: 120px;
    height: 120px;
    animation: rotate 15s linear infinite;
}

.circular-text-svg:hover {
    animation-duration: 3s;
}

.circular-text-svg svg {
    width: 100%;
    height: 100%;
}

.logo-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 400;
    z-index: 10;
}


/* ReactBits SplitText Animation - Exact Replica */
.split-text {
    display: inline-block;
    overflow: hidden;
}

.split-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: reactbitsSplitReveal 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    animation-delay: var(--delay);
    will-change: transform, opacity;
    animation-fill-mode: both;
}

@keyframes reactbitsSplitReveal {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.3);
    }

    50% {
        opacity: 0.8;
        transform: translateY(-10px) scale(1.1);
    }

    70% {
        opacity: 1;
        transform: translateY(5px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Hero text container animation */
.hero-text {
    opacity: 0;
    transform: translateY(30px);
    animation: heroTextReveal 0.8s ease-out 0.2s forwards;
}

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

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

/* Hero Logo Styles */
.hero-logo {
    margin-bottom: 2rem;
    text-align: center;
}

.hero-logo-img {
    max-width: 300px;
    height: auto;
    opacity: 0;
    transform: translateY(40px) scale(0.8);
    animation: heroLogoReveal 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s forwards;
    will-change: transform, opacity;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

@keyframes heroLogoReveal {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.8);
    }

    50% {
        opacity: 0.8;
        transform: translateY(-10px) scale(1.05);
    }

    70% {
        opacity: 1;
        transform: translateY(5px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Curved Loop Animation - ReactBits Style */
.curved-loop-container {
    width: 100vw;
    margin: 2rem 0;
    opacity: 0;
    animation: curvedLoopReveal 1s ease-out 0.6s forwards;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.curved-loop-svg {
    width: 100%;
    height: 150px;
    overflow: visible;
    display: block;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.curved-text {
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    animation: curvedTextMove 20s linear infinite;
    font-size: 6rem !important;
    fill: white !important;
}

@keyframes curvedTextMove {
    0% {
        text-anchor: start;
    }

    100% {
        text-anchor: start;
    }
}

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

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

/* Responsive adjustments for curved text */
@media (max-width: 768px) {
    .curved-loop-svg {
        height: 120px;
    }

    .curved-text {
        font-size: 4.5rem !important;
    }
}

@media (max-width: 480px) {
    .curved-loop-svg {
        height: 100px;
    }

    .curved-text {
        font-size: 3.5rem !important;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--primary);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8);
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    will-change: transform, background-color, color;
}

.nav-link::after,
.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link[aria-current="page"]::after {
    content: none !important;
    display: none !important;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(255, 103, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: none;
    text-shadow: none;
}

.nav-link[aria-current="page"] {
    color: white;
    background: rgba(255, 103, 0, 0.8);
    border-color: rgba(255, 103, 0, 0.95);
    box-shadow: 0 6px 20px rgba(255, 103, 0, 0.35);
    text-shadow: none;
}

.home-navbar .nav-link:hover,
.home-navbar .nav-link:focus-visible {
    color: var(--primary);
    background: rgba(255, 103, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: none;
    text-shadow: none;
    filter: none;
}

.home-navbar .nav-link:focus-visible,
.home-navbar .lang-btn:focus-visible {
    outline: 3px solid rgba(255, 240, 31, 0.95);
    outline-offset: 3px;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
}

/* Add spacing before hamburger on mobile */
@media (max-width: 768px) {
    .language-switcher {
        margin-right: 1rem;
    }
}

.lang-btn {
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8);
}

.lang-btn:hover {
    background: rgba(255, 103, 0, 0.2);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 103, 0, 0.3);
}

.lang-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.home-navbar .lang-btn:hover,
.home-navbar .lang-btn:focus-visible {
    color: var(--primary);
    background: rgba(255, 103, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: none;
    text-shadow: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 0;
    /* Remove top padding to extend behind navbar */
    /* margin-top: -100vh; Removed for fixed background */
    background-color: transparent;
    /* Remove background color */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #e0e0e0;
    /* Fallback color for debugging */
    z-index: -1;
    display: none;
    /* Disable individual hero background */
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    margin-top: 60px;
}

.hero-title {
    font-size: 6rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9);
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 500;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 3rem;
    opacity: 0.95;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 103, 0, 0.3);
}

.cta-button:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 103, 0, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid white;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(8px);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid white;
    opacity: 0.7;
}

@keyframes bounce {

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

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

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

/* Experience CH01 Section - Full-Width Parallax Cards */
:root {
    /* Card parallax tuning */
    --img-shift: 16vh;
    /* per-card image vertical travel */
    --min-scale: 0.94;
    /* card scale at entry/exit */
    --max-scale: 1.00;
    /* card scale at center */

    /* Section background parallax (slower for depth) */
    --section-shift: 22vh;

    --shadow: 0 24px 80px rgba(17, 19, 24, .18);
}

/* ================= UNIFIED PARALLAX SECTION ================= */
.uni-stack {
    position: relative;
    width: 100vw;
    /* Height = one viewport per card; JS fallback sets this too */
}

/* Section-wide parallax background (sits behind all cards) */
.uni-bg {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    z-index: 0;
    isolation: isolate;
}

.uni-bg img {
    position: absolute;
    inset: -10vh 0;
    /* overscan to avoid edges on shift */
    width: 100vw;
    height: calc(100vh + 20vh);
    object-fit: cover;
    filter: saturate(1.05) contrast(1.02);
    transform: translateY(0);
    will-change: transform;
}

.uni-bg::after {
    /* soft film grain / light vignette */
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 120% at 50% 110%, rgba(0, 0, 0, .12) 0%, rgba(0, 0, 0, 0) 60%),
        linear-gradient(180deg, rgba(255, 255, 255, .0), rgba(255, 255, 255, .35) 65%, rgba(255, 255, 255, .6));
    pointer-events: none;
    mix-blend-mode: normal;
}

/* Cards layer (above the section bg) */
.uni-cards {
    position: relative;
    z-index: 1;
}

.pc-card {
    position: relative;
    height: 100vh;
    width: 100vw;
    display: grid;
    place-items: start;
    isolation: isolate;
}

.pc-img-wrap {
    position: absolute;
    inset: 0;
    overflow: clip;
    box-shadow: var(--shadow);
}

.pc-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateY(0);
    will-change: transform;
}

.pc-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, .88) 0%, rgba(255, 255, 255, 0) 45%);
    pointer-events: none;
}

.pc-content {
    position: relative;
    z-index: 1;
    width: min(var(--site-max-width), 92vw);
    margin: clamp(18px, 5vw, 44px) auto 0;
    padding: 0 clamp(12px, 3vw, 0);
}

.pc-badge {
    display: inline-block;
    font: 800 11px/1 Montserrat, system-ui;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #fff;
    background: #0f1117;
    border: 1px solid rgba(0, 0, 0, .25);
    padding: .5rem .7rem;
    border-radius: 999px;
    width: fit-content;
    box-shadow: 0 8px 20px rgba(17, 19, 24, .25);
    margin-bottom: .6rem;
}

.pc-title {
    margin: .1rem 0 .2rem;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: clamp(24px, 5.6vw, 56px);
    letter-spacing: .2px;
    color: #0f1117;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .7);
}

.text-chip {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
    margin-left: 0;
    margin-right: auto;
}

.text-chip::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(255, 255, 255, 0.95);
}

.text-chip::after {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 19px;
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 9px solid rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.pc-desc {
    margin: 0;
    max-width: 70ch;
    color: var(--dark);
    font-weight: 600;
    font-size: clamp(14px, 2.2vw, 17px);
    line-height: 1.65;
    letter-spacing: 0.5px;
    font-style: italic;
    text-shadow: none;
}

.pc-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 12px 30px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 103, 0, 0.3);
}

.pc-button:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 103, 0, 0.4);
}

/* CardSwap Demo Section Layout - Following cardslitesample.html design */
.card-swap-demo-section {
    min-height: 100vh;
    background: var(--light);
    background-image: url('../assets/images/foodIcon8.png');
    background-size: 60%;
    background-position: left;
    background-repeat: repeat-x;
    /* background-repeat: repeat-x,y; */
    padding: clamp(24px, 6vw, 80px);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: center;
    gap: 4vw;
}

.card-swap-demo-container {
    width: 100%;
    display: contents;
}

.card-swap-demo-header {
    z-index: 10;
    position: relative;
}

.card-swap-demo-title {
    font-size: clamp(28px, 5vw, 56px);
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 0.6rem;
    line-height: 1.1;
}

.card-swap-demo-subtitle {
    color: var(--dark);
    margin: 0;
    font-size: clamp(14px, 2.5vw, 20px);
    line-height: 1.4;
    opacity: 1;
    font-weight: 600;
    text-shadow: none;
    letter-spacing: 0.5px;
    font-style: italic;
}

/* Stack Container - Following cardslitesample.html design */
.stack {
    position: relative;
    width: clamp(480px, 80vw, 800px);
    height: clamp(320px, 40vw, 520px);
    display: grid;
    justify-items: end;
}

/* Card Styling - Following cardslitesample.html design */
.card {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: #0c0b16;
    box-shadow:
        0 0 0 6px #ffffff inset,
        0 0 0 2px rgba(255, 255, 255, 0.4),
        0 20px 60px rgba(0, 0, 0, 0.6);
    will-change: transform, opacity, filter;
    transition: transform 1000ms cubic-bezier(.4, .15, .1, 1),
        opacity 1000ms cubic-bezier(.4, .15, .1, 1),
        filter 1000ms cubic-bezier(.4, .15, .1, 1);
    transform: translate(var(--tx, 0), var(--ty, 0)) scale(var(--sc, 1));
    overflow: hidden;
}

.card-header {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 0 0 2px #ffffff;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    color: white;
}

.card-body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-body img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.card-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    padding: 80px 40px 40px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.card-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.card-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    margin-bottom: 30px;
    max-width: 400px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

.card-button {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 103, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.card-button:hover {
    background: #e55a00;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 103, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Stack layering - Following cardslitesample.html design */
.card[data-pos="0"] {
    z-index: 3;
    --tx: 0;
    --ty: 0;
    --sc: 1;
    filter: brightness(1);
}

.card[data-pos="1"] {
    z-index: 2;
    --tx: 0;
    --ty: -45px;
    --sc: 0.96;
    filter: brightness(0.9);
}

.card[data-pos="2"] {
    z-index: 1;
    --tx: 0;
    --ty: -90px;
    --sc: 0.92;
    filter: brightness(0.8);
}

/* Responsive Design - Following cardslitesample.html design */
@media (max-width: 900px) {
    .card-swap-demo-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stack {
        justify-items: center;
        margin-top: 2rem;
        width: clamp(400px, 90vw, 600px);
        height: clamp(280px, 35vw, 400px);
    }

    .card-content {
        padding: 60px 30px 30px;
    }

    .card-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }

    .card-description {
        font-size: clamp(0.9rem, 1.8vw, 1.1rem);
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .stack {
        width: clamp(320px, 95vw, 400px);
        height: clamp(240px, 30vw, 320px);
    }

    .card-content {
        padding: 40px 20px 20px;
    }

    .card-title {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }

    .card-description {
        font-size: clamp(0.85rem, 1.6vw, 1rem);
        max-width: 280px;
    }

    .chip {
        font-size: 0.8rem;
        padding: 4px 10px;
    }

    .card-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* ======== CSS Scroll-Driven Animations (super smooth) ======== */
@supports (animation-timeline: view()) {

    /* SECTION timeline for the background */
    .uni-stack {
        view-timeline-name: --section;
        view-timeline-axis: block;
    }

    .uni-bg img {
        animation-timeline: --section;
        animation-name: sectionParallax;
        animation-range: entry 0% exit 100%;
        animation-fill-mode: both;
    }

    @keyframes sectionParallax {
        0% {
            transform: translateY(calc(var(--section-shift) * 1));
        }

        50% {
            transform: translateY(0);
        }

        100% {
            transform: translateY(calc(var(--section-shift) * -1));
        }
    }

    /* Each card defines its own timeline for precise focus/parallax */
    .pc-card {
        view-timeline-name: --card;
        view-timeline-axis: block;
    }

    .pc-card {
        animation-timeline: --card;
        animation-name: cardFocus;
        animation-range: entry 10% cover 50% exit 10%;
        animation-fill-mode: both;
    }

    .pc-img {
        animation-timeline: --card;
        animation-name: imgParallax;
        animation-range: entry 0% cover 100%;
        animation-fill-mode: both;
    }

    @keyframes cardFocus {
        0% {
            transform: scale(var(--min-scale));
            opacity: .75;
        }

        50% {
            transform: scale(var(--max-scale));
            opacity: 1;
        }

        100% {
            transform: scale(var(--min-scale));
            opacity: .75;
        }
    }

    /* First card starts in focus */
    .pc-card:first-child {
        animation: none;
        transform: scale(var(--max-scale));
        opacity: 1;
    }

    @keyframes imgParallax {
        0% {
            transform: translateY(calc(var(--img-shift) * 1));
        }

        50% {
            transform: translateY(0);
        }

        100% {
            transform: translateY(calc(var(--img-shift) * -1));
        }
    }
}

/* Fallback: tiny JS toggles .is-inview for smooth but simpler effects */
@supports not (animation-timeline: view()) {
    .pc-card {
        transition: transform .6s ease, opacity .6s ease;
    }

    .pc-card.is-inview {
        transform: scale(1);
        opacity: 1;
    }

    .pc-card:not(.is-inview) {
        transform: scale(var(--min-scale));
        opacity: .9;
    }

    /* First card starts in focus */
    .pc-card:first-child {
        transform: scale(1);
        opacity: 1;
    }

    .pc-img {
        transition: transform .9s ease;
    }

    .pc-card.is-inview .pc-img {
        transform: translateY(0);
    }

    .pc-card:not(.is-inview) .pc-img {
        transform: translateY(var(--img-shift));
    }

    .uni-bg img {
        transition: transform 1.2s ease;
    }

    .uni-bg.in-range img {
        transform: translateY(0);
    }
}

/* Reduce motion (accessibility) */
@media (prefers-reduced-motion: reduce) {

    .uni-bg img,
    .pc-card,
    .pc-img {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}


/* Experience Section - Matching Story/Team Styles */
.experience-section {
    padding: 80px 0 100px;
    background: #F9F9F7;
}

.experience-row {
    margin-bottom: 6rem;
}

.experience-row:last-child {
    margin-bottom: 0;
}

.experience-title {
    font-size: 2rem;
    /* Increased from 3.5rem */
    /* font-family: "Playfair Display", serif; */
    font-family: var(--font-primary);
    color: var(--dark);
    margin-bottom: 2rem;

    line-height: 1.1;
}

/* Responsive adjustments for Experience Section */
@media (max-width: 900px) {
    .experience-row {
        margin-bottom: 4rem;
    }

    .experience-title {
        font-size: 2.5rem;
        text-align: center;
    }

    /* Ensure text comes after image on mobile for alternating rows */
    .experience-row .story-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    /* For the text-left image-right row, we want image first on mobile usually, 
       but standard stacking is fine too. If we want image first always: */
    .experience-row .story-content>.story-image {
        order: -1;
    }
}

/* Our Story Section */
.story-section {
    padding: 100px 0;
    /* restored normal padding */
    position: relative;
    background: var(--light);
    z-index: 10;
    /* Ensure it slides over the fixed background */
}

.story-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light) 0%, var(--secondary) 100%);
    opacity: 0.1;
    z-index: -1;
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: flex-start;
}

.story-description p.story-text-p {
    font-size: 1.15rem;
    margin-bottom: 1.8rem;
    color: var(--dark);
    opacity: 0.9;
    line-height: 1.9;
    letter-spacing: 0.2px;
}

.story-quote {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--primary);
    margin: 2.5rem 0;
    padding-left: 2rem;
    border-left: 4px solid var(--primary);
    line-height: 1.4;
    font-style: italic;
    background: linear-gradient(90deg, rgba(255, 103, 0, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    padding: 2rem;
    border-radius: 0 20px 20px 0;
}

.story-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 1.2rem;
    position: sticky;
    top: 120px;
}

.bento-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

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

.bento-main {
    grid-column: span 2;
    grid-row: span 2;
    height: 400px;
}

/* If we want a 3-item layout feeling or just 4 items */
/* Let's try a layout where main is large, others are small around it or below */
/* Update: user asked for bento gallery. 
   Grid template:
   [Main  ] [Main  ]
   [Small1] [Small2] 
   ... actually with 4 images:
   Row 1: Main (Big)
   Row 2: Small Small Small? No, grid is 2 cols.
   Let's do:
   [Main    Main]
   [Small  Small]
   [Small (centered? or span 2)]
   
   Better Layout for 4 items in 2 cols:
   Option A:
   [Main (2x1)]
   [Img2] [Img3]
   [Img4 (2x1)] -- maybe too tall.
   
   Option B (Classic Bento):
   [Main (1x2)] [Img2]
                [Img3]
   [Img4 (2x1)]
   
   Let's go with a balanced grid:
   grid-template-columns: repeat(2, 1fr);
   Item 1 (Main): span 2 (Full width top)
   Item 2, 3: span 1
   Item 4: span 2 (Full width bottom? or maybe just hide 4th? No user wants all)
   
   Actually, let's try this layout:
   [ Main (span 2, h=300px) ]
   [ Img2 ] [ Img3 ]
   [ Img4 (span 2, h=200px) ]
   
   Or even better asymmetric:
   [ Main (2/3 width) ] [ Stack of 2 others? ]
   
   Let's stick to the code above but refine .bento-main to be span 2.
   And handle the 4th item.
*/

.story-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    position: sticky;
    top: 120px;
}

.bento-main {
    grid-column: span 2;
    height: 300px;
}

.bento-item:nth-child(2),
.bento-item:nth-child(3) {
    height: 200px;
}

.bento-item:nth-child(4),
.bento-item:nth-child(5) {
    height: 200px;
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

.story-img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.image-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.image-overlay p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

/* Our Team Section */
.team-section {
    padding: 100px 0;
    background: white;
}

.team-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-subtitle {
    font-size: 1.3rem;
    color: var(--primary);
    font-style: italic;
    margin-top: 1rem;
    font-weight: 500;
}

.team-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.team-description p {
    font-size: 1.1rem;
    color: var(--dark);
    opacity: 0.8;
    line-height: 1.8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    margin-bottom: 1.5rem;
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-icon {
    font-size: 3rem;
    color: white;
}

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

.member-name {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.member-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Menu Section - Redesigned */
.menu-section {
    padding: 80px 0;
    background: var(--secondary);
    position: relative;
}

.menu-header {
    text-align: center;
    margin-bottom: 3rem;
}

.menu-header .section-title {
    color: var(--dark);
    margin-bottom: 1rem;
}

.menu-description {
    font-size: 1.3rem;
    color: var(--primary);
    font-style: italic;
    margin: 0 auto 2rem;
    font-weight: 500;
    max-width: 600px;
    text-align: center;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 40px;
}

@media (min-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu-item {
    background:
        linear-gradient(135deg, var(--primary), var(--primary)) top left / 0% 0% no-repeat,
        white;
    border-radius: 15px;
    overflow: visible;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease, background-size 0.7s ease, color 0.7s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    margin-top: 80px;
    position: relative;
    /* min-height: 420px; */
}

.menu-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 0% 0%;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    opacity: 0;
    transition: all 0.7s ease;
    z-index: 1;
    pointer-events: none;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
    background-size: 200% 200%, auto;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.menu-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.menu-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.menu-description-text {
    font-size: 0.95rem;
    color: var(--dark);
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.menu-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid var(--secondary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: spin 16s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.menu-content {
    padding: 1.5rem;
    padding-top: 8.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.menu-name {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
    transition: color 0.7s ease;
}

.menu-description-text {
    color: var(--dark);
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    text-align: center;
    transition: color 0.7s ease;
}

.menu-type {
    position: absolute;
    top: 90px;
    left: 20px;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 103, 0, 0.3);
    z-index: 2;
    transition: background-color 0.7s ease, color 0.7s ease;
}

.menu-price {
    position: absolute;
    top: 90px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 103, 0, 0.3);
    z-index: 2;
    transition: background-color 0.7s ease, color 0.7s ease;
}

/* Hover effects for water-fill animation */
.menu-item:hover .menu-name,
.menu-item:hover .menu-description-text {
    color: white;
}

.menu-item:hover .menu-type,
.menu-item:hover .menu-price {
    background: rgba(255, 255, 255, 0.22);
    color: white;
}

/* Menu Categories with Navigation Style */
.menu-category {
    margin-bottom: 4rem;
    position: relative;
}

.category-navigation {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.3rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
    gap: 0.3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 10;
}

.category-nav-item {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: 12px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    opacity: 0.7;
}

.category-nav-item:hover {
    background: rgba(255, 103, 0, 0.1);
    color: var(--primary);
    opacity: 1;
    transform: translateY(-1px);
}

.category-nav-item.active {
    background: var(--primary);
    color: white;
    opacity: 1;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 103, 0, 0.3);
}

.category-title {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-align: center;
}

.category-subtitle {
    font-size: 1.3rem;
    color: var(--primary);
    font-style: italic;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Menu Category Filtering */
.menu-category {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-category.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.menu-category.fade-in {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

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

/* Menu Grid Animation */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 60px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

@media (min-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu-grid.filtering {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

/* Contact Section - REMOVED */

/* Enhanced Footer Section */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-brand {
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-brand .hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-brand .hero-logo-img {
    height: auto;
    width: 170px;
    max-width: 100%;
    object-fit: contain;
    opacity: 1;
}

.footer-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--primary);
    margin: 0 0 0.5rem;
    font-weight: 400;
}

.footer-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-style: italic;
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-section h3 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 28px;
    height: 28px;
    margin-right: 0.75rem;
    margin-top: 0.1rem;
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-item:hover .contact-icon {
    color: var(--primary);
    transform: scale(1.1);
}

.contact-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.social-link:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.social-icon {
    width: 32px;
    height: 32px;
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Ensure no content below footer */
* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Remove any potential extra spacing */
.footer {
    margin-bottom: 0;
    padding-bottom: 20px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .footer-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-title {
        font-size: 2rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        order: 1;
        display: flex;
    }

    /* Center logo between EN/DE and hamburger */
    .nav-container {
        justify-content: space-between;
    }

    .language-switcher {
        order: 3;
        /* Third - right side */
        margin-right: 0;
    }

    .nav-logo {
        order: 2;
        /* Second - center */
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 40px;
        /* Move down to prevent cutting */
    }

    .hamburger {
        order: 1;
        /* First - left side */
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .logo-container {
        width: 90px;
        height: 90px;
    }

    .circular-text-svg {
        width: 90px;
        height: 90px;
    }

    .circular-text-svg text {
        font-size: 8px;
    }

    .logo-center {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .scroll-stack {
        padding: 6vh 0 15vh;
    }

    .stack-track {
        height: 70vh;
    }

    .stack-card {
        padding: clamp(16px, 3vw, 24px);
    }

    .card-title {
        font-size: clamp(16px, 3vw, 24px);
    }

    .card-desc {
        font-size: clamp(12px, 2vw, 14px);
    }

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

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

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 480px) {
    .logo-container {
        width: 80px;
        height: 80px;
    }

    .circular-text-svg {
        width: 80px;
        height: 80px;
    }

    .circular-text-svg text {
        font-size: 7px;
    }

    .logo-center {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .scroll-stack {
        padding: 4vh 0 12vh;
    }

    .stack-track {
        height: 60vh;
    }

    .stack-card {
        padding: clamp(14px, 2.5vw, 20px);
    }

    .card-title {
        font-size: clamp(14px, 2.5vw, 20px);
    }

    .card-desc {
        font-size: clamp(11px, 1.8vw, 13px);
    }

    .container {
        padding: 0 15px;
    }

    .hero-content {
        padding: 0 15px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.parallax-fade {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.8s ease;
}

.parallax-fade.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    height: 100%;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-right: 1.5rem;
    order: +1;
    /* Move to the very beginning */
}

.lang-btn {
    background: #0000004d;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.lang-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 103, 0, 0.3);
}

@media (max-width: 768px) {
    .language-switcher {
        margin-right: 0.5rem;
        order: -1;
        /* Keep at the beginning on mobile too */
    }

    .lang-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    position: relative;
    text-align: center;
}

.impressum-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--primary);
    background: transparent;
    position: absolute;
    right: 0;
}

.impressum-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 103, 0, 0.3);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        position: relative;
    }

    .impressum-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
        position: static;
        margin-top: 1rem;
    }
}

/* =========================================
   Parallax Experience Prototype
   ========================================= */
.parallax-section {
    position: relative;
    padding-bottom: 100px;
}

/* Global Parallax Wrapper */
.global-parallax-wrapper {
    position: relative;
    width: 100%;
}

/* Updated shared background styles */
.parallax-sticky-bg {
    position: fixed;
    /* Changed from sticky to fixed */
    top: 0;
    width: 100%;
    height: 100vh;
    background-image: image-set(
        url('../assets/images/heroImage_opt.avif') type('image/avif'),
        url('../assets/images/heroImage_opt.webp') type('image/webp')
    );
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: brightness(0.4);
}

.parallax-container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    /* Pull content up over the sticky bg */
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.parallax-header {
    text-align: center;
    margin-bottom: 30vh;
    /* Space before first card */
    padding-top: 10vh;
}

.parallax-card {
    position: sticky;
    top: 120px;
    /* Stick distance from top */
    height: 450px;
    /* Fixed height for consistency */
    background: white;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 10vh;
    /* Space between cards when scrolling */
    display: flex;
    overflow: hidden;
    /* transform-origin: center top; */
    transition: transform 0.3s ease;
}

/* Stacking offset logic (optional visual tweak) */
.parallax-card:nth-child(2) {
    top: 140px;
}

.parallax-card:nth-child(3) {
    top: 160px;
}

.parallax-card:nth-child(4) {
    top: 180px;
}

.parallax-card-content {
    display: flex;
    width: 100%;
}

.parallax-card-image {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.parallax-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.parallax-card-text {
    width: 50%;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.parallax-card-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-family: var(--font-primary);
}

.parallax-card-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Responsive */
/* =========================================
   Responsive Styles
   ========================================= */

/* Tablet (Portrait/Landscape) */
@media (min-width: 769px) and (max-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }

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

    .parallax-card-text h3 {
        font-size: 2rem;
    }

    .parallax-card-text p {
        font-size: 1rem;
    }

    /* Fix white space below images */
    .parallax-card-image img {
        display: block;
    }

    /* Increase circular text visibility on tablet */
    .circular-text-svg svg text {
        font-size: 20px !important;
        font-weight: bold !important;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {

    /* global overrides */
    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    /* Hero Section */
    .hero-title {
        font-size: 3rem;
        /* Significant reduction */
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .curved-text {
        font-size: 6rem !important;
    }

    /* Increase circular text visibility on mobile */
    .circular-text-svg svg text {
        font-size: 20px !important;
        font-weight: bold !important;
    }

    /* Parallax Experience Updates */
    .parallax-section {
        padding-bottom: 60px;
    }

    .parallax-header {
        margin-bottom: 10vh;
        padding-top: 5vh;
    }

    .parallax-card {
        flex-direction: column;
        height: auto;
        position: sticky;
        /* Enable sticky stacking on mobile */
        /* margin-bottom: 20px; */
        border-radius: 20px;
        overflow: hidden;
        background: white;
    }

    .parallax-card-image {
        width: 100%;
        overflow: hidden;
        display: flex;
        /* Prevents gap issues */
    }

    .parallax-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        /* Remove white space below image */
    }

    .parallax-card-text {
        width: 100%;
        padding: 30px 20px;
    }

    .parallax-card-text h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .parallax-card-text p {
        font-size: 1rem;
    }

    /* Ensure background stays fixed behind */
    .parallax-sticky-bg {
        position: fixed;
        /* Ensure it covers standard mobile viewports */
        height: 100vh;
        width: 100%;
    }

    .parallax-container {
        margin: 0 auto;
        padding: 0 15px;
    }

    /* Menu adjustments */
    /* .menu-item {
        margin-top: flex;
    } */

    .menu-header {
        padding: 0 15px;
    }

    /* Our Story Mobile Updates */
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-bento-grid {
        position: static;
        /* Disable sticky on mobile */
        gap: 1rem;
    }

    .bento-main {
        height: 250px;
    }

    .bento-item:hover {
        transform: none;
    }
}

/* Impressum Page Specific Styles */
.impressum-page {
    min-height: 100vh;
    background: var(--light);
    padding: calc(var(--home-navbar-height) + var(--home-navbar-offset) + 1.5rem) 0 2rem;
}

.impressum-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.impressum-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    color: white;
}

.impressum-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.impressum-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

.impressum-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.impressum-section {
    margin-bottom: 2.5rem;
}

.impressum-section:last-child {
    margin-bottom: 0;
}

/* Scoped to override global .section-title */
.impressum-page .section-title {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
    /* Resetting center alignment if needed, though global has it. Impressum seems left aligned by default? */
    text-align: left;
}

.section-content {
    color: var(--dark);
    line-height: 1.8;
    font-size: 1rem;
}

.section-content p {
    margin-bottom: 1rem;
}

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

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 2rem;
    border: 2px solid var(--primary);
    border-radius: 25px;
    transition: all 0.3s ease;
    background: white;
}

.back-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 103, 0, 0.3);
}

.back-link::before {
    content: '←';
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .impressum-container {
        padding: 0 1rem;
    }

    .impressum-content {
        padding: 2rem 1.5rem;
    }

    .impressum-header {
        padding: 1.5rem;
    }
}

/* ShaWa Homepage */
.home-page {
    --home-navbar-height: 72px;
    --home-navbar-offset: 14px;
    position: relative;
    background: transparent;
    color: var(--dark);
}

.home-page::before,
.home-page::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
}

.home-page::before {
    z-index: -2;
    background-image: image-set(
        url('../assets/images/herobg.webp') type('image/webp'),
        url('../assets/images/herobg.png') type('image/png')
    );
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: saturate(0.92) brightness(0.9);
    transform: scale(1.04);
}

.home-page::after {
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(247, 242, 232, 0.7) 0%, rgba(247, 242, 232, 0.52) 24%, rgba(247, 242, 232, 0.8) 58%, rgba(247, 242, 232, 0.92) 100%);
}

body.about-scroll-wheel-locked {
    overflow: hidden;
}

.home-page .navbar {
    background: transparent;
}

.home-navbar .nav-container {
    max-width: var(--site-max-width);
    min-height: var(--home-navbar-height);
    padding: 0.55rem 20px;
    gap: 1rem;
}

.home-logo-link {
    display: inline-flex;
    align-items: center;
}

.home-logo-image {
    width: 120px;
    height: 120px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.24));
}

.shawa-hero {
    position: relative;
    min-height: calc(100svh - var(--home-navbar-height));
    padding: calc(var(--home-navbar-height) + 4.4rem) 0 5.5rem;
    background: transparent;
    overflow: clip;
}

.shawa-about {
    scroll-margin-top: calc(var(--home-navbar-height) + var(--home-navbar-offset) + 0.75rem);
}

.shawa-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.04);
    animation: heroFloat 16s ease-in-out infinite alternate;
}

.shawa-hero-content {
    width: 100%;
    position: relative;
    z-index: 1;
}

.shawa-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 3rem;
}

.shawa-hero-copy {
    display: grid;
    gap: 0.9rem;
    max-width: 620px;
}

.shawa-eyebrow,
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-label {
    background: rgba(255, 103, 0, 0.08);
    border-color: rgba(255, 103, 0, 0.18);
    color: var(--primary);
}

.shawa-hero-title {
    max-width: 11ch;
    font-size: clamp(2.9rem, 5vw, 5rem);
    line-height: 0.93;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin-bottom: 0.35rem;
    text-wrap: balance;
}

html[lang="en"] .shawa-hero-title {
    max-width: 15.2ch;
    font-size: clamp(2.55rem, 4.25vw, 4.35rem);
}

html[lang="en"] .shawa-hero-copy {
    max-width: 660px;
}

html[lang="en"] .hero-title-keep {
    display: inline-block;
    white-space: nowrap;
}

.shawa-hero-title::after {
    content: '';
    display: block;
    width: 5.25rem;
    height: 4px;
    margin-top: 1.35rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform-origin: left center;
    animation: titleLineIn 1s ease 0.35s both;
}

.shawa-hero-subhead,
.shawa-hero-description {
    max-width: 52ch;
    color: rgba(32, 28, 76, 0.88);
    font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.shawa-hero-subhead {
    font-weight: 600;
    margin-bottom: 0;
}

.shawa-hero-description {
    color: rgba(32, 28, 76, 0.72);
    margin-bottom: 1rem;
}

.shawa-trust-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: flex-start;
    align-content: flex-start;
    max-width: 100%;
}

.shawa-trust-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(226, 122, 63, 0.16);
    color: rgba(32, 28, 76, 0.72);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.shawa-hero-media {
    position: relative;
    min-height: min(72vh, 640px);
    height: 100%;
    border-radius: 38px;
    overflow: hidden;
    box-shadow: 0 26px 70px rgba(32, 28, 76, 0.14);
}

.shawa-hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(32, 28, 76, 0) 20%, rgba(32, 28, 76, 0.18) 100%),
        radial-gradient(circle at top right, rgba(255, 240, 31, 0.14), transparent 36%);
    pointer-events: none;
}

.shawa-hero-showcase {
    display: flex;
    align-items: stretch;
    gap: 0.75rem;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    overflow: visible;
}

.shawa-hero-showcase::after {
    display: none;
}

.shawa-hero-showcase-card {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    border: 0;
    padding: 0;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    background: transparent;
    text-decoration: none;
    transition:
        flex-grow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        filter 0.35s ease;
    isolation: isolate;
}

.shawa-hero-showcase-card img {
    transform: scale(1.06);
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.shawa-hero-showcase-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
    z-index: 2;
    pointer-events: none;
}

.shawa-hero-showcase-card:not(.is-active) {
    filter: saturate(0.88) contrast(0.96);
}

.shawa-hero-showcase-card.is-active {
    flex-grow: 2.4;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(32, 28, 76, 0.16);
}

.shawa-hero-showcase-card.is-active img {
    transform: scale(1.02);
}

.shawa-hero-showcase-card:hover,
.shawa-hero-showcase-card:focus-visible {
    flex-grow: 2.4;
    outline: none;
}

.shawa-hero-showcase-card:hover img,
.shawa-hero-showcase-card:focus-visible img {
    transform: scale(1.02);
}

.shawa-hero-showcase-label {
    position: absolute;
    left: 1.15rem;
    right: 1.15rem;
    top: 1.15rem;
    z-index: 3;
    color: #fff8ea;
    font-family: 'Lilita One', cursive;
    font-size: clamp(1.2rem, 1.8vw, 2rem);
    line-height: 1;
    letter-spacing: 0.01em;
    text-align: left;
    text-shadow:
        0 10px 22px rgba(16, 14, 35, 0.58),
        0 2px 8px rgba(16, 14, 35, 0.44);
}

.shawa-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.shawa-hero-actions .cta-button {
    white-space: nowrap;
}

.shawa-hero-actions .cta-button.secondary,
.shawa-cta-band .cta-button.secondary {
    background: rgba(255, 240, 31, 0.55);
    border: 1px solid rgba(32, 28, 76, 0.12);
    color: var(--dark);
    box-shadow: 0 8px 22px rgba(32, 28, 76, 0.08);
}

.shawa-hero-actions .cta-button.secondary:hover,
.shawa-cta-band .cta-button.secondary:hover {
    background: #fff3a6;
    color: var(--dark);
}

.shawa-section {
    position: relative;
    padding: 6.5rem 0;
}

.shawa-about {
    background:
        radial-gradient(circle at top left, rgba(255, 240, 31, 0.18), transparent 24%),
        linear-gradient(180deg, #f7f2e8 0%, #fff9ef 100%);
}

.shawa-concepts {
    background: #fffdf9;
}

.shawa-why {
    position: relative;
    overflow: visible;
    background:
        radial-gradient(circle at top center, rgba(255, 198, 69, 0.16), transparent 28%),
        linear-gradient(180deg, #fff5e3 0%, #f7f2e8 100%);
    color: var(--dark);
}

.shawa-philosophy {
    background:
        radial-gradient(circle at top center, rgba(255, 198, 69, 0.14), transparent 28%),
        linear-gradient(180deg, #fffaf1 0%, #f7f2e8 100%);
    color: var(--dark);
}

.shawa-philosophy .section-title,
.shawa-philosophy .section-copy,
.shawa-philosophy .philosophy-lead p,
.shawa-philosophy .philosophy-item p,
.shawa-philosophy .philosophy-item h3 {
    color: var(--dark);
}

.shawa-founders {
    background: #fffdf9;
}

.shawa-seo-copy,
.shawa-seo-compare {
    background: linear-gradient(180deg, #fffdf9 0%, #f7f2e8 100%);
    padding-top: 5rem;
}

.shawa-seo-compare {
    padding-bottom: 5.5rem;
}

.seo-compare-heading {
    max-width: 860px;
    margin-bottom: 2.6rem;
}

.seo-compare-stack {
    display: grid;
    gap: 1.75rem;
}

.seo-option {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
}

.seo-option h3,
.seo-option h4 {
    color: var(--dark);
}

.seo-option p {
    color: rgba(32, 28, 76, 0.75);
}

.seo-option-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.9rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(226, 122, 63, 0.1);
    color: var(--primary);
    font-size: 0.79rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.seo-option-b-copy h3 {
    font-family: 'Lilita One', cursive;
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin-bottom: 0.9rem;
}

.seo-trust-item h4 {
    font-size: 1.15rem;
    line-height: 1.2;
    margin-bottom: 0.65rem;
}

.seo-option-b {
    padding: 2.2rem;
    background: #fff;
    box-shadow: 0 24px 55px rgba(32, 28, 76, 0.1);
}

.seo-option-b-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
    gap: 2rem;
    align-items: center;
}

.seo-option-b-copy {
    padding: 0.3rem 0;
}

.seo-option-b-copy .seo-option-kicker {
    background: rgba(226, 122, 63, 0.1);
    color: var(--primary);
}

.seo-option-b-copy h3,
.seo-option-b-copy p,
.seo-option-b-copy h4 {
    color: var(--dark);
}

.seo-option-b-intro {
    max-width: 58ch;
}

.seo-option-b-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 1.35rem 0 1.7rem;
}

.seo-option-b-tags span {
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 240, 31, 0.14);
    border: 1px solid rgba(226, 122, 63, 0.14);
    color: var(--dark);
    font-size: 0.92rem;
    font-weight: 600;
}

.seo-option-b-list {
    display: grid;
    gap: 1rem;
}

.seo-trust-item {
    padding-left: 1.15rem;
    border-left: 2px solid rgba(255, 216, 99, 0.35);
}

.seo-option-b-media {
    position: relative;
    min-height: 100%;
}

.seo-option-b-media img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    display: block;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: 0 26px 60px rgba(4, 6, 24, 0.3);
}

.seo-option-b-panel {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    padding: 1.2rem 1.15rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 20px 40px rgba(32, 28, 76, 0.1);
}

.seo-option-b-panel-label {
    margin-bottom: 0.35rem;
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.seo-option-b-panel strong {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--dark);
    font-size: 1.1rem;
    line-height: 1.2;
}

.seo-option-b-panel p {
    color: rgba(32, 28, 76, 0.76);
}

.shawa-section-heading {
    margin-bottom: 2.4rem;
}

.shawa-heading-narrow {
    max-width: 860px;
}

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

.section-copy {
    color: rgba(32, 28, 76, 0.76);
    font-size: 1.06rem;
    max-width: 68ch;
}

.shawa-about-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 3rem;
    align-items: center;
}

.shawa-about-copy {
    display: grid;
    gap: 1.35rem;
    font-size: 1.03rem;
    max-width: 560px;
}

.shawa-about-visual {
    position: relative;
}

.shawa-about-image,
.concept-card-image {
    width: 100%;
    display: block;
    object-fit: cover;
}

.shawa-about-image {
    height: 620px;
    border-radius: 34px;
    box-shadow: 0 26px 70px rgba(32, 28, 76, 0.14);
}

.shawa-about-note {
    position: absolute;
    left: -1.25rem;
    bottom: 2rem;
    max-width: 260px;
    padding: 1.2rem 1.15rem 1.15rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 45px rgba(32, 28, 76, 0.16);
    animation: noteFloat 7s ease-in-out infinite;
}

.shawa-about-note-kicker {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 700;
}

.shawa-about-note strong {
    display: block;
    color: var(--dark);
    font-size: 1rem;
    line-height: 1.4;
}

.shawa-about-points {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 0.25rem;
}

.shawa-about-points li {
    list-style: none;
}

.about-chip-button {
    position: relative;
    display: block;
    width: 100%;
    min-height: 100%;
    padding: 1rem 1rem 1rem 2.2rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid transparent;
    font-weight: 600;
    color: var(--dark);
    box-shadow: 0 10px 24px rgba(32, 28, 76, 0.05);
    text-align: left;
    font: inherit;
}

.about-chip-button::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 1.35rem;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--primary);
}

.about-demo {
    position: relative;
    overflow: hidden;
}

.about-demo h3,
.about-demo h4 {
    color: var(--dark);
}

.about-demo p {
    color: rgba(32, 28, 76, 0.78);
}

.about-demo-about4-ring span {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.about-demo-about4-ring strong {
    display: block;
    color: var(--dark);
    line-height: 1.4;
}

.about-demo-about4 {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
}

.about-scroll-stage {
    position: sticky;
    top: calc(var(--home-navbar-height) + var(--home-navbar-offset));
    z-index: 1;
    padding: 1rem 0 1.4rem;
}

.about-scroll-triggers {
    display: none;
}

.about-scroll-trigger {
    height: 0;
}

.about-demo-about4-layout {
    display: grid;
    grid-template-columns: minmax(220px, 0.7fr) minmax(260px, 0.8fr) minmax(0, 1fr);
    gap: 1.65rem;
    align-items: center;
}

.about-demo-about4-column {
    min-width: 0;
}

.about-demo-point-list {
    grid-template-columns: 1fr;
    margin-top: 0;
    gap: 0.8rem;
}

.about-demo-point-list li {
    list-style: none;
}

.about-demo-point-list .about-chip-button {
    cursor: pointer;
    position: relative;
    transform: translateX(var(--about-chip-shift, 0px)) scale(var(--about-chip-scale, 0.96));
    opacity: 0.58;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(32, 28, 76, 0.08);
    box-shadow: none;
    transition:
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.32s ease,
        background-color 0.32s ease,
        border-color 0.32s ease,
        box-shadow 0.32s ease,
        filter 0.32s ease;
    filter: blur(var(--about-chip-blur, 0px));
    overflow: hidden;
}

.about-demo-point-list .about-chip-button::after {
    content: '';
    position: absolute;
    inset: auto -18% -40% auto;
    width: 58%;
    height: 72%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 198, 69, 0.26) 0%, rgba(255, 198, 69, 0) 72%);
    opacity: 0;
    transform: scale(0.72);
    transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-demo-point-list .about-chip-button::before {
    transition: transform 0.32s ease, background-color 0.32s ease;
}

.about-demo-point-list .about-chip-button.is-active {
    opacity: 1;
    transform: translateX(-6px) scale(1.055);
    background: rgba(255, 250, 236, 0.92);
    border-color: rgba(226, 122, 63, 0.24);
    box-shadow: 0 18px 40px rgba(32, 28, 76, 0.08);
    filter: blur(0px);
}

.about-demo-point-list .about-chip-button.is-active::before {
    transform: scale(1.16);
    background: var(--secondary);
}

.about-demo-point-list .about-chip-button.is-active::after {
    opacity: 1;
    transform: scale(1);
}

.about-demo-point-list .about-chip-button:focus-visible {
    outline: 3px solid rgba(143, 54, 0, 0.95);
    outline-offset: 3px;
    opacity: 1;
}

.about-demo-about4-center {
    display: flex;
    justify-content: center;
}

.about-demo-about4-badge {
    position: relative;
    width: min(100%, 320px);
    aspect-ratio: 1 / 1.08;
    transform: translateY(var(--about-badge-shift, 0px)) rotate(var(--about-badge-rotate, 0deg)) scale(var(--about-badge-scale, 1));
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-demo-about4-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 999px;
    box-shadow: 0 24px 52px rgba(32, 28, 76, 0.14);
    transition: opacity 0.28s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-demo-about4-ring {
    position: absolute;
    inset: 12%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.2rem;
    text-align: center;
    border-radius: 999px;
    background: rgba(255, 250, 236, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 0 1px rgba(226, 122, 63, 0.18);
    transition: opacity 0.28s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    transform: translateY(var(--about-ring-shift, 0px)) scale(var(--about-ring-scale, 1));
}

.about-demo-about4-badge.is-swapping img,
.about-demo-about4-badge.is-swapping .about-demo-about4-ring {
    opacity: 0.14;
    transform: scale(0.96);
}

.about-demo-about4-copy {
    min-height: 360px;
}

.about-detail-panel {
    position: relative;
    transform: translateY(var(--about-copy-drift, 0px));
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-detail-item {
    display: grid;
    gap: 0.9rem;
    align-content: start;
    padding: 0.9rem 0;
    animation: aboutDetailReveal 0.42s ease;
    transform-origin: top left;
}

.about-detail-overline {
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.about-detail-item h3 {
    font-family: 'Lilita One', cursive;
    font-size: clamp(1.9rem, 2.8vw, 2.7rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
}

.about-detail-item p:last-child {
    max-width: 42ch;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-detail-item.is-active h3,
.about-detail-item.is-active p {
    animation: aboutTextLift 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-detail-item.is-active p:nth-of-type(2) {
    animation-delay: 0.06s;
}

.about-detail-item.is-active p:nth-of-type(3) {
    animation-delay: 0.12s;
}

.about-detail-item.is-active p:nth-of-type(4) {
    animation-delay: 0.18s;
}

@keyframes aboutDetailReveal {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

@keyframes aboutTextLift {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

@media (prefers-reduced-motion: reduce) {
    .about-demo-point-list li,
    .about-demo-point-list li::after,
    .about-demo-about4-badge,
    .about-demo-about4-badge img,
    .about-demo-about4-ring,
    .about-detail-panel,
    .about-detail-item,
    .about-detail-item.is-active h3,
    .about-detail-item.is-active p {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}

.about-detail-item[hidden] {
    display: none;
}

.concept-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.concept-card {
    display: grid;
    grid-template-rows: 290px 1fr;
    background: transparent;
    border-radius: 32px;
    overflow: visible;
    box-shadow: none;
    transition: transform 0.35s ease;
}

.concept-card-media {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    box-shadow: 0 22px 60px rgba(32, 28, 76, 0.12);
}

.concept-card-image {
    height: 100%;
    transition: transform 0.45s ease;
}

.concept-card-index {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark);
    font-family: var(--font-primary);
    font-size: 1rem;
    box-shadow: 0 12px 30px rgba(32, 28, 76, 0.14);
}

.concept-card-body {
    display: flex;
    flex-direction: column;
    position: relative;
    margin: -3.25rem 1rem 0;
    padding: 1.5rem 1.5rem 1.65rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(32, 28, 76, 0.06);
    box-shadow: 0 20px 50px rgba(32, 28, 76, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

.concept-card:hover .concept-card-image {
    transform: scale(1.06);
}

.concept-card:hover .concept-card-body {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(32, 28, 76, 0.14);
}

.founder-role,
.philosophy-number {
    color: var(--primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
}

.concept-card-body h3 {
    font-size: 1.9rem;
    margin: 0 0 0.5rem;
}

.concept-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.concept-list {
    list-style: none;
    display: grid;
    gap: 0.7rem;
    margin: 1rem 0 1.35rem;
}

.concept-list li {
    position: relative;
    padding-left: 1.4rem;
    color: var(--dark);
}

.concept-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--secondary);
    box-shadow: 0 0 0 4px rgba(255, 103, 0, 0.1);
}

.concept-card-cta {
    margin-top: auto;
    align-self: flex-start;
}

.shawa-why-copy {
    display: grid;
    gap: 1rem;
    max-width: 820px;
}

.shawa-why-copy.centered {
    position: relative;
    margin: 0 auto;
    padding: 0 0 4rem;
    text-align: center;
}

.shawa-why-copy.centered .section-label,
.shawa-why-copy.centered .section-title {
    margin-left: auto;
    margin-right: auto;
}

.shawa-why-copy.centered .section-label {
    color: var(--primary);
    background: rgba(226, 122, 63, 0.1);
}

.shawa-why-copy.centered .section-title,
.shawa-why-copy.centered p {
    color: var(--dark);
}

.shawa-why-copy.centered p:not(.shawa-why-signature) {
    color: rgba(32, 28, 76, 0.76);
}

.shawa-why-compare {
    display: grid;
    gap: 1.75rem;
}

.why-stack {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 20px 80px;
}

.why-stack-card {
    position: sticky;
    top: calc(var(--home-navbar-height) + var(--home-navbar-offset) + 28px);
    height: 450px;
    margin-bottom: 11vh;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 16px 44px rgba(32, 28, 76, 0.14);
    transition: transform 0.35s ease;
}

.why-stack-card:nth-child(2) {
    top: calc(var(--home-navbar-height) + var(--home-navbar-offset) + 48px);
}

.why-stack-card:nth-child(3) {
    top: calc(var(--home-navbar-height) + var(--home-navbar-offset) + 68px);
}

.why-stack-card:nth-child(4) {
    top: calc(var(--home-navbar-height) + var(--home-navbar-offset) + 88px);
}

.why-stack-card-content {
    display: flex;
    width: 100%;
    height: 100%;
}

.why-stack-card:nth-child(even) .why-stack-card-content {
    flex-direction: row-reverse;
}

.why-stack-card-image,
.why-stack-card-text {
    width: 50%;
}

.why-stack-card-image {
    position: relative;
    overflow: hidden;
    background: #f3ead8;
}

.why-stack-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.why-stack-card:hover .why-stack-card-image img {
    transform: scale(1.04);
}

.why-stack-card-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 42px;
    background:
        radial-gradient(circle at top right, rgba(255, 198, 69, 0.15), transparent 30%),
        linear-gradient(180deg, rgba(255, 252, 246, 0.98) 0%, rgba(255, 247, 238, 0.96) 100%);
}

.why-stack-card-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 1rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(226, 122, 63, 0.1);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.why-stack-card-text h3 {
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.02;
    color: var(--dark);
    margin-bottom: 1rem;
}

.why-stack-card-text p {
    font-size: 1.08rem;
    line-height: 1.75;
    color: rgba(32, 28, 76, 0.78);
    max-width: 38ch;
}

.why-demo {
    border-radius: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.why-demo-b {
    position: relative;
    height: 360vh;
}

.why-demo-header {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 1.5rem;
}

.why-demo-header h3 {
    font-size: clamp(1.85rem, 2.7vw, 2.6rem);
    line-height: 1.03;
}

.why-demo-kicker {
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.why-demo-b-card h4 {
    font-size: 1.15rem;
    line-height: 1.15;
}

.why-demo-b-timeline {
    position: sticky;
    top: calc(var(--home-navbar-height) + var(--home-navbar-offset) + 12px);
    height: calc(100svh - var(--home-navbar-height) - var(--home-navbar-offset) - 24px);
    min-height: 760px;
    overflow: hidden;
    --why-line-start: 14%;
    --why-line-height: 72%;
}

.why-demo-b-progress {
    position: absolute;
    top: var(--why-line-start);
    height: var(--why-line-height);
    left: 50%;
    width: 3px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(226, 122, 63, 0.18);
}

.why-demo-b-progress span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0%;
    border-radius: inherit;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    transform-origin: top center;
    transition: height 0.4s ease;
}

.why-demo-b-card {
    position: absolute;
    top: var(--why-node-position);
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 112px minmax(0, 1fr);
    align-items: center;
    gap: 1.15rem;
    transform: translateY(-50%);
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.why-demo-b-card[data-why-card="0"] {
    --why-node-position: 14%;
}

.why-demo-b-card[data-why-card="1"] {
    --why-node-position: 37.5%;
}

.why-demo-b-card[data-why-card="2"] {
    --why-node-position: 61%;
}

.why-demo-b-card[data-why-card="3"] {
    --why-node-position: 86%;
}

.why-demo-b-node {
    position: relative;
    grid-column: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    width: 112px;
    height: 112px;
    z-index: 2;
}

.why-demo-b-node::before {
    content: '';
    position: absolute;
    inset: 50% auto auto 50%;
    width: 78px;
    height: 78px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: rgba(255, 250, 236, 0.96);
    border: 1px solid rgba(226, 122, 63, 0.2);
    box-shadow: 0 0 0 0 rgba(255, 103, 0, 0);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
}

.why-demo-b-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 62px;
    height: 62px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(226, 122, 63, 0.16);
    color: var(--primary);
    box-shadow: 0 0 0 10px rgba(247, 242, 232, 1);
    transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.why-demo-b-icon svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-demo-b-node.is-active::before {
    transform: translate(-50%, -50%) scale(1.08);
    border-color: rgba(255, 198, 69, 0.4);
    box-shadow: 0 0 0 14px rgba(255, 103, 0, 0.12);
}

.why-demo-b-node.is-active .why-demo-b-icon {
    transform: scale(1.07);
    background: linear-gradient(180deg, var(--secondary), var(--primary));
    border-color: rgba(255, 198, 69, 0.38);
    color: #18120a;
    box-shadow: 0 0 0 10px rgba(247, 242, 232, 1), 0 16px 34px rgba(255, 103, 0, 0.22);
}

.why-demo-b-node.is-reached .why-demo-b-icon {
    background: rgba(255, 243, 208, 0.95);
    border-color: rgba(226, 122, 63, 0.22);
    color: var(--primary);
}

.why-demo-b-card-shell {
    display: grid;
    gap: 1rem;
    align-items: stretch;
    width: min(100%, 470px);
    padding: 1rem;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 252, 246, 0.98) 0%, rgba(255, 247, 238, 0.96) 100%);
    border: 1px solid rgba(32, 28, 76, 0.08);
    box-shadow: 0 18px 42px rgba(32, 28, 76, 0.1);
    transform: translate3d(var(--why-card-parallax-x, 0px), var(--why-card-parallax-y, 0px), 0) scale(var(--why-card-scale, 1));
    opacity: var(--why-card-opacity, 0);
    filter: blur(var(--why-card-blur, 0px));
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease, filter 0.45s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    will-change: transform;
}

.why-demo-b-card.is-active .why-demo-b-card-shell {
    border-color: rgba(226, 122, 63, 0.22);
    box-shadow: 0 28px 62px rgba(32, 28, 76, 0.16);
    animation: whyCardPulse 0.6s ease;
}

.why-demo-b-card.is-left .why-demo-b-card-shell {
    grid-column: 1;
    justify-self: end;
}

.why-demo-b-card.is-right .why-demo-b-card-shell {
    grid-column: 3;
    justify-self: start;
}

.why-demo-b-card img {
    order: 2;
    border-radius: 22px;
    min-height: 270px;
    max-height: 340px;
    transform: translateY(var(--why-image-shift, 0px)) scale(var(--why-image-scale, 1.02));
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.why-demo-b-card-copy {
    order: 1;
    display: grid;
    align-content: start;
    gap: 0.75rem;
    padding: 0.2rem 0.4rem 0.45rem;
}

.why-demo-b-card-copy h4 {
    font-size: clamp(1.3rem, 1.9vw, 1.7rem);
    line-height: 1.08;
    color: var(--dark);
}

.why-demo-b-card-copy p {
    color: rgba(32, 28, 76, 0.78);
    line-height: 1.7;
}

.why-demo-b-spacer {
    min-height: 1px;
}

@keyframes whyCardPulse {
    0% {
        transform: scale(0.985);
        box-shadow: 0 10px 22px rgba(32, 28, 76, 0.06);
    }

    55% {
        transform: scale(1.015);
        box-shadow: 0 24px 54px rgba(32, 28, 76, 0.14);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 16px 38px rgba(32, 28, 76, 0.1);
    }
}

.shawa-why-copy.centered .shawa-why-signature {
    margin-top: 1rem;
    color: var(--primary);
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 500;
    letter-spacing: normal;
    text-transform: none;
}

.philosophy-intro {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.4rem;
}

.shawa-philosophy .shawa-section-heading {
    margin-bottom: 0;
}

.shawa-philosophy .shawa-heading-narrow {
    max-width: none;
}

.shawa-philosophy .section-title {
    max-width: none;
    font-size: clamp(2.1rem, 2.9vw, 2.8rem);
    white-space: nowrap;
}

.philosophy-lead {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 0;
    padding-top: 0.2rem;
}

.philosophy-lead-item {
    height: 100%;
    padding: 1.1rem 1.15rem 1.2rem;
    border-top: 1px solid rgba(226, 122, 63, 0.22);
    background: rgba(255, 250, 236, 0.72);
    display: grid;
    gap: 0.9rem;
}

.philosophy-lead-icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(226, 122, 63, 0.1);
    color: var(--primary);
    border: 1px solid rgba(226, 122, 63, 0.18);
}

.philosophy-lead-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.philosophy-lead p {
    margin: 0;
    color: rgba(32, 28, 76, 0.82);
    font-size: 1rem;
    line-height: 1.7;
}

.philosophy-lead .philosophy-lead-item-primary {
    background:
        linear-gradient(180deg, rgba(255, 240, 31, 0.18), rgba(255, 240, 31, 0.04));
}

.philosophy-lead .philosophy-lead-item-primary .philosophy-lead-icon {
    background: rgba(255, 240, 31, 0.24);
    border-color: rgba(226, 122, 63, 0.2);
}

.philosophy-lead .philosophy-lead-primary {
    color: var(--dark);
    font-size: 1.08rem;
    line-height: 1.65;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
}

.philosophy-demo {
    display: grid;
    gap: 1.4rem;
}

.philosophy-demo-heading {
    display: grid;
    gap: 0.45rem;
    max-width: 760px;
}

.philosophy-demo-kicker {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.philosophy-demo-heading h3 {
    color: var(--dark);
    font-size: clamp(1.85rem, 2.7vw, 2.6rem);
    line-height: 1.04;
}

.philosophy-demo-a {
    padding: 2.1rem;
    border-radius: 30px;
    background: rgba(255, 250, 236, 0.86);
    border: 1px solid rgba(226, 122, 63, 0.16);
}

.philosophy-demo-a-tabs {
    display: grid;
    grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
    gap: 1.2rem;
    align-items: start;
}

.philosophy-demo-a-nav {
    display: grid;
    gap: 0.7rem;
    align-content: start;
}

.philosophy-demo-a-tab {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: center;
    text-align: left;
    padding: 1rem 1rem 1rem 1.1rem;
    border-radius: 20px;
    border: 1px solid rgba(226, 122, 63, 0.12);
    background: rgba(255, 255, 255, 0.78);
    color: rgba(32, 28, 76, 0.92);
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.philosophy-demo-a-tab:hover,
.philosophy-demo-a-tab.is-active {
    transform: translateX(6px);
    background: rgba(255, 240, 31, 0.16);
    border-color: rgba(226, 122, 63, 0.22);
    box-shadow: 0 14px 30px rgba(226, 122, 63, 0.12);
}

.philosophy-demo-a-tab-number {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(226, 122, 63, 0.1);
    color: var(--primary);
    font-family: var(--font-primary);
    font-size: 0.92rem;
}

.philosophy-demo-a-panels {
    position: relative;
}

.philosophy-demo-a-panel {
    display: grid;
    grid-template-columns: minmax(240px, 0.52fr) minmax(0, 1fr);
    min-height: 420px;
    overflow: hidden;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(226, 122, 63, 0.12);
    animation: philosophyPanelReveal 0.35s ease;
}

.philosophy-demo-a-panel[hidden] {
    display: none !important;
}

.philosophy-demo-a-panel img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

.philosophy-demo-a-panel-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.7rem 1.55rem;
}

.philosophy-demo-a-badge {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 1rem;
    padding: 0.48rem 0.82rem;
    border-radius: 999px;
    background: rgba(255, 240, 31, 0.22);
    color: var(--dark);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.philosophy-demo-a-panel-copy h4 {
    color: var(--dark);
}

.philosophy-demo-a-panel-copy p {
    color: rgba(32, 28, 76, 0.78);
}

@keyframes philosophyPanelReveal {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.philosophy-item {
    padding: 1.5rem 1.35rem 1.6rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.philosophy-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.16);
}

.philosophy-item h3 {
    font-size: 1.55rem;
    margin: 0.6rem 0 0.7rem;
}

.philosophy-item p {
    color: rgba(255, 255, 255, 0.82);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.founder-profile {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.2rem 1.1rem;
    padding: 1.8rem;
    border-radius: 26px;
    background: linear-gradient(180deg, #fff8f0 0%, #ffffff 100%);
    border: 1px solid rgba(32, 28, 76, 0.08);
    box-shadow: 0 20px 50px rgba(32, 28, 76, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.founder-profile:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 62px rgba(32, 28, 76, 0.14);
}

.founder-avatar {
    grid-row: 1 / span 3;
    width: 72px;
    height: 72px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary), #fff2bf);
    color: var(--dark);
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 0;
    box-shadow: 0 14px 34px rgba(255, 103, 0, 0.2);
    transition: transform 0.35s ease;
}

.founder-profile:hover .founder-avatar {
    transform: scale(1.06) translateY(-2px);
}

.founder-profile h3 {
    font-size: 2rem;
    margin: 0.3rem 0 0.8rem;
}

.founder-role,
.founder-profile h3,
.founder-profile > p:last-child {
    grid-column: 2;
}

.shawa-cta-band {
    padding: 5rem 0;
    background: linear-gradient(180deg, #fff5e3 0%, #f7f2e8 100%);
}

.shawa-cta-gallery-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 3rem;
}

.shawa-cta-copy {
    max-width: 520px;
}

.shawa-cta-copy .section-title {
    margin-top: 0;
}

.shawa-cta-copy .section-copy + .section-copy {
    margin-top: 1rem;
}

.shawa-cta-copy .shawa-hero-actions {
    margin-top: 1.5rem;
}

.shawa-cta-gallery {
    width: min(100%, 540px);
    justify-self: end;
}

.shawa-gallery-marquee {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
    height: 590px;
}

.shawa-gallery-column {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.shawa-gallery-track {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    will-change: transform;
}

.shawa-gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 22px 60px rgba(32, 28, 76, 0.14);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    flex: 0 0 186px;
}

.shawa-gallery-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.shawa-gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 68px rgba(32, 28, 76, 0.18);
}

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

.shawa-gallery-track-up {
    animation: galleryColumnUp 16s linear infinite;
}

.shawa-gallery-track-down {
    transform: translateY(calc(-50% - 0.5rem));
    animation: galleryColumnDown 16s linear infinite;
}

.shawa-gallery-marquee:hover .shawa-gallery-track {
    animation-play-state: paused;
}

.seo-copy-wrap {
    max-width: 860px;
    padding: 0;
}

.seo-copy-grid {
    display: grid;
    gap: 1rem;
    color: rgba(32, 28, 76, 0.82);
    line-height: 1.8;
}

.home-footer {
    padding-top: 70px;
}

.home-footer-content {
    grid-template-columns: minmax(0, 1.6fr) minmax(220px, 0.9fr) minmax(180px, 0.75fr);
    align-items: start;
}

.home-footer-brand {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1.4rem;
    align-items: flex-start;
    text-align: left;
}

.home-footer-brand-mark,
.home-footer-brand-copy {
    min-width: 0;
}

.home-footer-brand .hero-logo {
    margin-bottom: 0;
    text-align: left;
}

.home-footer-brand .hero-logo-img {
    width: 210px;
}

.home-footer-brand-copy {
    display: grid;
    align-content: center;
    gap: 0.65rem;
    padding-top: 0.55rem;
}

.home-footer-brand .footer-tagline {
    margin-bottom: 0;
}

.home-footer-description {
    color: rgba(255, 255, 255, 0.78);
    max-width: 42ch;
}

.home-footer-links {
    list-style: none;
    display: grid;
    gap: 0.7rem;
}

.home-footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.home-footer-links a:hover {
    color: var(--primary);
}

.social-link-static {
    cursor: default;
}

.home-footer .footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1180px) {
    :root {
        --home-navbar-height: 68px;
        --home-navbar-offset: 12px;
    }

    .home-navbar .nav-menu {
        gap: 0.6rem;
    }

    .shawa-hero-grid,
    .shawa-about-layout,
    .about-demo-about4-layout,
    .shawa-cta-gallery-layout,
    .seo-option-b-layout,
    .home-footer-content,
    .concept-card-grid {
        grid-template-columns: 1fr;
    }

    .shawa-about-copy {
        max-width: none;
    }

    .about-demo-about4-center {
        order: -1;
    }

    .shawa-hero-showcase {
        min-height: 520px;
    }

    .shawa-cta-gallery {
        width: 100%;
        max-width: 560px;
        justify-self: stretch;
    }

    .philosophy-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .philosophy-lead,
    .philosophy-demo-a-tabs {
        grid-template-columns: 1fr;
    }

    .shawa-philosophy .section-title {
        max-width: none;
        white-space: normal;
    }

    .philosophy-demo-a-panel {
        grid-template-columns: 1fr;
    }

    .philosophy-demo-a-panel img {
        max-height: 320px;
    }

    .seo-option-b-media {
        max-width: 620px;
    }

    .why-demo-b-card {
        grid-template-columns: minmax(0, 1fr) 84px minmax(0, 1fr);
        gap: 0.9rem;
    }

    .why-stack {
        max-width: 920px;
        padding-bottom: 64px;
    }

    .why-stack-card {
        height: 410px;
    }

    .why-stack-card-text {
        padding: 42px 34px;
    }

    .why-stack-card-text h3 {
        font-size: 2.25rem;
    }

    .why-stack-card-text p {
        font-size: 1rem;
    }

    .why-demo-b {
        height: 330vh;
    }

    .why-demo-b-timeline {
        min-height: 680px;
    }

    .why-demo-b-node {
        width: 84px;
        height: 84px;
    }

    .why-demo-b-node::before {
        width: 58px;
        height: 58px;
    }

    .why-demo-b-icon {
        min-width: 50px;
        height: 50px;
        box-shadow: 0 0 0 8px rgba(247, 242, 232, 1);
    }

    .why-demo-b-icon svg {
        width: 22px;
        height: 22px;
    }

    .why-demo-b-card-shell {
        width: min(100%, 420px);
    }

    .why-demo-b-card img {
        min-height: 240px;
    }
}

@media (max-width: 768px) {
    :root {
        --home-navbar-height: 62px;
        --home-navbar-offset: 10px;
    }

    .home-navbar .nav-container {
        justify-content: space-between;
        padding: 0.45rem 16px;
    }

    .home-navbar .nav-logo {
        position: static;
        left: auto;
        transform: none;
        margin-top: 0;
        order: 2;
    }

    .home-navbar .home-logo-image {
        height: 60px;
    }

    .home-navbar .language-switcher {
        order: 3;
        margin-right: 0;
    }

    .home-navbar .hamburger {
        order: 1;
    }

    .shawa-hero-content {
        width: 100%;
    }

    .shawa-hero-actions {
        flex-wrap: wrap;
    }

    .shawa-hero-showcase {
        min-height: 420px;
        gap: 0.55rem;
        padding: 0.65rem;
    }

    .shawa-hero-showcase-card,
    .shawa-hero-showcase-card.is-active,
    .shawa-hero-showcase-card:hover,
    .shawa-hero-showcase-card:focus-visible {
        flex-grow: 1;
        transform: none;
    }

    .shawa-hero-showcase-label {
        font-size: 1.1rem;
        left: 0.9rem;
        right: 0.9rem;
        bottom: 0.95rem;
    }

    .shawa-cta-band {
        padding: 4.75rem 0;
    }

    .shawa-cta-gallery-layout {
        gap: 2.25rem;
    }

    .shawa-cta-copy {
        max-width: none;
    }

    .shawa-gallery-marquee {
        height: 520px;
        gap: 0.75rem;
    }

    .shawa-hero-title {
        font-size: clamp(2.7rem, 13vw, 4.2rem);
        max-width: 100%;
    }

    .shawa-hero-title::after {
        margin-top: 1rem;
    }

    .shawa-trust-line {
        gap: 0.65rem;
    }

    .shawa-trust-chip {
        padding: 0.58rem 0.85rem;
        font-size: 0.82rem;
    }

    .shawa-section {
        padding: 4.75rem 0;
    }

    .shawa-why-copy.centered {
        padding-bottom: 2.8rem;
    }

    .philosophy-demo-a {
        padding: 1.3rem;
        border-radius: 22px;
    }

    .philosophy-lead-item {
        padding: 1rem 0 0;
        border-top: 1px solid rgba(255, 216, 99, 0.16);
        background: none;
    }

    .philosophy-lead p {
        font-size: 1rem;
    }

    .philosophy-demo-a-tab {
        padding: 0.85rem 0.9rem;
    }

    .philosophy-demo-a-tab-number {
        width: 38px;
        height: 38px;
    }

    .philosophy-demo-a-panel-copy {
        padding: 1.15rem 1rem 1.25rem;
    }

    .why-stack {
        padding: 0 15px 36px;
    }

    .why-stack-card {
        position: sticky;
        top: calc(var(--home-navbar-height) + var(--home-navbar-offset) + 14px);
        height: auto;
        border-radius: 22px;
        margin-bottom: 24px;
    }

    .why-stack-card:nth-child(2),
    .why-stack-card:nth-child(3),
    .why-stack-card:nth-child(4) {
        top: calc(var(--home-navbar-height) + var(--home-navbar-offset) + 14px);
    }

    .why-stack-card-content,
    .why-stack-card:nth-child(even) .why-stack-card-content {
        flex-direction: column;
    }

    .why-stack-card-image,
    .why-stack-card-text {
        width: 100%;
    }

    .why-stack-card-image {
        min-height: 240px;
    }

    .why-stack-card-text {
        padding: 28px 22px;
    }

    .why-stack-card-text h3 {
        font-size: 1.75rem;
    }

    .why-stack-card-text p {
        font-size: 1rem;
        max-width: none;
    }

    .why-demo-b {
        height: auto;
    }

    .why-demo-b-timeline {
        position: relative;
        top: auto;
        height: auto;
        min-height: 0;
        overflow: visible;
        display: grid;
        gap: 2.25rem;
        padding-top: 0.2rem;
        --why-line-start: 22px;
        --why-line-height: calc(100% - 44px);
    }

    .why-demo-b-progress {
        left: 21px;
        transform: none;
    }

    .why-demo-b-card {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        grid-template-columns: 44px minmax(0, 1fr);
        align-items: start;
        gap: 0.85rem;
        transform: none;
    }

    .why-demo-b-node {
        grid-column: 1;
        width: 44px;
        height: 44px;
        align-self: start;
        margin-top: 0.55rem;
    }

    .why-demo-b-node::before {
        width: 44px;
        height: 44px;
        border-width: 1px;
    }

    .why-demo-b-icon {
        min-width: 44px;
        height: 44px;
        box-shadow: none;
    }

    .why-demo-b-icon svg {
        width: 18px;
        height: 18px;
    }

    .why-demo-b-card-shell,
    .why-demo-b-card.is-left .why-demo-b-card-shell,
    .why-demo-b-card.is-right .why-demo-b-card-shell {
        grid-column: 2;
        justify-self: stretch;
        width: 100%;
        padding: 0.75rem;
        border-radius: 24px;
        transform: none;
    }

    .why-demo-b-spacer {
        display: none;
    }

    .why-demo-b-card img {
        min-height: 220px;
    }

    .shawa-about-image {
        height: 400px;
    }

    .shawa-about-note {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        max-width: none;
    }

    .about-demo {
        border-radius: 24px;
    }

    .about-demo-about4 {
        padding: 1.5rem;
    }

    .about-demo-about4-badge {
        width: min(100%, 280px);
    }

    .about-scroll-stage {
        position: static;
        padding: 0;
    }

    .about-scroll-triggers {
        display: none;
    }

    .about-demo-about4-copy {
        min-height: 0;
    }

    .about-detail-item {
        padding-top: 0;
    }

    .about-detail-item h3 {
        font-size: clamp(1.65rem, 8vw, 2.1rem);
    }

    .about-demo-point-list .about-chip-button {
        transform: none;
        opacity: 1;
    }

    .about-demo-point-list .about-chip-button.is-active {
        transform: none;
    }

    .shawa-about-points {
        grid-template-columns: 1fr;
    }

    .shawa-seo-compare {
        padding-bottom: 4.75rem;
    }

    .seo-option-b {
        padding: 1.5rem;
        border-radius: 24px;
    }

    .seo-option-head h3,
    .seo-option-b-copy h3 {
        font-size: clamp(1.75rem, 9vw, 2.5rem);
    }

    .seo-option-b-tags span {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .seo-option-b-media img {
        min-height: 340px;
    }

    .seo-option-b-panel {
        left: 0.85rem;
        right: 0.85rem;
        bottom: 0.85rem;
    }

    .concept-card {
        grid-template-rows: 240px 1fr;
    }

    .concept-card-body {
        margin: -2.5rem 0.75rem 0;
    }

    .founder-profile {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .founder-avatar,
    .founder-role,
    .founder-profile h3,
    .founder-profile > p:last-child {
        grid-column: auto;
        grid-row: auto;
    }

    .philosophy-grid,
    .founders-grid {
        grid-template-columns: 1fr;
    }

    .home-footer-content {
        grid-template-columns: 1fr;
    }

    .home-footer-brand {
        grid-template-columns: 1fr;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }

    .home-footer-brand .hero-logo {
        text-align: center;
    }

    .home-footer-brand-copy {
        padding-top: 0;
    }

    .home-footer-description {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .section-label,
    .shawa-eyebrow {
        font-size: 0.72rem;
    }

    .founder-profile,
    .philosophy-item {
        padding: 1.35rem;
    }

    .shawa-hero-actions .cta-button {
        width: 100%;
        justify-content: center;
    }

    .shawa-gallery-marquee {
        height: 420px;
        gap: 0.6rem;
    }

    .shawa-gallery-track {
        gap: 0.6rem;
    }

    .shawa-gallery-card {
        flex-basis: 132px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .shawa-hero-image,
    .shawa-about-note,
    .shawa-hero-title::after {
        animation: none;
    }

    .concept-card,
    .concept-card-body,
    .philosophy-item,
    .founder-profile,
    .founder-avatar,
    .shawa-gallery-card {
        transition: none;
    }

    .shawa-gallery-track {
        animation: none;
        transform: none;
    }
}

@keyframes heroFloat {
    0% {
        transform: scale(1.04) translate3d(0, 0, 0);
    }

    100% {
        transform: scale(1.08) translate3d(-10px, -14px, 0);
    }
}

@keyframes titleLineIn {
    0% {
        opacity: 0;
        transform: scaleX(0.2);
    }

    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}

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

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

@keyframes galleryColumnUp {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(calc(-50% - 0.5rem));
    }
}

@keyframes galleryColumnDown {
    from {
        transform: translateY(calc(-50% - 0.5rem));
    }

    to {
        transform: translateY(0);
    }
}

/* Multi-page Shells */
.home-landing,
.placeholder-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

.home-landing,
.placeholder-hero {
    background: none;
}

body.placeholder-page {
    position: relative;
    min-height: 100vh;
    background: #130f2d;
}

body.placeholder-page::before,
body.placeholder-page::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
}

body.placeholder-page::before {
    z-index: -2;
    background-image: var(--page-hero-image);
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
}

body.placeholder-page::after {
    content: none;
}

body.mart-placeholder-page {
    --page-hero-image: image-set(
        url('../assets/heroimages/ch01mart-hero.avif') type('image/avif'),
        url('../assets/heroimages/ch01mart-hero.webp') type('image/webp')
    );
}

body.catering-placeholder-page {
    --page-hero-image: image-set(
        url('../assets/heroimages/ch01catering-hero.avif') type('image/avif'),
        url('../assets/heroimages/ch01catering-hero.webp') type('image/webp')
    );
}

body.placeholder-page .placeholder-hero,
body.placeholder-page .placeholder-section {
    background: transparent;
}

.home-landing::before,
.placeholder-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
}

.home-landing-content,
.placeholder-hero-content {
    position: relative;
    z-index: 1;
    width: min(var(--site-max-width), calc(100% - 40px));
    margin: 0 auto;
    padding-top: 7rem;
    padding-bottom: 4rem;
}

.home-landing-content,
.placeholder-hero-content,
.placeholder-hero-content > * {
    position: relative;
}

.placeholder-hero-content > * {
    z-index: 1;
}

body.placeholder-page .placeholder-hero::before {
    background: none;
}

body.placeholder-page .placeholder-hero-content,
body.placeholder-page .placeholder-section .container,
body.placeholder-page .footer {
    position: relative;
    z-index: 1;
}

.home-kicker,
.placeholder-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.home-title-display,
.placeholder-title {
    max-width: 12ch;
    font-size: clamp(3.4rem, 7vw, 6.5rem);
    line-height: 0.95;
    margin-bottom: 1.25rem;
    color: white;
    text-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.home-lead,
.placeholder-text {
    max-width: 720px;
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.94);
}

.home-cta-group,
.placeholder-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.home-pages {
    padding: 6rem 0;
    background:
        linear-gradient(180deg, rgba(255, 240, 31, 0.18), rgba(245, 244, 255, 0.98));
}

.home-pages-header {
    max-width: 720px;
    margin-bottom: 2.5rem;
}

.home-pages-header .section-title {
    text-align: left;
}

.home-pages-copy {
    color: rgba(32, 28, 76, 0.78);
    font-size: 1.05rem;
}

.home-pages-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.home-page-card {
    position: relative;
    min-height: 420px;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 1.75rem;
    text-decoration: none;
    color: white;
    isolation: isolate;
    box-shadow: 0 26px 70px rgba(32, 28, 76, 0.16);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-page-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(32, 28, 76, 0.08), rgba(32, 28, 76, 0.88));
    z-index: -1;
}

.home-page-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 0.45s ease;
    z-index: -2;
}

.home-page-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(32, 28, 76, 0.24);
}

.home-page-card:hover::after {
    transform: scale(1.06);
}

.home-page-card.bistro-card::after {
    background-image: url('../assets/images/fresh.webp');
}

.home-page-card.mart-card::after {
    background-image: url('../assets/images/chutneys.webp');
}

.home-page-card.catering-card::after {
    background-image: url('../assets/images/story_feast.webp');
}

.home-page-card-content {
    position: relative;
    z-index: 1;
}

.home-page-card-label {
    display: inline-block;
    margin-bottom: 0.9rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 240, 31, 0.15);
    border: 1px solid rgba(255, 240, 31, 0.22);
    color: var(--secondary);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-page-card h3 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: white;
}

.home-page-card p {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.25rem;
}

.home-page-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: 0.03em;
}

.home-page-card-link::after {
    content: '->';
}

.home-note-section {
    padding: 0 0 6rem;
    background: linear-gradient(180deg, rgba(245, 244, 255, 0.98), white);
}

.home-note-panel,
.placeholder-panel {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
    padding: 2.2rem;
    border-radius: 28px;
    background: white;
    box-shadow: 0 22px 60px rgba(32, 28, 76, 0.1);
}

body.placeholder-page .placeholder-panel {
    background: rgba(255, 252, 246, 0.86);
    backdrop-filter: blur(14px);
}

.home-note-panel h3,
.placeholder-panel h2 {
    font-size: clamp(2rem, 3.2vw, 3rem);
    margin-bottom: 0.85rem;
    color: var(--dark);
}

.home-note-panel p,
.placeholder-panel p {
    color: rgba(32, 28, 76, 0.78);
}

.home-note-accent,
.placeholder-panel-accent {
    min-height: 250px;
    border-radius: 22px;
    background:
        radial-gradient(circle at top, rgba(255, 240, 31, 0.85), rgba(255, 103, 0, 0.15) 45%, transparent 55%),
        linear-gradient(135deg, rgba(32, 28, 76, 0.96), rgba(255, 103, 0, 0.86));
    position: relative;
    overflow: hidden;
}

.home-note-accent::before,
.placeholder-panel-accent::before {
    content: 'CH01';
    position: absolute;
    right: 1.5rem;
    bottom: 1rem;
    font-family: var(--font-primary);
    font-size: clamp(3rem, 8vw, 5rem);
    color: rgba(255, 255, 255, 0.12);
}

.placeholder-section {
    padding: 5rem 0 6rem;
    background: linear-gradient(180deg, rgba(245, 244, 255, 0.98), white);
}

body.placeholder-page .placeholder-section {
    padding: 3.5rem 0 6rem;
}

.mart-categories-section {
    padding: 1.5rem 0 3rem;
    background:
        radial-gradient(circle at top left, rgba(255, 240, 31, 0.16), transparent 24%),
        linear-gradient(180deg, rgba(255, 248, 236, 0.96) 0%, rgba(255, 253, 247, 0.94) 100%);
}

.mart-section-heading {
    margin-bottom: 2rem;
}

.mart-section-heading .section-title {
    margin-bottom: 0.7rem;
}

.mart-section-heading .section-copy {
    max-width: 64ch;
    color: rgba(32, 28, 76, 0.76);
}

.mart-category-board {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 252, 246, 0.94);
    box-shadow: 0 22px 60px rgba(8, 8, 24, 0.14);
    backdrop-filter: blur(8px);
}

.mart-category-card {
    min-height: 235px;
    padding: 2rem 1.1rem 1.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.66);
    border-right: 1px solid rgba(32, 28, 76, 0.1);
    border-bottom: 1px solid rgba(32, 28, 76, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.mart-category-card:nth-child(7n) {
    border-right: 0;
}

.mart-category-card:nth-last-child(-n + 7) {
    border-bottom: 0;
}

.mart-category-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.9);
}

.mart-category-card h3 {
    margin: 0;
    color: var(--dark);
    font-size: 1rem;
    line-height: 1.25;
    font-family: var(--font-secondary);
    font-weight: 600;
}

.mart-category-icon {
    width: 120px;
    height: 120px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.mart-category-icon svg {
    width: 66px;
    height: 66px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mart-category-icon.rice,
.mart-category-icon.other-rice {
    background: #d77b5b;
}

.mart-category-icon.flour {
    background: #80b38d;
}

.mart-category-icon.vegetables {
    background: #82aa35;
}

.mart-category-icon.snacks {
    background: #e4b26f;
}

.mart-category-icon.lentils {
    background: #9cbc89;
}

.mart-category-icon.spices {
    background: #ef9559;
}

.mart-category-icon.noodles {
    background: #3d819d;
}

.mart-category-icon.namkeen {
    background: #edae57;
}

.mart-category-icon.ghee {
    background: #5aa0a2;
}

.mart-category-icon.pickles {
    background: #f5b080;
}

.mart-category-icon.tea {
    background: #d55b61;
}

.mart-category-icon.paneer {
    background: #9bcdb3;
}

.mart-category-icon.sweets {
    background: #faa240;
}

.mart-coming-banner {
    min-height: 320px;
    padding: 2.4rem 2.5rem;
    border-radius: 28px;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 240, 31, 0.08), transparent 28%),
        linear-gradient(135deg, rgba(18, 15, 23, 0.96), rgba(32, 28, 76, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 65px rgba(8, 8, 24, 0.28);
    backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.mart-coming-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
        radial-gradient(circle at 80% 70%, rgba(255, 103, 0, 0.12), transparent 24%);
    pointer-events: none;
}

.mart-coming-glitch {
    --after-duration: 3s;
    --before-duration: 2s;
    --after-shadow: -5px 0 rgba(255, 103, 0, 0.92);
    --before-shadow: 5px 0 rgba(255, 240, 31, 0.92);
    position: relative;
    z-index: 1;
    margin: 0 auto;
    color: #fff8ea;
    font-family: var(--font-primary);
    font-size: clamp(3rem, 9vw, 7.5rem);
    line-height: 0.9;
    letter-spacing: 0.03em;
    text-align: center;
    white-space: nowrap;
    user-select: none;
    text-transform: uppercase;
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.mart-coming-glitch::before,
.mart-coming-glitch::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    color: #fff8ea;
    background: transparent;
    overflow: hidden;
    clip-path: inset(0 0 0 0);
    pointer-events: none;
}

.mart-coming-glitch::after {
    left: 8px;
    text-shadow: var(--after-shadow);
    animation: martGlitchSlices var(--after-duration) infinite linear alternate-reverse;
}

.mart-coming-glitch::before {
    left: -8px;
    text-shadow: var(--before-shadow);
    animation: martGlitchSlices var(--before-duration) infinite linear alternate-reverse;
}

@keyframes martGlitchSlices {
    0% {
        clip-path: inset(18% 0 52% 0);
    }

    10% {
        clip-path: inset(8% 0 62% 0);
    }

    20% {
        clip-path: inset(26% 0 34% 0);
    }

    30% {
        clip-path: inset(12% 0 58% 0);
    }

    40% {
        clip-path: inset(34% 0 22% 0);
    }

    50% {
        clip-path: inset(22% 0 48% 0);
    }

    60% {
        clip-path: inset(10% 0 60% 0);
    }

    70% {
        clip-path: inset(28% 0 28% 0);
    }

    80% {
        clip-path: inset(16% 0 52% 0);
    }

    90% {
        clip-path: inset(32% 0 24% 0);
    }

    100% {
        clip-path: inset(20% 0 44% 0);
    }
}

body.mart-placeholder-page .placeholder-section {
    background:
        radial-gradient(circle at top right, rgba(226, 122, 63, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 245, 227, 0.96) 0%, rgba(247, 242, 232, 0.98) 100%);
}

body.catering-placeholder-page .placeholder-section {
    background:
        radial-gradient(circle at top right, rgba(226, 122, 63, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 245, 227, 0.96) 0%, rgba(247, 242, 232, 0.98) 100%);
}

@media (max-width: 1024px) {
    .mart-category-board {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .mart-category-card:nth-child(7n) {
        border-right: 1px solid rgba(32, 28, 76, 0.1);
    }

    .mart-category-card:nth-last-child(-n + 7) {
        border-bottom: 1px solid rgba(32, 28, 76, 0.1);
    }

    .mart-category-card:nth-child(4n) {
        border-right: 0;
    }

    .mart-category-card:nth-last-child(-n + 4) {
        border-bottom: 0;
    }

    .home-pages-grid,
    .home-note-panel,
    .placeholder-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .home-landing-content,
    .placeholder-hero-content {
        width: min(100%, calc(100% - 30px));
        padding-top: 8rem;
    }

    .home-title-display,
    .placeholder-title {
        max-width: 100%;
        font-size: clamp(2.8rem, 14vw, 4.4rem);
    }

    .home-page-card {
        min-height: 360px;
    }

    .home-note-panel,
    .placeholder-panel {
        padding: 1.5rem;
    }

    .mart-categories-section {
        padding-top: 0.5rem;
    }

    .mart-category-board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-radius: 20px;
    }

    .mart-category-card {
        min-height: 190px;
        padding: 1.5rem 0.9rem 1.3rem;
    }

    .mart-category-card:nth-child(4n) {
        border-right: 1px solid rgba(32, 28, 76, 0.1);
    }

    .mart-category-card:nth-last-child(-n + 4) {
        border-bottom: 1px solid rgba(32, 28, 76, 0.1);
    }

    .mart-category-card:nth-child(2n) {
        border-right: 0;
    }

    .mart-category-card:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .mart-category-icon {
        width: 98px;
        height: 98px;
    }

    .mart-category-icon svg {
        width: 54px;
        height: 54px;
    }

    .mart-coming-banner {
        padding: 1.7rem 1.4rem;
    }

    body.placeholder-page .placeholder-hero::before {
        background: none;
    }
}
