/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #1a1a2e;
    background: #faf9f7;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== COLOR TOKENS ===== */
:root {
    --plum: #4A1942;
    --plum-dark: #351230;
    --plum-deep: #2a0e26;
    --plum-light: #6b2d5e;
    --amber: #F5C518;
    --amber-light: #ffe066;
    --amber-dark: #d4a50a;
    --cream: #faf9f7;
    --warm-gray: #f0ede8;
    --text: #1a1a2e;
    --text-muted: #5a5a72;
    --text-light: #8888a0;
    --white: #ffffff;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(74, 25, 66, 0.06);
    --shadow-md: 0 8px 30px rgba(74, 25, 66, 0.10);
    --shadow-lg: 0 16px 60px rgba(74, 25, 66, 0.14);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.15; }
.text-accent { color: var(--amber-dark); }
.text-accent-light { color: var(--amber); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--amber);
    color: var(--plum-dark);
    box-shadow: 0 4px 20px rgba(245, 197, 24, 0.35);
}
.btn-primary:hover {
    background: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 197, 24, 0.45);
}
.btn-accent {
    background: var(--plum);
    color: var(--amber);
}
.btn-accent:hover { background: var(--plum-dark); color: var(--amber-light); }
.btn-ghost {
    background: transparent;
    color: var(--plum);
    border: 2px solid var(--plum);
}
.btn-ghost:hover { background: var(--plum); color: var(--white); }
.btn-ghost-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION TAG ===== */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--plum);
    background: rgba(74, 25, 66, 0.08);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

/* ===== SECTION TITLE ===== */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--plum);
    margin-bottom: 20px;
}
.section-desc, .about-text, .visit-desc, .contact-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 560px;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 249, 247, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(74, 25, 66, 0.06);
    transition: var(--transition);
}
.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--plum);
}
.logo-icon { color: var(--amber-dark); }
.logo--light { color: var(--white); }
.logo--light .logo-icon { color: var(--amber); }

/* NAV */
.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-list a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
}
.nav-list a:not(.btn):hover { color: var(--plum); }
.nav-list a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber-dark);
    transition: var(--transition);
}
.nav-list a:not(.btn):hover::after { width: 100%; }

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--plum);
    transition: var(--transition);
    border-radius: 2px;
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(74, 25, 66, 0.04) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(245, 197, 24, 0.06) 0%, transparent 50%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--plum);
    background: rgba(74, 25, 66, 0.07);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--amber-dark);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-headline {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: var(--plum);
    margin-bottom: 24px;
    line-height: 1.1;
}
.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.7;
}
.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero visual */
.hero-visual {
    position: relative;
    min-height: 480px;
}
.hero-card {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-card-main {
    width: 85%;
    top: 0;
    right: 0;
}
.hero-card-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-card-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--plum);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
}
.stat-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    padding: 18px 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    z-index: 2;
}
.stat-card--top {
    top: 20px;
    left: -20px;
}
.stat-card--bottom {
    bottom: 40px;
    left: -10px;
}
.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(74, 25, 66, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
    flex-shrink: 0;
}
.stat-icon--amber { background: rgba(245, 197, 24, 0.15); color: var(--amber-dark); }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--plum);
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); }

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

/* ===== PRODUCTS ===== */
.products { background: var(--white); }
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header .section-desc { margin: 0 auto; }
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.product-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--cream);
    transition: var(--transition);
    border: 1px solid rgba(74, 25, 66, 0.06);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.product-card-img {
    overflow: hidden;
    height: 220px;
}
.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.05); }
.product-card-body {
    padding: 28px;
}
.product-card-title {
    font-size: 1.35rem;
    color: var(--plum);
    margin-bottom: 10px;
}
.product-card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== FEATURES ===== */
.features { background: var(--cream); }
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.feature-list { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--plum);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
    flex-shrink: 0;
}
.feature-item strong {
    display: block;
    font-size: 1rem;
    color: var(--plum);
    margin-bottom: 2px;
}
.feature-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Features visual */
.features-visual {
    position: relative;
}
.features-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.feat-img {
    border-radius: var(--radius);
    overflow: hidden;
}
.feat-img--1 { grid-column: 1 / -1; }
.feat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}
.feat-img--2 { height: 190px; }
.feat-img--3 { height: 190px; }
.features-accent-strip {
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--plum), var(--amber), var(--plum-light));
    margin-top: 16px;
}

/* ===== ABOUT ===== */
.about { background: var(--white); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}
.about-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--plum);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
}
.about-content { }
.about-text {
    margin-bottom: 16px;
}
.about-stats {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(74, 25, 66, 0.1);
}
.about-stat { flex: 1; }
.about-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--plum);
}
.about-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.about-stat-divider {
    width: 1px;
    background: rgba(74, 25, 66, 0.12);
    align-self: stretch;
}

/* ===== COMMUNITY ===== */
.community { background: var(--plum); color: var(--white); }
.community .section-tag {
    background: rgba(245, 197, 24, 0.15);
    color: var(--amber);
}
.community .section-title { color: var(--white); }
.community-header {
    text-align: center;
    margin-bottom: 60px;
}
.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.community-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
}
.community-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}
.community-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(245, 197, 24, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
    margin-bottom: 24px;
}
.community-card-title {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 12px;
}
.community-card-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

/* ===== VISIT ===== */
.visit { background: var(--cream); }
.visit-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--plum);
    color: var(--white);
}
.visit-content {
    padding: 64px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.visit-content .section-tag {
    background: rgba(245, 197, 24, 0.15);
    color: var(--amber);
}
.visit-content .section-title { color: var(--white); }
.visit-content .section-desc,
.visit-content .visit-desc { color: rgba(255,255,255,0.7); }
.visit-details {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.visit-detail {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.visit-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(245, 197, 24, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
    flex-shrink: 0;
}
.visit-detail strong {
    display: block;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 2px;
}
.visit-detail span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
}
.visit-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.visit-map-wrap {
    position: relative;
    min-height: 400px;
}
.visit-map-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.visit-map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(74, 25, 66, 0.55);
    gap: 12px;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}
.visit-map-overlay svg {
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

/* ===== CONTACT ===== */
.contact { background: var(--white); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-methods {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: var(--radius);
    background: var(--cream);
    transition: var(--transition);
}
.contact-method:hover {
    background: rgba(74, 25, 66, 0.06);
}
.contact-method-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--plum);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
    flex-shrink: 0;
}
.contact-method span {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}
.contact-form-wrap {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(74, 25, 66, 0.06);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--plum);
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(74, 25, 66, 0.12);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--plum);
    box-shadow: 0 0 0 4px rgba(74, 25, 66, 0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 18px;
    background: rgba(74, 25, 66, 0.06);
    border-radius: var(--radius);
    color: var(--plum);
    font-size: 0.9rem;
    font-weight: 500;
}
.form-success svg { color: var(--plum); flex-shrink: 0; }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--plum-deep);
    color: var(--white);
    padding: 64px 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    margin-top: 12px;
    max-width: 280px;
    line-height: 1.6;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-links a:hover { color: var(--amber); }
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
}
.footer-contact a {
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
}
.footer-contact a:hover { color: var(--amber); }
.footer-bottom {
    padding: 24px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { gap: 40px; }
    .features-grid { gap: 48px; }
    .visit-content { padding: 48px 36px; }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-sub { margin: 0 auto 36px; }
    .hero-cta { justify-content: center; }
    .hero-visual {
        max-width: 480px;
        margin: 0 auto;
        min-height: 400px;
    }
    .stat-card--top { left: 0; }
    .stat-card--bottom { left: 10px; }
    .products-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .features-grid { grid-template-columns: 1fr; }
    .features-visual { order: -1; max-width: 520px; margin: 0 auto; }
    .about-grid { grid-template-columns: 1fr; }
    .about-img-wrap { max-width: 520px; margin: 0 auto; }
    .community-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .visit-card { grid-template-columns: 1fr; }
    .visit-map-wrap { min-height: 280px; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-list {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 249, 247, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(74, 25, 66, 0.08);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }
    .nav-list.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-list a { font-size: 1.05rem; }
    .section { padding: 72px 0; }
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-headline { font-size: clamp(2rem, 8vw, 2.8rem); }
    .features-img--1, .feat-img--2, .feat-img--3 { height: 180px; }
    .visit-content { padding: 40px 28px; }
    .contact-form-wrap { padding: 28px; }
    .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .hero-visual { min-height: 340px; }
    .stat-card { padding: 14px 16px; }
    .stat-number { font-size: 0.95rem; }
    .stat-label { font-size: 0.72rem; }
    .about-stats { flex-direction: column; gap: 20px; }
    .about-stat-divider { width: 100%; height: 1px; }
    .visit-cta { flex-direction: column; }
    .visit-cta .btn { width: 100%; justify-content: center; }
}
