/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    color: #1a0a1e;
    background: #FFF8F0;
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Color Tokens ── */
:root {
    --plum-50:  #faf0f6;
    --plum-100: #f3d8eb;
    --plum-200: #e8b4d6;
    --plum-300: #d484be;
    --plum-400: #c05aa3;
    --plum-500: #6B2F5B;
    --plum-600: #5a264d;
    --plum-700: #4a1e40;
    --plum-800: #3a1632;
    --plum-900: #2a0f25;
    --amber-50:  #fffbe6;
    --amber-100: #fff3b8;
    --amber-200: #ffe97d;
    --amber-300: #ffd11a;
    --amber-400: #f5c518;
    --amber-500: #e6a800;
    --amber-600: #c48800;
    --amber-700: #a06b00;
    --amber-800: #7a5000;
    --amber-900: #543700;
    --bg: #FFF8F0;
    --text: #1a0a1e;
    --text-light: #4a3048;
    --white: #ffffff;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(107,47,91,0.10);
    --shadow-lg: 0 12px 48px rgba(107,47,91,0.15);
}

/* ── Skip Link ── */
.skip-link {
    position: absolute; top: -100%; left: 16px;
    background: var(--plum-500); color: var(--white);
    padding: 8px 16px; border-radius: var(--radius-sm);
    z-index: 999; font-weight: 600;
}
.skip-link:focus { top: 16px; }

/* ── Geometric Shapes ── */
.geo-shape {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    opacity: 0.07;
}
.geo-shape--1 {
    width: 400px; height: 400px;
    background: var(--amber-400);
    border-radius: 50%;
    top: -100px; right: -100px;
}
.geo-shape--2 {
    width: 200px; height: 200px;
    background: var(--plum-400);
    bottom: 20%; left: -60px;
    transform: rotate(30deg);
}
.geo-shape--3 {
    width: 0; height: 0;
    border-left: 120px solid transparent;
    border-right: 120px solid transparent;
    border-bottom: 200px solid var(--amber-300);
    top: 45%; right: 5%;
}
.geo-shape--4 {
    width: 150px; height: 150px;
    background: var(--plum-300);
    border-radius: 50%;
    bottom: 10%; right: 15%;
}

/* ── Navbar ── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,248,240,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(107,47,91,0.08);
    transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow); }
.navbar__inner {
    display: flex; align-items: center;
    justify-content: space-between;
    height: 72px;
}
.navbar__brand {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700; font-size: 1.2rem;
    color: var(--plum-700);
}
.navbar__logo { color: var(--plum-500); }
.navbar__list {
    display: flex; gap: 8px; align-items: center;
}
.navbar__link {
    padding: 8px 16px; border-radius: 100px;
    font-weight: 500; font-size: 0.95rem;
    color: var(--text-light);
    transition: background 0.2s, color 0.2s;
}
.navbar__link:hover { background: var(--plum-50); color: var(--plum-600); }
.navbar__toggle {
    display: none;
    flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
    padding: 8px;
}
.navbar__bar {
    display: block; width: 24px; height: 2px;
    background: var(--plum-700); border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.navbar__toggle[aria-expanded="true"] .navbar__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.navbar__toggle[aria-expanded="true"] .navbar__bar:nth-child(2) { opacity: 0; }
.navbar__toggle[aria-expanded="true"] .navbar__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .navbar__toggle { display: flex; }
    .navbar__nav {
        position: fixed; top: 72px; left: 0; right: 0;
        background: rgba(255,248,240,0.97);
        backdrop-filter: blur(12px);
        padding: 16px 24px 24px;
        border-bottom: 1px solid rgba(107,47,91,0.1);
        transform: translateY(-120%);
        transition: transform 0.35s ease;
        z-index: 99;
    }
    .navbar__nav.open { transform: translateY(0); }
    .navbar__list { flex-direction: column; gap: 4px; }
    .navbar__link { padding: 12px 16px; width: 100%; border-radius: var(--radius-sm); }
}

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 100px;
    font-weight: 600; font-size: 1rem;
    border: none; cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--primary {
    background: var(--plum-500); color: var(--white);
}
.btn--primary:hover { background: var(--plum-600); }
.btn--secondary {
    background: var(--white); color: var(--plum-700);
    border: 2px solid var(--plum-200);
}
.btn--secondary:hover { border-color: var(--plum-400); background: var(--plum-50); }
.btn--amber {
    background: var(--amber-400); color: var(--plum-900);
}
.btn--amber:hover { background: var(--amber-500); }
.btn--full { width: 100%; justify-content: center; }

/* ── Section Labels ── */
.section-label {
    display: inline-block;
    font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--plum-500);
    background: var(--plum-100);
    padding: 6px 14px; border-radius: 100px;
    margin-bottom: 16px;
}
.section-label--light {
    background: rgba(255,255,255,0.18);
    color: var(--amber-200);
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; line-height: 1.15;
    color: var(--plum-800);
    margin-bottom: 20px;
}
.section-title--light { color: var(--white); }
.section-desc {
    font-size: 1.1rem; color: var(--text-light);
    max-width: 560px; line-height: 1.7;
}
.section-desc--light { color: rgba(255,255,255,0.8); }

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    background: linear-gradient(135deg, var(--plum-800) 0%, var(--plum-600) 50%, var(--plum-700) 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}
.hero__bg-geo {
    position: absolute; border-radius: 50%;
    pointer-events: none;
}
.hero__geo--circle {
    width: 600px; height: 600px;
    background: var(--amber-400);
    opacity: 0.12;
    top: -200px; right: -150px;
}
.hero__geo--rect {
    width: 300px; height: 300px;
    background: var(--plum-300);
    opacity: 0.15;
    bottom: -80px; left: -60px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}
.hero__inner {
    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;
    background: rgba(245,197,24,0.15);
    border: 1px solid rgba(245,197,24,0.3);
    color: var(--amber-300);
    padding: 8px 18px; border-radius: 100px;
    font-size: 0.85rem; font-weight: 600;
    margin-bottom: 24px;
}
.hero__headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 800; line-height: 1.12;
    color: var(--white);
    margin-bottom: 20px;
}
.hero__sub {
    font-size: 1.15rem; color: rgba(255,255,255,0.78);
    line-height: 1.7; max-width: 480px;
    margin-bottom: 32px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Visual */
.hero__visual {
    position: relative;
    display: flex; justify-content: center;
}
.hero__card--main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    width: 100%; max-width: 420px;
}
.hero__card--main img {
    width: 100%; height: 320px; object-fit: cover;
}
.hero__stat-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex; flex-direction: column;
    animation: float 4s ease-in-out infinite;
}
.hero__stat-card--cakes {
    bottom: -20px; left: -30px;
    animation-delay: 0s;
}
.hero__stat-card--years {
    top: 20px; right: -20px;
    animation-delay: 1.3s;
}
.hero__stat-card--events {
    bottom: 60px; right: -40px;
    animation-delay: 2.6s;
}
.hero__stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; font-weight: 800;
    color: var(--plum-600);
    line-height: 1;
}
.hero__stat-label {
    font-size: 0.8rem; color: var(--text-light);
    font-weight: 500; margin-top: 4px;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 900px) {
    .hero__inner { grid-template-columns: 1fr; text-align: center; }
    .hero__sub { margin-left: auto; margin-right: auto; }
    .hero__actions { justify-content: center; }
    .hero__visual { margin-top: 40px; }
    .hero__stat-card--cakes { left: 0; }
    .hero__stat-card--events { right: 0; }
}

/* ── About ── */
.about { padding: 100px 0; position: relative; z-index: 1; }
.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
}
.about__text p {
    color: var(--text-light); font-size: 1.05rem;
    line-height: 1.8; margin-bottom: 16px;
}
.about__features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px; margin-top: 28px;
}
.about__features li {
    display: flex; align-items: center; gap: 10px;
    font-weight: 500; color: var(--text);
}
.about__icon {
    width: 36px; height: 36px;
    background: var(--plum-100);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--plum-600); flex-shrink: 0;
}
.about__image {
    position: relative; border-radius: var(--radius);
    overflow: hidden;
}
.about__image img {
    width: 100%; height: 560px; object-fit: cover;
    border-radius: var(--radius);
}
.about__image-accent {
    position: absolute; bottom: -30px; right: -30px;
    width: 160px; height: 160px;
    background: var(--amber-400);
    border-radius: var(--radius);
    opacity: 0.3;
    z-index: -1;
}
@media (max-width: 900px) {
    .about__inner { grid-template-columns: 1fr; }
    .about__image { order: -1; }
    .about__image img { height: 360px; }
}

/* ── Menu ── */
.menu { position: relative; z-index: 1; padding: 100px 0; }
.menu__band {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, var(--plum-700) 0%, var(--plum-500) 100%);
    border-radius: 0;
    z-index: -1;
}
.menu__inner { text-align: center; }
.menu__inner .section-desc { margin: 0 auto 48px; }
.menu__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-bottom: 48px;
}
.menu-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.menu-card__img-wrap {
    position: relative; overflow: hidden;
    height: 200px;
}
.menu-card__img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s;
}
.menu-card:hover .menu-card__img-wrap img { transform: scale(1.06); }
.menu-card__tag {
    position: absolute; top: 12px; left: 12px;
    background: var(--amber-400); color: var(--plum-900);
    font-size: 0.75rem; font-weight: 700;
    padding: 4px 12px; border-radius: 100px;
    text-transform: uppercase; letter-spacing: 0.05em;
}
.menu-card__body { padding: 20px 24px 24px; text-align: left; }
.menu-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem; font-weight: 700;
    color: var(--plum-800); margin-bottom: 8px;
}
.menu-card__desc {
    font-size: 0.95rem; color: var(--text-light);
    line-height: 1.6;
}
.menu__cta {
    display: flex; flex-direction: column;
    align-items: center; gap: 12px;
}
.menu__note {
    font-size: 0.9rem; color: rgba(255,255,255,0.6);
}
@media (max-width: 900px) {
    .menu__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .menu__grid { grid-template-columns: 1fr; }
}

/* ── Catering ── */
.catering { padding: 100px 0; position: relative; z-index: 1; }
.catering__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
}
.catering__desc {
    font-size: 1.05rem; color: var(--text-light);
    line-height: 1.8; margin-bottom: 28px;
}
.catering__list {
    display: flex; flex-direction: column; gap: 14px;
    margin-bottom: 32px;
}
.catering__list li {
    display: flex; align-items: center; gap: 12px;
    font-weight: 500; color: var(--text);
    font-size: 1.05rem;
}
.catering__list svg { color: var(--amber-600); flex-shrink: 0; }
.catering__right { }
.catering__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.catering__gallery img {
    width: 100%; height: 200px; object-fit: cover;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}
.catering__gallery img:hover { transform: scale(1.03); }
.catering__gallery img:nth-child(3) {
    grid-column: 1 / -1; height: 180px;
}
@media (max-width: 900px) {
    .catering__inner { grid-template-columns: 1fr; }
}

/* ── Gallery ── */
.gallery { padding: 80px 0 100px; position: relative; z-index: 1; }
.gallery > .container { text-align: center; margin-bottom: 40px; }
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 16px;
    padding: 0 24px;
}
.gallery__item {
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.gallery__item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s;
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item--wide {
    grid-column: span 7;
    height: 300px;
}
.gallery__item:not(.--wide):not(.--tall) {
    height: 220px;
}
.gallery__item--tall {
    grid-column: span 5;
    height: 456px;
}
@media (max-width: 768px) {
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        padding: 0 16px;
    }
    .gallery__item--wide,
    .gallery__item--tall {
        grid-column: span 1;
        height: 220px;
    }
}

/* ── Info ── */
.info { position: relative; z-index: 1; padding: 80px 0; }
.info__band {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--plum-900);
    z-index: -1;
}
.info__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.info__card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 36px 32px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: background 0.3s;
}
.info__card:hover { background: rgba(255,255,255,0.11); }
.info__icon {
    width: 56px; height: 56px;
    background: var(--amber-400);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    color: var(--plum-900);
}
.info__heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; font-weight: 700;
    color: var(--white); margin-bottom: 16px;
}
.info__hours li,
.info__contact-list li {
    display: flex; justify-content: space-between;
    gap: 16px; padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.95rem;
}
.info__hours li:last-child,
.info__contact-list li:last-child { border: none; }
.info__hours span:first-child,
.info__contact-list span:first-child {
    color: rgba(255,255,255,0.6);
}
.info__hours span:last-child,
.info__contact-list span:last-child {
    color: var(--white); font-weight: 600;
}
.info__address {
    font-style: normal;
    color: var(--white); font-size: 1.05rem;
    line-height: 1.7; margin-bottom: 8px;
}
.info__contact-list a {
    display: flex; align-items: center; gap: 10px;
    color: var(--amber-300); font-weight: 500;
    transition: color 0.2s;
}
.info__contact-list a:hover { color: var(--amber-200); }
.info__note {
    font-size: 0.85rem; color: rgba(255,255,255,0.45);
    margin-top: 12px;
}
@media (max-width: 768px) {
    .info__inner { grid-template-columns: 1fr; }
}

/* ── Contact ── */
.contact { padding: 100px 0; position: relative; z-index: 1; }
.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: start;
}
.contact__text .section-desc { margin-bottom: 28px; }
.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-lg);
}
.contact-form__row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.contact-form__field { margin-bottom: 18px; }
.contact-form__label {
    display: block;
    font-size: 0.85rem; font-weight: 600;
    color: var(--plum-700); margin-bottom: 6px;
}
.contact-form__input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--plum-100);
    border-radius: var(--radius-sm);
    font-family: inherit; font-size: 1rem;
    color: var(--text); background: var(--bg);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.contact-form__input:focus {
    border-color: var(--plum-400);
    box-shadow: 0 0 0 3px rgba(107,47,91,0.1);
}
.contact-form__select { cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%236B2F5B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.contact-form__textarea { resize: vertical; min-height: 120px; }
.contact-form__success {
    display: flex; flex-direction: column;
    align-items: center; gap: 12px;
    padding: 24px; text-align: center;
    background: var(--plum-50);
    border-radius: var(--radius-sm);
    color: var(--plum-700); font-weight: 500;
    margin-top: 16px;
}
.contact-form__success svg { color: var(--plum-500); }
@media (max-width: 768px) {
    .contact__inner { grid-template-columns: 1fr; }
    .contact-form__row { grid-template-columns: 1fr; }
}

/* ── Footer ── */
.footer {
    background: var(--plum-900);
    color: rgba(255,255,255,0.6);
    padding: 60px 0 32px;
}
.footer__inner { }
.footer__top {
    display: flex; justify-content: space-between;
    align-items: start; gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700; font-size: 1.1rem;
    color: var(--white); margin-bottom: 12px;
}
.footer__logo svg { color: var(--amber-400); }
.footer__brand p { font-size: 0.9rem; line-height: 1.6; max-width: 280px; }
.footer__links {
    display: flex; gap: 24px; flex-wrap: wrap;
}
.footer__links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem; font-weight: 500;
    transition: color 0.2s;
}
.footer__links a:hover { color: var(--amber-300); }
.footer__bottom {
    display: flex; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
    padding-top: 24px;
    font-size: 0.85rem;
}
.footer__bottom a { color: var(--amber-300); transition: color 0.2s; }
.footer__bottom a:hover { color: var(--amber-200); }

/* ── Scroll Reveal (progressive enhancement) ── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
}
