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

:root {
    --plum: #7B2D8E;
    --plum-deep: #5A1D6B;
    --plum-light: #A855C4;
    --plum-pale: #F3E8F9;
    --plum-ghost: #FBF7FD;
    --amber: #F5C518;
    --amber-light: #FDE68A;
    --amber-pale: #FFFBF0;
    --text: #2D1B33;
    --text-muted: #6B5675;
    --text-light: #9B85A0;
    --white: #FFFFFF;
    --bg: #FFFBFE;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 8px rgba(123, 45, 142, 0.06);
    --shadow-md: 0 8px 30px rgba(123, 45, 142, 0.1);
    --shadow-lg: 0 16px 50px rgba(123, 45, 142, 0.12);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Nunito', 'Segoe UI', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }

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

/* ─── TYPOGRAPHY ─── */
.eyebrow {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--plum-light);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 20px;
}

.section-title em {
    color: var(--plum);
    font-style: italic;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 520px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-sub { margin: 0 auto; }

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--plum);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(123, 45, 142, 0.3);
}
.btn-primary:hover {
    background: var(--plum-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(123, 45, 142, 0.4);
}

.btn-outline {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(4px);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--plum);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }

/* ─── NAV ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}
.nav.scrolled {
    background: rgba(255, 251, 254, 0.92);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 40px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}
.nav.scrolled .logo { color: var(--plum); }
.logo-icon { color: var(--amber); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin-left: auto;
}
.nav-links a {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
}
.nav.scrolled .nav-links a { color: var(--text-muted); }
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav.scrolled .nav-links a:hover { color: var(--plum); background: var(--plum-pale); }

.btn-nav {
    background: var(--amber) !important;
    color: var(--text) !important;
    font-weight: 700 !important;
}
.btn-nav:hover {
    background: var(--amber-light) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: auto;
}
.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.nav.scrolled .nav-toggle span { background: var(--text); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #5A1D6B 0%, #7B2D8E 30%, #A855C4 60%, #D4A0E8 80%, #F5C518 100%);
}
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 8s ease-in-out infinite;
}
.orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #C084FC, transparent 70%);
    top: -10%; left: -10%;
    animation-delay: 0s;
}
.orb-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #F5C518, transparent 70%);
    bottom: -15%; right: -5%;
    animation-delay: -3s;
}
.orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, #F9A8D4, transparent 70%);
    top: 40%; right: 20%;
    animation-delay: -5s;
}
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 30px 30px;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    padding: 0 24px;
    animation: fadeUp 1s ease-out both;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
    background: rgba(255,255,255,0.1);
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}
.hero-headline .accent {
    color: var(--amber);
    font-style: italic;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}
.hero-trust .dot { opacity: 0.4; }

.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

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

/* ─── ABOUT ─── */
.about { background: var(--bg); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-images {
    position: relative;
    height: 520px;
}
.img-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: absolute;
}
.img-card--main {
    width: 75%;
    height: 70%;
    top: 0;
    left: 0;
}
.img-card--accent {
    width: 55%;
    height: 45%;
    bottom: 0;
    right: 0;
    box-shadow: var(--shadow-lg);
}
.img-card--bottom {
    position: absolute;
    bottom: 0;
    right: 0;
}
.img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.img-card:hover img { transform: scale(1.05); }

.about-text .section-title { margin-bottom: 24px; }
.about-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 1.05rem;
}
.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(123, 45, 142, 0.1);
}
.stat { text-align: center; }
.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--plum);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ─── SHOP ─── */
.shop {
    background: linear-gradient(180deg, var(--plum-ghost) 0%, var(--bg) 100%);
}
.categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    border: 1px solid rgba(123, 45, 142, 0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.cat-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--plum-pale), var(--plum-ghost));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
}
.category-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
}
.category-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    flex: 1;
}
.cat-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--plum);
    margin-top: 8px;
    transition: var(--transition);
}
.category-card:hover .cat-link { color: var(--plum-deep); }

/* ─── WHY ─── */
.why { background: var(--bg); }
.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.feature {
    padding: 40px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid rgba(123, 45, 142, 0.06);
    transition: var(--transition);
}
.feature:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
    transform: translateY(-4px);
}
.feature-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--plum-pale);
    line-height: 1;
    margin-bottom: 16px;
}
.feature h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}
.feature p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ─── VISIT ─── */
.visit {
    background: linear-gradient(135deg, var(--plum-ghost) 0%, var(--amber-pale) 100%);
}
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.address-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.addr-row {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-muted);
    font-size: 1rem;
}
.addr-row svg { color: var(--plum); flex-shrink: 0; }
.addr-row a {
    color: var(--plum);
    font-weight: 600;
    transition: var(--transition);
}
.addr-row a:hover { color: var(--plum-deep); }

.hours {
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.hours h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);
}
.hours p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.hours-note {
    font-size: 0.85rem !important;
    color: var(--text-light) !important;
    font-style: italic;
    margin-top: 12px !important;
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.map-placeholder {
    background: linear-gradient(135deg, var(--plum-pale), var(--amber-pale));
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    min-height: 320px;
    justify-content: center;
}
.map-placeholder svg { color: var(--plum); }
.map-placeholder p {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.5;
}

/* ─── CTA ─── */
.cta { background: var(--bg); }
.cta-card {
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-deep) 50%, #3D1450 100%);
    border-radius: var(--radius-lg);
    padding: 72px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    overflow: hidden;
    position: relative;
}
.cta-card::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245,197,24,0.15), transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}
.cta-text { position: relative; z-index: 1; }
.cta-text .eyebrow { color: var(--amber); }
.cta-text .section-title { color: var(--white); }
.cta-text .section-title em { color: var(--amber); }
.cta-text p {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    line-height: 1.8;
}

.cta-form {
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    padding: 36px;
    border: 1px solid rgba(255,255,255,0.12);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}
.form-group input,
.form-group textarea {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.35);
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--amber);
    background: rgba(255,255,255,0.12);
}
.form-group textarea { resize: vertical; }

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 16px;
    background: rgba(245, 197, 24, 0.15);
    border-radius: var(--radius-sm);
    color: var(--amber-light);
    font-weight: 600;
    font-size: 0.95rem;
}
.form-success.show { display: flex; }
.form-success svg { color: var(--amber); flex-shrink: 0; }

/* ─── FOOTER ─── */
.footer {
    background: var(--text);
    color: rgba(255,255,255,0.6);
    padding: 72px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}
.footer h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}
.footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer ul a {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer ul a:hover { color: var(--amber); }
.footer ul svg { color: var(--plum-light); flex-shrink: 0; }

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

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

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .about-grid,
    .visit-grid,
    .cta-card { grid-template-columns: 1fr; gap: 40px; }
    .about-images { height: 400px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 32px 32px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .nav-links.open { right: 0; }
    .nav-links a {
        color: var(--text-muted) !important;
        padding: 12px 16px;
        border-radius: var(--radius-sm);
        font-size: 1rem;
    }
    .nav-links a:hover { background: var(--plum-pale) !important; color: var(--plum) !important; }
    .nav-toggle { display: flex; }

    .hero { min-height: 100svh; }
    .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 280px; }

    .section { padding: 72px 0; }
    .categories { grid-template-columns: 1fr; }
    .features { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .cta-card { padding: 40px 28px; }
    .about-images { height: 320px; }
    .img-card--main { width: 80%; height: 65%; }
    .img-card--accent { width: 60%; height: 50%; }
    .about-stats { gap: 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-headline { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    .category-card { padding: 28px 24px; }
    .feature { padding: 28px; }
}
