/* ===================================
   aei.st - Pop Art Gallery Experience
   Wine-dark pop art meets vintage darkroom
   Lichtenstein/Warhol-inspired visual vocabulary
   Commissioner typeface, SVG path-draw animations
   =================================== */

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

:root {
    --deep-burgundy: #4A0E1E;
    --near-black-plum: #1C0A12;
    --pop-red: #E63946;
    --mustard-yellow: #FFD700;
    --powder-blue: #A8D8EA;
    --cream-paper: #FFF5E1;
    --charcoal-ink: #1A1A1A;
    --electric-pink: #FF4081;
    --muted-rose: #C97B84;

    --font-main: 'Commissioner', sans-serif;
    --gutter: 6px;
    --outer-margin: 32px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65;
    color: var(--cream-paper);
    background-color: var(--deep-burgundy);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Halftone Dot Pattern (Ben-Day Dots) --- */
.halftone-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, #C97B84 1px, transparent 1px);
    background-size: 6px 6px;
    opacity: 0.08;
    pointer-events: none;
    transition: opacity 400ms ease-out;
    z-index: 2;
}

/* Muted Rose multiply overlay for vintage photography treatment */
.card-image-rose-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--muted-rose);
    mix-blend-mode: multiply;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

/* --- Navigation: Comic Panel Strip --- */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--near-black-plum);
    border-bottom: 3px solid var(--charcoal-ink);
}

.nav-strip {
    display: flex;
    justify-content: center;
    height: 52px;
}

.nav-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    border-right: 3px solid var(--charcoal-ink);
    border-left: none;
    text-decoration: none;
    color: var(--cream-paper);
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 200ms ease-out;
    position: relative;
    overflow: hidden;
}

.nav-cell:first-child {
    border-left: 3px solid var(--charcoal-ink);
}

/* Halftone dot pattern hover animation from left edge */
.nav-cell::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, #C97B84 1px, transparent 1px);
    background-size: 6px 6px;
    opacity: 0.25;
    transition: left 300ms ease-out;
    z-index: 0;
}

.nav-cell:hover::before {
    left: 0;
}

.nav-cell span {
    position: relative;
    z-index: 1;
}

.nav-cell.active {
    background-color: var(--mustard-yellow);
    color: var(--charcoal-ink);
    font-weight: 800;
}

.nav-cell:hover {
    color: var(--mustard-yellow);
}

.nav-cell.active:hover {
    color: var(--charcoal-ink);
}

/* --- Hero Section: Giant Comic Splash Page --- */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: var(--near-black-plum);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 3x3 Vintage Photography Grid Background */
.hero-photo-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 2px;
    opacity: 0.35;
}

.hero-photo {
    position: relative;
    width: 100%;
    height: 100%;
    filter: sepia(20%) contrast(1.1) saturate(0.85);
}

.hero-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--muted-rose);
    mix-blend-mode: multiply;
    opacity: 0.15;
}

/* Diagonal Title Container */
.hero-title-container {
    position: relative;
    z-index: 10;
    text-align: center;
    transform: rotate(-8deg);
}

.hero-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 200%;
    z-index: 1;
}

.hero-frame-path {
    stroke-dasharray: 2540;
    stroke-dashoffset: 2540;
    will-change: stroke-dashoffset;
}

.hero-frame-accent-1,
.hero-frame-accent-2 {
    stroke-dasharray: 450;
    stroke-dashoffset: 450;
    will-change: stroke-dashoffset;
}

.hero-title {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: clamp(100px, 20vw, 260px);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--cream-paper);
    position: relative;
    z-index: 2;
    line-height: 0.9;
    text-shadow: 6px 6px 0 var(--pop-red), 12px 12px 0 var(--charcoal-ink);
}

.hero-tagline {
    font-family: var(--font-main);
    font-weight: 300;
    font-size: clamp(12px, 1.8vw, 20px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--powder-blue);
    position: relative;
    z-index: 2;
    margin-top: 16px;
    opacity: 0;
    transition: opacity 800ms ease-out 2.2s;
}

.hero-tagline.visible {
    opacity: 1;
}

/* Geometric Decorations */
.hero-geometric {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.hero-circle-large {
    position: absolute;
    top: -10%;
    right: -8%;
    width: 350px;
    height: 350px;
}

.hero-circle-small {
    position: absolute;
    bottom: 5%;
    right: 15%;
    width: 180px;
    height: 180px;
}

.hero-triangle {
    position: absolute;
    bottom: 12%;
    left: 5%;
    width: 150px;
    height: 150px;
    transform: rotate(15deg);
}

.hero-triangle-2 {
    position: absolute;
    top: 15%;
    left: 8%;
    width: 100px;
    height: 100px;
    transform: rotate(-10deg);
    opacity: 0.5;
}

.hero-star-deco {
    position: absolute;
    top: 20%;
    right: 20%;
    width: 80px;
    height: 80px;
    animation: slowRotate 20s linear infinite;
}

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

.hero-stripe-block {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 16px;
    background: repeating-linear-gradient(
        45deg,
        var(--deep-burgundy),
        var(--deep-burgundy) 8px,
        var(--near-black-plum) 8px,
        var(--near-black-plum) 16px
    );
    opacity: 0.5;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    animation: bobUpDown 2s ease-in-out infinite;
}

@keyframes bobUpDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-arrow {
    opacity: 0.7;
}

.scroll-arrow-2 {
    opacity: 0.4;
}

/* --- Gallery Section --- */
.gallery-section {
    padding: var(--outer-margin);
    padding-top: 80px;
    background-color: var(--deep-burgundy);
    position: relative;
}

/* Background halftone dots at 5% for gallery */
.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, #C97B84 1px, transparent 1px);
    background-size: 6px 6px;
    opacity: 0.05;
    pointer-events: none;
}

.section-header {
    text-align: left;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: clamp(36px, 5vw, 72px);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--cream-paper);
    margin-bottom: 12px;
}

/* Diagonal stripe divider: 45-degree alternating burgundy/plum */
.diagonal-stripe-divider {
    width: 200px;
    height: 12px;
    background: repeating-linear-gradient(
        45deg,
        var(--pop-red),
        var(--pop-red) 8px,
        var(--near-black-plum) 8px,
        var(--near-black-plum) 16px
    );
}

/* --- Card Grid: Comic Panel Layout --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--gutter);
    position: relative;
    z-index: 1;
}

/* --- Cards: Base --- */
.card {
    position: relative;
    background-color: var(--cream-paper);
    overflow: hidden;
    cursor: pointer;
    transition: transform 200ms ease-out, box-shadow 200ms ease-out;
    opacity: 0;
}

.card.visible {
    opacity: 1;
}

/* Card Hover: comic-style hard drop shadow, lift */
.card:hover {
    transform: translateY(-4px);
    box-shadow: 6px 6px 0 var(--charcoal-ink);
    z-index: 10;
}

/* Hover: halftone dots become more visible (8% -> 16%) */
.card:hover .halftone-overlay {
    opacity: 0.16;
}

/* Hover: caption bar turns mustard yellow */
.card:hover .card-caption {
    background-color: var(--mustard-yellow);
    color: var(--charcoal-ink);
}

/* Hover: star appears at top-right */
.card:hover .card-hover-star {
    transform: scale(1);
    opacity: 1;
}

/* Hover: image develops from sepia to full color */
.card:hover .card-image {
    filter: sepia(0%) contrast(1.2) saturate(1.3);
}

/* Hover: geometric deco pulses */
.card:hover .card-geometric-deco {
    opacity: 0.6;
    transform: scale(1.1);
}

/* SVG Border (path-draw animation) */
.card-border-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.card-border-path {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    will-change: stroke-dashoffset;
    vector-effect: non-scaling-stroke;
    stroke-width: 3;
}

/* --- Card Variants --- */

/* Standard Card (1x1) */
.card-standard {
    aspect-ratio: 1 / 1;
}

/* Wide Card (2x1) */
.card-wide {
    grid-column: span 2;
}

/* Tall Card (1x2) */
.card-tall {
    grid-row: span 2;
}

/* Hero Card (2x2) */
.card-hero {
    grid-column: span 2;
    grid-row: span 2;
}

/* --- Card Imagery: Vintage Photo Treatment --- */
.card-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    filter: sepia(20%) contrast(1.1) saturate(0.85);
    transition: filter 400ms ease-out;
}

/* --- Card Caption Bar --- */
.card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background-color: var(--cream-paper);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 200ms ease-out, color 200ms ease-out;
    z-index: 3;
}

.caption-label {
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--charcoal-ink);
}

.caption-date {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted-rose);
}

.card:hover .caption-label,
.card:hover .caption-date {
    color: var(--charcoal-ink);
}

/* --- Card Hover Star (16px, scale-in) --- */
.card-hover-star {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 6;
    transform: scale(0);
    opacity: 0;
    transition: transform 200ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 150ms ease-out;
}

/* --- Card Geometric Decoration --- */
.card-geometric-deco {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 4;
    opacity: 0.15;
    transition: opacity 300ms ease-out, transform 300ms ease-out;
    pointer-events: none;
}

.card-geometric-deco-bottom {
    top: auto;
    left: auto;
    bottom: 10px;
    right: 10px;
}

/* --- Wide Card Inner Layout --- */
.card-wide-inner {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 280px;
}

.card-wide-image {
    width: 50%;
    flex-shrink: 0;
}

.card-wide-text {
    width: 50%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--pop-red);
}

.card-wide-text-blue {
    background-color: var(--powder-blue);
}

.card-wide-text-blue h3,
.card-wide-text-blue p {
    color: var(--charcoal-ink);
}

.card-wide-text h3 {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: clamp(24px, 3vw, 40px);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--cream-paper);
    margin-bottom: 12px;
    line-height: 1.1;
    transition: font-weight 300ms ease-out;
}

.card-wide-text p {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.65;
    color: var(--cream-paper);
    opacity: 0.9;
}

/* --- Tall Card Inner Layout --- */
.card-tall-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--near-black-plum);
    overflow: hidden;
}

.tall-bg-shape {
    position: absolute;
    width: 80%;
    height: auto;
    opacity: 0.7;
}

.tall-word {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: clamp(72px, 10vw, 144px);
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--cream-paper);
    position: relative;
    z-index: 2;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 0.05em;
}

/* --- Speech Bubble: Comic Panel Motif --- */
.speech-bubble {
    position: absolute;
    bottom: 20%;
    left: 10%;
    max-width: 280px;
    background-color: var(--cream-paper);
    border: 3px solid var(--charcoal-ink);
    border-radius: 16px;
    padding: 20px 24px;
    z-index: 10;
    transform-origin: bottom left;
    transform: scale(0);
    transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.speech-bubble-right {
    left: auto;
    right: 10%;
    transform-origin: bottom right;
}

.speech-bubble.visible {
    transform: scale(1);
}

.speech-bubble p {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 15px;
    line-height: 1.5;
    color: var(--charcoal-ink);
    clip-path: inset(0 100% 0 0);
    transition: clip-path 600ms ease-out 300ms;
}

.speech-bubble.visible p {
    clip-path: inset(0 0% 0 0);
}

/* Speech tail pointing down-left */
.speech-tail {
    position: absolute;
    bottom: -16px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 16px solid var(--charcoal-ink);
}

.speech-tail::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: -9px;
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 13px solid var(--cream-paper);
}

/* Speech tail pointing down-right */
.speech-tail-right {
    left: auto;
    right: 30px;
}

.speech-tail-right::after {
    left: auto;
    right: -9px;
}

/* --- Statement Section: Full-Width Wall --- */
.statement-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--near-black-plum);
    overflow: hidden;
}

.statement-section-alt {
    background-color: var(--deep-burgundy);
}

/* Ben-Day dot background for statement sections */
.statement-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, #C97B84 1px, transparent 1px);
    background-size: 6px 6px;
    opacity: 0.04;
    pointer-events: none;
}

.statement-bg-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    max-width: 600px;
    max-height: 600px;
    pointer-events: none;
}

.statement-circle-svg,
.statement-triangle-svg {
    width: 100%;
    height: 100%;
}

.statement-text-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 900px;
}

.statement-svg-text {
    width: 100%;
    height: auto;
    overflow: visible;
}

.statement-draw-text {
    font-family: 'Commissioner', sans-serif;
    font-weight: 900;
    font-size: 180px;
    fill: none;
    stroke: var(--cream-paper);
    stroke-width: 2;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    will-change: stroke-dashoffset;
}

/* Decorative stars flanking statement text */
.statement-decorative {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.statement-star-left {
    position: absolute;
    top: 15%;
    left: 8%;
    width: 60px;
    height: 60px;
}

.statement-star-right {
    position: absolute;
    bottom: 15%;
    right: 8%;
    width: 60px;
    height: 60px;
}

.statement-tri-left {
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 50px;
    height: 50px;
    transform: rotate(10deg);
}

.statement-tri-right {
    position: absolute;
    top: 20%;
    right: 5%;
    width: 50px;
    height: 50px;
    transform: rotate(-10deg);
}

/* --- Exit Section: Inverted Mirror of Entry --- */
.exit-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--charcoal-ink);
    overflow: hidden;
}

/* Background halftone dots for exit */
.exit-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, #C97B84 1px, transparent 1px);
    background-size: 6px 6px;
    opacity: 0.08;
    pointer-events: none;
}

.exit-geometric {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
    opacity: 0.15;
}

.exit-star {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.exit-circle {
    position: absolute;
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
}

.exit-triangle-deco {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    transform: rotate(15deg);
}

.exit-star-path {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    will-change: stroke-dashoffset;
}

.exit-content {
    position: relative;
    text-align: center;
    z-index: 5;
}

.exit-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 200%;
    z-index: 1;
}

/* Exit frame starts drawn, un-draws on scroll (reverse path-draw) */
.exit-frame-path {
    stroke-dasharray: 2540;
    stroke-dashoffset: 0;
    will-change: stroke-dashoffset;
    transition: stroke-dashoffset 2s cubic-bezier(0.65, 0, 0.35, 1);
}

.exit-frame-path.undrawn {
    stroke-dashoffset: 2540;
}

.exit-title {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: clamp(60px, 12vw, 160px);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--cream-paper);
    position: relative;
    z-index: 2;
    line-height: 0.9;
    text-shadow: 4px 4px 0 var(--powder-blue);
}

.exit-subtitle {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: clamp(14px, 2vw, 20px);
    color: var(--powder-blue);
    margin-top: 24px;
    position: relative;
    z-index: 2;
    letter-spacing: 0.05em;
}

.exit-credit {
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted-rose);
    margin-top: 16px;
    position: relative;
    z-index: 2;
    opacity: 0.6;
}

.exit-stripe-divider {
    width: 120px;
    height: 8px;
    margin: 24px auto 0;
    background: repeating-linear-gradient(
        45deg,
        var(--charcoal-ink),
        var(--charcoal-ink) 8px,
        var(--deep-burgundy) 8px,
        var(--deep-burgundy) 16px
    );
    position: relative;
    z-index: 2;
}

/* --- Keyframe Animations --- */
@keyframes pathDraw {
    to {
        stroke-dashoffset: 0;
    }
}

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

@keyframes statementDraw {
    to {
        stroke-dashoffset: 0;
        fill: var(--cream-paper);
    }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.55; }
    50% { opacity: 0.7; }
}

.hero-circle-large {
    animation: pulseGlow 4s ease-in-out infinite;
}

/* --- Responsive: Tablet (1024px) --- */
@media (max-width: 1024px) {
    :root {
        --outer-margin: 20px;
    }

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

    .hero-circle-large {
        width: 220px;
        height: 220px;
    }

    .hero-circle-small {
        width: 120px;
        height: 120px;
    }

    .hero-star-deco {
        width: 50px;
        height: 50px;
    }

    .exit-geometric {
        width: 250px;
        height: 250px;
    }

    .statement-star-left,
    .statement-star-right {
        width: 40px;
        height: 40px;
    }

    .statement-tri-left,
    .statement-tri-right {
        width: 35px;
        height: 35px;
    }
}

/* --- Responsive: Mobile (640px) --- */
@media (max-width: 640px) {
    :root {
        --outer-margin: 16px;
    }

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

    .card-wide {
        grid-column: span 1;
    }

    .card-hero {
        grid-column: span 1;
        grid-row: span 1;
    }

    .card-tall {
        grid-row: span 1;
    }

    .card-wide-inner {
        flex-direction: column;
    }

    .card-wide-image {
        width: 100%;
        height: 200px;
    }

    .card-wide-text {
        width: 100%;
    }

    .card-tall-inner {
        min-height: 350px;
    }

    .nav-cell {
        padding: 0 14px;
        font-size: 11px;
    }

    .hero-circle-large {
        width: 150px;
        height: 150px;
    }

    .hero-circle-small {
        width: 80px;
        height: 80px;
    }

    .hero-triangle {
        width: 80px;
        height: 80px;
    }

    .hero-triangle-2 {
        width: 60px;
        height: 60px;
    }

    .hero-star-deco {
        width: 40px;
        height: 40px;
    }

    .speech-bubble {
        max-width: 200px;
        padding: 14px 18px;
        left: 5%;
        bottom: 15%;
    }

    .speech-bubble-right {
        left: auto;
        right: 5%;
    }

    .speech-bubble p {
        font-size: 13px;
    }

    .exit-geometric {
        width: 180px;
        height: 180px;
    }

    .statement-star-left,
    .statement-star-right {
        width: 30px;
        height: 30px;
    }

    .statement-tri-left,
    .statement-tri-right {
        width: 25px;
        height: 25px;
    }

    .statement-section {
        min-height: 60vh;
    }

    .card-geometric-deco {
        display: none;
    }
}
