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

html {
    scroll-behavior: smooth;
}

:root {
    --cream: #f3eee5;
    --light: #fbf8f2;

    --brown: #2e211b;
    --brown-soft: #5c4a40;

    --terracotta: #b76546;
    --terracotta-dark: #925038;

    --sage: #7d8d73;

    --border: #d8cec0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--cream);
    color: var(--brown);
    line-height: 1.6;
}

/* =========================
   NAVBAR
========================= */

header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(243, 238, 229, 0.95);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid var(--border);
}

.navbar {
    max-width: 1180px;
    margin: auto;
    min-height: 78px;
    padding: 0 30px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.logo {
    color: var(--brown);
    text-decoration: none;

    font-family: Georgia, serif;
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
}

.navbar ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.navbar ul a {
    color: var(--brown-soft);
    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition: color 0.2s ease;
}

.navbar ul a:hover {
    color: var(--terracotta);
}

.nav-btn {
    justify-self: end;

    padding: 11px 18px;

    background: var(--brown);
    color: white;

    text-decoration: none;

    font-size: 12px;
    font-weight: 800;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

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

/* =========================
   HERO
========================= */

.hero {
    position: relative;

    min-height: 82vh;

    display: flex;
    align-items: center;

    padding: 80px 30px;

    background:
        url("images/hero.jpg")
        center / cover
        no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(34, 24, 19, 0.78),
            rgba(34, 24, 19, 0.28)
        );
}

.hero-content {
    position: relative;
    z-index: 1;

    width: min(1180px, 100%);
    margin: auto;

    color: white;
}

.eyebrow,
.section-label {
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 900;

    color: var(--terracotta);

    margin-bottom: 18px;
}

.hero .eyebrow {
    color: #efd8c9;
}

.hero h1 {
    max-width: 850px;

    font-family: Georgia, serif;

    font-size: clamp(64px, 9vw, 115px);
    font-weight: normal;

    line-height: 0.88;
    letter-spacing: -5px;

    margin-bottom: 30px;
}

.hero-text {
    max-width: 570px;

    color: #eee5df;

    font-size: 18px;

    margin-bottom: 35px;
}

.hero-actions {
    display: flex;
    gap: 12px;
}

.primary-btn,
.secondary-btn,
.light-btn {
    display: inline-block;

    padding: 14px 22px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 800;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.primary-btn {
    background: var(--terracotta);
    color: white;
}

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

.secondary-btn {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.secondary-btn:hover {
    background: white;
    color: var(--brown);
}

/* =========================
   INTRO
========================= */

.intro {
    padding: 95px 30px;

    background: var(--light);

    border-bottom: 1px solid var(--border);
}

.intro-inner {
    max-width: 1180px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;

    align-items: end;
}

.intro h2 {
    font-family: Georgia, serif;

    font-size: clamp(42px, 5vw, 65px);
    line-height: 1;

    font-weight: normal;
}

.intro-inner > p {
    color: var(--brown-soft);

    font-size: 17px;
}

/* =========================
   MENU
========================= */

.menu-section {
    padding: 105px 30px;

    max-width: 1240px;
    margin: auto;
}

.section-heading {
    margin-bottom: 55px;
}

.section-heading h2 {
    font-family: Georgia, serif;

    font-size: clamp(44px, 6vw, 72px);
    line-height: 1;

    font-weight: normal;
}

.menu-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.menu-card {
    background: var(--light);

    border: 1px solid var(--border);

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.menu-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 14px 30px rgba(46, 33, 27, 0.08);
}

.menu-image {
    height: 310px;

    background-position: center;
    background-size: cover;

    transition: transform 0.35s ease;
}

.menu-card:hover .menu-image {
    transform: scale(1.02);
}

.coffee-image {
    background-image: url("images/coffee.jpg");
}

.pastry-image {
    background-image: url("images/pastry.jpg");
}

.brunch-image {
    background-image: url("images/brunch.jpg");
}

.menu-content {
    padding: 25px;
}

.menu-content > span {
    color: var(--sage);

    font-size: 9px;
    letter-spacing: 2px;

    font-weight: 900;
}

.menu-content h3 {
    font-family: Georgia, serif;

    font-size: 28px;

    margin: 10px 0;
}

.menu-content p {
    color: var(--brown-soft);

    margin-bottom: 18px;

    font-size: 14px;
}

.menu-content strong {
    color: var(--terracotta);

    font-size: 18px;
}

.menu-link {
    text-align: right;

    margin-top: 30px;
}

.menu-link a {
    color: var(--brown);

    text-decoration: none;

    font-weight: 800;

    transition: color 0.2s ease;
}

.menu-link a:hover {
    color: var(--terracotta);
}

/* =========================
   ABOUT
========================= */

.about-section {
    padding: 110px max(30px, calc((100% - 1180px) / 2));

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 100px;

    background: #e8e0d4;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-left h2 {
    font-family: Georgia, serif;

    font-size: clamp(40px, 4.5vw, 58px);

    line-height: 1.05;

    font-weight: normal;
}

.about-right > p {
    color: var(--brown-soft);

    font-size: 16px;

    margin-bottom: 22px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 15px;

    margin-top: 45px;
    padding-top: 30px;

    border-top: 1px solid #c9bdae;
}

.about-stats div {
    display: flex;
    flex-direction: column;

    gap: 4px;
}

.about-stats strong {
    font-family: Georgia, serif;

    font-size: 24px;
}

.about-stats span {
    color: var(--brown-soft);

    font-size: 11px;
}

/* =========================
   VISIT
========================= */

.visit-section {
    padding: 100px 30px;

    background: var(--light);
}

.visit-card {
    max-width: 1100px;

    margin: auto;

    padding: 65px;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;

    gap: 80px;

    background: var(--brown);
    color: white;
}

.section-label.light {
    color: #d8b29f;
}

.visit-copy h2 {
    max-width: 600px;

    font-family: Georgia, serif;

    font-size: clamp(46px, 5vw, 70px);

    line-height: 1;

    font-weight: normal;

    margin-bottom: 25px;
}

.visit-copy > p {
    color: #d8cdc5;

    margin-bottom: 30px;
}

.light-btn {
    background: var(--terracotta);

    color: white;
}

.light-btn:hover {
    background: var(--terracotta-dark);

    transform: translateY(-1px);
}

.visit-info {
    display: flex;
    flex-direction: column;

    justify-content: center;

    border-top: 1px solid #5c4c43;
}

.visit-info div {
    padding: 25px 0;

    border-bottom: 1px solid #5c4c43;
}

.visit-info span {
    display: block;

    color: #a89990;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;

    margin-bottom: 8px;
}

.visit-info strong {
    font-family: Georgia, serif;

    font-size: 19px;

    font-weight: normal;
}

/* =========================
   FOOTER
========================= */

footer {
    padding: 35px max(30px, calc((100% - 1180px) / 2));

    display: flex;

    justify-content: space-between;
    align-items: center;

    background: #1e1714;

    color: #aa9e96;

    font-size: 11px;
}

footer div {
    display: flex;
    flex-direction: column;
}

footer strong {
    color: white;

    font-family: Georgia, serif;

    font-size: 17px;
}

/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .navbar {
        grid-template-columns: 1fr auto;
    }

    .navbar ul {
        display: none;
    }

    .intro-inner,
    .about-section,
    .visit-card {
        grid-template-columns: 1fr;

        gap: 45px;
    }

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

    .about-left h2 {
        font-size: clamp(38px, 6vw, 52px);
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 650px) {

    .navbar {
        padding: 0 20px;
    }

    .nav-btn {
        display: none;
    }

    .hero {
        min-height: 78vh;

        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 62px;

        letter-spacing: -3px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;

        max-width: 220px;
    }

    .intro,
    .menu-section,
    .visit-section {
        padding: 75px 20px;
    }

    .about-section {
        padding: 75px 20px;
    }

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

    .menu-image {
        height: 260px;
    }

    .about-left h2 {
        font-size: 42px;
    }

    .about-stats {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .visit-card {
        padding: 40px 25px;
    }

    .visit-copy h2 {
        font-size: 48px;
    }

    footer {
        flex-direction: column;

        gap: 10px;

        text-align: center;
    }

}