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

:root {
    --bg: #f6f1e8;
    --bg-alt: #fdf9f0;
    --espresso: #2e221b;
    --foam: #f0e6d9;
    --muted: #7a6a5f;
    --accent: #c59b3a;
    --shadow: 0 18px 50px rgba(46, 34, 27, 0.12);
    --radius: 20px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--espresso);
    background: radial-gradient(circle at 20% 20%, rgba(197, 155, 58, 0.08), transparent 35%),
                radial-gradient(circle at 80% 0%, rgba(46, 34, 27, 0.06), transparent 25%),
                var(--bg);
    line-height: 1.7;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

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

.hero {
    height: 95vh;
    background: linear-gradient(120deg, rgba(46,34,27,0.75), rgba(46,34,27,0.35)),
                url("images/place3.jpg") center/cover no-repeat;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
}

.hero-overlay {
    position: relative;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.25rem;
    color: #fff;
    text-align: left;
    max-width: 1100px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
}

.hero-nav {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1100px, calc(100% - 3rem));
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #f9f6ef;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    letter-spacing: 0.08em;
}

.nav-tag {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.15);
}

.eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #d8c9b1;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 4vw, 4rem);
    line-height: 1.12;
    max-width: 850px;
}

.lede {
    max-width: 680px;
    color: #f3ede3;
    font-size: 1.05rem;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

.button.primary {
    background: #fff;
    color: var(--espresso);
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.button.ghost {
    border: 1px solid rgba(255,255,255,0.45);
    color: #fff;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.hero-ornament {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(197,155,58,0.22) 0%, rgba(197,155,58,0) 65%);
    filter: blur(8px);
}

.hero-ornament--left {
    top: 10%;
    left: -80px;
}

.hero-ornament--right {
    bottom: -40px;
    right: -60px;
}

.section {
    max-width: 1100px;
    margin: 5.5rem auto;
    padding: 0 2rem;
}

.section-header {
    max-width: 720px;
    margin-bottom: 2.2rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin: 0.35rem 0 0.5rem;
}

.section-header p {
    color: var(--muted);
}

.section-header.compact {
    margin-bottom: 1.4rem;
}

.intro p {
    font-size: 1.15rem;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    background: var(--bg-alt);
    padding: 1.8rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.signature {
    background: var(--bg-alt);
    padding: 3rem 2rem;
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.4rem;
}

.card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.6rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(46,34,27,0.05);
}

.card h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.4rem;
}

.card p {
    color: var(--muted);
}

.gallery {
    padding-top: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow);
    background: #ddd;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.7s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
    filter: saturate(1.05);
}

.placeholder {
    background: linear-gradient(135deg, rgba(197,155,58,0.2), rgba(46,34,27,0.35)),
                url("images/place2.jpg") center/cover no-repeat;
    display: grid;
    place-items: center;
}

.placeholder-text {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    letter-spacing: 0.06em;
    text-align: center;
    padding: 0 1rem;
}

.barista {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
}

.barista-media {
    position: relative;
}

.barista-media img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    border-radius: 22px;
    box-shadow: var(--shadow);
    background: #111;
}

.badge {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(197,155,58,0.92);
    color: #1f150f;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.06em;
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.barista-text h2 {
    font-family: 'Playfair Display', serif;
    margin: 0.2rem 0 0.8rem;
    font-size: 2rem;
}

.barista-text p {
    color: var(--muted);
    margin-bottom: 1.2rem;
}

.pill {
    display: inline-block;
    background: var(--bg-alt);
    border: 1px solid rgba(46,34,27,0.1);
    border-radius: 999px;
    padding: 0.5rem 0.9rem;
    margin: 0.2rem 0.35rem 0 0;
    color: var(--espresso);
    font-weight: 600;
}

.reviews {
    text-align: center;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 1.6rem;
}

.review-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.4rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(46,34,27,0.05);
    font-style: italic;
}

.stars {
    color: var(--accent);
    margin-bottom: 0.4rem;
    letter-spacing: 0.15em;
}

.review-card p {
    color: var(--espresso);
}

.review-note {
    color: var(--muted);
    display: inline-block;
    margin-top: 1rem;
}

.footer {
    background: #111;
    color: #ccc;
    text-align: center;
    padding: 2.8rem 2rem;
    margin-top: 4rem;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
}

.footer .disclaimer {
    font-size: 0.9rem;
    margin-top: 0.8rem;
    color: #888;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@media (max-width: 900px) {
    .hero {
        height: auto;
        min-height: 80vh;
    }

    .hero-overlay {
        padding-top: 7rem;
        padding-bottom: 5rem;
    }
}

@media (max-width: 640px) {
    .hero-nav {
        font-size: 0.85rem;
        padding: 0 0.4rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo {
        font-size: 1.05rem;
    }
}
