/* ============================================
   Poke Loulu — Classic & Elegant Restaurant Site
   Burgundy + Blush Palette
   ============================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Lato', 'Segoe UI', system-ui, sans-serif;
    font-weight: 300;
    line-height: 1.7;
    color: #2C1A1D;
    background-color: #FDF8F5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

address {
    font-style: normal;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 400;
    line-height: 1.2;
    color: #2C1A1D;
}

/* ---------- Utility ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: #7B2D3B;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    z-index: 9999;
    font-size: 14px;
}

.skip-link:focus {
    top: 16px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: 1.5px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn--primary {
    background: #7B2D3B;
    color: #FDF8F5;
    border-color: #7B2D3B;
}

.btn--primary:hover,
.btn--primary:focus {
    background: #5E2130;
    border-color: #5E2130;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(123, 45, 59, 0.25);
}

.btn--ghost {
    background: transparent;
    color: #7B2D3B;
    border-color: #7B2D3B;
}

.btn--ghost:hover,
.btn--ghost:focus {
    background: #7B2D3B;
    color: #FDF8F5;
    transform: translateY(-1px);
}

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

/* ---------- Section Eyebrow ---------- */
.section-eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7B2D3B;
    margin-bottom: 16px;
}

/* ---------- Section Heading ---------- */
.section-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 24px;
    color: #2C1A1D;
}

.section-heading--center {
    text-align: center;
}

.section-subheading {
    font-size: 1.05rem;
    color: #5A3D42;
    max-width: 560px;
    margin: 0 auto;
}

/* ---------- Header / Navigation ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 245, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(123, 45, 59, 0.08);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 2px 24px rgba(123, 45, 59, 0.08);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #7B2D3B;
    letter-spacing: 0.02em;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-link {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2C1A1D;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #7B2D3B;
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: #7B2D3B;
}

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

.nav-link--cta {
    background: #7B2D3B;
    color: #FDF8F5 !important;
    padding: 10px 22px;
    border-radius: 2px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.nav-link--cta::after {
    display: none;
}

.nav-link--cta:hover {
    background: #5E2130;
    transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-line {
    display: block;
    width: 24px;
    height: 1.5px;
    background: #2C1A1D;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

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

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

.hero-bg__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(253, 248, 245, 0.3) 0%,
        rgba(123, 45, 59, 0.55) 50%,
        rgba(44, 26, 29, 0.80) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 780px;
    padding: 120px 24px 80px;
}

.hero-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #F5E6D8;
    margin-bottom: 24px;
    opacity: 0.9;
}

.hero-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: #FDF8F5;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.hero-subheading {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(253, 248, 245, 0.85);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-actions .btn--ghost {
    color: #FDF8F5;
    border-color: rgba(253, 248, 245, 0.6);
}

.hero-actions .btn--ghost:hover {
    background: #FDF8F5;
    color: #7B2D3B;
    border-color: #FDF8F5;
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(253, 248, 245, 0.6);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: heroScrollBounce 2s ease-in-out infinite;
}

@keyframes heroScrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ---------- About ---------- */
.about {
    padding: 120px 0;
    background: #FDF8F5;
}

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

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

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(44, 26, 29, 0.12);
}

.about-image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1.5px solid rgba(123, 45, 59, 0.2);
    border-radius: 4px;
    z-index: -1;
}

.about-content {
    padding: 16px 0;
}

.about-content p {
    font-size: 1.02rem;
    color: #5A3D42;
    margin-bottom: 20px;
    line-height: 1.85;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(123, 45, 59, 0.12);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: #7B2D3B;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #5A3D42;
    letter-spacing: 0.04em;
}

/* ---------- Divider ---------- */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
}

/* ---------- Menu ---------- */
.menu {
    padding: 100px 0 120px;
    background: #F7EDE6;
}

.menu-header {
    text-align: center;
    margin-bottom: 72px;
}

.menu-header .section-subheading {
    margin-bottom: 0;
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.menu-category {
    background: #FDF8F5;
    border-radius: 4px;
    padding: 40px 32px;
    box-shadow: 0 4px 24px rgba(44, 26, 29, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(44, 26, 29, 0.1);
}

.menu-category-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2C1A1D;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(123, 45, 59, 0.12);
}

.menu-category-note {
    font-size: 0.9rem;
    color: #5A3D42;
    margin-bottom: 24px;
    font-style: italic;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-item {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(123, 45, 59, 0.06);
}

.menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-item-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2C1A1D;
}

.menu-item-desc {
    font-size: 0.88rem;
    color: #5A3D42;
    line-height: 1.6;
}

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

.menu-column-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #7B2D3B;
    margin-bottom: 12px;
}

.menu-small-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-small-list li {
    font-size: 0.9rem;
    color: #5A3D42;
    padding-left: 14px;
    position: relative;
    line-height: 1.6;
}

.menu-small-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    background: #7B2D3B;
    border-radius: 50%;
    opacity: 0.5;
}

.menu-note {
    text-align: center;
    font-size: 0.85rem;
    color: #8B6B6F;
    margin-top: 48px;
    font-style: italic;
}

/* ---------- Process ---------- */
.process {
    padding: 120px 0;
    background: #FDF8F5;
}

.process-header {
    text-align: center;
    margin-bottom: 72px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.process-step {
    text-align: center;
    padding: 0 16px;
}

.process-step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.6rem;
    font-weight: 300;
    color: rgba(123, 45, 59, 0.15);
    line-height: 1;
    margin-bottom: 20px;
}

.process-step-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(44, 26, 29, 0.1);
}

.process-step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2C1A1D;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.95rem;
    color: #5A3D42;
    line-height: 1.8;
    max-width: 300px;
    margin: 0 auto;
}

/* ---------- Testimonial ---------- */
.testimonial {
    padding: 100px 0;
    background: #7B2D3B;
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(245, 230, 216, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.testimonial-content {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote-mark {
    margin-bottom: 24px;
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: #F5E6D8;
    margin-bottom: 32px;
}

.testimonial-cite {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.testimonial-cite-name {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #FDF8F5;
}

.testimonial-cite-location {
    font-size: 0.85rem;
    color: rgba(245, 230, 216, 0.6);
}

/* ---------- Visit ---------- */
.visit {
    padding: 120px 0;
    background: #F7EDE6;
}

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

.visit-content {
    padding: 16px 0;
}

.visit-info {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.visit-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 1rem;
    color: #5A3D42;
    line-height: 1.7;
}

.visit-info-label {
    flex-shrink: 0;
    margin-top: 2px;
}

.visit-info-item a {
    color: #7B2D3B;
    transition: color 0.3s ease;
}

.visit-info-item a:hover {
    color: #5E2130;
    text-decoration: underline;
}

.visit-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.visit-map-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(44, 26, 29, 0.12);
}

/* ---------- Contact ---------- */
.contact {
    padding: 120px 0;
    background: #FDF8F5;
}

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

.contact-text {
    padding: 16px 0;
}

.contact-text .section-subheading {
    margin: 0 0 0 0;
    text-align: left;
}

.contact-form {
    background: #F7EDE6;
    border-radius: 4px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(44, 26, 29, 0.06);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2C1A1D;
}

.form-optional {
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0;
    color: #8B6B6F;
    font-size: 11px;
}

.form-group input,
.form-group textarea {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #2C1A1D;
    background: #FDF8F5;
    border: 1px solid rgba(123, 45, 59, 0.2);
    border-radius: 2px;
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #7B2D3B;
    box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #B8989C;
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 16px 20px;
    background: rgba(123, 45, 59, 0.06);
    border-radius: 2px;
    font-size: 0.92rem;
    color: #7B2D3B;
}

/* ---------- Footer ---------- */
.site-footer {
    background: #2C1A1D;
    color: rgba(245, 230, 216, 0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(245, 230, 216, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #F5E6D8;
    margin-bottom: 16px;
}

.footer-logo:hover {
    opacity: 0.85;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 260px;
}

.footer-heading {
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #F5E6D8;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(245, 230, 216, 0.6);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #F5E6D8;
}

.footer-contact address {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(245, 230, 216, 0.6);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #F5E6D8;
}

.footer-hours {
    font-size: 0.9rem;
    line-height: 1.9;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    font-size: 0.82rem;
    color: rgba(245, 230, 216, 0.4);
}

.footer-legal {
    font-style: italic;
}

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

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .about-grid,
    .visit-grid,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image {
        height: 400px;
    }

    .menu-categories {
        grid-template-columns: 1fr 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .process-step:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #FDF8F5;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        box-shadow: -8px 0 32px rgba(44, 26, 29, 0.12);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-link {
        font-size: 15px;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(44, 26, 29, 0.4);
        z-index: 999;
    }

    .nav-overlay.active {
        display: block;
    }

    .hero-content {
        padding: 100px 20px 80px;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .about {
        padding: 80px 0;
    }

    .about-image-accent {
        top: -12px;
        left: -12px;
    }

    .about-stats {
        gap: 24px;
    }

    .menu {
        padding: 80px 0;
    }

    .menu-categories {
        grid-template-columns: 1fr;
    }

    .menu-category {
        padding: 32px 24px;
    }

    .menu-columns {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .process {
        padding: 80px 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .process-step:last-child {
        max-width: none;
    }

    .visit {
        padding: 80px 0;
    }

    .visit-map-image {
        height: 320px;
    }

    .visit-actions {
        flex-direction: column;
    }

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

    .contact {
        padding: 80px 0;
    }

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

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

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

    .hero-heading {
        font-size: 2rem;
    }
}
