/* ==========================================================================
   license.broker - Dark Academia Watercolor Antiquarian
   ==========================================================================
   Palette (Muted Vintage):
     Charred Walnut (desk bg):    #1c1612
     Aged Vellum (folio bg):      #f0e6d3
     Manuscript Ink (body text):  #2e2420
     Archive Brown (headings):    #4a3728
     Faded Violet (accent 1):    #8b7ea8
     Aged Sepia (accent 2):      #c4a67a
     Deep Claret (accent 3):     #6b2d3e
     Diluted Indigo (wash):      #a8b4c8
     Faded Vermilion (stamps):   #b86b5a
     Candlelight (highlight):    #f5deb3
     Wax Red:                    #8a3a4a

   Fonts:
     Display: Nunito 700/600
     Body:    Nunito Sans 400/600
     Accent:  Caveat 400/500
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: #1c1612;
    color: #2e2420;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.72;
    overflow-x: hidden;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M20.5 3.5c-.3-.3-.8-.2-1.2.2L7.8 15.2c-.2.2-.3.4-.4.7l-1.2 4.2c-.1.3 0 .5.2.7.1.1.3.2.5.2h.2l4.2-1.2c.2-.1.5-.2.7-.4L23.3 7.9c.4-.4.5-.9.2-1.2L20.5 3.5z' fill='%234a3728' opacity='0.9'/%3E%3Cpath d='M6.2 20.1l1.2-4.2L19.3 4.1l3 3L10.4 18.9l-4.2 1.2z' fill='none' stroke='%234a3728' stroke-width='0.5' opacity='0.5'/%3E%3C/svg%3E") 2 22, auto;
}

/* Hide SVG filters */
.svg-filters {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* --- Entry Bloom Animation --- */
.entry-bloom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, rgba(168, 180, 200, 0.35) 0%, rgba(168, 180, 200, 0.15) 30%, transparent 70%);
    transform: scale(0);
    opacity: 1;
    transition: none;
}

.entry-bloom.blooming {
    animation: bloomExpand 1200ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.entry-bloom.fading {
    animation: bloomFade 600ms ease-out forwards;
}

.entry-bloom.hidden {
    display: none;
}

@keyframes bloomExpand {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bloomFade {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* --- Desk Surface --- */
.desk-surface {
    position: relative;
    min-height: 100vh;
    background-color: #1c1612;
    background-image:
        radial-gradient(ellipse at 30% 20%, rgba(139, 126, 168, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(168, 180, 200, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(196, 166, 122, 0.04) 0%, transparent 55%);
    transition: background-color 1.5s ease;
    padding: clamp(2rem, 4vh, 4rem) 0;
}

/* --- Floating Parchment Fragments --- */
.parchment-fragment {
    position: absolute;
    background: #f0e6d3;
    padding: 6px 12px;
    font-family: 'Caveat', cursive;
    font-size: clamp(0.75rem, 1.4vw, 0.95rem);
    color: rgba(46, 36, 32, 0.4);
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
    box-shadow: 1px 2px 6px rgba(28, 22, 18, 0.2);
    animation: float 10s ease-in-out infinite;
}

.fragment-1 {
    top: 15%;
    left: 3%;
    transform: rotate(-3deg);
    width: 70px;
    animation-duration: 9s;
    animation-delay: 0s;
}

.fragment-2 {
    top: 30%;
    right: 4%;
    transform: rotate(5deg);
    width: 65px;
    animation-duration: 11s;
    animation-delay: -2s;
}

.fragment-3 {
    top: 50%;
    left: 2%;
    transform: rotate(2deg);
    width: 80px;
    animation-duration: 8s;
    animation-delay: -4s;
}

.fragment-4 {
    top: 65%;
    right: 3%;
    transform: rotate(-5deg);
    width: 75px;
    animation-duration: 12s;
    animation-delay: -1s;
}

.fragment-5 {
    top: 80%;
    left: 5%;
    transform: rotate(7deg);
    width: 60px;
    animation-duration: 10s;
    animation-delay: -3s;
}

.fragment-6 {
    top: 42%;
    right: 5%;
    transform: rotate(-2deg);
    width: 72px;
    animation-duration: 9.5s;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(var(--base-rotation, 0deg));
    }
    50% {
        transform: translateY(-8px) rotate(var(--base-rotation, 0deg));
    }
}

/* --- Ink Splatters --- */
.ink-splatter {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.splatter-1 {
    top: 20%;
    left: 8%;
    background: rgba(139, 126, 168, 0.2);
    box-shadow:
        4px -3px 0 2px rgba(139, 126, 168, 0.15),
        -3px 5px 0 1px rgba(139, 126, 168, 0.18),
        7px 2px 0 3px rgba(46, 36, 32, 0.12),
        -5px -4px 0 1.5px rgba(139, 126, 168, 0.1);
}

.splatter-2 {
    top: 55%;
    right: 7%;
    background: rgba(46, 36, 32, 0.18);
    box-shadow:
        3px -5px 0 2px rgba(46, 36, 32, 0.12),
        -4px 3px 0 1.5px rgba(139, 126, 168, 0.14),
        6px 4px 0 2.5px rgba(46, 36, 32, 0.1),
        -2px -6px 0 1px rgba(46, 36, 32, 0.16);
}

.splatter-3 {
    top: 78%;
    left: 6%;
    background: rgba(139, 126, 168, 0.15);
    box-shadow:
        5px -2px 0 1.5px rgba(139, 126, 168, 0.12),
        -3px 4px 0 2px rgba(46, 36, 32, 0.14),
        -6px -3px 0 1px rgba(139, 126, 168, 0.1);
}

/* --- The Folio Container --- */
.folio {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    background-color: #f0e6d3;
    padding: clamp(2rem, 5vw, 4rem);
    box-shadow:
        0 8px 40px rgba(28, 22, 18, 0.45),
        0 2px 8px rgba(28, 22, 18, 0.25);
    /* Deckled edge simulation via clip-path */
    clip-path: polygon(
        0% 0.3%, 2% 0%, 4% 0.2%, 6% 0%, 8% 0.15%, 10% 0%, 12% 0.25%, 14% 0%, 16% 0.1%, 18% 0%,
        20% 0.2%, 22% 0%, 24% 0.15%, 26% 0%, 28% 0.3%, 30% 0%, 32% 0.1%, 34% 0%, 36% 0.2%, 38% 0%,
        40% 0.15%, 42% 0%, 44% 0.25%, 46% 0%, 48% 0.1%, 50% 0%, 52% 0.2%, 54% 0%, 56% 0.15%, 58% 0%,
        60% 0.3%, 62% 0%, 64% 0.1%, 66% 0%, 68% 0.2%, 70% 0%, 72% 0.15%, 74% 0%, 76% 0.25%, 78% 0%,
        80% 0.1%, 82% 0%, 84% 0.2%, 86% 0%, 88% 0.15%, 90% 0%, 92% 0.3%, 94% 0%, 96% 0.1%, 98% 0%, 100% 0.2%,
        100% 2%, 99.8% 4%, 100% 6%, 99.85% 8%, 100% 10%, 99.7% 12%, 100% 14%, 99.9% 16%, 100% 18%, 99.8% 20%,
        100% 22%, 99.85% 24%, 100% 26%, 99.7% 28%, 100% 30%, 99.9% 32%, 100% 34%, 99.8% 36%, 100% 38%, 99.85% 40%,
        100% 42%, 99.7% 44%, 100% 46%, 99.9% 48%, 100% 50%, 99.8% 52%, 100% 54%, 99.85% 56%, 100% 58%, 99.7% 60%,
        100% 62%, 99.9% 64%, 100% 66%, 99.8% 68%, 100% 70%, 99.85% 72%, 100% 74%, 99.7% 76%, 100% 78%, 99.9% 80%,
        100% 82%, 99.8% 84%, 100% 86%, 99.85% 88%, 100% 90%, 99.7% 92%, 100% 94%, 99.9% 96%, 100% 98%, 99.8% 100%,
        98% 100%, 96% 99.8%, 94% 100%, 92% 99.85%, 90% 100%, 88% 99.7%, 86% 100%, 84% 99.9%, 82% 100%, 80% 99.8%,
        78% 100%, 76% 99.85%, 74% 100%, 72% 99.7%, 70% 100%, 68% 99.9%, 66% 100%, 64% 99.8%, 62% 100%, 60% 99.85%,
        58% 100%, 56% 99.7%, 54% 100%, 52% 99.9%, 50% 100%, 48% 99.8%, 46% 100%, 44% 99.85%, 42% 100%, 40% 99.7%,
        38% 100%, 36% 99.9%, 34% 100%, 32% 99.8%, 30% 100%, 28% 99.85%, 26% 100%, 24% 99.7%, 22% 100%, 20% 99.9%,
        18% 100%, 16% 99.8%, 14% 100%, 12% 99.85%, 10% 100%, 8% 99.7%, 6% 100%, 4% 99.9%, 2% 100%, 0% 99.8%,
        0% 98%, 0.2% 96%, 0% 94%, 0.15% 92%, 0% 90%, 0.3% 88%, 0% 86%, 0.1% 84%, 0% 82%, 0.2% 80%,
        0% 78%, 0.15% 76%, 0% 74%, 0.3% 72%, 0% 70%, 0.1% 68%, 0% 66%, 0.2% 64%, 0% 62%, 0.15% 60%,
        0% 58%, 0.3% 56%, 0% 54%, 0.1% 52%, 0% 50%, 0.2% 48%, 0% 46%, 0.15% 44%, 0% 42%, 0.3% 40%,
        0% 38%, 0.1% 36%, 0% 34%, 0.2% 32%, 0% 30%, 0.15% 28%, 0% 26%, 0.3% 24%, 0% 22%, 0.1% 20%,
        0% 18%, 0.2% 16%, 0% 14%, 0.15% 12%, 0% 10%, 0.3% 8%, 0% 6%, 0.1% 4%, 0% 2%, 0.2% 0%
    );
    /* Subtle paper texture overlay */
    background-image:
        radial-gradient(ellipse at 25% 15%, rgba(196, 166, 122, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 85%, rgba(139, 126, 168, 0.06) 0%, transparent 45%);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 800ms ease-out, transform 800ms ease-out;
}

.folio.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Dynamic shadow (updated via JS) */
.folio {
    --shadow-x: 0px;
    --shadow-y: 8px;
}

/* --- Folio Sections --- */
.folio-section {
    position: relative;
    padding: clamp(4rem, 8vh, 7rem) 0;
    overflow: hidden;
}

.hero-section {
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* --- Watercolor Washes --- */
.watercolor-wash {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    pointer-events: none;
    z-index: 0;
    filter: url(#watercolor-distort);
    opacity: 0;
    transition: opacity 1s ease;
}

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

.wash-indigo {
    background:
        radial-gradient(ellipse at 30% 20%, rgba(168, 180, 200, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 70%, rgba(168, 180, 200, 0.1) 0%, transparent 55%);
}

.wash-violet {
    background:
        radial-gradient(ellipse at 60% 30%, rgba(139, 126, 168, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 25% 75%, rgba(139, 126, 168, 0.1) 0%, transparent 50%);
}

.wash-sepia {
    background:
        radial-gradient(ellipse at 40% 40%, rgba(196, 166, 122, 0.15) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 20%, rgba(196, 166, 122, 0.1) 0%, transparent 50%);
}

.wash-indigo-light {
    background:
        radial-gradient(ellipse at 55% 35%, rgba(168, 180, 200, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 65%, rgba(139, 126, 168, 0.08) 0%, transparent 50%);
}

.wash-violet-light {
    background:
        radial-gradient(ellipse at 45% 50%, rgba(139, 126, 168, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 30%, rgba(196, 166, 122, 0.08) 0%, transparent 50%);
}

/* --- Typography --- */
.hero-title {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 700;
    color: #4a3728;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 1;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-title .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(8px);
}

.hero-title.animate .letter {
    animation: letterAppear 500ms ease-out forwards;
}

@keyframes letterAppear {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tagline {
    font-family: 'Caveat', cursive;
    font-size: clamp(1rem, 2.2vw, 1.4rem);
    color: #8b7ea8;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 600ms ease-out 400ms, transform 600ms ease-out 400ms;
    position: relative;
    z-index: 1;
}

.hero-section.revealed .hero-tagline {
    opacity: 1;
    transform: translateY(0);
}

.section-heading {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(1.5rem, 3.2vw, 2.4rem);
    font-weight: 600;
    color: #4a3728;
    letter-spacing: 0.04em;
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 1;
    opacity: 0.3;
    transition: opacity 600ms ease;
    background-image: linear-gradient(#8b7ea8, #8b7ea8);
    background-size: 0% 1px;
    background-position: left bottom;
    background-repeat: no-repeat;
    padding-bottom: 6px;
}

.section-heading.animate {
    opacity: 1;
    background-size: 100% 1px;
    transition: opacity 600ms ease, background-size 600ms ease;
}

.body-text {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.72;
    color: #2e2420;
    position: relative;
    z-index: 1;
    margin-bottom: 1.4em;
}

.body-text:last-child {
    margin-bottom: 0;
}

.caveat-text {
    font-family: 'Caveat', cursive;
}

/* --- Section Dividers --- */
.section-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, #8b7ea8, #c4a67a, transparent);
    opacity: 0.6;
    filter: blur(0.5px);
    margin: 0 auto;
    width: 80%;
    position: relative;
}

.section-divider::after {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(to bottom, rgba(28, 22, 18, 0.08), transparent);
    margin-top: 1px;
}

/* --- Wax Seal Bullets --- */
.wax-seal-bullet {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, #8a3a4a, #6b2d3e);
    box-shadow:
        inset 0 2px 4px rgba(255, 220, 200, 0.3),
        inset 0 -2px 4px rgba(40, 10, 10, 0.4),
        0 2px 6px rgba(28, 22, 18, 0.3);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.wax-seal-bullet::after {
    content: 'L';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.65rem;
    color: rgba(255, 220, 200, 0.5);
    letter-spacing: 0;
}

/* --- Margin Annotations --- */
.margin-annotation {
    position: absolute;
    font-size: clamp(0.8rem, 1.6vw, 1.1rem);
    color: rgba(139, 126, 168, 0.35);
    z-index: 1;
    max-width: 140px;
    line-height: 1.3;
    transform: rotate(-2deg);
}

.margin-annotation[data-side="left"] {
    left: -8px;
    top: 50%;
}

.margin-annotation[data-side="right"] {
    right: -8px;
    top: 40%;
    transform: rotate(1.5deg);
}

/* --- Rubber Stamp Overlays --- */
.rubber-stamp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2) rotate(-12deg);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: clamp(4rem, 8vw, 7rem);
    color: #b86b5a;
    opacity: 0;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    border: 4px solid #b86b5a;
    padding: 0.1em 0.3em;
    border-radius: 4px;
    transition: opacity 300ms ease, transform 300ms ease;
}

.rubber-stamp.stamped {
    opacity: 0.08;
    transform: translate(-50%, -50%) scale(1) rotate(-12deg);
}

/* --- Services --- */
.services-list {
    position: relative;
    z-index: 1;
}

.service-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    margin-bottom: 2.2rem;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-content {
    flex: 1;
}

.service-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    color: #4a3728;
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
}

/* --- Process Steps --- */
.process-steps {
    position: relative;
    z-index: 1;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    font-family: 'Caveat', cursive;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 500;
    color: #8b7ea8;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
    line-height: 1.2;
}

.step-content {
    flex: 1;
}

.step-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    color: #4a3728;
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
}

/* --- Contact --- */
.contact-details {
    position: relative;
    z-index: 1;
    margin-top: 1.5rem;
}

.contact-line {
    margin-bottom: 0.8em;
}

.contact-label {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    color: #4a3728;
    letter-spacing: 0.02em;
}

/* --- Footer --- */
.folio-footer {
    padding-top: clamp(3rem, 6vh, 5rem);
    text-align: center;
}

.footer-text {
    font-family: 'Caveat', cursive;
    font-size: clamp(0.9rem, 1.8vw, 1.15rem);
    color: #8b7ea8;
    opacity: 0.7;
    margin-top: 2rem;
}

/* --- Wax Seal Navigation --- */
.wax-seal-nav {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
}

.seal-toggle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: radial-gradient(circle at 40% 35%, #8a3a4a, #6b2d3e);
    box-shadow:
        inset 0 2px 4px rgba(255, 220, 200, 0.3),
        inset 0 -2px 4px rgba(40, 10, 10, 0.4),
        0 4px 16px rgba(28, 22, 18, 0.4);
    cursor: pointer;
    transition: transform 400ms ease-out, box-shadow 400ms ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.seal-toggle:hover {
    transform: rotate(15deg);
    box-shadow:
        inset 0 2px 4px rgba(255, 220, 200, 0.3),
        inset 0 -2px 4px rgba(40, 10, 10, 0.4),
        0 0 20px rgba(107, 45, 62, 0.4),
        0 4px 16px rgba(28, 22, 18, 0.4);
}

.seal-letter {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: rgba(255, 220, 200, 0.6);
    letter-spacing: 0;
    line-height: 1;
    pointer-events: none;
}

.seal-menu {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(28, 22, 18, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transition: width 400ms cubic-bezier(0.34, 1.56, 0.64, 1),
                height 400ms cubic-bezier(0.34, 1.56, 0.64, 1),
                border-radius 400ms cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 300ms ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    overflow: hidden;
}

.seal-menu.open {
    width: 260px;
    height: 280px;
    border-radius: 16px;
    opacity: 1;
    pointer-events: auto;
    padding: 2rem 1.5rem;
    padding-bottom: 3.5rem;
}

.seal-link {
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #f0e6d3;
    text-decoration: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 250ms ease, transform 250ms ease, color 200ms ease;
    white-space: nowrap;
}

.seal-menu.open .seal-link {
    opacity: 1;
    transform: translateY(0);
}

.seal-menu.open .seal-link[data-index="0"] { transition-delay: 60ms; }
.seal-menu.open .seal-link[data-index="1"] { transition-delay: 120ms; }
.seal-menu.open .seal-link[data-index="2"] { transition-delay: 180ms; }
.seal-menu.open .seal-link[data-index="3"] { transition-delay: 240ms; }
.seal-menu.open .seal-link[data-index="4"] { transition-delay: 300ms; }

.seal-link:hover {
    color: #c4a67a;
}

/* --- Responsive --- */
@media (max-width: 960px) {
    .parchment-fragment {
        display: none;
    }

    .ink-splatter {
        display: none;
    }

    .margin-annotation {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        display: block;
        max-width: 100%;
        text-align: center;
        margin-top: 1.5rem;
        transform: rotate(-1deg);
    }

    .folio {
        margin: 0 1rem;
        clip-path: none;
    }
}

@media (max-width: 600px) {
    .folio {
        padding: clamp(1.5rem, 4vw, 2.5rem);
        margin: 0 0.5rem;
    }

    .hero-section {
        min-height: 50vh;
    }

    .rubber-stamp {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .seal-menu.open {
        width: 220px;
        height: 260px;
    }

    .wax-seal-nav {
        bottom: 16px;
        right: 16px;
    }

    .service-item,
    .process-step {
        flex-direction: column;
        gap: 0.8rem;
    }

    .step-number {
        width: auto;
        text-align: left;
    }
}

/* --- Utility --- */
.folio-section > *:not(.watercolor-wash):not(.rubber-stamp) {
    position: relative;
    z-index: 1;
}
