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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #FAF7F2;
    color: #1F1F1F;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Loading Indicator */
#loading-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FAF7F2;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

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

.loading-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1F1F1F;
    margin-bottom: 1rem;
    font-weight: 700;
}

.loading-bar {
    width: 40px;
    height: 4px;
    background: #C97A5F;
    margin: 0 auto;
    border-radius: 2px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.glass-nav {
    background: #FAF7F2;
    border-bottom: 1px solid #E5DCD0;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06), 0 1px 2px -1px rgba(0, 0, 0, 0.04);
    padding: 1rem 0;
}

#header.scrolled {
    background: #FAF7F2;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.desktop-only {
    display: block;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #C97A5F;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-top: 1px solid #E5DCD0;
    box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.12), 0 4px 8px -2px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.mobile-menu.active {
    display: block;
    max-height: 500px;
    opacity: 1;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: #1F1F1F;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid #F0E8DF;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background: #F0E8DF;
    color: #C97A5F;
    padding-left: 2rem;
}

.mobile-nav-cta {
    background: #C97A5F;
    color: white !important;
    font-weight: 700;
    margin: 0.5rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    border-bottom: none !important;
}

.mobile-nav-cta:hover,
.mobile-nav-cta:active {
    background: #B86A4A !important;
    color: white !important;
    padding-left: 1.5rem !important;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F1F1F;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
}

.order-btn-glow {
    background: #C97A5F;
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px -1px rgba(201, 125, 95, 0.2), 0 1px 2px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.order-btn-glow:hover {
    background: #B86A4A;
    box-shadow: 0 4px 12px -2px rgba(201, 125, 95, 0.35), 0 2px 6px -1px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}


/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    padding-bottom: 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #1F1F1F;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-section {
    background-color: #FAF7F2;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #4A4A4A;
    font-weight: 400;
    line-height: 1.625;
    margin-bottom: 2rem;
    max-width: 32rem;
}

.btn-primary {
    display: inline-block;
    padding: 1.125rem 2.25rem;
    background: #C97A5F;
    color: white;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px -1px rgba(201, 125, 95, 0.2), 0 1px 2px -1px rgba(0, 0, 0, 0.06);
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    background: #B86A4A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px -2px rgba(201, 125, 95, 0.35), 0 2px 6px -1px rgba(0, 0, 0, 0.12);
}

.hero-image {
    position: relative;
}

.image-frame {
    position: relative;
}

.image-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1rem;
    z-index: 1;
    pointer-events: none;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 1.5rem;
    z-index: -1;
}

.image-frame img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #E5DCD0;
    position: relative;
    z-index: 0;
}

.handmade-badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background: #C97A5F;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    box-shadow: 0 2px 4px -1px rgba(201, 125, 95, 0.2), 0 1px 2px -1px rgba(0, 0, 0, 0.06);
    transform: rotate(3deg);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 0.875rem;
    animation: float 3s ease-in-out infinite;
    border: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 2;
}

@keyframes float {
    0%, 100% {
        transform: rotate(3deg) translateY(0);
    }
    50% {
        transform: rotate(-3deg) translateY(-10px);
    }
}

/* Section Separator */
.section-separator {
    height: 1px;
    background: #E8DDD4;
    margin: 0 auto;
    max-width: 300px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Value Section */
.value-section {
    padding: 8rem 0;
    background-color: #F0E8DF;
    position: relative;
}

.value-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #E5DCD0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #1F1F1F;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.01em;
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .value-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


.icon-wrapper {
    display: inline-flex;
    padding: 1rem;
    background: rgba(201, 122, 95, 0.15);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.icon-wrapper svg {
    color: #C97A5F;
}

.value-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #F0E8DF;
    box-shadow: 0 3px 8px -2px rgba(0, 0, 0, 0.1), 0 1px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px -3px rgba(0, 0, 0, 0.15), 0 3px 8px -2px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F1F1F;
    margin-bottom: 1rem;
}

.value-card p {
    color: #4A4A4A;
    line-height: 1.625;
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background-color: #FAF7F2;
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #E8DDD4;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    grid-auto-rows: 400px;
}

.bento-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    border: 1px solid #E5DCD0;
    box-shadow: 0 3px 8px -2px rgba(0, 0, 0, 0.1), 0 1px 4px -1px rgba(0, 0, 0, 0.06);
    background: white;
    transition: all 0.3s ease;
}

.bento-item:hover {
    box-shadow: 0 6px 16px -3px rgba(0, 0, 0, 0.15), 0 3px 8px -2px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.bento-large {
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 2;
}


.bento-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.bento-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-item:hover .bento-image-wrapper img {
    transform: scale(1.05);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.bento-item:hover .bento-overlay {
    opacity: 1;
}

.bento-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.quick-order-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #C97A5F;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(10px);
}

.bento-item:hover .quick-order-btn {
    transform: translateY(0);
}

.quick-order-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.bento-title {
    padding: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1F1F1F;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background-color: #FAF7F2;
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #E8DDD4;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 56rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .process-timeline {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    .process-arrow {
        transform: rotate(0deg) !important;
    }
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.process-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #C97A5F;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 6px -2px rgba(201, 122, 95, 0.3), 0 1px 3px -1px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.process-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F1F1F;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: #4A4A4A;
}

.process-arrow {
    font-size: 2rem;
    color: #C97A5F;
    text-align: center;
    transform: rotate(90deg);
    font-weight: 300;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background-color: #FAF7F2;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #E8DDD4;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #E5DCD0;
    box-shadow: 0 3px 8px -2px rgba(0, 0, 0, 0.1), 0 1px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px -3px rgba(0, 0, 0, 0.15), 0 3px 8px -2px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: #C97A5F;
    stroke: #C97A5F;
}

.quote-icon {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: rgba(201, 122, 95, 0.15);
    line-height: 1;
    font-weight: 700;
    z-index: 0;
}

.testimonial-card p {
    color: #1F1F1F;
    font-style: italic;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    line-height: 1.625;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    color: #1F1F1F;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Order Form Section */
.order-section {
    padding: 6rem 0;
    background-color: #F0E8DF;
    position: relative;
}

.order-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #E8DDD4;
}

.form-card {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid #E5DCD0;
    box-shadow: 0 4px 12px -3px rgba(0, 0, 0, 0.12), 0 2px 6px -2px rgba(0, 0, 0, 0.08);
    max-width: 42rem;
    margin: 0 auto;
}

.form-card-simple {
    max-width: 22rem;
    padding: 2rem;
}

.form-card-simple .form-group {
    margin-bottom: 1.25rem;
}

.form-card-simple .btn-submit {
    margin-top: 0.25rem;
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1F1F1F;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1.125rem;
    border-radius: 0.75rem;
    border: 1px solid #E5DCD0;
    background: #FFFFFF;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: #1F1F1F;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-group textarea {
    min-height: 100px;
    line-height: 1.5;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: #8A8A8A;
    opacity: 0.8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C97A5F;
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(201, 122, 95, 0.15);
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: #4A4A4A;
    font-size: 0.875rem;
    line-height: 1.4;
}

.price-display {
    background: #F0E8DF;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    border: 2px solid #C97A5F;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}

.price-label {
    font-weight: 600;
    color: #1F1F1F;
    font-size: 1rem;
}

.price-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #C97A5F;
}

.error-message {
    display: block;
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    min-height: 20px;
}

.btn-submit {
    width: 100%;
    padding: 1.125rem 2rem;
    background: #C97A5F;
    color: white;
    border-radius: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 3px 6px -2px rgba(201, 122, 95, 0.3), 0 1px 3px -1px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.02em;
}

.btn-submit:hover {
    background: #B8684F;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px -3px rgba(184, 104, 79, 0.35), 0 3px 6px -2px rgba(0, 0, 0, 0.12);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
.footer {
    padding: 3rem 0;
    background-color: #FAF7F2;
    border-top: 1px solid #E5DCD0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #E8DDD4;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-col h3,
.footer-col h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1F1F1F;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #1F1F1F;
    font-weight: 700;
}

.footer-col p {
    font-size: 0.875rem;
    color: #4A4A4A;
    opacity: 0.95;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #4A4A4A;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #C97A5F;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #E5DCD0;
    color: #4A4A4A;
    font-size: 0.875rem;
    opacity: 0.85;
}

/* Floating Button */
.fab-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 64px;
    height: 64px;
    background: #C97A5F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 3px 6px -2px rgba(201, 122, 95, 0.3), 0 1px 3px -1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.fab-button:hover {
    background: #B8684F;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 6px 12px -3px rgba(184, 104, 79, 0.35), 0 3px 6px -2px rgba(0, 0, 0, 0.12);
}

.fab-button svg {
    width: 24px;
    height: 24px;
}

/* Reveal Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-up.delay-200 {
    transition-delay: 0.2s;
}

.reveal-up.delay-400 {
    transition-delay: 0.4s;
}

/* Success/Error Messages */
.success-message,
.error-message-popup {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 1.25rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    z-index: 10000;
    max-width: 90%;
    text-align: center;
    font-weight: 600;
    animation: slideDown 0.3s ease-out;
}

.success-message {
    background: #4caf50;
    color: white;
}

.error-message-popup {
    background: #d32f2f;
    color: white;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
}

/* Responsive - Mobile First Approach */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Header Mobile */
    .glass-nav {
        padding: 0.75rem 0;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .logo-icon {
        width: 24px;
        height: 24px;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .order-btn-glow {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    /* Hero Mobile */
    .hero-section {
        padding-top: 5rem;
        padding-bottom: 3rem;
        min-height: auto;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-primary {
        padding: 1rem 1.75rem;
        font-size: 0.9375rem;
        width: 100%;
        text-align: center;
    }
    
    .image-frame img {
        height: 350px;
        border-radius: 0.75rem;
    }
    
    .handmade-badge {
        top: -0.5rem;
        right: -0.5rem;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    /* Sections Mobile */
    .value-section,
    .gallery-section,
    .process-section,
    .testimonials-section,
    .order-section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
    }
    
    /* Value Cards Mobile */
    .value-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .value-card h3 {
        font-size: 1.25rem;
    }
    
    .icon-wrapper {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .icon-wrapper svg {
        width: 40px;
        height: 40px;
    }
    
    /* Gallery Mobile */
    .bento-grid {
        grid-template-columns: 1fr !important;
        grid-auto-rows: auto !important;
        gap: 1.25rem;
    }
    
    .bento-item {
        border-radius: 16px;
        grid-row: span 1 !important;
        grid-column: span 1 !important;
        aspect-ratio: 3 / 4;
        min-height: 0;
    }
    
    .bento-large,
    .bento-wide {
        grid-row: span 1 !important;
        grid-column: span 1 !important;
    }
    
    .bento-image-wrapper {
        height: 100%;
        border-radius: 16px;
    }
    
    .bento-image-wrapper img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    
    .bento-title {
        font-size: 1.125rem;
        padding: 0.75rem;
        margin-top: 0.5rem;
    }
    
    .bento-price {
        font-size: 1.25rem;
    }
    
    .quick-order-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .bento-overlay {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    /* Process Mobile */
    .process-timeline {
        gap: 2rem;
    }
    
    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .process-step h3 {
        font-size: 1.25rem;
    }
    
    .process-step p {
        font-size: 0.9375rem;
    }
    
    /* Testimonials Mobile */
    .testimonials-grid {
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-card p {
        font-size: 1rem;
    }
    
    .quote-icon {
        font-size: 4rem;
        top: 0.5rem;
        left: 1rem;
    }
    
    .testimonial-stars svg {
        width: 16px;
        height: 16px;
    }
    
    /* Form Mobile */
    .form-card {
        padding: 2rem 1.25rem;
        border-radius: 20px;
        margin: 0 0.5rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }
    
    .btn-submit {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 2.5rem 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-col {
        margin-bottom: 1.5rem;
    }
    
    /* FAB Mobile */
    .fab-button {
        width: 56px;
        height: 56px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .fab-button svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.875rem;
    }
    
    /* Extra Small Mobile */
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-content p {
        font-size: 0.9375rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .value-section,
    .gallery-section,
    .process-section,
    .testimonials-section,
    .order-section {
        padding: 3rem 0;
    }
    
    .value-card {
        padding: 1.25rem;
    }
    
    .bento-grid {
        grid-auto-rows: 280px;
    }
    
    .form-card {
        padding: 1.75rem 1rem;
    }
    
    .logo {
        font-size: 1.125rem;
        gap: 0.375rem;
    }
    
    .logo-icon {
        width: 22px;
        height: 22px;
    }
    
    .order-btn-glow {
        padding: 0.625rem 1.25rem;
        font-size: 0.8125rem;
    }
    
    .image-frame img {
        height: 300px;
    }
    
    .handmade-badge {
        padding: 0.5rem 0.875rem;
        font-size: 0.6875rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn-primary,
    .order-btn-glow,
    .btn-submit,
    .quick-order-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .bento-item {
        cursor: pointer;
    }
    
    .value-card:hover,
    .testimonial-card:hover,
    .bento-item:hover {
        transform: none;
    }
}

/* Focus States */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid #C97A5F;
    outline-offset: 2px;
}

/* Micro Accents - Hearts and Leaves */
.accent-heart,
.accent-leaf {
    display: inline-block;
    color: #C97A5F;
    margin: 0 0.25rem;
    font-size: 0.875em;
    vertical-align: middle;
    animation: pulse-accent 2s ease-in-out infinite;
}

.accent-heart::before {
    content: '♥';
}

.accent-leaf::before {
    content: '🍃';
}

/* Hero accent hearts */
.hero-content h1 .accent-heart {
    font-size: 0.6em;
    vertical-align: super;
}

@keyframes pulse-accent {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}
