/* ============================================================
   MasqproT.com - Styles
   Venetian Carnival meets Swiss Typography
   Masonry layout, coastal-blend palette, retro-patterns
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Palette: Coastal-Blend */
    --adriatic-midnight: #0D2B45;
    --tide-glass: #A8D5E2;
    --lido-bisque: #F0E6D3;
    --terracotta-pier: #C4765B;
    --mask-gilt: #D4A843;
    --carnival-flush: #D1495B;
    --piazza-white: #FAFAF5;
    --mask-interior: #1A1A2E;
    --murano-tint: #5B9F8D;

    /* Typography */
    --font-headline: 'Space Grotesk', sans-serif;
    --font-display: 'Fraunces', serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;

    /* Animation Easing */
    --ease-entrance: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-exit: cubic-bezier(0.55, 0.085, 0.68, 0.53);

    /* Layout */
    --strip-width: 48px;
    --gutter: 24px;
    --margin-side: 7.5%;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.65;
    color: var(--adriatic-midnight);
    background-color: var(--lido-bisque);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.svg-filters {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* ---------- Typography ---------- */
h1, h2, h3 {
    font-family: var(--font-headline);
    font-weight: 700;
    letter-spacing: -0.03em;
}

em {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
}

/* ============================================================
   SECTION 1: THE INVITATION (HERO)
   ============================================================ */
.section-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-color: var(--adriatic-midnight);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Crect width='24' height='24' fill='%230D2B45'/%3E%3Ccircle cx='6' cy='6' r='3' fill='%23D4A843'/%3E%3Crect x='15' y='15' width='6' height='6' fill='%23D4A843'/%3E%3Ccircle cx='18' cy='6' r='2' fill='%23D4A843' opacity='0.5'/%3E%3Crect x='3' y='15' width='4' height='4' fill='%23D4A843' opacity='0.5'/%3E%3C/svg%3E");
    background-size: 24px 24px;
    opacity: 0.05;
    pointer-events: none;
}

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

.hero-title {
    font-family: var(--font-headline);
    font-size: clamp(64px, 10vw, 120px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--piazza-white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-letter {
    display: inline-block;
    transform: translateY(var(--offset, 0));
    transition: transform 0.4s var(--ease-entrance);
}

.hero-letter:hover {
    transform: translateY(calc(var(--offset, 0) * -1));
    color: var(--mask-gilt);
}

.hero-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(22px, 3vw, 36px);
    color: var(--tide-glass);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease-entrance) 0.6s, transform 0.8s var(--ease-entrance) 0.6s;
    max-width: 600px;
    margin: 0 auto;
}

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

.scroll-indicator {
    margin-top: 48px;
    animation: pulse-down 2s ease-in-out infinite;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
}

@keyframes pulse-down {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(10px); opacity: 1; }
}

.hero-floating-mask {
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: clamp(120px, 18vw, 220px);
    animation: float-rotate 20s linear infinite;
    opacity: 0.7;
    z-index: 1;
}

@keyframes float-rotate {
    0% { transform: rotate(0deg) translateY(0); }
    25% { transform: rotate(3deg) translateY(-10px); }
    50% { transform: rotate(0deg) translateY(0); }
    75% { transform: rotate(-3deg) translateY(10px); }
    100% { transform: rotate(0deg) translateY(0); }
}

/* ============================================================
   SECTION 2: THE MASK WALL (PRIMARY MASONRY)
   ============================================================ */
.section-masonry {
    position: relative;
    width: 85%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 0;
    padding-right: var(--strip-width);
}

.masonry-pattern-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' patternTransform='rotate(45)'%3E%3Crect width='40' height='40' fill='%23A8D5E2'/%3E%3Crect x='0' y='0' width='20' height='20' fill='%23F0E6D3'/%3E%3Crect x='20' y='20' width='20' height='20' fill='%23F0E6D3'/%3E%3C/svg%3E");
    background-size: 40px 40px;
    opacity: 0.08;
    pointer-events: none;
    z-index: -1;
}

/* Paper grain texture */
.section-masonry::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    filter: url(#grain);
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.masonry-container {
    position: relative;
    z-index: 1;
    columns: 3;
    column-gap: var(--gutter);
}

/* ---------- Masonry Cards ---------- */
.masonry-card {
    position: relative;
    break-inside: avoid;
    margin-bottom: var(--gutter);
    background-color: var(--lido-bisque);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(13, 43, 69, 0.08);
    /* Animation: start hidden and rotated */
    opacity: 0;
    transform: rotate(-8deg) translateY(30px);
    transition: opacity 0.4s var(--ease-entrance), transform 0.4s var(--ease-entrance);
}

.masonry-card.revealed {
    opacity: 1;
    transform: rotate(0deg) translateY(0);
}

/* Card heights */
.card-short { min-height: 180px; }
.card-medium { min-height: 320px; }
.card-tall { min-height: 480px; }

/* ---------- Corner Stamps ---------- */
.card-corner-stamp {
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    z-index: 2;
}

.stamp-harlequin {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Crect width='32' height='32' fill='%23A8D5E2'/%3E%3Crect width='16' height='16' fill='%23F0E6D3'/%3E%3Crect x='16' y='16' width='16' height='16' fill='%23F0E6D3'/%3E%3Cline x1='0' y1='16' x2='32' y2='16' stroke='%230D2B45' stroke-width='0.5'/%3E%3Cline x1='16' y1='0' x2='16' y2='32' stroke='%230D2B45' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: cover;
}

.stamp-domino {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Crect width='32' height='32' fill='%230D2B45'/%3E%3Crect width='16' height='16' fill='%231A1A2E'/%3E%3Crect x='16' y='16' width='16' height='16' fill='%231A1A2E'/%3E%3Ccircle cx='16' cy='16' r='3' fill='%23D4A843'/%3E%3C/svg%3E");
    background-size: cover;
}

.stamp-columbina {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Crect width='32' height='32' fill='%23C4765B'/%3E%3Ccircle cx='16' cy='32' r='16' fill='%235B9F8D'/%3E%3Ccircle cx='0' cy='0' r='16' fill='%235B9F8D'/%3E%3Ccircle cx='32' cy='0' r='16' fill='%235B9F8D'/%3E%3C/svg%3E");
    background-size: cover;
}

.stamp-bauta {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Crect width='32' height='32' fill='%230D2B45'/%3E%3Ccircle cx='8' cy='8' r='4' fill='%23D4A843'/%3E%3Crect x='20' y='20' width='8' height='8' fill='%23D4A843'/%3E%3C/svg%3E");
    background-size: cover;
}

/* ---------- Text Cards ---------- */
.card-text {
    padding: 28px 24px;
}

.card-title {
    font-family: var(--font-headline);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--adriatic-midnight);
    margin-bottom: 12px;
    line-height: 1.2;
}

.card-body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--adriatic-midnight);
    max-width: 640px;
}

.card-body em {
    color: var(--carnival-flush);
}

.card-caption {
    display: block;
    margin-top: 16px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--terracotta-pier);
}

/* ---------- Illustration Cards ---------- */
.card-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background-color: var(--piazza-white);
}

.card-mask-svg {
    width: 100%;
    max-width: 180px;
    height: auto;
}

.card-mask-small {
    max-width: 160px;
}

/* ---------- Pattern Cards ---------- */
.card-pattern {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px;
}

.pattern-columbina-bg {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Crect width='40' height='40' fill='%23C4765B'/%3E%3Ccircle cx='20' cy='40' r='20' fill='%235B9F8D'/%3E%3Ccircle cx='0' cy='0' r='20' fill='%235B9F8D'/%3E%3Ccircle cx='40' cy='0' r='20' fill='%235B9F8D'/%3E%3C/svg%3E");
    background-size: 40px 40px;
}

.pattern-harlequin-bg {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Crect width='40' height='40' fill='%23A8D5E2'/%3E%3Crect width='20' height='20' fill='%23F0E6D3'/%3E%3Crect x='20' y='20' width='20' height='20' fill='%23F0E6D3'/%3E%3Cline x1='0' y1='0' x2='40' y2='0' stroke='%230D2B45' stroke-width='1'/%3E%3Cline x1='0' y1='20' x2='40' y2='20' stroke='%230D2B45' stroke-width='1'/%3E%3Cline x1='0' y1='0' x2='0' y2='40' stroke='%230D2B45' stroke-width='1'/%3E%3Cline x1='20' y1='0' x2='20' y2='40' stroke='%230D2B45' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 40px 40px;
}

.pattern-bauta-bg {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Crect width='24' height='24' fill='%230D2B45'/%3E%3Ccircle cx='6' cy='6' r='3' fill='%23D4A843'/%3E%3Crect x='15' y='15' width='6' height='6' fill='%23D4A843'/%3E%3Ccircle cx='18' cy='6' r='2' fill='%23D4A843' opacity='0.5'/%3E%3Crect x='3' y='15' width='4' height='4' fill='%23D4A843' opacity='0.5'/%3E%3C/svg%3E");
    background-size: 24px 24px;
}

.pattern-domino-bg {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='30'%3E%3Crect width='60' height='30' fill='%230D2B45'/%3E%3Crect x='0' y='0' width='30' height='15' fill='%231A1A2E'/%3E%3Crect x='30' y='15' width='30' height='15' fill='%231A1A2E'/%3E%3Ccircle cx='30' cy='15' r='4' fill='%23D4A843'/%3E%3Ccircle cx='0' cy='0' r='4' fill='%23D4A843'/%3E%3Ccircle cx='60' cy='0' r='4' fill='%23D4A843'/%3E%3Ccircle cx='0' cy='30' r='4' fill='%23D4A843'/%3E%3Ccircle cx='60' cy='30' r='4' fill='%23D4A843'/%3E%3C/svg%3E");
    background-size: 60px 30px;
}

.card-pattern-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(13, 43, 69, 0.7);
    padding: 12px 20px;
    border-radius: 3px;
}

.card-pattern-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tide-glass);
}

.card-pattern-name {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 24px;
    color: var(--piazza-white);
    margin-top: 4px;
}

/* ---------- Peekhole Cards ---------- */
.card-peekhole {
    background-color: var(--adriatic-midnight);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.peekhole-mask {
    width: 140px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    clip-path: ellipse(50% 45% at 50% 50%);
}

.peekhole-inner {
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Crect width='40' height='40' fill='%23C4765B'/%3E%3Ccircle cx='20' cy='40' r='20' fill='%235B9F8D'/%3E%3Ccircle cx='0' cy='0' r='20' fill='%235B9F8D'/%3E%3Ccircle cx='40' cy='0' r='20' fill='%235B9F8D'/%3E%3C/svg%3E");
    background-size: 40px 40px;
}

.peekhole-inner.peekhole-pattern-b {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Crect width='40' height='40' fill='%23A8D5E2'/%3E%3Crect width='20' height='20' fill='%23F0E6D3'/%3E%3Crect x='20' y='20' width='20' height='20' fill='%23F0E6D3'/%3E%3C/svg%3E");
    background-size: 40px 40px;
}

.peekhole-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mask-gilt);
    margin-top: 16px;
}

/* ============================================================
   SECTION 3: THE PARADE (FULL-WIDTH INTERRUPTION)
   ============================================================ */
.section-parade {
    position: relative;
    width: 100%;
    min-height: 400px;
    background-color: var(--terracotta-pier);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 48px;
    padding-right: calc(48px + var(--strip-width));
}

.parade-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Crect width='40' height='40' fill='%23C4765B'/%3E%3Ccircle cx='20' cy='40' r='20' fill='%235B9F8D'/%3E%3Ccircle cx='0' cy='0' r='20' fill='%235B9F8D'/%3E%3Ccircle cx='40' cy='0' r='20' fill='%235B9F8D'/%3E%3C/svg%3E");
    background-size: 40px 40px;
    opacity: 0.2;
    pointer-events: none;
}

.parade-curtain {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: var(--terracotta-pier);
    z-index: 2;
    transition: transform 0.8s var(--ease-entrance);
}

.parade-curtain-left {
    left: 0;
    transform-origin: left center;
}

.parade-curtain-right {
    right: 0;
    transform-origin: right center;
}

.section-parade.revealed .parade-curtain-left {
    transform: translateX(-100%);
}

.section-parade.revealed .parade-curtain-right {
    transform: translateX(100%);
}

.parade-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.parade-statement {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(28px, 5vw, 56px);
    color: var(--piazza-white);
    line-height: 1.3;
}

.parade-statement em {
    color: var(--mask-gilt);
    font-weight: 700;
}

/* ============================================================
   SECTION 4: THE UNMASKING (INTERACTIVE)
   ============================================================ */
.section-unmasking {
    position: relative;
    width: 100%;
    background-color: var(--mask-interior);
    padding: 80px var(--margin-side);
    padding-right: calc(var(--margin-side) + var(--strip-width));
    text-align: center;
}

.unmasking-title {
    font-family: var(--font-headline);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--piazza-white);
    margin-bottom: 12px;
}

.unmasking-subtitle {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tide-glass);
    margin-bottom: 60px;
}

.unmasking-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.unmask-item {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 4;
    cursor: pointer;
    overflow: hidden;
    border-radius: 4px;
}

.unmask-hidden {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--adriatic-midnight);
    z-index: 0;
    padding: 16px;
}

.unmask-message {
    font-family: var(--font-headline);
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--mask-gilt);
}

.unmask-sub {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(12px, 1.5vw, 16px);
    color: var(--tide-glass);
    margin-top: 8px;
}

.unmask-mask-left,
.unmask-mask-right {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    transition: transform 0.5s var(--ease-entrance), opacity 0.5s var(--ease-entrance);
}

.unmask-mask-left {
    left: 0;
    justify-content: flex-end;
}

.unmask-mask-right {
    right: 0;
    justify-content: flex-start;
}

.unmask-mask-left svg,
.unmask-mask-right svg {
    width: 100%;
    height: 80%;
}

/* Hover / Active state: masks split apart */
.unmask-item:hover .unmask-mask-left,
.unmask-item.active .unmask-mask-left {
    transform: translateX(-60%);
    opacity: 0.4;
}

.unmask-item:hover .unmask-mask-right,
.unmask-item.active .unmask-mask-right {
    transform: translateX(60%);
    opacity: 0.4;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    position: relative;
    width: 100%;
    background-color: var(--mask-interior);
    padding: 48px var(--margin-side);
    padding-right: calc(var(--margin-side) + var(--strip-width));
    overflow: hidden;
}

.footer-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='30'%3E%3Crect width='60' height='30' fill='%230D2B45'/%3E%3Crect x='0' y='0' width='30' height='15' fill='%231A1A2E'/%3E%3Crect x='30' y='15' width='30' height='15' fill='%231A1A2E'/%3E%3Ccircle cx='30' cy='15' r='4' fill='%23D4A843'/%3E%3Ccircle cx='0' cy='0' r='4' fill='%23D4A843'/%3E%3Ccircle cx='60' cy='0' r='4' fill='%23D4A843'/%3E%3Ccircle cx='0' cy='30' r='4' fill='%23D4A843'/%3E%3Ccircle cx='60' cy='30' r='4' fill='%23D4A843'/%3E%3C/svg%3E");
    background-size: 60px 30px;
    opacity: 0.15;
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-logo {
    font-family: var(--font-headline);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--piazza-white);
}

.footer-divider {
    width: 1px;
    height: 24px;
    background-color: var(--mask-gilt);
    opacity: 0.5;
}

.footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 18px;
    color: var(--tide-glass);
}

.footer-year {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--mask-gilt);
    opacity: 0.6;
}

/* ============================================================
   THE REVEAL STRIP (Persistent Right-Edge Navigation)
   ============================================================ */
.reveal-strip {
    position: fixed;
    top: 0;
    right: 0;
    width: var(--strip-width);
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 100;
    background-color: rgba(26, 26, 46, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 20px 0;
}

.strip-mask {
    position: relative;
    width: 32px;
    height: 24px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s var(--ease-entrance);
}

.strip-mask:hover {
    transform: scale(1.2);
}

.strip-mask svg {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.strip-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: var(--mask-gilt);
    border-radius: 50%;
    z-index: 1;
    transition: height 0.4s var(--ease-entrance);
    opacity: 0.6;
}

.strip-mask.active .strip-fill {
    height: 100%;
}

.strip-mask.active svg ellipse,
.strip-mask.active svg path,
.strip-mask.active svg circle,
.strip-mask.active svg rect {
    stroke: var(--mask-gilt);
}

/* ============================================================
   RESPONSIVE: TABLET (768px)
   ============================================================ */
@media (max-width: 768px) {
    .masonry-container {
        columns: 2;
    }

    .section-masonry {
        width: 90%;
    }

    .unmasking-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .hero-title {
        font-size: clamp(48px, 10vw, 80px);
    }

    .parade-statement {
        font-size: clamp(24px, 4vw, 40px);
    }

    .hero-floating-mask {
        width: 100px;
        bottom: 5%;
        right: 5%;
    }
}

/* ============================================================
   RESPONSIVE: MOBILE (480px)
   ============================================================ */
@media (max-width: 480px) {
    :root {
        --strip-width: 36px;
    }

    .masonry-container {
        columns: 1;
    }

    .section-masonry {
        width: 95%;
        padding: 40px 0;
    }

    .unmasking-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-parade {
        padding: 48px 24px;
        padding-right: calc(24px + var(--strip-width));
        min-height: 300px;
    }

    .section-unmasking {
        padding: 48px 16px;
        padding-right: calc(16px + var(--strip-width));
    }

    .hero-floating-mask {
        display: none;
    }

    .reveal-strip {
        gap: 12px;
    }

    .strip-mask {
        width: 24px;
        height: 18px;
    }

    .footer-content {
        flex-direction: column;
        gap: 12px;
    }

    .footer-divider {
        width: 40px;
        height: 1px;
    }
}
