:root {
    --ink: #241f1b;
    --muted: #746b62;
    --paper: #fbf3e8;
    --surface: #ffffff;
    --line: #e8dccd;
    --accent: #195f6a;
    --accent-dark: #0f424a;
    --gold: #bd8a48;
    --sage: #718a69;
    --shadow: 0 20px 60px rgba(36, 31, 27, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(180deg, #fff9f0 0, var(--paper) 620px, #fffdf8 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px clamp(18px, 4vw, 56px);
    background: rgba(255, 250, 242, 0.92);
    border-bottom: 1px solid rgba(232, 220, 205, 0.8);
    backdrop-filter: blur(18px);
}

.brand {
    color: var(--accent-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 3vw, 1.9rem);
    font-weight: 700;
    text-decoration: none;
}

.nav {
    display: flex;
    gap: clamp(14px, 3vw, 28px);
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 700;
}

.nav a {
    text-decoration: none;
}

.nav a:hover {
    color: var(--accent);
}

.hero {
    min-height: min(760px, calc(100vh - 72px));
    display: grid;
    align-items: end;
    padding: clamp(96px, 16vw, 190px) clamp(18px, 5vw, 70px) clamp(64px, 8vw, 108px);
    background:
        linear-gradient(90deg, rgba(18, 25, 24, 0.8), rgba(18, 25, 24, 0.45) 44%, rgba(18, 25, 24, 0.05) 78%),
        linear-gradient(0deg, rgba(18, 25, 24, 0.32), rgba(18, 25, 24, 0)),
        url("/assets/whatsapp-hero.jpeg") center / cover;
    border-bottom: 1px solid rgba(36, 31, 27, 0.14);
}

.hero__content {
    width: min(720px, 100%);
    color: #fffdf8;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.28);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1,
.section h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.02;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 10ch;
    font-size: clamp(3.3rem, 11vw, 7.8rem);
}

.hero p:not(.eyebrow) {
    max-width: 560px;
    margin: 22px 0 0;
    color: rgba(255, 253, 248, 0.9);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font: inherit;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    box-shadow: 0 12px 28px rgba(15, 66, 74, 0.28);
}

.button--primary:hover {
    background: var(--accent-dark);
}

.button--secondary {
    color: #fffdf8;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
}

.section {
    padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 70px);
}

.section__heading {
    width: min(760px, 100%);
    margin-bottom: 34px;
}

.section h2 {
    font-size: clamp(2.6rem, 7vw, 5rem);
}

.section__heading p:not(.eyebrow),
.contact-copy p:not(.eyebrow) {
    max-width: 560px;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.menu-section {
    background: #fff8ee;
}

.hours-section {
    background: linear-gradient(180deg, #fffdf8, #f6efe5);
}

.hours-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
}

.info-card {
    padding: clamp(22px, 4vw, 34px);
    background: #fffdf8;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(36, 31, 27, 0.08);
}

.info-card h3 {
    margin: 0 0 12px;
    color: var(--accent-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.55rem, 3vw, 2.2rem);
}

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

.info-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.info-card li {
    padding: 8px 12px;
    color: var(--accent-dark);
    background: rgba(25, 95, 106, 0.09);
    border-radius: 999px;
    font-weight: 800;
}

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

.menu-card {
    padding: clamp(22px, 4vw, 34px);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 16px 44px rgba(36, 31, 27, 0.08);
}

.menu-card--wide {
    grid-column: 1 / -1;
}

.menu-card h3 {
    margin: 0 0 18px;
    color: var(--accent-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.menu-card ul {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu-card .two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-card li {
    min-width: 0;
    color: var(--muted);
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(232, 220, 205, 0.72);
}

.menu-card li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.menu-card strong {
    display: block;
    color: var(--ink);
    font-size: 1.02rem;
    font-weight: 800;
}

.menu-card span {
    display: block;
    margin-top: 3px;
}

.menu-note {
    margin: -4px 0 22px;
    padding: 14px 16px;
    color: var(--accent-dark);
    background: rgba(189, 138, 72, 0.14);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    font-weight: 800;
}

.drink-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 34px;
}

.drink-grid h4 {
    margin: 0 0 12px;
    color: var(--accent-dark);
    font-size: 1.04rem;
}

.drink-grid ul {
    gap: 8px;
}

.drink-grid li {
    padding-bottom: 8px;
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
    gap: clamp(32px, 7vw, 84px);
    align-items: start;
    background: linear-gradient(180deg, #fffdf8, #f7efe3);
}

.contact-copy {
    position: sticky;
    top: 104px;
}

.contact-copy h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    line-height: 1.04;
}

address {
    margin-top: 28px;
    font-style: normal;
}

address a {
    color: var(--accent);
    font-weight: 800;
}

.contact-form {
    display: grid;
    gap: 16px;
    padding: clamp(22px, 4vw, 36px);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 800;
}

input,
textarea {
    width: 100%;
    border: 1px solid #d8cbbc;
    border-radius: 7px;
    padding: 13px 14px;
    color: var(--ink);
    background: #fffdf8;
    font: inherit;
}

textarea {
    resize: vertical;
}

input:focus,
textarea:focus {
    outline: 3px solid rgba(25, 95, 106, 0.17);
    border-color: var(--accent);
}

.hidden-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-message {
    margin: 0;
    padding: 12px 14px;
    border-radius: 8px;
    font-weight: 800;
}

.form-message--success {
    color: #174f32;
    background: #e8f5ee;
}

.form-message--error {
    color: #7e231b;
    background: #fae8e5;
}

.footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 24px clamp(18px, 5vw, 70px);
    color: #fffdf8;
    background: linear-gradient(135deg, var(--accent-dark), #14362f);
}

.footer span {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
}

@media (max-width: 820px) {
    .site-header,
    .footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero {
        min-height: 620px;
    }

    .hours-grid,
    .menu-grid,
    .contact-section,
    .drink-grid,
    .menu-card .two-column {
        grid-template-columns: 1fr;
    }

    .contact-copy {
        position: static;
    }
}

@media (max-width: 520px) {
    .nav {
        width: 100%;
        justify-content: space-between;
    }

    .hero__actions,
    .button {
        width: 100%;
    }
}
