/* gamelicensor.com - Scandinavian Functional Warmth */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    color: #2C2420;
    background: #FDF6EC;
    overflow-x: hidden;
}

.section {
    width: 100%;
    position: relative;
}

.section-heading {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3rem);
    font-optical-sizing: auto;
    color: #2C2420;
    margin-bottom: 1.5rem;
}

.body-text {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2C2420;
    margin-bottom: 1rem;
    max-width: 55ch;
}

/* ========== HERO LANDING ========== */

.hero {
    min-height: 100vh;
    display: flex;
    background: #FDF6EC;
}

.hero-left {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.vertical-name {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #3D5C47;
}

.vertical-name span {
    display: inline-block;
    opacity: 0;
    transition: opacity 200ms ease;
}

.vertical-name span.visible {
    opacity: 1;
}

.hero-tagline {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-optical-sizing: auto;
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: #2C2420;
    text-align: center;
    margin-top: 2rem;
    opacity: 0;
    transition: opacity 500ms ease;
}

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

.hero-right {
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.hero-svg path,
.hero-svg circle {
    transition: stroke-dashoffset 1s ease;
}

@keyframes pulseStroke {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-svg .drawn {
    animation: pulseStroke 6s ease-in-out infinite;
}

/* ========== PHILOSOPHY SECTION ========== */

.philosophy {
    background: #FDF6EC;
    display: flex;
    justify-content: center;
    padding: 120px 2rem;
}

.philosophy-inner {
    max-width: 620px;
}

.philosophy-inner > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 700ms ease-out, transform 700ms ease-out;
}

.philosophy-inner > *.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== PROCESS WATERFALL ========== */

.process {
    min-height: auto;
}

.process-band {
    width: 100%;
    padding: 100px 0;
    display: flex;
    position: relative;
    overflow: hidden;
}

.band-1 { background: #FDF6EC; }
.band-2 { background: #F0D8C8; }
.band-3 { background: #E8E0D4; }

.band-text {
    width: 40%;
    padding-left: 6%;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 700ms ease-out, transform 700ms ease-out;
}

.band-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-label {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #D4943A;
    display: block;
    margin-bottom: 0.75rem;
}

.band-heading {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-optical-sizing: auto;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: #2C2420;
    margin-bottom: 1rem;
}

.band-body {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2C2420;
    max-width: 50ch;
}

.watercolor-wash {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.watercolor-wash.visible {
    opacity: 1;
}

.wash-1 {
    background:
        radial-gradient(ellipse at 30% 40%, rgba(212, 148, 58, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(196, 122, 110, 0.15) 0%, transparent 50%);
}

.wash-2 {
    background:
        radial-gradient(ellipse at 40% 30%, rgba(196, 122, 110, 0.25) 0%, transparent 55%),
        radial-gradient(ellipse at 65% 70%, rgba(92, 61, 94, 0.12) 0%, transparent 50%);
}

.wash-3 {
    background:
        radial-gradient(ellipse at 35% 50%, rgba(92, 61, 94, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 40%, rgba(212, 148, 58, 0.15) 0%, transparent 50%);
}

/* ========== SHOWCASE STRIP ========== */

.showcase {
    padding: 80px 0;
    overflow: hidden;
    background: #FDF6EC;
    min-height: auto;
}

.showcase-scroll {
    display: flex;
    gap: 24px;
    padding: 0 6%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.showcase-scroll::-webkit-scrollbar {
    display: none;
}

.showcase-card {
    min-width: 280px;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #F0D8C8, #E8E0D4);
    scroll-snap-align: start;
    flex-shrink: 0;
    transition: transform 200ms ease;
}

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

.card-overlay {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(212, 148, 58, 0.15);
    border-radius: 12px;
}

.card-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.card-label {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #D4943A;
    margin-bottom: 0.5rem;
}

.card-heading {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: 1.3rem;
    color: #2C2420;
    margin-bottom: 0.5rem;
}

.card-desc {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #5C3D5E;
}

/* ========== CLOSING VISTA ========== */

.closing {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #FDF6EC 0%, #F0D8C8 40%, #C47A6E 100%);
    text-align: center;
    padding: 2rem;
}

.closing-inner {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 700ms ease-out, transform 700ms ease-out;
}

.closing-inner.visible {
    opacity: 1;
    transform: translateY(0);
}

.closing-heading {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-optical-sizing: auto;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: #2C2420;
    margin-bottom: 1.5rem;
}

.closing-contact {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #3D5C47;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-left {
        flex-direction: row;
        padding: 1rem 2rem;
    }

    .vertical-name {
        writing-mode: horizontal-tb;
        transform: none;
    }

    .band-text {
        width: 100%;
        padding: 0 6%;
    }

    .watercolor-wash {
        width: 100%;
        opacity: 0.3;
    }
}
