/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { min-height: 100vh; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }

/* ===== PAGE LOADER ===== */
.page-loader {
    position: fixed; inset: 0; z-index: 9999;
    background: #022c22;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-content { display: flex; gap: 4px; }
.loader-letter {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem; font-weight: 600; color: #d4a853;
    opacity: 0; transform: translateY(10px);
    animation: loaderFade 0.5s ease forwards;
}
.loader-letter:nth-child(1) { animation-delay: 0.05s; }
.loader-letter:nth-child(2) { animation-delay: 0.1s; }
.loader-letter:nth-child(3) { animation-delay: 0.15s; }
.loader-letter:nth-child(4) { animation-delay: 0.2s; }
.loader-letter:nth-child(5) { animation-delay: 0.25s; }
.loader-letter:nth-child(6) { animation-delay: 0.3s; }
.loader-letter:nth-child(7) { animation-delay: 0.35s; }
.loader-letter:nth-child(8) { animation-delay: 0.4s; }
.loader-letter:nth-child(9) { animation-delay: 0.45s; }
.loader-letter:nth-child(10) { animation-delay: 0.5s; }
@keyframes loaderFade {
    to { opacity: 1; transform: translateY(0); }
}

/* ===== HEADER ===== */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(2, 44, 34, 0.85);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 168, 83, 0.1);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
    background: rgba(2, 44, 34, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.header-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 0 2rem; height: 72px;
    display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem; font-weight: 600; color: #d4a853;
    letter-spacing: 0.02em;
}
.nav-desktop { display: flex; align-items: center; gap: 2rem; }
.nav-desktop a {
    font-size: 0.875rem; font-weight: 400; color: rgba(250, 248, 244, 0.7);
    letter-spacing: 0.04em; text-transform: uppercase;
    transition: color 0.25s ease; position: relative;
}
.nav-desktop a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: #d4a853;
    transition: width 0.3s ease;
}
.nav-desktop a:hover { color: #d4a853; }
.nav-desktop a:hover::after { width: 100%; }
.nav-cta {
    padding: 8px 20px !important;
    border: 1px solid rgba(212, 168, 83, 0.4) !important;
    border-radius: 4px;
    transition: background 0.25s ease, border-color 0.25s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: rgba(212, 168, 83, 0.1) !important;
    border-color: #d4a853 !important;
}

/* Mobile menu toggle */
.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.menu-line {
    display: block; width: 22px; height: 1.5px; background: #d4a853;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle[aria-expanded="true"] .menu-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-line:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
    display: none; flex-direction: column;
    background: rgba(2, 44, 34, 0.98);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(212, 168, 83, 0.1);
    padding: 1rem 2rem 2rem;
    gap: 0.25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
    padding: 1rem 0; font-size: 1rem; color: rgba(250, 248, 244, 0.8);
    border-bottom: 1px solid rgba(212, 168, 83, 0.08);
    transition: color 0.2s ease, padding-left 0.2s ease;
}
.mobile-nav-link:hover { color: #d4a853; padding-left: 0.5rem; }
.mobile-nav-cta {
    margin-top: 1rem; text-align: center;
    border: 1px solid rgba(212, 168, 83, 0.4); border-radius: 4px;
    padding: 0.875rem !important;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    background: radial-gradient(ellipse at 30% 50%, rgba(4, 120, 87, 0.3) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(212, 168, 83, 0.06) 0%, transparent 50%),
                #022c22;
}
.hero-bg-pattern {
    position: absolute; inset: 0; opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a853' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
    position: absolute; width: 3px; height: 3px; border-radius: 50%;
    background: rgba(212, 168, 83, 0.3);
    animation: float 8s ease-in-out infinite;
}
.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; animation-duration: 7s; }
.particle:nth-child(2) { top: 60%; left: 85%; animation-delay: 1s; animation-duration: 9s; }
.particle:nth-child(3) { top: 40%; left: 70%; animation-delay: 2s; animation-duration: 6s; }
.particle:nth-child(4) { top: 80%; left: 20%; animation-delay: 3s; animation-duration: 8s; }
.particle:nth-child(5) { top: 15%; left: 50%; animation-delay: 0.5s; animation-duration: 10s; }
.particle:nth-child(6) { top: 70%; left: 40%; animation-delay: 4s; animation-duration: 7s; }
.particle:nth-child(7) { top: 35%; left: 90%; animation-delay: 2.5s; animation-duration: 9s; }
.particle:nth-child(8) { top: 90%; left: 60%; animation-delay: 1.5s; animation-duration: 6s; }
.particle:nth-child(9) { top: 50%; left: 25%; animation-delay: 3.5s; animation-duration: 8s; }
@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 0.7; }
}
.hero-content {
    text-align: center; max-width: 820px; padding: 0 2rem;
    position: relative; z-index: 1;
}
.hero-eyebrow {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.15em;
    text-transform: uppercase; color: rgba(212, 168, 83, 0.8);
    margin-bottom: 2rem;
}
.gold-line {
    display: inline-block; width: 40px; height: 1px;
    background: linear-gradient(90deg, transparent, #d4a853);
}
.hero-eyebrow .gold-line:first-child { background: linear-gradient(90deg, transparent, #d4a853); }
.hero-eyebrow .gold-line:last-child { background: linear-gradient(90deg, #d4a853, transparent); }
.hero-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 500; line-height: 1.2;
    color: #faf8f4; margin-bottom: 1.5rem;
}
.gold-text { color: #d4a853; }
.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.1875rem);
    color: rgba(250, 248, 244, 0.65); line-height: 1.7;
    max-width: 560px; margin: 0 auto 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 4rem; }
.hero-stats {
    display: flex; align-items: center; justify-content: center; gap: 2rem;
    padding-top: 2rem; border-top: 1px solid rgba(212, 168, 83, 0.15);
}
.hero-stat { text-align: center; }
.stat-number {
    display: block; font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem; font-weight: 600; color: #d4a853;
}
.stat-unit { font-size: 1rem; }
.stat-label {
    display: block; font-size: 0.75rem; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(250, 248, 244, 0.5);
    margin-top: 4px;
}
.hero-stat-divider {
    width: 1px; height: 32px;
    background: rgba(212, 168, 83, 0.25);
}
.hero-scroll {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    font-size: 0.6875rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(250, 248, 244, 0.35);
}
.scroll-line {
    width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(212, 168, 83, 0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 40px; }
    50% { opacity: 1; height: 50px; }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 32px; font-size: 0.875rem; font-weight: 500;
    letter-spacing: 0.06em; text-transform: uppercase;
    border-radius: 4px; transition: all 0.3s ease;
}
.btn-primary {
    background: linear-gradient(135deg, #d4a853, #b8923f);
    color: #022c22; border: 1px solid #d4a853;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #e8c97a, #d4a853);
    box-shadow: 0 8px 30px rgba(212, 168, 83, 0.25);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent; color: #d4a853;
    border: 1px solid rgba(212, 168, 83, 0.5);
}
.btn-outline:hover {
    background: rgba(212, 168, 83, 0.08);
    border-color: #d4a853; transform: translateY(-2px);
}
.btn-outline-light {
    background: transparent; color: #faf8f4;
    border: 1px solid rgba(250, 248, 244, 0.3);
}
.btn-outline-light:hover {
    background: rgba(250, 248, 244, 0.08);
    border-color: rgba(250, 248, 244, 0.6); transform: translateY(-2px);
}
.btn-sm { padding: 10px 24px; font-size: 0.8125rem; }
.btn-full { width: 100%; }

/* ===== SECTION UTILITIES ===== */
.section-padding { padding: 7rem 2rem; }
.container { max-width: 1280px; margin: 0 auto; }
.section-eyebrow {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em;
    text-transform: uppercase; color: rgba(212, 168, 83, 0.8);
    margin-bottom: 1.25rem;
}
.section-eyebrow .gold-line { width: 30px; height: 1px; background: #d4a853; }
.section-eyebrow.justify-center { justify-content: center; }
.section-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 500; line-height: 1.2;
    color: #faf8f4; margin-bottom: 1.5rem;
}
.section-sub {
    font-size: 1.0625rem; color: rgba(250, 248, 244, 0.6);
    line-height: 1.7; max-width: 520px;
}
.section-header { margin-bottom: 4rem; }

/* ===== ABOUT ===== */
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
}
.about-images { position: relative; }
.about-img-main {
    position: relative; border-radius: 8px; overflow: hidden;
    aspect-ratio: 4/5;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
    position: absolute; bottom: -20px; right: -20px;
    width: 60%; height: 40%; border-radius: 8px;
    border: 2px solid rgba(212, 168, 83, 0.3);
    z-index: -1;
}
.about-img-secondary {
    position: absolute; bottom: -30px; right: 0;
    width: 55%; border-radius: 8px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-content { max-width: 520px; }
.about-text {
    font-size: 1.0625rem; line-height: 1.8;
    color: rgba(250, 248, 244, 0.7); margin-bottom: 1.25rem;
}
.about-values { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }
.value-item { display: flex; gap: 1rem; align-items: flex-start; }
.value-icon { flex-shrink: 0; color: #d4a853; margin-top: 2px; }
.value-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem; font-weight: 600; color: #faf8f4;
    margin-bottom: 4px;
}
.value-item p { font-size: 0.9375rem; color: rgba(250, 248, 244, 0.6); line-height: 1.6; }

/* ===== PRODUCTS ===== */
.products-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.product-card {
    background: rgba(250, 248, 244, 0.03);
    border: 1px solid rgba(212, 168, 83, 0.1);
    border-radius: 8px; overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border-color: rgba(212, 168, 83, 0.25);
}
.product-img {
    position: relative; overflow: hidden;
    aspect-ratio: 5/4;
}
.product-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(2, 44, 34, 0.6) 0%, transparent 50%);
}
.product-info { padding: 1.75rem; }
.product-tag {
    display: inline-block; font-size: 0.6875rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: #d4a853; margin-bottom: 0.75rem;
    padding: 4px 10px; border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: 2px;
}
.product-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.375rem; font-weight: 600; color: #faf8f4;
    margin-bottom: 0.75rem;
}
.product-desc {
    font-size: 0.9375rem; line-height: 1.7;
    color: rgba(250, 248, 244, 0.6);
}

/* ===== CRAFT ===== */
.craft-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
}
.craft-text {
    font-size: 1.0625rem; line-height: 1.8;
    color: rgba(250, 248, 244, 0.7); margin-bottom: 1.25rem;
}
.craft-process {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2rem; margin-top: 3rem;
}
.process-step h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.0625rem; font-weight: 600; color: #faf8f4;
    margin-bottom: 0.5rem;
}
.process-step p { font-size: 0.875rem; color: rgba(250, 248, 244, 0.6); line-height: 1.6; }
.step-number {
    display: block; font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem; font-weight: 700; color: rgba(212, 168, 83, 0.3);
    margin-bottom: 0.5rem; line-height: 1;
}
.craft-image { position: relative; border-radius: 8px; overflow: hidden; }
.craft-image img {
    width: 100%; height: 100%; object-fit: cover;
    border-radius: 8px;
}
.craft-image-caption {
    display: flex; align-items: center; gap: 10px;
    margin-top: 1rem; font-size: 0.875rem;
    color: rgba(212, 168, 83, 0.8); font-style: italic;
}

/* ===== VISIT ===== */
.visit-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: start;
}
.visit-text {
    font-size: 1.0625rem; line-height: 1.8;
    color: rgba(250, 248, 244, 0.7); margin-bottom: 2.5rem;
}
.visit-details { display: flex; flex-direction: column; gap: 1.75rem; }
.visit-detail { display: flex; gap: 1rem; align-items: flex-start; }
.visit-icon { flex-shrink: 0; color: #d4a853; margin-top: 2px; }
.visit-detail-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.0625rem; font-weight: 600; color: #faf8f4;
    margin-bottom: 4px;
}
.visit-detail p {
    font-size: 0.9375rem; line-height: 1.6;
    color: rgba(250, 248, 244, 0.6);
}
.visit-detail a {
    color: rgba(250, 248, 244, 0.6);
    transition: color 0.2s ease;
}
.visit-detail a:hover { color: #d4a853; }
.visit-map {
    border-radius: 8px; overflow: hidden;
    border: 1px solid rgba(212, 168, 83, 0.15);
}
.map-placeholder {
    background: rgba(250, 248, 244, 0.03);
    border-radius: 8px; padding: 3rem 2rem;
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 1rem;
}
.map-icon { opacity: 0.6; }
.map-placeholder p {
    font-size: 0.9375rem; color: rgba(250, 248, 244, 0.6);
}

/* ===== CONTACT ===== */
.contact-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: start;
}
.contact-text {
    font-size: 1.0625rem; line-height: 1.8;
    color: rgba(250, 248, 244, 0.7); margin-bottom: 2rem;
}
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-link {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.9375rem; color: rgba(250, 248, 244, 0.7);
    transition: color 0.2s ease;
}
.contact-link:hover { color: #d4a853; }
.contact-form-wrap {
    background: rgba(250, 248, 244, 0.03);
    border: 1px solid rgba(212, 168, 83, 0.12);
    border-radius: 8px; padding: 2.5rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-label {
    display: block; font-size: 0.8125rem; font-weight: 500;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: rgba(212, 168, 83, 0.8); margin-bottom: 0.5rem;
}
.form-input {
    width: 100%; padding: 12px 16px;
    background: rgba(2, 44, 34, 0.6);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 4px; color: #faf8f4;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.9375rem; line-height: 1.5;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}
.form-input::placeholder { color: rgba(250, 248, 244, 0.3); }
.form-input:focus {
    border-color: rgba(212, 168, 83, 0.5);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.08);
}
.form-select { appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23d4a853' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 12px center;
    padding-right: 36px;
}
.form-select option { background: #064e3b; color: #faf8f4; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-success {
    display: flex; align-items: center; gap: 10px;
    margin-top: 1rem; padding: 1rem;
    background: rgba(4, 120, 87, 0.2);
    border: 1px solid rgba(4, 120, 87, 0.4);
    border-radius: 4px; font-size: 0.9375rem;
    color: #34d399;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, #047857 0%, #065f46 50%, #022c22 100%);
    position: relative; overflow: hidden;
}
.cta-pattern {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4a853' fill-opacity='1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
}
.cta-content { max-width: 600px; }
.cta-content .section-heading { margin-bottom: 1rem; }
.cta-text {
    font-size: 1.0625rem; line-height: 1.7;
    color: rgba(250, 248, 244, 0.7); margin-bottom: 2rem;
}
.cta-text a { color: #d4a853; transition: color 0.2s ease; }
.cta-text a:hover { color: #e8c97a; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
    background: #021f17;
    border-top: 1px solid rgba(212, 168, 83, 0.1);
    padding: 4rem 2rem 2rem;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem; margin-bottom: 3rem;
}
.footer-brand p {
    font-size: 0.9375rem; line-height: 1.7;
    color: rgba(250, 248, 244, 0.5); margin-top: 1rem;
    max-width: 280px;
}
.footer-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.9375rem; font-weight: 600; color: #d4a853;
    margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a, .footer-links span {
    font-size: 0.875rem; color: rgba(250, 248, 244, 0.5);
    transition: color 0.2s ease;
}
.footer-links a:hover { color: #d4a853; }
.footer-bottom {
    padding-top: 2rem; border-top: 1px solid rgba(212, 168, 83, 0.08);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p {
    font-size: 0.8125rem; color: rgba(250, 248, 244, 0.35);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 50;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(6, 78, 59, 0.8); border: 1px solid rgba(212, 168, 83, 0.3);
    display: flex; align-items: center; justify-content: center;
    color: #d4a853; opacity: 0; visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: rgba(212, 168, 83, 0.15); }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid,
    .craft-layout,
    .visit-grid,
    .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
    .about-images { max-width: 500px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .nav-desktop { display: none; }
    .menu-toggle { display: flex; }
    .section-padding { padding: 5rem 1.5rem; }
    .hero-stats { flex-direction: column; gap: 1.25rem; }
    .hero-stat-divider { width: 40px; height: 1px; }
    .products-grid { grid-template-columns: 1fr; }
    .craft-process { grid-template-columns: 1fr; gap: 1.5rem; }
    .about-img-secondary { display: none; }
    .about-img-accent { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .contact-form-wrap { padding: 1.5rem; }
}

@media (max-width: 480px) {
    .header-inner { padding: 0 1.25rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; }
}
