:root {
    --bg-1: #fff6fb;
    --bg-2: #f8dfe9;
    --bg-3: #f3cbdc;
    --card: #ffffff;
    --ink: #3b2b33;
    --muted: #7a6670;
    --rose: #c4698a;
    --rose-dark: #b14a78;
    --gold: #d6b27a;
    --gold-light: #f3e2c8;
    --line: rgba(59, 43, 51, .10);
    --shadow: 0 18px 50px rgba(80, 45, 62, .16);
    --shadow-soft: 0 10px 26px rgba(80, 45, 62, .12);
    --shadow-hover: 0 20px 40px rgba(80, 45, 62, .20);
    --radius: 24px;

    --space-1: 6px;
    --space-2: 10px;
    --space-3: 14px;
    --space-4: 18px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 40px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Palatino Linotype", "Book Antiqua", Georgia, "Times New Roman", serif;
    color: var(--ink);
    background:
        radial-gradient(900px 520px at 12% 8%, #f7e7f0, transparent 60%),
        radial-gradient(900px 520px at 90% 12%, #f9dbea, transparent 60%),
        linear-gradient(180deg, var(--bg-1), #ffffff);
    min-height: 100vh;
    font-size: 16px;
    /* Explicit base size */
    line-height: 1.5;
}

/* Sparkle Background Effect */
.sparkle {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(214, 178, 122, .55) 0 2px, transparent 3px),
        radial-gradient(circle at 30% 40%, rgba(196, 105, 138, .55) 0 2px, transparent 3px),
        radial-gradient(circle at 70% 30%, rgba(109, 30, 212, .35) 0 2px, transparent 3px),
        radial-gradient(circle at 85% 70%, rgba(47, 128, 237, .35) 0 2px, transparent 3px),
        radial-gradient(circle at 20% 75%, rgba(243, 226, 200, .6) 0 2px, transparent 3px),
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, .5) 0 1px, transparent 2px),
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, .4) 0 1px, transparent 2px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, .35) 0 1px, transparent 2px),
        radial-gradient(circle at 85% 65%, rgba(255, 255, 255, .45) 0 1px, transparent 2px);
    background-size: 180px 180px;
    opacity: .6;
    pointer-events: none;
    z-index: 0;
}

/* Navigation */
.site-nav {
    position: relative;
    z-index: 100;
    /* Higher z-index for mobile menu overlay protection */
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
}

.nav-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 12px var(--space-4);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: var(--space-3);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--rose-dark);
    font-weight: 700;
    letter-spacing: .01em;
}

.nav-brand img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, .7);
    background: linear-gradient(135deg, #f4b7cf, #d48db0);
    padding: 4px;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
    font-size: 14px;
    /* Bumped from 13 */
    letter-spacing: .02em;
}

.nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 700;
    padding: 8px 12px;
    /* Larger hit area */
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-links a:focus,
.nav-links a:hover {
    color: var(--rose-dark);
    background: rgba(193, 110, 145, .1);
}

.nav-social {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-social a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(193, 110, 145, .3);
    background: #fff;
    box-shadow: var(--shadow-soft);
    color: var(--rose-dark);
    transition: transform 0.2s ease;
}

.nav-social a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.nav-social svg {
    width: 16px;
    height: 16px;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    border: 1px solid rgba(193, 110, 145, .35);
    background: #fff;
    color: var(--rose-dark);
    border-radius: 999px;
    padding: 8px 16px;
    /* Larger touch target */
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

@media (max-width: 820px) {
    .nav-inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .nav-links,
    .nav-social {
        display: none;
    }

    /* Mobile Layout */
    .site-nav.is-open .nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        grid-column: 1 / -1;
        padding-top: 20px;
        padding-bottom: 20px;
        border-top: 1px dashed var(--line);
        margin-top: 10px;
    }

    .site-nav.is-open .nav-links a {
        text-align: center;
        padding: 12px;
        font-size: 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }

    .site-nav.is-open .nav-social {
        display: flex;
        grid-column: 1 / -1;
        justify-content: center;
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

/* Wrapper */
.wrap {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: var(--space-6) var(--space-4) var(--space-7);
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #fff, #fff6fb);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: var(--space-5);
    display: grid;
    gap: var(--space-5);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 22px;
    border: 1px solid rgba(214, 178, 122, .45);
    pointer-events: none;
}

.brand-row {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.logo {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f4b7cf, #d48db0);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 26px rgba(180, 90, 130, .25);
    border: 1px solid rgba(255, 255, 255, .7);
    flex: 0 0 auto;
}

.logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, .15));
}

h1 {
    margin: 0;
    font-size: 2.25rem;
    /* ~36px */
    color: var(--rose-dark);
    letter-spacing: .01em;
    line-height: 1.1;
}

.tagline {
    margin: var(--space-1) 0 0;
    color: var(--muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .18em;
}

.hero-copy {
    font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
    max-width: 560px;
}

.lead {
    margin: 0 0 var(--space-4);
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.6;
    font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
}


/* Slideshow */
.ig-slideshow {
    margin: var(--space-4) 0 var(--space-4);
    padding: var(--space-4);
    background: linear-gradient(180deg, #fff, #fff6fb);
    border: 1px solid rgba(193, 110, 145, .22);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
}

.ig-slides {
    position: relative;
    min-height: 520px;
}

.ig-slide {
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ig-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.ig-slideshow blockquote {
    margin: 0 auto;
    max-width: 540px;
}

.ig-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    /* Increased padding */
    margin-top: var(--space-3);
    padding: 10px;
}

.ig-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: rgba(180, 110, 145, .35);
    cursor: pointer;
    padding: 0;
    transition: all 0.2s;
}

.ig-dot:hover {
    transform: scale(1.2);
}

.ig-dot.is-active {
    background: var(--rose-dark);
    transform: scale(1.2);
}

@media (max-width: 680px) {
    .ig-slides {
        min-height: 480px;
    }
}

/* Buttons */
.cta-row {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    /* Larger touch target */
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: .02em;
    font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
    color: #fff;
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    box-shadow: var(--shadow-soft);
    transition: all 0.2s ease;
    min-height: 48px;
    /* Accessibility requirement */
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn.secondary {
    color: var(--rose-dark);
    background: #fff;
    border: 1px solid rgba(193, 110, 145, .35);
    box-shadow: none;
}

.btn.secondary:hover {
    background: #fff6fb;
    box-shadow: var(--shadow-soft);
}

/* Grid & Cards */
.grid {
    margin-top: var(--space-6);
    display: grid;
    gap: var(--space-4);
}

.card {
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    padding: var(--space-5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    /* Subtle lift on desktop, maybe skip for touch? keeping it for now */
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.card h2 {
    margin: 0 0 var(--space-2);
    font-size: 22px;
    color: var(--rose-dark);
}

.badge-row {
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
    margin-top: var(--space-2);
    font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
    font-size: 13px;
    color: var(--muted);
}

.badge {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(214, 178, 122, .5);
    background: rgba(243, 226, 200, .35);
}

/* Menu List */
.menu {
    display: grid;
    gap: var(--space-2);
    font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
    border-bottom: 1px dashed rgba(59, 43, 51, .12);
    padding: 12px 0;
    font-size: 15px;
}

.menu-item:last-child {
    border-bottom: 0;
}

.menu-item span {
    color: var(--muted);
    font-size: 13px;
    text-align: right;
}

/* Steps */
.steps {
    display: grid;
    gap: var(--space-3);
    font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
    font-size: 15px;
    color: var(--muted);
}

.step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-num {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #6b4d2d;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex: 0 0 auto;
}

/* Contact List */
.contact-list {
    display: grid;
    gap: 12px;
    font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
    color: var(--muted);
    font-size: 15px;
}

.contact-list a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted rgba(214, 178, 122, .8);
    padding-bottom: 2px;
}

.ig-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ig-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.contact-list span {
    color: var(--ink);
    font-weight: 600;
    margin-right: 6px;
}

/* Footer */
.footer {
    margin-top: var(--space-6);
    text-align: center;
    color: var(--muted);
    font-size: 13px;
    font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
    padding-bottom: var(--space-4);
}

@media (min-width: 820px) {
    .hero {
        grid-template-columns: 1.2fr .8fr;
        align-items: center;
        padding: var(--space-6);
    }

    .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .card.span-2 {
        grid-column: span 2;
    }
}

/* Lists (Orders) */
.list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
    font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
    color: var(--muted);
    font-size: 15px;
}

.list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.dot {
    width: 8px;
    height: 8px;
    margin-top: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    flex: 0 0 auto;
}