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

:root {
    --raw-linen: #F3EFE7;
    --natural-clay: #E6D9C8;
    --soft-taupe: #C7B8A3;
    --warm-walnut: #9C8571;
    --aged-wood: #6A553D;
    --deep-earth: #3F2E1E;
    
    --dusty-peach: #DFA78B;
    --soft-sage: #A3CBB9;
    --faded-rose: #EAC7D4;
    
    --font-heading: 'Alegreya', serif;
    --font-body: 'Karla', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--deep-earth);
    background-color: var(--raw-linen);
    background-image: 
        url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="linen" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><rect width="100" height="100" fill="%23F3EFE7"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="%23E6D9C8" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23linen)"/></svg>');
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--deep-earth);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1.5rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
}

a {
    color: var(--aged-wood);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--deep-earth);
    text-decoration: underline;
}

header {
    background: rgba(243, 239, 231, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(63, 46, 30, 0.1);
    border-bottom: 2px solid var(--natural-clay);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
}

.logo {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--deep-earth);
    letter-spacing: 0.05em;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
    display: inline-block;
}

.logo:hover {
    color: var(--aged-wood);
    text-decoration: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--aged-wood);
    color: var(--deep-earth);
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: var(--aged-wood);
    color: var(--raw-linen);
}

nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
}

nav a {
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    text-decoration: none;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--aged-wood);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 80%;
}

main {
    min-height: calc(100vh - 200px);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--raw-linen) 0%, var(--natural-clay) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(63, 46, 30, 0.1) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(63, 46, 30, 0.2);
}

.hero p {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--aged-wood);
    margin-bottom: 2.5rem;
}

.btn-wax-stamp {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--aged-wood);
    color: var(--raw-linen);
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(63, 46, 30, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    text-decoration: none;
}

.btn-wax-stamp::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-wax-stamp:hover::before {
    width: 300px;
    height: 300px;
}

.btn-wax-stamp:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(63, 46, 30, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-wax-stamp:active {
    transform: translateY(0);
}

.organic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.organic-card {
    background: var(--raw-linen);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 
        0 8px 30px rgba(63, 46, 30, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid var(--natural-clay);
}

.organic-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(223, 167, 139, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.organic-card:hover::before {
    opacity: 1;
}

.organic-card:hover {
    transform: translateY(-5px) rotate(0.5deg);
    box-shadow: 
        0 12px 40px rgba(63, 46, 30, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.organic-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    filter: brightness(0.95) contrast(1.05);
}

.organic-card h3 {
    margin-bottom: 1rem;
    color: var(--deep-earth);
}

.stitched-edge {
    position: relative;
    padding: 2rem;
    background: var(--raw-linen);
    border: 2px dashed var(--warm-walnut);
    border-radius: 10px;
}

.stitched-edge::before,
.stitched-edge::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--raw-linen);
    border: 2px solid var(--warm-walnut);
}

.stitched-edge::before {
    top: -8px;
    left: 20px;
}

.stitched-edge::after {
    bottom: -8px;
    right: 20px;
}

.handmade-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 3rem 0;
}

.mosaic-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(63, 46, 30, 0.2);
    transition: all 0.5s ease;
    background: var(--natural-clay);
}

.mosaic-item:nth-child(odd) {
    transform: rotate(-1deg);
}

.mosaic-item:nth-child(even) {
    transform: rotate(1deg);
}

.mosaic-item:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 10;
    box-shadow: 0 15px 40px rgba(63, 46, 30, 0.3);
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(10%) brightness(0.9);
}

.mosaic-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(63, 46, 30, 0.9), transparent);
    padding: 2rem;
    color: var(--raw-linen);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.mosaic-item:hover .mosaic-item-overlay {
    transform: translateY(0);
}

.split-screen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 4rem 0;
    align-items: center;
}

.split-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(63, 46, 30, 0.2);
    filter: brightness(0.95);
}

.split-screen-content {
    padding: 2rem;
}

.hand-drawn-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.hand-drawn-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--dusty-peach);
    border-radius: 2px;
    animation: drawLine 1s ease-out;
}

@keyframes drawLine {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    padding: 3rem 0;
}

.product-card {
    background: var(--raw-linen);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(63, 46, 30, 0.15),
        inset 0 0 0 1px var(--natural-clay);
    transition: all 0.4s ease;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: var(--soft-sage);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.product-card:hover::before {
    opacity: 0.3;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 15px 40px rgba(63, 46, 30, 0.25),
        inset 0 0 0 1px var(--warm-walnut);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: brightness(0.92) contrast(1.08);
}

.product-card-content {
    padding: 1.5rem;
}

.product-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.product-card .price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--aged-wood);
    font-weight: 600;
    margin-bottom: 1rem;
}

.scrapbook-section {
    background: var(--natural-clay);
    padding: 4rem 2rem;
    border-radius: 30px;
    margin: 3rem 0;
    position: relative;
    box-shadow: 
        inset 0 2px 10px rgba(63, 46, 30, 0.1),
        0 10px 30px rgba(63, 46, 30, 0.15);
}

.scrapbook-section::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, var(--dusty-peach), var(--soft-sage), var(--faded-rose));
    border-radius: 30px;
    z-index: -1;
    opacity: 0.1;
}

.portrait-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    padding: 3rem 0;
}

.wooden-frame {
    position: relative;
    padding: 1.5rem;
    background: var(--aged-wood);
    border-radius: 10px;
    box-shadow: 
        0 10px 30px rgba(63, 46, 30, 0.3),
        inset 0 0 0 3px var(--warm-walnut),
        inset 0 0 0 6px var(--aged-wood);
    transition: all 0.5s ease;
}

.wooden-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 10px;
    background: var(--aged-wood);
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(63, 46, 30, 0.3);
}

.wooden-frame:hover {
    transform: scale(1.05);
    box-shadow: 
        0 15px 40px rgba(63, 46, 30, 0.4),
        inset 0 0 0 3px var(--warm-walnut),
        inset 0 0 0 6px var(--aged-wood),
        0 0 30px rgba(223, 167, 139, 0.3);
}

.wooden-frame img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
    filter: sepia(15%) brightness(0.95);
}

.contact-form-wrapper {
    background: var(--raw-linen);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(63, 46, 30, 0.15),
        inset 0 0 0 2px var(--natural-clay);
    position: relative;
    max-width: 700px;
    margin: 3rem auto;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background: var(--dusty-peach);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(20px);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--deep-earth);
    font-family: var(--font-heading);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--natural-clay);
    border-radius: 10px;
    background: var(--raw-linen);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--deep-earth);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--aged-wood);
    box-shadow: 0 0 0 3px rgba(106, 85, 61, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.95rem;
    margin-bottom: 0;
}

footer {
    background: var(--deep-earth);
    color: var(--raw-linen);
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--raw-linen);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--natural-clay);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--raw-linen);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--aged-wood);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--raw-linen);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--warm-walnut);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(243, 239, 231, 0.3);
}

.copyright {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(243, 239, 231, 0.2);
    font-size: 0.9rem;
    color: var(--natural-clay);
}

.error-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
}

.broken-heart {
    font-size: 8rem;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 30px rgba(63, 46, 30, 0.3));
    animation: gentleWobble 3s ease-in-out infinite;
}

@keyframes gentleWobble {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-2deg);
    }
    75% {
        transform: rotate(2deg);
    }
}

.thank-you-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}

.envelope {
    background: var(--raw-linen);
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(63, 46, 30, 0.2);
    max-width: 600px;
    text-align: center;
    position: relative;
    border: 2px solid var(--natural-clay);
}

.envelope::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-top: 80px solid var(--natural-clay);
    z-index: -1;
    animation: openEnvelope 1s ease-out 0.5s forwards;
}

@keyframes openEnvelope {
    to {
        border-top-width: 0;
        top: -90px;
    }
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
    justify-content: center;
}

.filter-tag {
    padding: 0.75rem 1.5rem;
    background: var(--raw-linen);
    border: 2px solid var(--warm-walnut);
    border-radius: 25px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    color: var(--deep-earth);
}

.filter-tag::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--warm-walnut);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.filter-tag:hover::before {
    opacity: 0.3;
}

.filter-tag:hover,
.filter-tag.active {
    background: var(--warm-walnut);
    color: var(--raw-linen);
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: nowrap;
        padding: 0;
    }
    
    .logo {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
        padding: 0.5rem 0;
    }
    
    .menu-toggle {
        display: block !important;
        order: 3;
    }
    
    nav {
        order: 2;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(243, 239, 231, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(63, 46, 30, 0.15);
        z-index: 999;
    }
    
    nav.active {
        max-height: 500px;
        padding: 1rem 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0 2rem;
    }
    
    nav ul li {
        width: 100%;
        border-bottom: 1px solid var(--natural-clay);
    }
    
    nav a {
        display: block;
        padding: 1rem 0;
        width: 100%;
    }
    
    .split-screen {
        grid-template-columns: 1fr;
    }
    
    .organic-grid,
    .handmade-mosaic,
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 1rem;
    }
    
    .hero {
        min-height: 60vh;
        padding: 2rem 1rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    header {
        padding: 1rem 2rem;
    }
}

@media (max-width: 320px) {
    header {
        padding: 0.75rem 1rem;
    }
    
    .header-container {
        gap: 0.75rem;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .menu-toggle {
        font-size: 1.25rem;
        padding: 0.4rem 0.75rem;
    }
    
    nav ul {
        padding: 0 1rem;
    }
    
    .container {
        padding: 0.75rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .filter-tags {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .btn-wax-stamp {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .broken-heart {
        font-size: 5rem;
    }
}

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.section-padding {
    padding: 4rem 0;
}

.hanging-tag {
    position: relative;
    background: var(--raw-linen);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(63, 46, 30, 0.15);
    margin: 2rem 0;
}

.hanging-tag::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 15px;
    background: var(--warm-walnut);
    border-radius: 8px 8px 0 0;
    box-shadow: 0 2px 5px rgba(63, 46, 30, 0.2);
}

.hanging-tag::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid var(--warm-walnut);
    border-radius: 50%;
}

.irregular-border {
    position: relative;
    padding: 2rem;
    background: var(--raw-linen);
    border: 3px solid var(--aged-wood);
    clip-path: polygon(
        0% 5%, 3% 0%, 7% 2%, 12% 0%, 
        18% 3%, 25% 1%, 32% 4%, 40% 2%, 
        50% 5%, 60% 1%, 70% 3%, 80% 0%, 
        88% 4%, 95% 2%, 100% 5%,
        100% 95%, 98% 100%, 92% 98%, 85% 100%, 
        78% 97%, 70% 99%, 62% 96%, 55% 98%, 
        45% 95%, 35% 99%, 25% 97%, 15% 100%, 
        8% 96%, 2% 98%, 0% 95%
    );
}

.brush-accent {
    position: relative;
}

.brush-accent::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 20px;
    background: var(--dusty-peach);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.3;
    transform: rotate(-15deg);
}

.cotton-shadow {
    box-shadow: 
        0 5px 15px rgba(63, 46, 30, 0.1),
        0 10px 25px rgba(223, 167, 139, 0.15),
        0 15px 35px rgba(163, 203, 185, 0.1);
}

@keyframes handmadeWobble {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-0.5deg) translateX(-2px);
    }
    50% {
        transform: rotate(0.5deg) translateX(2px);
    }
    75% {
        transform: rotate(-0.3deg) translateX(-1px);
    }
}

.handmade-wobble {
    animation: handmadeWobble 8s ease-in-out infinite;
}

@keyframes paperReveal {
    0% {
        opacity: 0;
        transform: translateY(20px) rotateX(10deg);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
        filter: blur(0);
    }
}

.paper-reveal {
    animation: paperReveal 1.2s ease-out;
}

.kraft-paper {
    background: var(--natural-clay);
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(63, 46, 30, 0.03) 2px,
            rgba(63, 46, 30, 0.03) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(63, 46, 30, 0.03) 2px,
            rgba(63, 46, 30, 0.03) 4px
        );
    padding: 2rem;
    border-radius: 5px;
}

.wax-seal-button {
    position: relative;
    display: inline-block;
    padding: 1.5rem 3rem;
    background: var(--aged-wood);
    color: var(--raw-linen);
    border: none;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 
        0 5px 20px rgba(63, 46, 30, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.wax-seal-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transition: width 0.6s, height 0.6s;
}

.wax-seal-button:hover::before {
    width: 300px;
    height: 300px;
}

.wax-seal-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(63, 46, 30, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

@keyframes softBlurFade {
    0% {
        opacity: 0;
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
    }
}

.soft-blur-fade {
    animation: softBlurFade 1s ease-out;
}

.recycled-paper {
    background: var(--raw-linen);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(199, 184, 163, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(156, 133, 113, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(63, 46, 30, 0.02) 2px,
            rgba(63, 46, 30, 0.02) 4px
        );
}

.hand-drawn-arrow {
    position: relative;
    display: inline-block;
    padding-right: 2rem;
}

.hand-drawn-arrow::after {
    content: '→';
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    color: var(--aged-wood);
    animation: arrowWobble 2s ease-in-out infinite;
}

@keyframes arrowWobble {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    50% {
        transform: translateX(5px) rotate(5deg);
    }
}

.ceramic-texture {
    background: var(--natural-clay);
    background-image: 
        radial-gradient(ellipse at top, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(63, 46, 30, 0.1) 0%, transparent 50%);
    box-shadow: 
        inset 0 2px 5px rgba(255, 255, 255, 0.2),
        inset 0 -2px 5px rgba(63, 46, 30, 0.1);
}

body {
    background-image: 
        url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="linen" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><rect width="100" height="100" fill="%23F3EFE7"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="%23E6D9C8" stroke-width="0.5" opacity="0.3"/><circle cx="30" cy="30" r="1" fill="%23C7B8A3" opacity="0.2"/><circle cx="70" cy="70" r="1" fill="%23C7B8A3" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23linen)"/></svg>');
}

