* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #F7F6F1;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 201, 184, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(122, 141, 120, 0.03) 0%, transparent 50%);
    background-attachment: fixed;
    color: #313D37;
    font-family: 'Karla', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(212, 201, 184, 0.03) 2px, rgba(212, 201, 184, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(212, 201, 184, 0.03) 2px, rgba(212, 201, 184, 0.03) 4px);
    pointer-events: none;
    z-index: 1;
}

.artisan-canvas {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.cultivation-header {
    padding: 60px 30px 40px;
    text-align: center;
    border-bottom: 1px solid rgba(122, 141, 120, 0.15);
}

.brand-sigil {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #313D37;
    margin-bottom: 8px;
}

.heritage-column {
    max-width: 880px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 40px 80px;
    flex: 1;
}

.provenance-navigator {
    margin-bottom: 48px;
}

.provenance-navigator details {
    background: rgba(212, 201, 184, 0.25);
    border: 1px solid rgba(122, 141, 120, 0.2);
    border-radius: 2px;
    padding: 18px 24px;
    cursor: pointer;
}

.provenance-navigator summary {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: #7A8D78;
    letter-spacing: 1px;
    list-style: none;
    cursor: pointer;
    user-select: none;
}

.provenance-navigator summary::-webkit-details-marker {
    display: none;
}

.provenance-navigator summary::after {
    content: '+';
    float: right;
    font-size: 28px;
    line-height: 0.8;
    transition: transform 0.3s ease;
}

.provenance-navigator details[open] summary::after {
    transform: rotate(45deg);
}

.provenance-navigator ul {
    list-style: none;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(122, 141, 120, 0.15);
}

.provenance-navigator ul li {
    margin: 10px 0;
}

.provenance-navigator ul li a {
    color: #313D37;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: color 0.25s ease, padding-left 0.25s ease;
    display: inline-block;
}

.provenance-navigator ul li a:hover {
    color: #7A8D78;
    padding-left: 8px;
}

.manuscript-content {
    margin-bottom: 72px;
    background: rgba(255, 255, 255, 0.4);
    padding: 48px;
    border: 1px solid rgba(122, 141, 120, 0.12);
    box-shadow: 0 2px 12px rgba(49, 61, 55, 0.04);
}

.manuscript-content::first-letter {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    float: left;
    margin: 0 12px 0 0;
    color: #7A8D78;
}

.manuscript-content p {
    margin-bottom: 18px;
}

.manuscript-content p:last-child {
    margin-bottom: 0;
}

.terpene-bouquet {
    background: #D4C9B8;
    padding: 56px 48px;
    margin-bottom: 72px;
    border: 1px solid rgba(122, 141, 120, 0.2);
    box-shadow: inset 0 1px 3px rgba(49, 61, 55, 0.08);
}

.essence-lead {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 36px;
    font-weight: 600;
    color: #313D37;
    text-align: center;
    margin-bottom: 42px;
    letter-spacing: 1px;
}

.aromatic-spectrum {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}

.terpene-medallion {
    flex: 1;
    min-width: 160px;
    text-align: center;
}

.terpene-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #7A8D78;
    border-radius: 50%;
    background: #F7F6F1;
}

.terpene-icon svg {
    width: 36px;
    height: 36px;
    fill: #7A8D78;
}

.terpene-identity {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: #313D37;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.aroma-whisper {
    font-size: 14px;
    font-weight: 300;
    color: #313D37;
    line-height: 1.5;
    letter-spacing: 0.2px;
}

.curation-gallery {
    margin-bottom: 72px;
    padding: 40px 0;
}

.assembled-collage {
    position: relative;
    height: 680px;
    max-width: 100%;
}

.collage-piece {
    position: absolute;
    object-fit: cover;
    border: 6px solid #F7F6F1;
    box-shadow: 0 8px 24px rgba(49, 61, 55, 0.15);
    transition: transform 0.4s ease, z-index 0s 0.4s;
}

.collage-piece:hover {
    transform: scale(1.05);
    z-index: 10;
    transition: transform 0.4s ease, z-index 0s 0s;
}

.piece-alpha {
    top: 0;
    left: 10%;
    width: 280px;
    height: 350px;
    z-index: 3;
    transform: rotate(-4deg);
}

.piece-alpha:hover {
    transform: rotate(-4deg) scale(1.05);
}

.piece-beta {
    top: 80px;
    right: 15%;
    width: 240px;
    height: 260px;
    z-index: 5;
    transform: rotate(5deg);
}

.piece-beta:hover {
    transform: rotate(5deg) scale(1.05);
}

.piece-gamma {
    top: 140px;
    left: 25%;
    width: 260px;
    height: 320px;
    z-index: 4;
    transform: rotate(2deg);
}

.piece-gamma:hover {
    transform: rotate(2deg) scale(1.05);
}

.piece-delta {
    bottom: 40px;
    right: 22%;
    width: 220px;
    height: 300px;
    z-index: 2;
    transform: rotate(-3deg);
}

.piece-delta:hover {
    transform: rotate(-3deg) scale(1.05);
}

.piece-epsilon {
    bottom: 80px;
    left: 18%;
    width: 240px;
    height: 230px;
    z-index: 1;
    transform: rotate(7deg);
}

.piece-epsilon:hover {
    transform: rotate(7deg) scale(1.05);
}

.genetic-lineage {
    background: #D4C9B8;
    padding: 56px 48px;
    margin-bottom: 72px;
    border: 1px solid rgba(122, 141, 120, 0.2);
    box-shadow: inset 0 1px 3px rgba(49, 61, 55, 0.08);
}

.heritage-lead {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 36px;
    font-weight: 600;
    color: #313D37;
    text-align: center;
    margin-bottom: 42px;
    letter-spacing: 1px;
}

.lineage-tree {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 32px;
}

.lineage-branch {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.parent-cultivar {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    color: #313D37;
    padding: 18px 32px;
    background: #F7F6F1;
    border: 2px solid #7A8D78;
    letter-spacing: 0.5px;
    text-align: center;
}

.breeding-bond {
    width: 2px;
    height: 60px;
    background: #7A8D78;
}

.lineage-convergence {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 48px;
    font-weight: 400;
    color: #7A8D78;
    margin-top: 80px;
}

.lineage-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 28px;
}

.descendant-arrow {
    font-size: 32px;
    color: #7A8D78;
    margin-bottom: 12px;
}

.heritage-seed {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    color: #313D37;
    padding: 20px 40px;
    background: #F7F6F1;
    border: 3px solid #7A8D78;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(49, 61, 55, 0.12);
}

.breeding-narrative {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #313D37;
    max-width: 640px;
    margin: 0 auto;
    font-weight: 300;
}

.provenance-footer {
    background: #D4C9B8;
    border-top: 1px solid rgba(122, 141, 120, 0.3);
    padding: 48px 40px 36px;
    text-align: center;
}

.contact-inscription {
    font-size: 15px;
    color: #313D37;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}

.contact-inscription a {
    color: #7A8D78;
    text-decoration: none;
    border-bottom: 1px solid rgba(122, 141, 120, 0.4);
    transition: border-color 0.25s ease;
}

.contact-inscription a:hover {
    border-bottom-color: #7A8D78;
}

.studio-signature {
    font-size: 14px;
    color: #313D37;
    opacity: 0.7;
}

.handwritten-mark {
    font-family: 'Caveat', cursive;
    font-size: 19px;
    font-weight: 600;
    color: #7A8D78;
}

@media (max-width: 768px) {
    .heritage-column {
        padding: 40px 24px 60px;
    }

    .brand-sigil {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .manuscript-content {
        padding: 32px 24px;
    }

    .manuscript-content::first-letter {
        font-size: 56px;
        margin-right: 8px;
    }

    .terpene-bouquet,
    .genetic-lineage {
        padding: 40px 28px;
    }

    .essence-lead,
    .heritage-lead {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .aromatic-spectrum {
        flex-direction: column;
        gap: 32px;
    }

    .terpene-medallion {
        min-width: auto;
    }

    .assembled-collage {
        height: 520px;
    }

    .piece-alpha {
        width: 180px;
        height: 225px;
        left: 5%;
    }

    .piece-beta {
        width: 160px;
        height: 180px;
        right: 8%;
    }

    .piece-gamma {
        width: 170px;
        height: 210px;
        left: 15%;
    }

    .piece-delta {
        width: 150px;
        height: 200px;
        right: 12%;
    }

    .piece-epsilon {
        width: 160px;
        height: 150px;
        left: 10%;
    }

    .lineage-tree {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .lineage-branch {
        width: 100%;
        max-width: 280px;
    }

    .lineage-convergence {
        margin-top: 0;
        transform: rotate(90deg);
        margin: 8px 0;
    }

    .parent-cultivar {
        font-size: 20px;
        padding: 14px 24px;
        width: 100%;
    }

    .heritage-seed {
        font-size: 22px;
        padding: 16px 28px;
        text-align: center;
    }

    .breeding-narrative {
        font-size: 15px;
    }
}
