@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@300;400&family=Source+Sans+3:wght@300;400&display=swap');

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

:root {
    --plaster: #F5F0EA;
    --bisque: #E8DDD0;
    --linen: #D4C8B8;
    --straw: #C4A882;
    --stone: #A89B8C;
    --clay: #8B7B6B;
    --char: #2C2420;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--plaster);
    color: var(--char);
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 300;
    font-size: clamp(0.9rem, 1.3vw, 1.05rem);
    line-height: 2.0;
    overflow-x: hidden;
}

/* ============================================
   PLASTER WALL TEXTURE
   ============================================ */
.plaster-wall {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: var(--plaster);
}

.plaster-wall::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ============================================
   POSITION INDICATOR
   ============================================ */
.position-indicator {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.position-indicator.visible {
    opacity: 0.3;
}

.indicator-text {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--stone);
    transition: opacity 0.3s ease;
}

/* ============================================
   MAIN CONTENT CONTAINER
   ============================================ */
.studio-content {
    position: relative;
    z-index: 10;
    max-width: 100%;
}

/* ============================================
   SECTION BASE
   ============================================ */
.studio-section {
    position: relative;
    padding: 0 2rem;
    margin-bottom: 200px;
}

.studio-section:last-child {
    margin-bottom: 120px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 15%;
    margin-bottom: 200px;
    position: relative;
}

.hero-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 70% 50% at 40% 45%, rgba(196, 168, 130, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hero-title {
    font-family: 'Cormorant', serif;
    font-weight: 300;
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: 0.02em;
    color: var(--char);
    opacity: 0;
}

/* ============================================
   CERAMIC VESSEL COMPANIONS
   ============================================ */
.vessel {
    position: absolute;
    pointer-events: none;
    transition: transform 0.8s ease;
}

.vessel-hero {
    right: 15%;
    top: 45%;
}

.vessel-margin {
    right: 10%;
    top: 30%;
}

/* ============================================
   BOTANICAL ACCENTS
   ============================================ */
.botanical {
    position: absolute;
    pointer-events: none;
}

.botanical-1 {
    right: 18%;
    bottom: 10%;
}

.botanical-2 {
    left: 8%;
    bottom: 5%;
}

.botanical-3 {
    right: 15%;
    top: 15%;
}

/* ============================================
   GLAZING MARKS
   ============================================ */
.glazing-mark {
    margin-left: 15%;
    margin-bottom: 32px;
}

/* ============================================
   CONTENT BLOCKS
   ============================================ */
.content-block {
    position: relative;
    max-width: 560px;
}

.asymmetric-left {
    margin-left: 15%;
}

.asymmetric-right {
    margin-left: 45%;
}

.section-caption {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--stone);
    display: block;
    margin-bottom: 32px;
}

.block-heading {
    font-family: 'Cormorant', serif;
    font-weight: 300;
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: 0.02em;
    color: var(--char);
    margin-bottom: 32px;
}

.block-text {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 300;
    font-size: clamp(0.9rem, 1.3vw, 1.05rem);
    line-height: 2.0;
    color: rgba(44, 36, 32, 0.7);
    margin-bottom: 32px;
}

.block-text:last-of-type {
    margin-bottom: 0;
}

/* ============================================
   FULL-BLEED LIGHT STUDIES
   ============================================ */
.full-bleed-light {
    position: relative;
    width: 100vw;
    height: 80vh;
    margin-left: calc(-50vw + 50%);
    margin-bottom: 200px;
    overflow: hidden;
}

.light-gradient {
    width: 100%;
    height: 100%;
    position: relative;
}

.light-warm {
    background: linear-gradient(180deg,
        var(--plaster) 0%,
        var(--bisque) 30%,
        var(--linen) 50%,
        var(--bisque) 70%,
        var(--plaster) 100%
    );
}

.light-warm::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 30%;
    width: 40%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(196, 168, 130, 0.12) 0%, transparent 70%);
}

.light-radial {
    background: var(--plaster);
}

.light-radial::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 20%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse 80% 70% at 60% 40%,
        rgba(212, 200, 184, 0.4) 0%,
        rgba(232, 221, 208, 0.2) 40%,
        transparent 70%
    );
}

.light-shadow {
    background: linear-gradient(135deg,
        var(--plaster) 0%,
        var(--bisque) 40%,
        rgba(139, 123, 107, 0.08) 60%,
        var(--plaster) 100%
    );
}

.light-shadow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(0deg, rgba(168, 155, 140, 0.06) 0%, transparent 100%);
}

/* ============================================
   FOOTER
   ============================================ */
.studio-footer {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 120px 2rem 80px;
}

.footer-mark {
    font-family: 'Cormorant', serif;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    color: rgba(168, 155, 140, 0.35);
}

/* ============================================
   LINK STYLING
   ============================================ */
a {
    color: var(--clay);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
    padding-bottom: 1px;
}

a:hover {
    border-bottom-color: var(--clay);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .hero-section {
        padding-left: 8%;
    }
    .asymmetric-left {
        margin-left: 8%;
    }
    .asymmetric-right {
        margin-left: 20%;
    }
    .glazing-mark {
        margin-left: 8%;
    }
    .vessel-margin,
    .vessel-hero {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-section {
        padding-left: 2rem;
    }
    .asymmetric-left,
    .asymmetric-right {
        margin-left: 2rem;
        margin-right: 2rem;
    }
    .glazing-mark {
        margin-left: 2rem;
    }
    .studio-section {
        margin-bottom: 120px;
    }
    .full-bleed-light {
        height: 50vh;
        margin-bottom: 120px;
    }
    .botanical {
        display: none;
    }
}
