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

:root {
    /* --bg: #0C0C0C; */
    --bg: #000000;
    --bg-warm: #0D0B09;

    /* --text-primary: #FFFFFF; */
    --text-primary: #b8b4b4;
    --text-secondary: #E8E6E1;
    --text-muted: #9a9690;
    --text-dim: #5a5854;
    --text-ghost: #3a3830;
    --text-shadow: #2a2825;

    --border: rgba(255, 255, 255, 0.06);
    --border-light: rgba(232, 230, 225, 0.15);
    --border-hover: rgba(232, 230, 225, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* NAVBAR */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 36px 60px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    transition: padding 0.5s ease, background 0.5s ease;
}

nav.scrolled {
    padding: 22px 60px;
    background: var(--bg);
    border-bottom: 0.5px solid var(--border);
}

.nav-logo {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.4em;
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 44px;
    list-style: none;
}

.nav-links a {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

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

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 200vh;
    overflow: hidden;
}

.hero-screen-1 {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 60px;
    z-index: 2;
}

.hero-screen-2 {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}

.hero-second {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 3.4s cubic-bezier(0.16, 1, 0.3, 1),
        transform 3.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-second.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.4) contrast(1.1);
    animation: heroFog 20s ease-in-out infinite alternate;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.1) 40%,
            rgba(0, 0, 0, 0.8) 80%,
            rgba(0, 0, 0, 1) 100%,
        )
}

@keyframes heroFog {
    0% {
        transform: scale(1) translate(0, 0);
    }

    33% {
        transform: scale(1.03) translate(0.8%, -0.8%);
    }

    66% {
        transform: scale(1.05) translate(-0.5%, 0.5%);
    }

    100% {
        transform: scale(1.02) translate(0.3%, 0.3%);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(53px, 9vw, 100px);
    font-weight: 300;
    letter-spacing: 0.28em;
    line-height: 1;
    color: var(--text-primary);
    text-transform: uppercase;
    animation: fadeUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-sub {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.8em;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-top: 16px;
    animation: fadeUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.hero-divider {
    width: 1px;
    height: 48px;
    margin: 48px auto;
    animation: fadeUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

.hero-desc {
    font-size: clamp(13px, 1.4vw, 15px);
    font-weight: 300;
    line-height: 2;
    color: var(--text-primary);
    text-transform: uppercase;
    max-width: 400px;
    margin: 0 auto;
    animation: fadeUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
}

.hero-philosophy,
.hero-manifesto {
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    text-transform: uppercase;
    line-height: 1.2;
}

.hero-spacer {
    height: 44px;
}

.scroll-hint-wrapper {
    position: absolute;
    bottom: 44px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 2;
    animation: fadeUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) 1.6s both;
}

.scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.scroll-hint span {
    font-size: 8px;
    letter-spacing: 0.5em;
    color: var(--text-primary);
    text-transform: uppercase;
}

.scroll-hint-bar {
    width: 1px;
    height: 52px;
    background: linear-gradient(to bottom, var(--text-primary), transparent);
    animation: scrollHint 2s ease-in-out infinite;
    animation: barDrop 2.5s ease-in-out 2s infinite;
    transform-origin: top;
}

@keyframes barDrop {
    0% {
        transform: scaleY(0);
        opacity: 0;
    }

    40% {
        transform: scaleY(1);
        opacity: 1;
    }

    80% {
        transform: scaleY(1);
        opacity: 0;
    }

    100% {
        transform: scaleY(0);
        opacity: 0;
    }
}

/* shred animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

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

.reveal {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.25s;
}

.reveal-delay-3 {
    transition-delay: 0.4s;
}

/* chapter section */

.chapter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.chapter.reverse .ch-img {
    order: 2;
    clip-path: inset(0 0 0 100%);
}

.chapter.reverse .ch-text {
    order: 1;
}

.ch-img {
    position: relative;
    overflow: hidden;
    clip-path: inset(0 100% 0 0);
    opacity: 0;
    transition:
        clip-path 5s cubic-bezier(0.76, 0, 0.24, 1),
        opacity 1.2s ease;
}

.chapter.reverse .ch-img {
    clip-path: inset(0 0 0 100%);
}

.chapter.visible .ch-img {
    clip-path: inset(0 0% 0 0%);
    opacity: 1;
}

.ch-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.05) saturate(0.85);
    transform: scale(1.08);
    transition: transform 6s cubic-bezier(0.76, 0, 0.24, 1);
}

.chapter.visible .ch-img img {
    transform: scale(1);
}

.ch-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}


/* placeholder when photos are not available */

.ch-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: #111;
}

.ch-img-placeholder .placeholder-icon {
    font-size: 32px;
    color: #2a2825;
}

.ch-img-placeholder p {
    font-size: 9px;
    letter-spacing: 0.35em;
    color: #2a2825;
    text-transform: uppercase;
    text-align: center;
    padding: 0 20px;
}

.ch-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 72px;
    background: var(--bg);
}

.ch-label {
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.8em;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 36px;
}

.ch-title {
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 300;
    letter-spacing: 0.12em;
    line-height: 1.15;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 40px;
}

.ch-body {
    font-size: clamp(13px, 1.3vw, 15px);
    font-weight: 300;
    line-height: 2;
    color: var(--text-primary);
    max-width: 100%;
}

.ch-label,
.ch-title,
.ch-body {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 3.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 3.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.chapter.visible .ch-label {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 2.2s;
}

.chapter.visible .ch-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 2.8s;
}

.chapter.visible .ch-body {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 3.6s;
}



/* ============================================
       FULL-WIDTH SECTION (The Surface)
    ============================================ */
.full-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 120px 60px;
}

#chapter-surface {
    background-size: cover;
    background-position: center;
}

#chapter-surface::after {
    content: '';
    position: absolute;
    inset: -10px;
    background-image: url('assets/faint-embose.jpeg');
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.15);
    transition: transform 2.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.15;
}

#content-surface.visible::after {
    transform: scale(1);
}

#chapter-surface::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: 0;
}

.full-content {
    position: relative;
    z-index: 2;
}

.full-content {
    position: relative;
    z-index: 2;
    max-width: 580px;
}

.full-label {
    font-size: 9px;
    letter-spacing: 0.8em;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 36px;
}

.full-title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 300;
    letter-spacing: 0.2em;
    line-height: 1.05;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 44px;
}

.full-body {
    font-size: clamp(13px, 1.4vw, 15px);
    font-weight: 300;
    line-height: 2.1;
    color: var(--text-primary);
}

.full-label,
.full-title,
.full-body {
    opacity: 0;
    transition:
        opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.full-section.visible .full-label {
    opacity: 1;
    transition-delay: 0.7s;
}

.full-section.visible .full-title {
    opacity: 1;
    transition-delay: 1s;
}

.full-section.visible .full-body {
    opacity: 1;
    transition-delay: 1.4s;
}


/* ============================================
       MANIFESTO SECTION
    ============================================ */
.manifesto-section {
    position: relative;
    min-height: 100vh;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 60px;
    text-align: center;
}

#manifesto {
    background-size: cover;
    background-position: center;
    background: var(--bg);
}

#manifesto::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/hand-painting-2.jpeg');
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1);
    transition: transform 2.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.12;
}

#manifesto.visible::after {
    transform: scale(1);
}

#manifesto::after {
    content: '';
    position: absolute;
    inset: -10px;
    background: rgba(0, 0, 0, 0.96);
    z-index: 0;
}

.manifesto-section>* {
    position: relative;
    z-index: 2;
}

.manifesto-label {
    font-size: 9px;
    letter-spacing: 0.8em;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 52px;
}

.manifesto-title {
    font-size: clamp(28px, 4.2vw, 48px);
    font-weight: 300;
    letter-spacing: 0.22em;
    line-height: 1;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 72px;
}

.manifesto-text {
    font-size: clamp(11px, 1.1vw, 13px);
    font-weight: 300;
    line-height: 2.2;
    color: var(--text-primary);
    max-width: 520px;
}

.manifesto-body {
    font-size: clamp(11px, 1.1vw, 13px);
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-primary);
    max-width: 520px;
}

.manifesto-label,
.manifesto-title,
.manifesto-body {
    opacity: 0;
    transition:
        opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.manifesto-section.visible .manifesto-label {
    opacity: 1;
    transition-delay: 0.7s;
}

.manifesto-section.visible .manifesto-title {
    opacity: 1;
    transition-delay: 1s;
}

.manifesto-section.visible .manifesto-body {
    opacity: 1;
    transition-delay: 1.4s;
}

.manifesto-divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--text-primary), transparent);
    margin: 72px auto 0;
}


/* ============================================
       ACCESS SECTION
    ============================================ */

.access-section {
    width: 100%;
    padding: 120px 60px 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.access-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.access-label {
    font-size: 8px;
    letter-spacing: 0.95em;
    color: var(--text-primary);
    text-transform: uppercase;
}

.access-heading {
    font-size: clamp(18px, 2.7vw, 28px);
    font-weight: 300;
    letter-spacing: 0.25em;
    line-height: 1.35;
    color: var(--text-primary);
    text-transform: uppercase;
}

.access-btn {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.4em;
    color: var(--text-primary);
    text-transform: uppercase;
    background: transparent;
    border: 0.5px solid var(--border-light);
    padding: 18px 52px;
    cursor: pointer;
    transition: border-color 0.4s ease, color 0.4s ease;
}

.access-btn:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
}

/* ============================================
   MODAL
============================================ */
.access-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.0);
    backdrop-filter: blur(0px);
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.5s ease,
        background 0.5s ease,
        backdrop-filter 0.5s ease;
    overflow-y: auto;
}

.access-modal.open {
    opacity: 1;
    pointer-events: all;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
}

.access-modal-inner {
    position: relative;
    width: 100%;
    max-width: min(100vw - 40px, 520px);
    background: var(--bg);
    border: 0.5px solid var(--border-light);
    padding: clamp(32px, 5vw, 56px);
    max-height: 85vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    transform: translateY(32px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    margin: auto 0;
}

.access-modal.open .access-modal-inner {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 28px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-eyebrow {
    font-size: 9px;
    letter-spacing: 0.8em;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 28px;
}

.modal-heading {
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 300;
    letter-spacing: 0.15em;
    line-height: 1.3;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.modal-desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-primary);
    margin-bottom: 48px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.modal-input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-input-group label {
    font-size: 11px;
    letter-spacing: 0.8em;
    color: var(--text-primary);
    text-transform: uppercase;
}

.modal-input-group input,
.modal-input-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 0.5px solid var(--border-light);
    padding: 12px 0;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s ease;
}

.modal-input-group textarea {
    min-height: 80px;
    resize: none;
}

.modal-input-group input::placeholder,
.modal-input-group textarea::placeholder {
    color: var(--text-primary);
    letter-spacing: 0.1em;
    font-size: 11px;
}

.modal-input-group input:focus,
.modal-input-group textarea:focus {
    border-color: rgba(232, 230, 225, 0.35);
}

.modal-submit {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.4em;
    color: var(--bg);
    text-transform: uppercase;
    background: var(--text-primary);
    border: none;
    padding: 18px 0;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.3s ease;
}

.modal-submit:hover {
    background: var(--text-primary);
}

/* product */

.product-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
}

.product-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--bg);
    opacity: 0;
    transition: opacity 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-section.visible .product-img-wrapper {
    opacity: 1;
    transition-delay: 0.3s;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    background: var(--bg);
    filter: brightness(0.55) contrast(1.05) saturate(0.7);
    transition: filter 1.8s ease;
}

.product-section.visible .product-img-wrapper img {
    filter: brightness(0.62) contrast(1.05) saturate(0.75);
}

/* teks overlay di atas foto, pojok bawah */
.product-overlay {
    position: absolute;
    bottom: 64px;
    left: 0;
    right: 0;
    padding: 0 64px;
    text-align: center;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.product-section.visible .product-overlay {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
}

.product-overlay-name {
    font-size: clamp(11px, 1.3vw, 14px);
    font-weight: 200;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 14px;
    line-height: 1;
}

.product-overlay-note {
    font-size: clamp(11px, 1.15vw, 13px);
    font-weight: 200;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
}

.product-overlay-soon {
    font-size: clamp(10px, 1vw, 12px);
    font-weight: 200;
    letter-spacing: 0.35em;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

/* ============================================
       FOOTER
    ============================================ */
footer {
    border-top: 0.5px solid var(--border);
    padding: 36px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.4em;
    color: var(--text-primary);
    text-transform: uppercase;
}

.footer-email {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: var(--text-primary);
}

.footer-copy {
    font-size: 9px;
    letter-spacing: 0.2em;
    color: var(--text-primary);
}


/* ============================================
       RESPONSIVE — TABLET (768px – 1023px)
    ============================================ */
@media (max-width: 1023px) {
    nav {
        padding: 28px 40px;
    }

    nav.scrolled {
        padding: 18px 40px;
    }

    .hero {
        padding: 0 40px;
    }

    .hero h1 {
        letter-spacing: 0.2em;
    }

    .chapter {
        grid-template-columns: 1fr;
        min-height: 100vh;
    }

    .chapter.reverse .ch-img {
        order: 1;
    }

    .chapter.reverse .ch-text {
        order: 2;
    }

    .ch-img {
        min-height: 380px;
    }

    .ch-text {
        padding: 56px 48px;
    }

    .ch-body {
        max-width: 100%;
    }

    .full-section {
        padding: 80px 40px;
        min-height: 100vh;
    }

    .manifesto-section {
        padding: 80px 40px;
        min-height: 100vh;
    }

    .access-section {
        padding: 80px 40px 100px;
    }

    footer {
        border-top: 0.5px solid var(--border);
        padding: 36px 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .footer-logo {
        font-size: 11px;
        font-weight: 300;
        letter-spacing: 0.4em;
        color: var(--text-primary);
        text-transform: uppercase;
    }

    .footer-email {
        font-size: 10px;
        font-weight: 300;
        letter-spacing: 0.2em;
        color: var(--text-primary);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-email:hover {
        color: var(--text-primary);
    }

    .footer-copy {
        font-size: 9px;
        letter-spacing: 0.2em;
        color: var(--text-primary);
    }
}


/* RESPONSIVE — MOBILE (≤ 767px) */
@media (max-width: 767px) {
    nav {
        padding: 24px;
        flex-direction: row;
    }

    .nav-links {
        gap: 24px;
    }

    .nav-links a {
        font-size: 9px;
        letter-spacing: 0.2em;
    }

    .hero {
        padding: 0 24px;
    }

    .chapter {
        min-height: 100vh;
    }

    .ch-img {
        min-height: 300px;
    }

    .ch-text {
        padding: 48px 24px;
    }

    .full-section {
        min-height: 100vh;
        padding: 72px 24px;
    }

    .manifesto-section {
        min-height: 100vh;
        padding: 72px 24px;
    }

    .manifesto-text {
        font-size: 14px;
        line-height: 2.2;
    }

    .access-section {
        padding: 80px 24px 100px;
    }

    .access-modal-inner {
        padding: 48px 28px;
    }

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

    footer {
        padding: 28px 24px;
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}