/*

=========================================================

© PawLightTherapy

Website created for Paw Light Therapy / June 2026 by Stephan Bollinger

All rights reserved.

=========================================================

*/

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

:root {
    --black: #050505;
    --white: #ffffff;
    --warm: #fbf1e6;
    --warm-card: #fffdf9;
    --warm-dark: #29211d;
    --red: #d71920;
    --header-height: 170px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--warm);
    color: var(--warm-dark);
    line-height: 1.5;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--black);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 30px 7vw;
    overflow: hidden;
}

.logo {
    width: 290px;
    max-height: 110px;
    height: auto;
    display: block;
    object-fit: contain;
}

.hero {
    position: relative;
    margin-top: var(--header-height);
    padding: 60px 7vw;
    background: var(--black);
    color: var(--white);
    overflow: hidden;
}

.hero-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: auto;
    opacity: 0.6;
    pointer-events: none;
    user-select: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 20px 0;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.8rem);
    line-height: 0.94;
    letter-spacing: -0.07em;
    font-weight: 800;
    text-transform: lowercase;
    margin-bottom: 28px;
}

.hero p {
    max-width: 720px;
    font-size: clamp(1.25rem, 1.8vw, 1.8rem);
    line-height: 1.35;
    font-weight: 400;
}

.warm-section {
    background: var(--warm);
    padding: 60px 7vw;
}

.feature-box {
    background: var(--warm-card);
    border-radius: 38px;
    padding: 54px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 58px;
    align-items: center;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.07);
}

.feature-text {
    max-width: 500px;
}

.feature-text h3,
.sizes-section h2 {
    text-transform: lowercase;
}

.feature-text h3 {
    font-size: clamp(2.2rem, 3.7vw, 4rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
    margin-bottom: 24px;
}

.feature-text .lead {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 24px;
    font-weight: 500;
}

.feature-text p {
    font-size: 1.18rem;
}

.feature-image {
    min-height: 430px;
    border-radius: 28px;
    overflow: hidden;
    background: #ead2c2;
}

.feature-image img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    display: block;
    object-fit: cover;
}

.sizes-section {
    background: var(--black);
    padding: 90px 7vw 120px;
}

.sizes-section h2 {
    color: var(--white);
    max-width: 900px;
    font-size: clamp(2.5rem, 4.2vw, 4.6rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
    margin-bottom: 44px;
}

.size-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
}

.size-card {
    background: #111111;
    color: var(--white);
    border-radius: 34px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.size-card img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 28px;
    border-radius: 22px;
}

.size-card p {
    color: rgba(255,255,255,0.82);
    font-size: 1.12rem;
    line-height: 1.6;
}

.photo-section {
    background: var(--warm);
    padding: 30px 7vw 60px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.photo-card {

    aspect-ratio: 1 / 1;

    border-radius: 30px;

    overflow: hidden;

    background: var(--warm-card);

    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.07);

}

.photo-card img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

}
.social-section {
    background: var(--warm);
    text-align: center;
    padding: 0 7vw 60px;
}

.social-section p {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.social-section a {
    color: var(--red);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
}

.site-footer {
    background: var(--black);
    color: rgba(255,255,255,0.65);
    text-align: center;
    padding: 50px 20px;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    :root {
        --header-height: 135px;
    }

    .site-header {
        justify-content: center;
        padding: 24px;
    }

    .logo {
        width: 235px;
        max-height: 88px;
    }

    .hero {
        padding: 54px 26px;
    }

    .hero-wave {
        width: 170%;
        left: -35%;
    }

    .hero-content {
        padding: 12px 0;
    }

    .hero h1 {
        font-size: clamp(3rem, 14vw, 5.2rem);
    }

    .hero p {
        font-size: 1.1rem;
    }

    .warm-section {
        padding: 50px 26px;
    }

    .feature-box {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "text text"
            "copy image";
        gap: 20px;
        padding: 24px;
        align-items: start;
    }

    .feature-text {
        display: contents;
    }

    .feature-text h3 {
        grid-area: text;
        font-size: clamp(2.5rem, 8vw, 4.6rem);
        line-height: 0.98;
        letter-spacing: -0.055em;
        margin-bottom: 0;
    }

    .feature-copy {
        grid-area: copy;
    }

    .feature-text .lead {
        font-size: 1rem;
        margin-bottom: 16px;
    }

    .feature-text p {
        font-size: 0.95rem;
    }

    .feature-image {
        grid-area: image;
        min-height: 0;
        aspect-ratio: 1 / 1;
    }

    .feature-image img {
        min-height: 0;
        height: 100%;
    }

    .sizes-section {
        padding: 60px 26px 70px;
    }

    .sizes-section h2 {
        font-size: clamp(2.5rem, 8vw, 4.6rem);
    }

    .size-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .size-card {
        padding: 18px;
    }

    .size-card p {
        font-size: 0.9rem;
    }

    .photo-section {
        padding: 20px 26px 50px;
    }

    .photo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .social-section {
        padding: 0 26px 50px;
    }

    .social-section p {
        font-size: 0.9rem;
    }

    .social-section a {
        font-size: 1rem;
    }
}
