/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Nunito', system-ui, sans-serif;
    color: #4c2730;
    background: #faf5f7;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 245, 247, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(168, 85, 112, 0.1);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 4px 30px rgba(110, 48, 68, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 72px;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #6e3044;
    flex-shrink: 0;
}

.nav-logo-icon {
    color: #a85570;
    width: 36px;
    height: 36px;
}

.nav-logo-text {
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.nav-link {
    padding: 8px 18px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #6e3044;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
    background: rgba(168, 85, 112, 0.1);
    color: #8a3d56;
}

.nav-link--cta {
    background: #a85570;
    color: #fff;
    margin-left: 8px;
}

.nav-link--cta:hover {
    background: #8a3d56;
    color: #fff;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
    color: #6e3044;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(250, 245, 247, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 32px 24px;
    animation: slideDown 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 400px;
}

.mobile-menu-link {
    padding: 14px 20px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.05rem;
    color: #6e3044;
    transition: background 0.2s ease;
}

.mobile-menu-link:hover {
    background: rgba(168, 85, 112, 0.1);
}

.mobile-menu-link--cta {
    background: #a85570;
    color: #fff;
    text-align: center;
    margin-top: 8px;
}

.mobile-menu-contact {
    margin-top: 24px;
    padding: 20px;
    background: rgba(168, 85, 112, 0.06);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #6e3044;
}

.mobile-menu-contact a {
    color: #8a3d56;
    font-weight: 600;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(42, 19, 26, 0.82) 0%,
        rgba(76, 39, 48, 0.72) 50%,
        rgba(110, 48, 68, 0.65) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 120px 24px 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 167, 38, 0.2);
    border: 1px solid rgba(255, 167, 38, 0.4);
    color: #ffcc80;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-headline {
    font-family: 'Lora', serif;
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease 0.15s forwards;
    opacity: 0;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 56px;
    animation: fadeInUp 0.8s ease 0.45s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

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

.hero-stat-num {
    display: block;
    font-family: 'Lora', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffcc80;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.hero-stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    align-self: stretch;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.6);
    animation: bounce 2s infinite;
}

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

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn--amber {
    background: #ff9800;
    border-color: #ff9800;
    color: #fff;
}

.btn--amber:hover {
    background: #fb8c00;
    border-color: #fb8c00;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 152, 0, 0.35);
}

.btn--outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn--light {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.btn--full {
    width: 100%;
}

.btn-loading {
    display: none;
}

.btn.spinning .btn-text { display: none; }
.btn.spinning .btn-loading { display: inline-flex; }
.btn.spinning { pointer-events: none; }

.btn-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a85570;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Lora', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #4c2730;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: #6e3044;
    opacity: 0.8;
    line-height: 1.8;
}

/* ===== PRODUCTS ===== */
.products {
    background: #faf5f7;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(110, 48, 68, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(110, 48, 68, 0.15);
}

.product-card-img {
    height: 200px;
    overflow: hidden;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-img img {
    transform: scale(1.08);
}

.product-card-body {
    padding: 24px;
}

.product-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(168, 85, 112, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a85570;
    margin-bottom: 16px;
}

.product-card-title {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #4c2730;
    margin-bottom: 8px;
}

.product-card-text {
    font-size: 0.92rem;
    color: #6e3044;
    opacity: 0.8;
    line-height: 1.7;
}

/* ===== ABOUT ===== */
.about {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(110, 48, 68, 0.15);
}

.about-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -32px;
    right: -24px;
    width: 55%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(110, 48, 68, 0.2);
    border: 4px solid #fff;
}

.about-img-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    right: 24px;
    background: #a85570;
    color: #fff;
    border-radius: 20px;
    padding: 16px 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(168, 85, 112, 0.4);
}

.about-badge-num {
    display: block;
    font-family: 'Lora', serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.9;
}

.about-content {
    padding: 16px 0;
}

.about-text {
    font-size: 1.02rem;
    color: #6e3044;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 152, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f57c00;
    flex-shrink: 0;
}

.about-feature-title {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #4c2730;
    margin-bottom: 4px;
}

.about-feature-text {
    font-size: 0.9rem;
    color: #6e3044;
    opacity: 0.8;
    line-height: 1.6;
}

/* ===== VISIT ===== */
.visit {
    background: #faf5f7;
}

.visit-card {
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(110, 48, 68, 0.1);
}

.visit-card-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}

.visit-info {
    padding: 56px 48px;
}

.visit-desc {
    font-size: 1.02rem;
    color: #6e3044;
    line-height: 1.8;
    margin-bottom: 36px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.visit-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.visit-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(168, 85, 112, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a85570;
    flex-shrink: 0;
}

.visit-detail-label {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #a85570;
    margin-bottom: 4px;
}

.visit-detail p {
    font-size: 0.95rem;
    color: #4c2730;
    line-height: 1.6;
}

.visit-detail a {
    color: #6e3044;
    font-weight: 600;
    transition: color 0.2s ease;
}

.visit-detail a:hover {
    color: #a85570;
}

.visit-hours {
    background: linear-gradient(135deg, #6e3044, #4c2730);
    padding: 56px 48px;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.visit-hours-title {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 28px;
}

.visit-hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.visit-hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

.visit-hour-row:last-child {
    border-bottom: none;
}

.visit-day {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.visit-time {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.visit-hour-row--closed .visit-time {
    color: #ffcc80;
}

.visit-hours-note {
    margin-top: 20px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* ===== CONTACT ===== */
.contact {
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-desc {
    font-size: 1.02rem;
    color: #6e3044;
    line-height: 1.8;
    margin-bottom: 36px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 20px 24px;
    border-radius: 20px;
    background: #faf5f7;
    transition: background 0.2s ease, transform 0.2s ease;
}

.contact-method:hover {
    background: rgba(168, 85, 112, 0.08);
    transform: translateX(4px);
}

.contact-method-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(168, 85, 112, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a85570;
    flex-shrink: 0;
}

.contact-method-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #a85570;
    margin-bottom: 2px;
}

.contact-method-value {
    font-size: 1rem;
    color: #4c2730;
    font-weight: 700;
}

.contact-form-wrapper {
    background: #faf5f7;
    border-radius: 28px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 800;
    color: #6e3044;
    letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(168, 85, 112, 0.15);
    border-radius: 14px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: #4c2730;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: #a85570;
    box-shadow: 0 0 0 4px rgba(168, 85, 112, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #c47e96;
}

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

.form-select {
    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='%23a85570' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 0.5s ease;
}

.form-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4caf50;
}

.form-success-title {
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #4c2730;
}

.form-success-text {
    font-size: 0.95rem;
    color: #6e3044;
    line-height: 1.7;
    max-width: 320px;
}

/* ===== FOOTER ===== */
.footer {
    background: #2a131a;
    color: rgba(255, 255, 255, 0.7);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 56px;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 16px;
}

.footer-logo-icon {
    color: #ff9800;
    width: 36px;
    height: 36px;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.8;
    opacity: 0.7;
}

.footer-heading {
    font-family: 'Lora', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.2s ease, color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover,
.footer-contact a:hover {
    opacity: 1;
    color: #ffcc80;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        padding: 100px 20px 80px;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat-num {
        font-size: 1.3rem;
    }

    .section {
        padding: 72px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .about-img-secondary {
        right: 0;
    }

    .visit-card-inner {
        grid-template-columns: 1fr;
    }

    .visit-info {
        padding: 40px 28px;
    }

    .visit-hours {
        padding: 40px 28px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stat-divider {
        width: 48px;
        height: 1px;
        margin: 0 auto;
    }

    .about-img-main img {
        height: 280px;
    }

    .about-img-secondary {
        width: 65%;
        bottom: -20px;
    }
}
