/* =========================================================
   ALL DEM CRUMBS — Option 2 (Elevated)
   ========================================================= */

:root {
    --bg:       #0a0a0f;
    --surface:  #141419;
    --surface2: #1c1c24;
    --text:     #f5f0eb;
    --muted:    #9b978f;
    --pink:     #ec4899;
    --pink-glow: rgba(236, 72, 153, .35);
    --warm:     #f59e0b;
    --warm-glow: rgba(245, 158, 11, .3);
    --radius:   16px;
    --radius-sm: 10px;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.6;
}

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

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

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

/* ── Cursor Glow ─────────────────────────────────────────── */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--pink-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s;
    mix-blend-mode: screen;
}

/* ── Particle Canvas ─────────────────────────────────────── */
#particleCanvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ── Navigation ──────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 1.5rem;
    transition: background .3s, backdrop-filter .3s, box-shadow .3s;
}

.site-header.scrolled {
    background: rgba(10, 10, 15, .85);
    backdrop-filter: blur(20px) saturate(1.3);
    box-shadow: 0 1px 0 rgba(255,255,255,.06);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.logo-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--pink);
    box-shadow: 0 0 20px var(--pink-glow);
    transition: transform .3s var(--ease-spring);
}

.logo:hover .logo-img { transform: rotate(15deg) scale(1.1); }

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: -.01em;
}

.desktop-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    position: relative;
    font-weight: 500;
    font-size: .95rem;
    color: var(--muted);
    transition: color .25s;
    padding: .25rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pink);
    border-radius: 2px;
    transition: width .3s var(--ease-out-expo);
}

.nav-link:hover,
.nav-link.active { color: var(--text); }

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    background: var(--pink);
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    padding: .65rem 1.4rem;
    border-radius: 999px;
    line-height: 1;
    transition: transform .2s, box-shadow .2s;
}

.header-contact-links {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.header-email-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: .65rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.06);
    color: var(--text);
    font-weight: 600;
    font-size: .88rem;
    line-height: 1;
    backdrop-filter: blur(8px);
    transition: transform .2s, border-color .2s, background .2s;
}

.header-cta svg,
.footer-phone svg,
.header-email-link svg,
.contact-link svg {
    display: block;
    flex-shrink: 0;
}

.header-cta span,
.footer-phone span,
.header-email-link span,
.contact-link span {
    display: inline-block;
    line-height: 1;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--pink-glow);
}

.header-email-link:hover {
    transform: translateY(-2px);
    border-color: rgba(236, 72, 153, .35);
    background: rgba(236, 72, 153, .1);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: .25rem;
    padding: 1rem 1.5rem 1.5rem;
    background: rgba(10, 10, 15, .95);
    backdrop-filter: blur(20px);
}

.mobile-nav.open { display: flex; }

.mobile-nav-link {
    font-weight: 600;
    font-size: 1.05rem;
    padding: .75rem 1rem;
    border-radius: var(--radius-sm);
    transition: background .2s, color .2s;
}

.mobile-nav-link:hover {
    background: rgba(236, 72, 153, .1);
    color: var(--pink);
}

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

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s linear;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10,10,15,.4) 0%, rgba(10,10,15,.75) 50%, var(--bg) 100%),
        radial-gradient(ellipse at 30% 20%, var(--pink-glow) 0%, transparent 60%);
}

.hero-floating-cakes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.float-cake {
    position: absolute;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,.12);
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
    opacity: 0;
    animation: cakeFloat 6s ease-in-out infinite, cakeFadeIn 1s ease-out forwards;
}

.fc-1 { width: 100px; height: 100px; top: 15%; left: 8%;  animation-delay: 0s, 0.5s; }
.fc-2 { width: 130px; height: 130px; bottom: 25%; right: 5%; animation-delay: 1.5s, 0.8s; }
.fc-3 { width: 80px;  height: 80px;  top: 20%; right: 12%;  animation-delay: 0.8s, 1s; }
.fc-4 { width: 110px; height: 110px; bottom: 15%; left: 15%; animation-delay: 2.2s, 1.2s; }

@keyframes cakeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-18px) rotate(3deg); }
    66% { transform: translateY(8px) rotate(-2deg); }
}

@keyframes cakeFadeIn {
    from { opacity: 0; transform: scale(.7); }
    to   { opacity: .5; transform: scale(1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 1.5rem;
}

.hero-eyebrow {
    display: inline-block;
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--pink);
    background: rgba(236, 72, 153, .1);
    border: 1px solid rgba(236, 72, 153, .25);
    border-radius: 999px;
    padding: .4rem 1.2rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.title-line { display: block; }

.title-accent {
    color: var(--pink);
    font-style: italic;
    position: relative;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--pink);
    border-radius: 4px;
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineDraw .8s var(--ease-out-expo) 1.2s forwards;
}

@keyframes underlineDraw {
    to { transform: scaleX(1); }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(245, 240, 235, .7);
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    color: var(--muted);
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    opacity: 1;
    transition: opacity .4s;
}

.hero-scroll-hint.hidden { opacity: 0; pointer-events: none; }

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--pink), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(.4); opacity: .4; }
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700;
    font-size: .95rem;
    padding: .85rem 1.8rem;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .25s var(--ease-spring);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--pink);
    color: #fff;
    border-color: var(--pink);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px var(--pink-glow);
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: conic-gradient(from var(--glow-angle, 0deg), transparent 60%, var(--pink) 100%);
    z-index: -1;
    animation: glowSpin 3s linear infinite;
    opacity: 0;
    transition: opacity .3s;
}

.btn-glow:hover::before { opacity: 1; }

@keyframes glowSpin {
    to { --glow-angle: 360deg; }
}

@property --glow-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.btn-outline {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.25);
    color: var(--text);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: #fff;
    color: var(--bg);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--bg);
    color: var(--text);
    border-color: transparent;
    font-size: .85rem;
    padding: .7rem 1.4rem;
}

.btn-dark:hover {
    background: var(--pink);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--pink-glow);
}

.btn-outline-dark {
    background: transparent;
    border-color: var(--bg);
    color: var(--bg);
}

.btn-outline-dark:hover {
    background: var(--bg);
    color: var(--text);
    transform: translateY(-2px);
}

.btn-sm { font-size: .85rem; padding: .6rem 1.2rem; }
.btn-lg { font-size: 1.05rem; padding: 1rem 2.2rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Marquee ─────────────────────────────────────────────── */
.marquee-section {
    padding: 1.2rem 0;
    background: var(--pink);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.marquee-track { overflow: hidden; }

.marquee-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    white-space: nowrap;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}

.marquee-content span {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.marquee-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── Section Common ──────────────────────────────────────── */
.section-tag {
    display: inline-block;
    font-weight: 700;
    font-size: .75rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: .75rem;
}

.section-tag-light { color: rgba(255,255,255,.6); }

.section-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-heading-light { color: #fff; }

.section-desc {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto;
}

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-cta { text-align: center; margin-top: 3rem; }

/* ── About ───────────────────────────────────────────────── */
.about-section {
    padding: 7rem 0;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--pink-glow) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    pointer-events: none;
}

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

.about-image-stack {
    position: relative;
}

.about-img-main {
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,.4);
    transform: rotate(-3deg);
    transition: transform .5s var(--ease-out-expo);
}

.about-image-stack:hover .about-img-main { transform: rotate(0deg); }

.about-img-accent {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    bottom: -30px;
    right: -20px;
    border: 4px solid var(--surface);
    box-shadow: 0 15px 40px rgba(0,0,0,.4);
    transition: transform .4s var(--ease-spring);
}

.about-image-stack:hover .about-img-accent { transform: scale(1.1) rotate(10deg); }

.about-badge {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--pink);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px var(--pink-glow);
    animation: badgePulse 3s ease-in-out infinite;
}

.badge-number {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.6rem;
    color: #fff;
    line-height: 1;
}

.badge-label {
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.8);
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 10px 30px var(--pink-glow); }
    50% { box-shadow: 0 10px 50px var(--pink-glow), 0 0 80px var(--pink-glow); }
}

.about-text-col p {
    color: var(--muted);
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.08);
}

.stat { text-align: center; }

.stat-num {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 2.2rem;
    color: var(--pink);
    line-height: 1;
}

.stat-suffix {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--pink);
}

.stat-label {
    display: block;
    font-size: .8rem;
    color: var(--muted);
    margin-top: .25rem;
    font-weight: 500;
}

/* ── Menu / Cakes ────────────────────────────────────────── */
.menu-section {
    padding: 7rem 0;
    background: var(--text);
    color: var(--bg);
    position: relative;
}

.menu-section .section-tag { color: var(--pink); }
.menu-section .section-heading { color: var(--bg); }
.menu-section .section-desc { color: #555; }

.cake-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cake-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.06);
    transition: transform .35s var(--ease-out-expo), box-shadow .35s;
    position: relative;
    transform-style: preserve-3d;
    perspective: 800px;
}

.cake-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 20px 40px rgba(236, 72, 153, .15),
        0 8px 16px rgba(0,0,0,.08);
}

.cake-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.cake-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease-out-expo);
}

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

.cake-card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        transparent 30%,
        rgba(255,255,255,.25) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform .6s;
    pointer-events: none;
}

.cake-card:hover .cake-card-shine { transform: translateX(100%); }

.cake-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #fff;
    color: var(--pink);
    font-weight: 700;
    padding: .35rem .9rem;
    border-radius: 999px;
    font-size: .9rem;
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
}

.cake-card-body {
    padding: 1.5rem;
}

.cake-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: .5rem;
    color: var(--bg);
}

.cake-card-body p {
    color: #666;
    font-size: .9rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

/* ── Gallery Strip ───────────────────────────────────────── */
.gallery-strip {
    padding: 2rem 0;
    background: var(--bg);
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 1rem;
    animation: galleryScroll 30s linear infinite;
    width: max-content;
}

.gallery-track img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    filter: brightness(.85) saturate(1.1);
    transition: filter .3s, transform .3s;
}

.gallery-track img:hover {
    filter: brightness(1) saturate(1.2);
    transform: scale(1.04);
}

@keyframes galleryScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── Order / Contact ─────────────────────────────────────── */
.order-section {
    padding: 7rem 0;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.order-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--pink-glow) 0%, transparent 70%);
    bottom: -200px;
    left: -150px;
    pointer-events: none;
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.order-desc {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.order-perks {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: .85rem;
    margin-bottom: 2rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    width: fit-content;
    color: var(--text);
    font-weight: 700;
    transition: color .2s, transform .2s;
}

.contact-link:hover {
    color: var(--pink);
    transform: translateY(-1px);
}

.perk {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.perk-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(236, 72, 153, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--pink);
}

.perk-icon svg { width: 18px; height: 18px; }

.perk span { font-weight: 500; font-size: .95rem; }

.order-deco-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--surface2);
    box-shadow: 0 20px 50px rgba(0,0,0,.4);
    opacity: .6;
    animation: cakeFloat 5s ease-in-out infinite;
}

.order-form-wrap {
    background: var(--surface2);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 24px;
    padding: 2.5rem;
}

.form-alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: .9rem;
}

.form-alert-success {
    background: rgba(34, 197, 94, .12);
    border: 1px solid rgba(34, 197, 94, .3);
    color: #4ade80;
}

.form-alert-error {
    background: rgba(239, 68, 68, .12);
    border: 1px solid rgba(239, 68, 68, .3);
    color: #f87171;
}

.order-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: .85rem;
    margin-bottom: .4rem;
    color: var(--muted);
}

.form-group {
    position: relative;
}

.form-group.is-hidden,
.form-row.is-hidden {
    display: none;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--surface);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-sm);
    padding: .8rem 1rem;
    color: var(--text);
    font-family: inherit;
    font-size: .95rem;
    line-height: 1.4;
    transition: border-color .25s, box-shadow .25s, background .25s, transform .25s;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.02);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(255,255,255,.14);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 4px var(--pink-glow);
}

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

.form-group select {
    -webkit-appearance: none;
    appearance: none;
    min-height: 50px;
    cursor: pointer;
    background:
        linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)),
        var(--surface);
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(245, 240, 235, .9) 50%),
        linear-gradient(135deg, rgba(245, 240, 235, .9) 50%, transparent 50%),
        linear-gradient(to right, rgba(255,255,255,.08), rgba(255,255,255,.02));
    background-position:
        calc(100% - 20px) calc(50% - 1px),
        calc(100% - 14px) calc(50% - 1px),
        calc(100% - 2.8rem) 50%;
    background-size:
        6px 6px,
        6px 6px,
        1px 60%;
    background-repeat: no-repeat;
    padding-right: 3.5rem;
}

.form-group select:required:invalid {
    color: var(--muted);
}

.form-group select option {
    color: var(--text);
    background: var(--surface2);
}

.form-group select option[value=""] {
    color: var(--muted);
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
    background: var(--bg);
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 3rem 0 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-brand .logo-text {
    display: block;
    margin-bottom: .5rem;
}

.footer-brand p {
    color: var(--muted);
    font-size: .9rem;
    max-width: 260px;
}

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-top: .85rem;
    color: var(--text);
    font-weight: 700;
    font-size: .95rem;
    transition: color .2s, transform .2s;
}

.footer-phone:hover {
    color: var(--pink);
    transform: translateY(-1px);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--muted);
    font-weight: 500;
    font-size: .9rem;
    transition: color .2s;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: background .2s, color .2s, transform .2s;
}

.footer-social a:hover {
    background: var(--pink);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: var(--muted);
    font-size: .8rem;
}

/* ── Reveal on Scroll ────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo);
    transition-delay: var(--delay, 0s);
}

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

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .cake-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 3rem; }
    .order-grid { gap: 3rem; }
}

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

    .mobile-toggle { display: flex; }

    .hero-title { font-size: clamp(2.2rem, 9vw, 3.5rem); }

    .float-cake { display: none; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .cake-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .cake-card-image { height: 160px; }

    .cake-card-body {
        padding: 1rem;
    }

    .cake-card-body h3 { font-size: 1rem; }
    .cake-card-body p { font-size: .8rem; margin-bottom: .8rem; }

    .order-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .order-form-wrap { padding: 1.5rem; }

    .form-row { grid-template-columns: 1fr; }

    .about-stats { gap: 1.25rem; }

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

    .footer-brand p { max-width: 100%; }

    .cursor-glow { display: none; }

    .gallery-track img {
        width: 220px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .cake-grid {
        grid-template-columns: 1fr 1fr;
        gap: .75rem;
    }

    .cake-card-image { height: 130px; }

    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
}
