:root {
    --red: #c1121f;
    --red-dark: #780000;
    --red-soft: #ffe7e3;
    --coffee: #6f4e37;
    --coffee-dark: #3f2a1f;
    --cream: #fff7ed;
    --cream-2: #f8efe4;
    --cream-3: #f3e2cf;
    --charcoal: #1f1f1f;
    --charcoal-2: #2b2623;
    --muted: #6b7280;
    --line: #eadfd2;
    --white: #ffffff;
    --gold: #c88a46;
    --shadow-sm: 0 10px 25px rgba(31, 31, 31, 0.08);
    --shadow: 0 22px 55px rgba(31, 31, 31, 0.13);
    --shadow-red: 0 18px 36px rgba(193, 18, 31, 0.22);
    --radius: 8px;
    --radius-lg: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--charcoal);
    background:
        linear-gradient(180deg, #fffaf4 0%, #ffffff 34%, #fff8ef 100%);
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

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

a {
    color: inherit;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

.narrow {
    width: min(800px, calc(100% - 40px));
}

.skip-link,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    z-index: 300;
    width: auto;
    height: auto;
    margin: 12px;
    padding: 10px 14px;
    clip: auto;
    background: var(--charcoal);
    color: var(--white);
    border-radius: var(--radius);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 250, 244, 0.86);
    border-bottom: 1px solid rgba(234, 223, 210, 0.86);
    box-shadow: 0 10px 30px rgba(31, 31, 31, 0.05);
    backdrop-filter: blur(20px);
}

.nav-shell {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand,
.footer-brand {
    text-decoration: none;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.brand-mark,
.site-logo {
    position: relative;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 2px solid rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 30%, #ff6459, var(--red) 50%, var(--red-dark) 100%);
    color: var(--white);
    font-size: 0.76rem;
    font-weight: 900;
    box-shadow: var(--shadow-red);
    overflow: hidden;
}

.brand-mark::after,
.site-logo::after {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
}

.site-logo img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.site-logo {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(193, 18, 31, 0.18);
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 8px 18px rgba(31, 31, 31, 0.09);
}

.site-logo::after {
    display: none;
}

.brand strong {
    display: block;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.24rem;
    line-height: 1;
}

.brand small {
    display: block;
    margin-top: 3px;
    color: var(--coffee);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 7px;
    border: 1px solid rgba(234, 223, 210, 0.86);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-sm);
}

.nav-link,
.nav-whatsapp {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 13px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--charcoal);
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.nav-link:hover,
.nav-link.active {
    background: var(--cream);
    color: var(--red-dark);
}

.nav-whatsapp {
    margin-left: 4px;
    background: var(--red);
    color: var(--white);
    box-shadow: 0 12px 24px rgba(193, 18, 31, 0.2);
}

.nav-whatsapp:hover {
    transform: translateY(-1px);
    background: var(--red-dark);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: var(--charcoal);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--white);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 78px 0 88px;
    background:
        radial-gradient(circle at 82% 18%, rgba(193, 18, 31, 0.18), transparent 34%),
        radial-gradient(circle at 8% 88%, rgba(111, 78, 55, 0.13), transparent 30%),
        linear-gradient(135deg, #fffaf4 0%, #fff4e7 48%, #ffffff 100%);
}

.hero::before {
    content: "";
    position: absolute;
    right: -120px;
    top: 80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(193, 18, 31, 0.09);
}

.hero::after {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -140px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(200, 138, 70, 0.12);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 56px;
    align-items: center;
}

.hero-content {
    position: relative;
    padding: 0;
}

.hero-content h1,
.page-hero h1 {
    max-width: 830px;
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.8rem, 6vw, 5.65rem);
    line-height: 0.98;
    font-weight: 800;
    color: var(--charcoal);
}

.hero-content p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
    max-width: 700px;
    margin: 22px 0 0;
    color: #5f5148;
    font-size: clamp(1.02rem, 1.5vw, 1.22rem);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 16px;
    color: var(--red);
    font-size: 0.77rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 13px;
    border: 1px solid rgba(193, 18, 31, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    color: var(--coffee-dark);
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: var(--shadow-sm);
}

.hero-actions,
.centered-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    border: 0;
    border-radius: 999px;
    text-decoration: none;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: var(--shadow-red);
}

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

.button-secondary {
    border: 1px solid rgba(111, 78, 55, 0.18);
    background: var(--white);
    color: var(--charcoal);
    box-shadow: var(--shadow-sm);
}

.button-secondary:hover {
    color: var(--red-dark);
    box-shadow: var(--shadow);
}

.button-light {
    background: var(--white);
    color: var(--red-dark);
    box-shadow: var(--shadow-sm);
}

.hero-visual {
    position: relative;
}

.hero-image-card {
    position: relative;
    overflow: hidden;
    line-height: 0;
    height: auto;
    border: 10px solid var(--white);
    border-radius: 28px;
    background: var(--cream-2);
    box-shadow: 0 30px 80px rgba(31, 31, 31, 0.18);
}

.hero-image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(31, 31, 31, 0.18));
    pointer-events: none;
}

.hero-image-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    background: var(--cream-2);
}

.hero-note {
    position: absolute;
    left: -24px;
    bottom: 36px;
    max-width: 260px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.hero-note strong,
.hero-note span {
    display: block;
}

.hero-note strong {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.35rem;
    line-height: 1.1;
}

.hero-note span {
    margin-top: 5px;
    color: var(--muted);
    font-weight: 700;
}

.section {
    position: relative;
    padding: 96px 0;
}

.intro-section,
.gallery-preview,
.contact-options {
    background: var(--white);
}

.service-preview,
.service-section,
.form-section {
    background:
        linear-gradient(180deg, var(--cream) 0%, #ffffff 100%);
}

.menu-highlight {
    background:
        radial-gradient(circle at 12% 20%, rgba(193, 18, 31, 0.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
}

.final-cta {
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(193, 18, 31, 0.12), transparent 28%),
        var(--cream);
}

.split-grid,
.page-hero-grid,
.menu-highlight-grid,
.form-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 56px;
    align-items: center;
}

.section h2,
.menu-card h2,
.contact-card h2,
.gallery-intro h2 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    color: var(--charcoal);
    font-size: clamp(2rem, 4.2vw, 3.55rem);
    line-height: 1.05;
}

.section p,
.rich-copy p,
.section-lead {
    color: var(--muted);
}

.section-lead {
    max-width: 620px;
    margin: 18px 0 0;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 16px;
    color: var(--red-dark);
    font-weight: 900;
    text-decoration: none;
}

.text-link::after {
    content: "";
    width: 32px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease;
}

.text-link:hover::after {
    transform: translateX(5px);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 40px;
}

.section-heading-row {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

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

.feature-card,
.menu-card,
.contact-card,
.reward-card,
.site-form {
    border: 1px solid rgba(234, 223, 210, 0.9);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
}

.feature-card {
    position: relative;
    overflow: hidden;
    min-height: 214px;
    padding: 26px;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -42px;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: rgba(193, 18, 31, 0.08);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(193, 18, 31, 0.18);
    box-shadow: var(--shadow);
}

.feature-card h3 {
    position: relative;
    z-index: 1;
    margin: 20px 0 9px;
    font-size: 1.08rem;
    line-height: 1.25;
}

.feature-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.card-icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    box-shadow: 0 12px 24px rgba(193, 18, 31, 0.18);
}

.card-icon::before {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
}

.image-panel,
.mini-image-card {
    position: relative;
    overflow: hidden;
    line-height: 0;
    border: 9px solid var(--white);
    border-radius: var(--radius-lg);
    background: var(--cream-2);
    box-shadow: var(--shadow);
}

.image-panel::after,
.mini-image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 58%, rgba(31, 31, 31, 0.14));
    pointer-events: none;
}

.image-panel img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    background: var(--cream-2);
}

.mini-image-card {
    margin-top: 28px;
}

.mini-image-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    background: var(--cream-2);
}

.price-list {
    margin: 28px 0;
}

.price-list div {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    padding: 14px 0;
    border-bottom: 1px dashed rgba(111, 78, 55, 0.22);
}

.price-list span {
    font-weight: 800;
}

.price-list strong {
    color: var(--red);
    font-size: 1.12rem;
    font-weight: 900;
}

.cta-band {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 46px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    background:
        radial-gradient(circle at 84% 16%, rgba(193, 18, 31, 0.32), transparent 26%),
        linear-gradient(135deg, var(--charcoal), var(--coffee-dark));
    color: var(--white);
    box-shadow: var(--shadow);
}

.cta-band::before {
    content: "";
    position: absolute;
    right: 28%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.cta-band h2 {
    color: var(--white);
}

.cta-band p:not(.eyebrow) {
    max-width: 650px;
    color: #f5ddcc;
}

.cta-band .eyebrow {
    color: #ffb9b3;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 1fr;
    grid-auto-flow: dense;
    gap: 18px;
}

.gallery-grid.compact {
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.gallery-grid img,
.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    background: var(--cream-2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 240ms ease, filter 240ms ease, box-shadow 240ms ease;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    line-height: 0;
    padding: 0;
    border: 0;
    border-radius: var(--radius-lg);
    background: transparent;
    cursor: zoom-in;
}

.gallery-item:hover img,
.gallery-preview img:hover {
    transform: none;
    filter: saturate(1.06);
    box-shadow: var(--shadow);
}

.hero-image-card img,
.image-panel img,
.mini-image-card img,
.gallery-grid img,
.gallery-item img,
.lightbox img {
    object-fit: contain;
    object-position: center;
}

.gallery-intro {
    max-width: 740px;
    margin-bottom: 34px;
}

.centered {
    text-align: center;
}

.centered h2,
.centered p {
    margin-inline: auto;
}

.centered .button,
.centered-actions {
    justify-content: center;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 82px;
    background:
        radial-gradient(circle at 88% 18%, rgba(193, 18, 31, 0.14), transparent 34%),
        linear-gradient(135deg, var(--cream) 0%, #ffffff 78%);
}

.page-hero::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -120px;
    width: 310px;
    height: 310px;
    border-radius: 50%;
    background: rgba(111, 78, 55, 0.08);
}

.page-hero-grid {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 22px;
    align-items: start;
}

.menu-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 237, 0.8)),
        var(--white);
}

.menu-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 6px;
    background: linear-gradient(90deg, var(--red), var(--gold), var(--coffee));
}

.menu-label {
    margin: 0 0 6px;
    color: var(--red);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
}

.menu-card h2 {
    margin: 0 0 10px;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.reward-card {
    position: relative;
    overflow: hidden;
    padding: 38px;
    min-height: 360px;
    display: grid;
    align-content: center;
    gap: 16px;
    color: var(--white);
    background:
        radial-gradient(circle at 80% 18%, rgba(193, 18, 31, 0.48), transparent 26%),
        linear-gradient(135deg, var(--charcoal), var(--coffee-dark));
    box-shadow: var(--shadow);
}

.reward-card::after {
    content: "";
    position: absolute;
    right: -52px;
    bottom: -52px;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.reward-card span {
    color: #ffcbc6;
    font-weight: 900;
    text-transform: uppercase;
}

.reward-card strong {
    color: var(--white);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(4.5rem, 9vw, 7.6rem);
    line-height: 0.9;
}

.reward-card p {
    margin: 0;
    color: #f6dfcd;
    font-weight: 800;
}

.punch-row {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 7px;
    max-width: 360px;
}

.punch-row i,
.punch-row b {
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.punch-row i {
    border: 1px solid rgba(255, 255, 255, 0.32);
}

.punch-row b {
    background: var(--red);
    box-shadow: 0 0 0 4px rgba(193, 18, 31, 0.2);
}

.site-form {
    position: relative;
    padding: 34px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
}

.site-form::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: linear-gradient(90deg, var(--red), var(--coffee));
}

.form-intro {
    align-self: start;
}

.booking-aside {
    padding: 30px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 247, 237, 0.9), rgba(255, 255, 255, 0.9));
}

.benefit-list {
    display: grid;
    gap: 11px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.benefit-list li {
    position: relative;
    padding-left: 28px;
    color: var(--charcoal);
    font-weight: 800;
}

.benefit-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58em;
    width: 12px;
    height: 12px;
    border: 3px solid var(--red);
    border-radius: 50%;
    background: var(--white);
}

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

.site-form label {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--charcoal);
    font-size: 0.92rem;
    font-weight: 900;
}

input,
select,
textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid #dfd0c0;
    border-radius: 12px;
    padding: 12px 14px;
    font: inherit;
    color: var(--charcoal);
    background: #fffdfa;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: 0;
    border-color: var(--red);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(193, 18, 31, 0.12);
}

.field-error {
    color: var(--red-dark);
    font-size: 0.86rem;
    font-weight: 800;
}

.form-alert {
    margin-bottom: 18px;
    padding: 14px 15px;
    border-radius: 12px;
    font-weight: 800;
}

.form-alert.success {
    background: #eaf7ef;
    color: #176038;
}

.form-alert.notice {
    background: #fff3d7;
    color: #765019;
}

.form-alert.error {
    background: #ffe9e6;
    color: var(--red-dark);
}

.contact-list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.contact-list li {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 14px;
    border-bottom: 1px dashed rgba(111, 78, 55, 0.22);
}

.contact-list strong {
    color: var(--coffee-dark);
}

.contact-list span {
    color: var(--red-dark);
    font-weight: 900;
}

.contact-card {
    padding: 34px;
}

.contact-card h2 {
    font-size: 2rem;
}

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

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(20, 17, 16, 0.88);
    backdrop-filter: blur(10px);
}

.lightbox[hidden] {
    display: none;
}

.lightbox img {
    max-height: 86vh;
    width: auto;
    max-width: min(1080px, calc(100vw - 40px));
    border: 8px solid var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: var(--white);
    color: var(--charcoal);
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 64px 0 24px;
    background:
        radial-gradient(circle at 85% 16%, rgba(193, 18, 31, 0.22), transparent 28%),
        linear-gradient(135deg, #1b1715, #2b1e18 58%, #171717);
    color: var(--white);
}

.site-footer::before {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -110px;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 1fr;
    gap: 42px;
}

.footer-brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    color: var(--white);
    text-decoration: none;
}

.footer-brand {
    color: var(--white);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 800;
}

.footer-logo {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.site-footer p,
.site-footer a {
    color: #f4ded2;
}

.site-footer .button-light {
    color: var(--red-dark);
}

.site-footer h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 0.95rem;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 9px;
}

.footer-links a,
.footer-whatsapp {
    text-decoration: none;
}

.footer-links a:hover,
.footer-whatsapp:hover {
    color: var(--white);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 17px;
    border-radius: 999px;
    background: #25d366;
    color: #103a20;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.28);
}

@media (max-width: 1080px) {
    .hero-grid,
    .split-grid,
    .page-hero-grid,
    .menu-highlight-grid,
    .form-layout {
        gap: 38px;
    }

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

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

    .primary-nav {
        position: absolute;
        top: 82px;
        left: 20px;
        right: 20px;
        display: none;
        padding: 12px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow);
    }

    .primary-nav.open {
        display: grid;
        gap: 6px;
    }

    .nav-link,
    .nav-whatsapp {
        justify-content: flex-start;
        width: 100%;
        margin: 0;
        border-radius: 12px;
    }

    .hero-grid,
    .split-grid,
    .page-hero-grid,
    .menu-highlight-grid,
    .form-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-image-card {
        min-height: 0;
    }

    .hero-note {
        left: 24px;
    }

    .menu-grid,
    .contact-option-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid,
    .gallery-grid.compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-band {
        align-items: flex-start;
        flex-direction: column;
    }

    .cta-band::before {
        display: none;
    }
}

@media (max-width: 640px) {
    .container,
    .narrow {
        width: min(100% - 24px, var(--container));
    }

    .nav-shell {
        min-height: 70px;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
    }

    .site-logo {
        width: 40px;
        height: 40px;
    }

    .brand strong {
        font-size: 1.04rem;
    }

    .brand small {
        font-size: 0.68rem;
    }

    .footer-brand-lockup {
        gap: 12px;
    }

    .footer-logo {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .footer-brand {
        font-size: 1.55rem;
    }

    .primary-nav {
        top: 70px;
        left: 12px;
        right: 12px;
    }

    .hero {
        padding: 56px 0 64px;
    }

    .hero-content h1,
    .page-hero h1 {
        font-size: clamp(2.45rem, 14vw, 3.5rem);
    }

    .hero-content p:not(.eyebrow),
    .page-hero p:not(.eyebrow) {
        font-size: 1rem;
    }

    .hero-badges,
    .hero-actions {
        display: grid;
    }

    .hero-image-card {
        min-height: 0;
    }

    .hero-image-card,
    .image-panel,
    .mini-image-card,
    .lightbox img {
        border-width: 6px;
        border-radius: 16px;
    }

    .hero-note {
        position: relative;
        left: auto;
        bottom: auto;
        max-width: none;
        margin: -44px 16px 0;
    }

    .section,
    .page-hero {
        padding: 62px 0;
    }

    .card-grid,
    .gallery-grid,
    .gallery-grid.compact,
    .menu-grid,
    .form-grid,
    .contact-option-grid {
        grid-template-columns: 1fr;
    }

    .section-heading-row {
        display: block;
    }

    .button {
        width: 100%;
    }

    .site-form,
    .feature-card,
    .menu-card,
    .contact-card,
    .reward-card,
    .booking-aside {
        padding: 24px;
    }

    .cta-band {
        padding: 28px;
        border-radius: 18px;
    }

    .contact-list li {
        display: grid;
        gap: 3px;
    }

    .floating-whatsapp {
        right: 12px;
        bottom: 12px;
    }
}
