:root {
    --red: #d91f2a;
    --red-dark: #a9141d;
    --green: #00a651;
    --black: #050505;
    --white: #ffffff;
    --light: #f7f3ee;
    --text: #222222;
    --muted: #666666;
    --border: #e8dfd7;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--light);
    line-height: 1.6;
}

a { color: inherit; }

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.hero {
    background: radial-gradient(circle at center, #1c1c1c 0%, #050505 70%);
    color: var(--white);
    min-height: 72vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 70px 0;
}

.logo-white {
    width: min(620px, 92%);
    margin-bottom: 28px;
}

.eyebrow {
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

h1, h2 { line-height: 1.15; margin: 0 0 18px; }

h1 { font-size: clamp(36px, 6vw, 72px); }
h2 { font-size: clamp(26px, 4vw, 42px); }

.lead {
    max-width: 760px;
    margin: 0 auto 30px;
    font-size: 20px;
    color: #eeeeee;
}

.btn,
button.btn {
    display: inline-block;
    background: var(--red);
    color: var(--white) !important;
    border: 2px solid var(--red);
    padding: 13px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
}

.btn:hover,
button.btn:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--red);
    border-color: var(--red);
}

.hero-actions,
.social-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.info-section, .reservation-section, .map-section { padding: 80px 0; }

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

.card,
.reservation-form,
.map-wrapper {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 14px 35px rgba(0,0,0,0.08);
}

.card { padding: 30px; }
.card h2 { font-size: 28px; }
.card p { margin: 0 0 14px; }

.hours { list-style: none; padding: 0; margin: 0; }
.hours li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
}
.hours li:last-child { border-bottom: 0; }
.hours strong { text-align: right; }

.reservation-section { background: #ffffff; }
.reservation-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
    align-items: start;
}
.logo-dark {
    width: min(440px, 100%);
    margin-bottom: 30px;
}

.alert {
    padding: 16px 18px;
    border-radius: 14px;
    margin: 20px 0;
    font-weight: 700;
}
.alert-success { background: #e9f8ee; color: #0d6b2f; border: 1px solid #bfe8cc; }
.alert-error { background: #fff0f0; color: #9d1018; border: 1px solid #efc0c4; }

.reservation-form { padding: 30px; }
.reservation-form label {
    display: block;
    margin: 12px 0 6px;
    font-weight: 700;
}
.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 13px 14px;
    font: inherit;
    background: #fffdfb;
}
.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
    outline: 2px solid rgba(217,31,42,0.25);
    border-color: var(--red);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.reservation-form button { margin-top: 20px; width: 100%; }

.map-section { background: var(--light); }
.map-wrapper { overflow: hidden; margin-top: 22px; }
.map-btn { margin-top: 22px; }

footer {
    background: var(--black);
    color: var(--white);
    padding: 44px 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
    align-items: center;
}
.footer-logo { width: min(260px, 100%); }
footer a { color: var(--white); }
footer p { margin: 6px 0; color: #eeeeee; }

@media (max-width: 900px) {
    .grid-3,
    .reservation-grid,
    .footer-grid { grid-template-columns: 1fr; }
    .hero { min-height: auto; }
}

@media (max-width: 560px) {
    .form-row { grid-template-columns: 1fr; }
    .hours li { display: block; }
    .hours strong { display: block; text-align: left; }
}
