:root {
    --bg: #fffaf7;
    --bg-alt: #fff3ea;
    --primary: #f4a9ae;
    --primary-dark: #e07a82;
    --accent: #f6d397;
    --text: #3b2b2b;
    --muted: #7b6a64;
    --card-bg: #ffffff;
    --radius-lg: 18px;
    --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.06);
}

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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* Layout helpers */

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

/* Top nav */

.top-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 250, 247, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--text);
}

.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #ffe7ef, var(--primary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: var(--shadow-soft);
}

.logo-text {
    font-size: 0.98rem;
}

.top-nav nav {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.top-nav a {
    text-decoration: none;
    color: var(--muted);
    padding-bottom: 0.2rem;
    border-bottom: 2px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.top-nav a:hover {
    color: var(--primary-dark);
    border-color: var(--primary);
}

/* Hero */

.hero {
    padding: 4rem 0 3rem;
    background: radial-gradient(circle at top left, #ffe6f0, #fffaf7);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.4rem, 4vw, 3.1rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.3rem;
    border-radius: 999px;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
    white-space: nowrap;
}

.btn.primary {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.btn.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn.secondary {
    background: #fff;
    color: var(--text);
    border-color: rgba(0, 0, 0, 0.05);
}

.btn.secondary:hover {
    background: #fff7f4;
    transform: translateY(-1px);
}

/* Hero image placeholder */

.hero-image-placeholder {
    width: 100%;
    min-height: 220px;
    border-radius: 26px;
    border: 2px dashed rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, #ffe9f0, #fff3ea);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    color: var(--muted);
    font-size: 0.9rem;
    box-shadow: var(--shadow-soft);
}

/* Generic sections */

.section {
    padding: 3.5rem 0;
}

.section-alt {
    background-color: var(--bg-alt);
}

.section-title {
    font-size: 1.7rem;
    margin-bottom: 0.4rem;
}

.section-subtitle {
    color: var(--muted);
    margin-bottom: 1.8rem;
    max-width: 600px;
}

/* Cards / featured */

.card-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-img {
    background: linear-gradient(135deg, #ffe5f2, #f6d397);
    color: #5c3b39;
    font-weight: 600;
    text-align: center;
    padding: 0.5rem;
}

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

.card-body h3 {
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
}

.card-body p {
    font-size: 0.9rem;
    color: var(--muted);
}

/* Menu section */

.menu-container {
    display: flex;
    flex-direction: column;
}

.menu-columns {
    display: grid;
    gap: 1.5rem;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .menu-columns {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.menu-column h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.menu-column ul {
    list-style: none;
    font-size: 0.9rem;
    color: var(--muted);
}

.menu-column li {
    margin-bottom: 0.25rem;
}

.menu-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--muted);
}

/* About */

.about-container {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .about-container {
        grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
        align-items: center;
    }
}

.about-text p + p {
    margin-top: 0.8rem;
}

.about-photo-placeholder {
    width: 100%;
    min-height: 220px;
    border-radius: 22px;
    border: 2px dashed rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, #fff0f4, #ffe6d1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.9rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

/* Ordering */

.order-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .order-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.order-step h3 {
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
}

.order-step p {
    font-size: 0.9rem;
    color: var(--muted);
}

.order-note {
    margin-top: 1.2rem;
    font-size: 0.9rem;
    color: var(--muted);
}

/* Location */

.location-container {
    max-width: 700px;
}

.location-item {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.location-item a {
    color: var(--primary-dark);
    text-decoration: none;
}

.location-item a:hover {
    text-decoration: underline;
}

/* Contact */

.contact-container {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .contact-container {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
        align-items: flex-start;
    }
}

.contact-item {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.contact-item a {
    color: var(--primary-dark);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Contact form */

.contact-form form {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 1.2rem 1.4rem;
    box-shadow: var(--shadow-soft);
}

.form-row {
    margin-bottom: 0.8rem;
}

.form-row label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 0.55rem 0.65rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.9rem;
    outline: none;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(244, 169, 174, 0.3);
}

.form-note {
    margin-top: 0.6rem;
    font-size: 0.8rem;
    color: var(--muted);
}

button[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Footer */

.site-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    background-color: #fff;
    padding: 1rem 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    align-items: center;
    font-size: 0.85rem;
    color: var(--muted);
}

.footer-small {
    font-size: 0.78rem;
}

/* Responsive tweaks */

@media (max-width: 767px) {
    .top-nav nav {
        display: none; /* keep it simple for now on mobile */
    }

    .hero {
        padding-top: 3rem;
    }

    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }
}
