/* =============================================
   ROLLI – Partykäse Landing Page
   Angular / Trapez / Asymmetric Design
   ============================================= */

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

:root {
    --gold: #F5A623;
    --gold-deep: #D4891A;
    --amber: #E8A317;
    --cheese: #FBBF24;
    --cream: #FFF8E7;
    --dark: #111111;
    --darker: #0A0A0A;
    --carbon: #1A1A1A;
    --white: #FAFAFA;
    --gray: #888888;
    --gray-light: #CCCCCC;
    --accent: #FF5722;
    --skew: -3deg;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--darker);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* ---------- TYPOGRAPHY ---------- */

.label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 3rem;
}

.label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 2px;
    background: var(--gold);
}

.label--light { color: var(--cream); }
.label--light::before { background: var(--cream); }
.label--dark { color: var(--dark); }
.label--dark::before { background: var(--dark); }

.heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
}

.heading--xl {
    font-size: clamp(2rem, 5vw, 3.8rem);
    letter-spacing: -1px;
}

.heading--xxl {
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: -2px;
}

.heading--light { color: var(--cream); }
.heading--dark { color: var(--dark); }

.heading em {
    font-style: normal;
    color: var(--gold);
}

.heading--dark em {
    color: var(--white);
}

/* ---------- NAV ---------- */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s;
    background: transparent;
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    padding: 0.8rem 3rem;
}

.nav-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 6px;
    color: var(--white);
    text-transform: uppercase;
    position: relative;
}

.logo-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--gold);
    margin-left: 2px;
    vertical-align: super;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--gold); }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

/* ---------- HERO ---------- */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 3rem 4rem;
    background:
        linear-gradient(135deg, rgba(245,166,35,0.08) 0%, transparent 50%),
        linear-gradient(240deg, rgba(255,87,34,0.06) 0%, transparent 40%);
}

/* Floating angular shapes */
.hero-float {
    position: absolute;
    opacity: 0.07;
    z-index: 0;
}

.hero-float--1 {
    width: 400px;
    height: 400px;
    top: -5%;
    right: -5%;
    background: var(--gold);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    animation: drift1 18s ease-in-out infinite;
}

.hero-float--2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: 5%;
    background: var(--accent);
    clip-path: polygon(0% 0%, 100% 20%, 80% 100%, 10% 80%);
    animation: drift2 14s ease-in-out infinite;
}

.hero-float--3 {
    width: 150px;
    height: 150px;
    top: 30%;
    left: 15%;
    background: var(--cheese);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: drift3 20s ease-in-out infinite;
}

.hero-float--4 {
    width: 300px;
    height: 300px;
    bottom: -8%;
    right: 20%;
    background: var(--gold-deep);
    clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 80%);
    animation: drift1 22s ease-in-out infinite reverse;
}

.hero-float--5 {
    width: 100px;
    height: 100px;
    top: 15%;
    right: 30%;
    background: var(--cream);
    clip-path: polygon(0 0, 100% 0, 70% 100%, 30% 100%);
    animation: drift2 16s ease-in-out infinite reverse;
}

@keyframes drift1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, 15px) rotate(5deg); }
}

@keyframes drift2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(15px, -20px) rotate(-4deg); }
}

@keyframes drift3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-10px, -25px) rotate(8deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    animation: fadeSlideUp 0.8s ease-out;
}

.hero-tag__line {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.hero-title {
    margin-bottom: 2.5rem;
}

.hero-title__line {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
}

.hero-title__line--1 {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    color: var(--white);
    letter-spacing: -2px;
    animation: fadeSlideUp 0.8s ease-out 0.1s backwards;
}

.hero-title__line--2 {
    font-size: clamp(2rem, 5.5vw, 4.2rem);
    color: var(--gray);
    letter-spacing: 2px;
    margin: 0.3rem 0;
    animation: fadeSlideUp 0.8s ease-out 0.2s backwards;
}

.hero-title__line--3 {
    font-size: clamp(3rem, 9vw, 7rem);
    letter-spacing: -3px;
    background: linear-gradient(135deg, var(--gold), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeSlideUp 0.8s ease-out 0.3s backwards;
}

.hero-title__line--3 em {
    font-style: normal;
}

.hero-bottom {
    animation: fadeSlideUp 0.8s ease-out 0.5s backwards;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 420px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Rolli cheese image – hero right side */
.hero-cheese--mobile {
    display: none;
}

.hero-cheese {
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    animation: fadeSlideUp 0.8s ease-out 0.3s backwards;
}

.hero-cheese__img {
    width: clamp(480px, 60vw, 900px);
    height: auto;
    display: block;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
    animation: cheeseFloat 6s ease-in-out infinite;
    transition: transform 0.5s;
}

.hero-cheese__img:hover {
    transform: scale(1.05) rotate(-3deg);
}

@keyframes cheeseFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    z-index: 2;
}

.hero-scroll span {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    writing-mode: vertical-lr;
}

.hero-scroll__line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ---------- BUTTONS ---------- */

.btn {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2.4rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    position: relative;
}

.btn--angled {
    background: var(--gold);
    color: var(--dark);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    padding: 1rem 3rem;
}

.btn--angled:hover {
    background: var(--accent);
    color: var(--white);
    clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.25);
    clip-path: none;
}

.btn--ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn--large {
    font-size: 0.95rem;
    padding: 1.3rem 3.5rem;
}

/* ---------- MARQUEE ---------- */

.marquee {
    padding: 1.2rem 0;
    background: var(--gold);
    overflow: hidden;
    transform: rotate(-1deg) scale(1.02);
    margin: -1rem 0;
    position: relative;
    z-index: 5;
}

.marquee__track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}

.marquee__item {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--dark);
    white-space: nowrap;
    padding: 0 1rem;
}

.marquee__sep {
    color: rgba(0,0,0,0.25);
    font-size: 1rem;
    padding: 0 1rem;
    font-weight: 300;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- ORIGIN ---------- */

.origin {
    padding: 8rem 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.origin__shape {
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 120px;
    background: var(--darker);
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
}

.origin__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.origin__media {
    position: relative;
}

.origin__img {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.origin__img--main {
    width: 100%;
    aspect-ratio: 3/4;
    clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
    position: relative;
}

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

.origin__img--main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.25) 0%, transparent 50%);
}

.origin__img--accent {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 180px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    clip-path: polygon(0 10%, 100% 0%, 90% 100%, 10% 90%);
    font-size: 3.5rem;
    box-shadow: -10px 10px 40px rgba(0,0,0,0.4);
    z-index: 2;
}

.origin__tag {
    position: absolute;
    top: 2rem;
    left: -1rem;
    background: var(--dark);
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 4px;
    padding: 0.8rem 1.5rem;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
    z-index: 3;
}

.origin__text { position: relative; }

.origin__body {
    margin-top: 2rem;
}

.origin__body p {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.origin__body blockquote {
    border-left: 3px solid var(--gold);
    padding: 1.2rem 0 1.2rem 1.5rem;
    margin: 2rem 0;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--cream);
    line-height: 1.7;
}

.origin__body blockquote cite {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    font-style: normal;
    color: var(--gold);
    letter-spacing: 1px;
}

.origin__highlight {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem !important;
    font-weight: 700;
    color: var(--white) !important;
}

/* ---------- STATS ---------- */

.stats {
    padding: 4rem 0;
    background: var(--carbon);
    position: relative;
    clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
    margin: -2rem 0;
    z-index: 3;
}

.stats__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stats__item {
    text-align: center;
    flex: 1;
    min-width: 140px;
}

.stats__num {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.stats__label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    line-height: 1.5;
}

.stats__divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.08);
}

/* ---------- JOURNEY / TIMELINE ---------- */

.journey {
    padding: 8rem 0;
    background: var(--darker);
    position: relative;
    overflow: hidden;
}

.journey__bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Outfit', sans-serif;
    font-size: clamp(10rem, 25vw, 20rem);
    font-weight: 900;
    color: rgba(255,255,255,0.015);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 20px;
}

.journey__header {
    text-align: center;
    margin-bottom: 5rem;
}

.journey__steps {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.journey__steps::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(245,166,35,0.3), transparent);
    transform: translateX(-50%);
}

.journey__step {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
}

.journey__step--left {
    justify-content: flex-start;
    padding-right: 55%;
}

.journey__step--right {
    justify-content: flex-end;
    padding-left: 55%;
    flex-direction: row-reverse;
}

.journey__step-num {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(245,166,35,0.1);
    line-height: 1;
    flex-shrink: 0;
}

.journey__step-card {
    background: var(--carbon);
    padding: 2rem;
    border-left: 3px solid var(--gold);
    position: relative;
    clip-path: polygon(0 0, 100% 0, 97% 100%, 0 100%);
}

.journey__step--right .journey__step-card {
    border-left: none;
    border-right: 3px solid var(--gold);
    clip-path: polygon(3% 0, 100% 0, 100% 100%, 0 100%);
}

.journey__step-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.journey__step-card p {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.75;
}

.journey__step-card--highlight {
    background: linear-gradient(135deg, rgba(245,166,35,0.15), rgba(255,87,34,0.08));
    border-color: var(--accent);
}

.journey__step-card--highlight h3 {
    color: var(--gold);
}

/* ---------- CULT ---------- */

.cult {
    padding: 8rem 0 10rem;
    background: var(--gold);
    position: relative;
    overflow: hidden;
    color: var(--dark);
}

.cult__diagonal {
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    height: 160px;
    background: var(--darker);
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
}

.cult__header {
    text-align: center;
    margin-bottom: 4rem;
}

.cult__intro {
    font-size: 1.1rem;
    color: rgba(0,0,0,0.5);
    margin-top: 1rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

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

.cult__card {
    background: rgba(0,0,0,0.08);
    padding: 0;
    position: relative;
    transition: transform 0.4s, background 0.4s;
}

.cult__card--trapez-left {
    clip-path: polygon(0 0, 100% 5%, 95% 100%, 5% 95%);
}

.cult__card--trapez-center {
    clip-path: polygon(5% 3%, 95% 0%, 100% 97%, 0% 100%);
}

.cult__card--trapez-right {
    clip-path: polygon(0% 5%, 100% 0%, 95% 95%, 5% 100%);
}

.cult__card:hover {
    background: rgba(0,0,0,0.15);
    transform: translateY(-6px);
}

.cult__card-inner {
    padding: 3rem 2rem;
}

.cult__num {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(0,0,0,0.12);
    display: block;
    margin-bottom: 1rem;
}

.cult__card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--dark);
}

.cult__card p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: rgba(0,0,0,0.6);
}

/* ---------- GALLERY ---------- */

.gallery {
    padding: 8rem 0;
    background: var(--dark);
    position: relative;
}

.gallery__header {
    margin-bottom: 3rem;
}

.gallery__mosaic {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 0.8rem;
}

.gallery__tile {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery__tile-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.gallery__tile:hover .gallery__tile-img {
    transform: scale(1.08);
}

.gallery__tile-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(transparent 0%, rgba(0,0,0,0.6) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1rem 1.2rem;
    justify-content: flex-end;
}

.gallery__tile-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.gallery__tile:hover .gallery__tile-label {
    opacity: 1;
    transform: translateY(0);
}

.gallery__tile--hero {
    grid-row: span 2;
    clip-path: polygon(0 0, 95% 0, 100% 100%, 0% 100%);
}

.gallery__tile--tall {
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 95%);
}

.gallery__tile--skew {
    clip-path: polygon(0 0, 100% 8%, 95% 100%, 5% 92%);
}

.gallery__tile--wide {
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 5% 100%);
}

.gallery__tile--angular {
    clip-path: polygon(5% 0, 100% 5%, 95% 100%, 0 90%);
}

/* ---------- VOICES / TESTIMONIALS ---------- */

.voices {
    padding: 8rem 0;
    background: var(--darker);
    position: relative;
    overflow: hidden;
}

.voices__angle {
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 120px;
    background: var(--dark);
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.voices__header {
    margin-bottom: 4rem;
}

.voices__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.voices__card {
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s;
}

.voices__card:hover {
    transform: translateY(-4px);
}

.voices__card--1 {
    background: var(--carbon);
    clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 96%);
}

.voices__card--2 {
    background: var(--gold);
    color: var(--dark);
    clip-path: polygon(4% 0, 96% 4%, 100% 100%, 0 100%);
}

.voices__card--3 {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 4% 100%);
}

.voices__card--4 {
    background: var(--carbon);
    clip-path: polygon(4% 0, 100% 4%, 96% 100%, 0 96%);
}

.voices__card--5 {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    clip-path: polygon(0 0, 96% 4%, 100% 100%, 4% 96%);
}

.voices__card--6 {
    background: var(--gold);
    color: var(--dark);
    clip-path: polygon(4% 0, 100% 0, 96% 96%, 0 100%);
}

.voices__card--7 {
    background: var(--carbon);
    clip-path: polygon(0 4%, 96% 0, 100% 100%, 4% 96%);
}

.voices__card--8 {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    clip-path: polygon(4% 0, 100% 4%, 96% 100%, 0 100%);
}

.voices__card--9 {
    background: var(--carbon);
    clip-path: polygon(0 0, 100% 0, 96% 96%, 4% 100%);
}

.voices__quote {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 0.8;
    color: var(--gold);
    opacity: 0.25;
    margin-bottom: 0.5rem;
}

.voices__card--2 .voices__quote {
    color: var(--dark);
    opacity: 0.15;
}

.voices__card p {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.voices__card--1 p,
.voices__card--3 p,
.voices__card--4 p,
.voices__card--5 p,
.voices__card--7 p,
.voices__card--8 p,
.voices__card--9 p {
    color: var(--gray-light);
}

.voices__card--2 p,
.voices__card--6 p {
    color: rgba(0,0,0,0.7);
}

.voices__card--6 .voices__quote {
    color: var(--dark);
    opacity: 0.15;
}

.voices__author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.voices__author strong {
    font-size: 0.9rem;
    font-weight: 700;
}

.voices__author span {
    font-size: 0.75rem;
    opacity: 0.5;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ---------- VOD ---------- */

.vod {
    padding: 8rem 0;
}

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

.vod__player {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    clip-path: polygon(2% 0, 100% 0, 98% 100%, 0 100%);
    overflow: hidden;
}

.vod__player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ---------- CTA ---------- */

.cta {
    padding: 10rem 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--carbon) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta__slice {
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    height: 160px;
    background: var(--darker);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 40%);
}

.cta__inner {
    position: relative;
    z-index: 1;
}

.cta__inner::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(245,166,35,0.1), transparent 70%);
    pointer-events: none;
}

.cta__inner h2 {
    position: relative;
    z-index: 1;
}

.cta__inner p {
    color: var(--gray);
    font-size: 1.15rem;
    margin: 1.5rem 0 2.5rem;
    position: relative;
    z-index: 1;
}

/* ---------- FOOTER ---------- */

.footer {
    background: var(--darker);
    padding: 5rem 0 2rem;
    position: relative;
}

.footer__top-cut {
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--carbon);
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer__brand p {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer h4 {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer ul a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s;
}

.footer ul a:hover { color: var(--gold); }

.footer__bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__bottom p {
    color: var(--gray);
    font-size: 0.75rem;
    text-align: center;
}

.footer__disclaimer {
    margin-top: 0.5rem;
    font-size: 0.65rem !important;
    opacity: 0.5;
}

/* ---------- SCROLL ANIMATIONS ---------- */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1100px) {
    .hero-cheese__img { width: clamp(380px, 50vw, 650px); }
}

@media (max-width: 1024px) {
    .origin__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .origin__media { max-width: 400px; }

    .journey__steps::before { left: 2rem; }

    .journey__step--left,
    .journey__step--right {
        padding-left: 5rem;
        padding-right: 0;
        justify-content: flex-start;
        flex-direction: row;
    }

    .journey__step--right .journey__step-card {
        border-right: none;
        border-left: 3px solid var(--gold);
        clip-path: polygon(0 0, 100% 0, 97% 100%, 0 100%);
    }

    .cult__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .gallery__mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 250px 250px 250px;
    }

    .gallery__tile--hero { grid-row: span 1; }
}

@media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }

    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        z-index: 999;
    }

    .nav-links.open { display: flex; }
    .nav-links a { font-size: 1.2rem; }
    .menu-toggle { display: flex; }

    .hero {
        padding: 7rem 1.5rem 4rem;
        min-height: auto;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .hero-content {
        position: relative;
        max-width: 100%;
    }

    .hero-cheese:not(.hero-cheese--mobile) {
        display: none;
    }
    .hero-cheese--mobile {
        display: flex !important;
        position: relative !important;
        justify-content: center;
        margin: 2rem auto;
        z-index: 1;
        transform: none !important;
        top: auto !important;
        right: auto !important;
    }
    .hero-cheese--mobile .hero-cheese__img {
        width: 80vw;
        max-width: 500px;
        animation: none;
        transform: none !important;
        filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
    }
    .hero-scroll { display: none; }

    .hero-float--1 { width: 200px; height: 200px; }
    .hero-float--3,
    .hero-float--4,
    .hero-float--5 { display: none; }

    .origin { padding: 5rem 0; }
    .journey { padding: 5rem 0; }

    .journey__step-num { font-size: 2.5rem; }

    .gallery__mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }

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

    .stats__inner { gap: 1.5rem; }
    .stats__divider { display: none; }

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

    .cult { padding: 6rem 0 8rem; }
    .cta { padding: 6rem 0; }
}

@media (max-width: 480px) {
    .hero-title__line--1 { font-size: 2.2rem; }
    .hero-title__line--2 { font-size: 1.6rem; }
    .hero-title__line--3 { font-size: 2.8rem; }

    .stats__inner {
        flex-direction: column;
        gap: 2rem;
    }

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

    .journey__step--left,
    .journey__step--right {
        padding-left: 0;
        flex-direction: column;
    }

    .journey__steps::before { display: none; }
}
