/* =========================================
   gunsul.quest - Y2K Futurism + Candlelight
   ========================================= */

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: #0A0A14;
    color: #C8C8D4;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Typography --- */
.chrome-text {
    background: linear-gradient(110deg, #E0E0FF 0%, #6B6B8D 50%, #E0E0FF 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chrome-text:hover {
    animation: chromeShift 1.5s ease forwards;
}

@keyframes chromeShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* --- Blur-Focus Animation System --- */
.blur-reveal {
    filter: blur(12px);
    opacity: 0;
    transition: filter 0.8s cubic-bezier(0.0, 0.0, 0.2, 1.0), opacity 0.8s ease;
    transition-delay: var(--delay, 0ms);
}

.blur-reveal.in-view {
    filter: blur(0);
    opacity: 1;
}

/* --- Candelabra Spine --- */
#candelabra-spine {
    position: fixed;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 8px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    pointer-events: none;
}

.spine-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    transform: translateX(-50%);
    background-color: #FFB347;
    animation: spineFlicker 3s cubic-bezier(0.4, 0.0, 0.6, 1.0) infinite;
}

@keyframes spineFlicker {
    0%, 100% { opacity: 0.4; }
    30% { opacity: 0.7; }
    50% { opacity: 0.5; }
    70% { opacity: 0.8; }
    90% { opacity: 0.6; }
}

.spine-node {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FFB347;
    box-shadow: 0 0 12px rgba(255, 179, 71, 0.6);
    position: relative;
    z-index: 1;
    margin: 24px 0;
    opacity: 0.4;
    transition: opacity 0.5s ease, box-shadow 0.5s ease, transform 0.3s ease;
    pointer-events: auto;
    cursor: pointer;
}

.spine-node.active {
    opacity: 1;
    box-shadow: 0 0 16px rgba(255, 179, 71, 0.8), 0 0 32px rgba(255, 179, 71, 0.4);
    transform: scale(1.3);
}

/* --- Zone Base --- */
.zone {
    position: relative;
    width: 100%;
}

/* --- Section 1: The Threshold --- */
#threshold {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at 50% 60%, #1A0E2E 0%, #0A0A14 70%);
    overflow: hidden;
}

.threshold-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.candle-flame-container {
    position: relative;
    width: 60px;
    height: 120px;
    margin-bottom: 60px;
}

.candle-flame {
    position: relative;
    width: 40px;
    height: 80px;
    margin: 0 auto;
}

.flame-outer {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 70px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    background: radial-gradient(ellipse at 50% 60%, #FFF4C1 0%, #FFB347 40%, #FF6B00 80%, transparent 100%);
    animation: flicker 2.5s cubic-bezier(0.4, 0.0, 0.6, 1.0) infinite;
    filter: blur(1px);
}

.flame-inner {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 40px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    background: radial-gradient(ellipse at 50% 60%, #FFFFFF 0%, #FFF4C1 50%, #FFB347 100%);
    animation: flickerInner 3s cubic-bezier(0.4, 0.0, 0.6, 1.0) infinite;
    filter: blur(0.5px);
}

@keyframes flicker {
    0%, 100% { transform: translateX(-50%) scaleY(1) rotate(-1deg); border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; }
    25% { transform: translateX(-50%) scaleY(1.04) rotate(1deg); border-radius: 48% 52% 52% 48% / 58% 62% 38% 42%; }
    50% { transform: translateX(-50%) scaleY(0.98) rotate(-0.5deg); border-radius: 52% 48% 48% 52% / 62% 58% 42% 38%; }
    75% { transform: translateX(-50%) scaleY(1.02) rotate(0.8deg); border-radius: 50% 50% 52% 48% / 60% 60% 42% 38%; }
}

@keyframes flickerInner {
    0%, 100% { transform: translateX(-50%) scaleY(1) rotate(0.5deg); opacity: 0.9; }
    30% { transform: translateX(-50%) scaleY(1.06) rotate(-0.8deg); opacity: 1; }
    60% { transform: translateX(-50%) scaleY(0.96) rotate(0.3deg); opacity: 0.85; }
    80% { transform: translateX(-50%) scaleY(1.03) rotate(-0.5deg); opacity: 0.95; }
}

.candle-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 179, 71, 0.12) 0%, rgba(255, 179, 71, 0.04) 40%, rgba(255, 179, 71, 0) 70%);
    pointer-events: none;
    animation: glowPulse 4s cubic-bezier(0.4, 0.0, 0.6, 1.0) infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

.threshold-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 100;
    font-size: clamp(48px, 10vw, 160px);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    color: #E0E0FF;
    text-shadow: 2px 2px 0 #FF2D95, 0 0 40px rgba(224, 224, 255, 0.1);
    position: relative;
    z-index: 1;
}

/* --- Section 2: The Archive --- */
#archive {
    min-height: 150vh;
    padding: 120px 80px 120px 80px;
    background: #0A0A14;
    position: relative;
}

#archive::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 179, 71, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.archive-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px 30px;
    padding-left: 40px;
}

/* Frost Panel Base */
.frost-panel {
    background: rgba(26, 14, 46, 0.6);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: border-color 0.4s ease;
}

.frost-panel:hover {
    border-color: rgba(255, 179, 71, 0.15);
}

/* Panel Sizes */
.panel-wide { grid-column: span 8; }
.panel-medium { grid-column: span 6; }
.panel-narrow { grid-column: span 4; }

/* Panel Positions */
.panel-left { grid-column-start: 1; }
.panel-right.panel-narrow { grid-column: 7 / span 4; }
.panel-right.panel-medium { grid-column: 6 / span 6; }

/* Specific panel adjustments for zigzag */
.archive-grid .frost-panel:nth-child(1) { grid-column: 1 / span 8; }
.archive-grid .frost-panel:nth-child(2) { grid-column: 9 / span 4; }
.archive-grid .frost-panel:nth-child(3) { grid-column: 5 / span 6; }
.archive-grid .frost-panel:nth-child(4) { grid-column: 1 / span 8; }
.archive-grid .frost-panel:nth-child(5) { grid-column: 1 / span 4; }
.archive-grid .frost-panel:nth-child(6) { grid-column: 7 / span 6; }

/* Panel Typography */
.panel-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #00F5D4;
    display: block;
    margin-bottom: 20px;
}

.panel-heading {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: clamp(24px, 3vw, 36px);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #E0E0FF;
    text-shadow: 2px 2px 0 #FF2D95;
    margin-bottom: 20px;
    line-height: 1.2;
}

.panel-subheading {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 32px;
    color: #FFB347;
    line-height: 1.3;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.panel-body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #C8C8D4;
    line-height: 1.7;
}

.panel-quote {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 28px;
    color: #FFB347;
    line-height: 1.3;
    letter-spacing: 0.02em;
    font-style: italic;
}

/* Neon Lines */
.neon-line {
    height: 2px;
    width: 60px;
    margin-top: 24px;
    border-radius: 1px;
}

.neon-magenta {
    background: #FF2D95;
    box-shadow: 0 0 8px #FF2D95, 0 0 16px rgba(255, 45, 149, 0.5);
}

.neon-teal {
    background: #00F5D4;
    box-shadow: 0 0 8px #00F5D4, 0 0 16px rgba(0, 245, 212, 0.5);
}

.neon-violet {
    background: #BF5AF2;
    box-shadow: 0 0 8px #BF5AF2, 0 0 16px rgba(191, 90, 242, 0.5);
}

/* Chrome Rings */
.chrome-ring-container {
    width: 160px;
    height: 160px;
    margin: 20px auto;
}

.chrome-ring-container.small-ring {
    width: 100px;
    height: 100px;
    position: absolute;
    right: 40px;
    bottom: 40px;
    margin: 0;
}

.chrome-ring {
    width: 100%;
    height: 100%;
    animation: rotateRing 30s linear infinite;
}

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

/* --- Section 3: The Spectrum --- */
#spectrum {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF2D95;
    position: relative;
    overflow: hidden;
    transition: background-color 0.1s linear;
}

.spectrum-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 40px;
    mix-blend-mode: difference;
}

.spectrum-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 300;
    font-size: clamp(32px, 5vw, 72px);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 30px;
}

.spectrum-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(20px, 3vw, 36px);
    color: #FFFFFF;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

/* --- Section 4: The Gallery --- */
#gallery {
    padding: 120px 80px;
    background: #1A0E2E;
    position: relative;
}

#gallery::before {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 179, 71, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px 30px;
    padding-left: 40px;
}

/* Gallery Panel Base */
.gallery-panel {
    background: rgba(10, 10, 20, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

/* Gallery Panel Sizes */
.gallery-tall { grid-column: span 5; min-height: 500px; }
.gallery-wide { grid-column: span 7; min-height: 300px; }
.gallery-square { grid-column: span 5; min-height: 400px; }
.gallery-medium { grid-column: span 5; min-height: 300px; }
.gallery-center { grid-column: 2 / span 10; }

/* Gallery Panel Positions */
.gallery-grid .gallery-panel:nth-child(1) { grid-column: 1 / span 5; }
.gallery-grid .gallery-panel:nth-child(2) { grid-column: 6 / span 7; }
.gallery-grid .gallery-panel:nth-child(3) { grid-column: 1 / span 5; }
.gallery-grid .gallery-panel:nth-child(4) { grid-column: 7 / span 5; }
.gallery-grid .gallery-panel:nth-child(5) { grid-column: 2 / span 10; }

.gallery-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #00F5D4;
    position: absolute;
    bottom: 20px;
    left: 40px;
}

/* Gallery Chrome Shape */
.gallery-chrome-shape {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
}

.gallery-chrome-shape svg {
    width: 100%;
    max-width: 250px;
    height: auto;
    animation: rotateRing 40s linear infinite;
}

/* Gallery Typographic */
.gallery-typographic {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    padding-bottom: 40px;
}

.gallery-big-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: clamp(48px, 6vw, 80px);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1;
    display: block;
}

.gallery-big-text.neon-text {
    color: #FF2D95;
    text-shadow: 0 0 20px rgba(255, 45, 149, 0.5), 0 0 40px rgba(255, 45, 149, 0.2);
}

/* Gallery Abstract */
.gallery-abstract {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.abstract-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 15%;
    border-color: rgba(191, 90, 242, 0.4);
    box-shadow: 0 0 20px rgba(191, 90, 242, 0.2);
    animation: floatCircle1 8s ease-in-out infinite;
}

.circle-2 {
    width: 140px;
    height: 140px;
    top: 35%;
    left: 40%;
    border-color: rgba(0, 245, 212, 0.4);
    box-shadow: 0 0 20px rgba(0, 245, 212, 0.2);
    animation: floatCircle2 10s ease-in-out infinite;
}

.circle-3 {
    width: 80px;
    height: 80px;
    top: 25%;
    left: 55%;
    border-color: rgba(255, 45, 149, 0.5);
    box-shadow: 0 0 20px rgba(255, 45, 149, 0.3);
    animation: floatCircle3 6s ease-in-out infinite;
}

.neon-crosshair {
    position: absolute;
    top: 45%;
    left: 45%;
    width: 40px;
    height: 40px;
}

.neon-crosshair::before,
.neon-crosshair::after {
    content: '';
    position: absolute;
    background: #00F5D4;
    box-shadow: 0 0 8px #00F5D4;
}

.neon-crosshair::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
}

.neon-crosshair::after {
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    transform: translateX(-50%);
}

@keyframes floatCircle1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -15px); }
}

@keyframes floatCircle2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-8px, 12px); }
}

@keyframes floatCircle3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(15px, 8px); }
}

/* Gallery Quote */
.gallery-quote-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-bottom: 40px;
}

.gallery-quote {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 28px;
    color: #FFB347;
    line-height: 1.4;
    letter-spacing: 0.02em;
    font-style: italic;
    border: none;
    margin: 0;
    padding: 0;
}

/* Gallery Neon Composition */
.gallery-neon-composition {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
    height: 200px;
    padding-bottom: 50px;
}

.neon-bar {
    width: 8px;
    border-radius: 4px;
    animation: barPulse 3s ease-in-out infinite;
}

.bar-1 {
    height: 60%;
    background: #FF2D95;
    box-shadow: 0 0 10px rgba(255, 45, 149, 0.5);
    animation-delay: 0s;
}

.bar-2 {
    height: 80%;
    background: #BF5AF2;
    box-shadow: 0 0 10px rgba(191, 90, 242, 0.5);
    animation-delay: 0.3s;
}

.bar-3 {
    height: 100%;
    background: #00F5D4;
    box-shadow: 0 0 10px rgba(0, 245, 212, 0.5);
    animation-delay: 0.6s;
}

.bar-4 {
    height: 70%;
    background: #FFB347;
    box-shadow: 0 0 10px rgba(255, 179, 71, 0.5);
    animation-delay: 0.9s;
}

.bar-5 {
    height: 50%;
    background: #E0E0FF;
    box-shadow: 0 0 10px rgba(224, 224, 255, 0.5);
    animation-delay: 1.2s;
}

@keyframes barPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.7; }
    50% { transform: scaleY(1.3); opacity: 1; }
}

/* --- Section 5: The Meditation --- */
#meditation {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #0A0A14, #1A0E2E);
    position: relative;
    overflow: hidden;
    transition: background 0.3s linear;
}

.meditation-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meditation-ring {
    position: relative;
    width: clamp(300px, 50vw, 500px);
    height: clamp(300px, 50vw, 500px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring-outer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid #BF5AF2;
    box-shadow: 0 0 20px rgba(191, 90, 242, 0.4), 0 0 40px rgba(191, 90, 242, 0.2), inset 0 0 20px rgba(191, 90, 242, 0.1);
    animation: ringPulse 4s ease-in-out infinite;
}

.ring-inner {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border-radius: 50%;
    border: 1px solid rgba(0, 245, 212, 0.3);
    box-shadow: 0 0 12px rgba(0, 245, 212, 0.2);
    animation: ringPulse 4s ease-in-out infinite reverse;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.03); opacity: 1; }
}

.meditation-text {
    position: relative;
    z-index: 1;
    max-width: 340px;
    text-align: center;
    padding: 40px;
}

.meditation-body {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 22px;
    color: #FFB347;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

/* --- Section 6: The Seal --- */
#seal {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0A0A14;
    position: relative;
}

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

.seal-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 100;
    font-size: clamp(32px, 6vw, 80px);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #E0E0FF;
    opacity: 0;
    filter: blur(20px);
    animation: sealReveal 2s cubic-bezier(0.0, 0.0, 0.2, 1.0) forwards;
    animation-play-state: paused;
}

.seal-title.animate {
    animation-play-state: running;
}

@keyframes sealReveal {
    0% { opacity: 0; filter: blur(20px); }
    100% { opacity: 1; filter: blur(0px); }
}

.seal-line {
    width: 60px;
    height: 1px;
    background: #FFB347;
    margin: 30px auto 0;
    box-shadow: 0 0 8px rgba(255, 179, 71, 0.4);
    opacity: 0;
    animation: sealLineReveal 1s ease 1.5s forwards;
    animation-play-state: paused;
}

.seal-title.animate ~ .seal-line {
    animation-play-state: running;
}

/* --- Warm Radial Pools (ambient candlelight) --- */
#threshold::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: 30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 179, 71, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

@keyframes sealLineReveal {
    0% { opacity: 0; width: 0; }
    100% { opacity: 1; width: 60px; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    #archive,
    #gallery {
        padding: 80px 40px;
    }

    .archive-grid,
    .gallery-grid {
        grid-template-columns: repeat(8, 1fr);
        padding-left: 20px;
    }

    .archive-grid .frost-panel:nth-child(1) { grid-column: 1 / span 8; }
    .archive-grid .frost-panel:nth-child(2) { grid-column: 1 / span 8; }
    .archive-grid .frost-panel:nth-child(3) { grid-column: 1 / span 8; }
    .archive-grid .frost-panel:nth-child(4) { grid-column: 1 / span 8; }
    .archive-grid .frost-panel:nth-child(5) { grid-column: 1 / span 4; }
    .archive-grid .frost-panel:nth-child(6) { grid-column: 5 / span 4; }

    .gallery-grid .gallery-panel:nth-child(1) { grid-column: 1 / span 8; }
    .gallery-grid .gallery-panel:nth-child(2) { grid-column: 1 / span 8; }
    .gallery-grid .gallery-panel:nth-child(3) { grid-column: 1 / span 4; }
    .gallery-grid .gallery-panel:nth-child(4) { grid-column: 5 / span 4; }
    .gallery-grid .gallery-panel:nth-child(5) { grid-column: 1 / span 8; }
}

@media (max-width: 768px) {
    #candelabra-spine {
        left: 12px;
    }

    #archive,
    #gallery {
        padding: 60px 20px;
    }

    .archive-grid,
    .gallery-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding-left: 30px;
    }

    .frost-panel,
    .gallery-panel {
        padding: 30px;
    }

    .threshold-title {
        font-size: clamp(32px, 8vw, 80px);
    }

    .gallery-big-text {
        font-size: clamp(32px, 8vw, 60px);
    }

    .gallery-tall {
        min-height: 350px;
    }
}
