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

:root {
    --plum: #7B5EA7;
    --plum-light: #9B7FBF;
    --plum-pale: #E8D5F0;
    --plum-bg: #F5F0FA;
    --amber: #D4A373;
    --amber-light: #E8C4A0;
    --amber-dark: #8B5E3C;
    --cream: #FDF8F3;
    --cream-dark: #F5EDE5;
    --sand: #E8D5C4;
    --text: #3D2C2C;
    --text-light: #6B5555;
    --white: #FFFFFF;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(123, 94, 167, 0.08);
    --shadow-lg: 0 12px 48px rgba(123, 94, 167, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text);
}

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

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

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

/* ── Header ───────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 243, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 163, 115, 0.15);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(253, 248, 243, 0.95);
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
}

.logo-icon {
    flex-shrink: 0;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
}

.main-nav a {
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--plum);
    background: var(--plum-pale);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text);
}

/* ── Hero ──────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--cream) 0%, var(--plum-bg) 50%, var(--cream-dark) 100%);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: float 8s ease-in-out infinite;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--plum-pale);
    top: -100px;
    right: 20%;
    animation-delay: 0s;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--amber-light);
    bottom: 10%;
    left: -5%;
    animation-delay: -3s;
}

.blob-3 {
    width: 200px;
    height: 200px;
    background: var(--sand);
    top: 40%;
    right: -5%;
    animation-delay: -5s;
}

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

.hero-content {
    flex: 1;
    max-width: 580px;
    position: relative;
    z-index: 1;
}

.hero-image {
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
}

.hero-image img {
    border-radius: 200px 200px 24px 24px;
    width: 420px;
    height: 500px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--amber);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--sand);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--amber-dark);
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--text);
}

.hero-headline .accent {
    color: var(--plum);
    font-style: italic;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 460px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.trust-item svg {
    color: var(--amber);
}

/* ── Buttons ───────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--plum);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(123, 94, 167, 0.3);
}

.btn-primary:hover {
    background: var(--plum-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(123, 94, 167, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--sand);
}

.btn-secondary:hover {
    border-color: var(--plum);
    color: var(--plum);
    transform: translateY(-2px);
}

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

/* ── Section Shared ────────────────────────────────── */
section {
    padding: 100px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber-dark);
    margin-bottom: 12px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--amber);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 520px;
    line-height: 1.8;
}

/* ── Flavors ───────────────────────────────────────── */
.flavors {
    background: var(--white);
}

.flavors .container {
    text-align: center;
}

.flavors .section-desc {
    margin: 0 auto 48px;
}

.flavors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.flavor-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--cream);
    border-radius: var(--radius);
    padding: 20px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.flavor-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--plum-pale);
    background: var(--white);
}

.flavor-swatch {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.flavor-info {
    text-align: left;
    flex: 1;
}

.flavor-info h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.flavor-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 8px;
}

.flavor-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: 100px;
    background: var(--plum-pale);
    color: var(--plum);
}

.flavors-footer {
    padding: 24px;
    background: var(--plum-bg);
    border-radius: var(--radius);
    font-size: 0.95rem;
    color: var(--text-light);
}

.flavors-footer strong {
    color: var(--plum);
}

/* ── About ─────────────────────────────────────────── */
.about {
    background: var(--cream);
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
}

.about-img-secondary img {
    width: 100%;
    display: block;
}

.about-img-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--amber-light);
    border-radius: 50%;
    opacity: 0.6;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-text {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--sand);
}

.stat-number {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    color: var(--plum);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ── Visit ─────────────────────────────────────────── */
.visit {
    background: var(--white);
}

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.visit-info .section-desc {
    margin-bottom: 32px;
}

.visit-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.visit-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--plum-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
}

.visit-detail strong {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.visit-detail p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.visit-detail a {
    color: var(--plum);
    transition: var(--transition);
}

.visit-detail a:hover {
    color: var(--plum-light);
}

.visit-map {
    position: sticky;
    top: 100px;
}

.map-placeholder {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 48px;
    text-align: center;
    border: 2px dashed var(--sand);
}

.map-placeholder svg {
    margin: 0 auto 16px;
    opacity: 0.6;
}

.map-placeholder p {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 20px;
}

/* ── Contact ───────────────────────────────────────── */
.contact {
    background: linear-gradient(160deg, var(--plum-bg) 0%, var(--cream) 100%);
}

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

.contact-content .section-title {
    margin-bottom: 16px;
}

.contact-content .section-desc {
    margin-bottom: 0;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--sand);
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--plum);
    background: var(--white);
    box-shadow: 0 0 0 4px var(--plum-pale);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 48px 36px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.form-success.show {
    display: block;
    animation: fadeIn 0.4s ease;
}

.form-success svg {
    margin: 0 auto 16px;
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--plum);
}

.form-success p {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

/* ── Footer ────────────────────────────────────────── */
.site-footer {
    background: var(--text);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 32px;
}

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

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--amber-light);
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.footer-contact a {
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--amber-light);
}

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

/* ── Mobile Navigation ─────────────────────────────── */
@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 248, 243, 0.98);
        backdrop-filter: blur(20px);
        padding: 16px 24px;
        border-bottom: 1px solid var(--sand);
        transform: translateY(-120%);
        transition: var(--transition);
        z-index: 999;
    }

    .main-nav.open {
        transform: translateY(0);
        box-shadow: var(--shadow);
    }

    .main-nav ul {
        flex-direction: column;
        gap: 4px;
    }

    .main-nav a {
        display: block;
        padding: 12px 16px;
        border-radius: var(--radius-sm);
    }

    .main-nav a:hover {
        background: var(--plum-pale);
    }
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-image {
        margin-top: 40px;
    }

    .hero-image img {
        width: 280px;
        height: 340px;
    }

    .flavors-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-grid,
    .visit-layout,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img-secondary {
        right: 10px;
        bottom: -20px;
    }

    .visit-map {
        position: static;
    }

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

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

@media (max-width: 480px) {
    section {
        padding: 64px 0;
    }

    .container {
        padding: 0 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .contact-form {
        padding: 24px;
    }
}

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

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