* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'EB Garamond', serif;
    color: #000;
    background: #e3d8c0;
}

/* Shared text utilities */
.text-scale-140 {
    font-size: 1.4em;
}

.text-scale-180 {
    font-size: 1.8em;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 35px 40px;
    background: transparent;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 100;
    transition: color 0.25s ease, -webkit-backdrop-filter 0.25s ease, backdrop-filter 0.25s ease;
}

header.header-scrolled {
    background: transparent;
}

.logo-wrap {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
}

.logo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.35s ease;
}

.logo-default {
    opacity: 0.8;
}

.logo-scrolled {
    opacity: 0;
}

header.header-scrolled .logo-default {
    opacity: 0;
}

header.header-scrolled .logo-scrolled {
    opacity: 0.8;
}

nav {
    display: flex;
}

.header-nav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.nav-links {
    grid-column: 2;
    display: flex;
    justify-content: center;
}

.nav-links a {
    position: relative;
    display: inline-block;
    font-size: 1.50rem;
    color: #e3d8c0;
    padding-bottom: 4px;
    transition: color 0.25s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    transform: scaleX(1);
}

header .header-reservation {
    grid-column: 3;
    justify-self: end;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    width: auto;
    min-height: 0;
    padding: 10px 22px;
    border-radius: 999px;
    clip-path: none;
    background: #261403;
    color: #e3d8c0;
    border: 1px solid rgba(197, 166, 118, 0.72);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

header .header-reservation::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(227, 216, 192, 0.12), rgba(197, 166, 118, 0.08) 45%, rgba(255, 255, 255, 0));
    opacity: 0.58;
    z-index: -1;
    transition: opacity 0.25s ease, transform 0.35s ease;
}

header.header-scrolled .nav-links a {
    color: #261403;
}

header.header-scrolled .header-reservation {
    color: #261403;
    border-color: rgba(184, 143, 95, 0.6);
    background: #e3d8c0;
    text-shadow: none;
    box-shadow: 0 6px 16px rgba(38, 20, 3, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

header.header-scrolled .header-reservation::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.45), rgba(197, 166, 118, 0.12) 45%, rgba(255, 255, 255, 0));
}

header .header-reservation:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(197, 166, 118, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

header .header-reservation:hover::before {
    opacity: 1;
    transform: translateX(4px);
}

header.header-scrolled .header-reservation:hover {
    box-shadow: 0 10px 22px rgba(38, 20, 3, 0.14), 0 0 0 1px rgba(184, 143, 95, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

nav a {
    margin: 0 20px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.22);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: min(92vw, 900px);
}

.hero-content h1 {
    font-size: clamp(2rem, 4.8vw, 3.2rem);
    margin-bottom: 12px;
    font-weight: 600;
    text-shadow: 2px 3px 10px rgba(0, 0, 0, 0.5);
}

.hero-content h3 {
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 400;
    line-height: 1.45;
    max-width: 760px;
    margin: 0 auto;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.45);
}

.hero .curve {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 140px;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.hero .curve::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 112%;
    height: 180px;
    transform: translate(-50%, 54%);
    border-radius: 50%;
    box-shadow: inset 0 -10px 10px rgba(0, 0, 0, 0.05);
    background: #e3d8c0;
}

/* About Section */
.about {
    position: relative;
    margin-top: 0;
    padding: 25px 40px 80px;
    background: #e3d8c0;
    text-align: center;
    overflow: hidden;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #000;
}

.about p {
    font-size: 1.8rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: #000;
}

/* Info Section */
.info {
    position: relative;
    margin-top: 0;
    padding: 120px 40px 80px;
    background: #e3d8c0;
    text-align: center;
    overflow: hidden;
}

.menu-slider-section {
    position: relative;
    width: 100%;
    margin-top: 0;
    padding: 110px 0;
    background: #e3d8c0;
    overflow: hidden;
}

.info h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #000;
}

.info p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: #000;
}

.hours-highlight {
    position: relative;
    padding: 48px 40px 30px;
    background: #e3d8c0;
    overflow: hidden;
}

.hours-highlight-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 56px 32px 30px;
    text-align: center;
    border-top-left-radius: 48% 14%;
    border-top-right-radius: 48% 14%;
    background: rgba(255, 248, 232, 0.22);
}

.hours-kicker {
    margin-bottom: 12px;
    color: rgba(38, 20, 3, 0.7);
    font-size: 0.95rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.hours-highlight h2 {
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    font-weight: 500;
    line-height: 0.96;
    color: #261403;
    margin-bottom: 44px;
}

.hours-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    align-items: start;
    margin-bottom: 48px;
    max-width: 420px;
    margin-inline: auto;
}

.hours-block h3 {
    margin-bottom: 10px;
    font-size: 1.85rem;
    font-weight: 600;
    color: #261403;
}

.hours-block p {
    font-size: 1.45rem;
    line-height: 1.5;
    color: #261403;
}

.hours-block-muted h3,
.hours-block-muted p {
    color: rgba(38, 20, 3, 0.72);
}

.hours-address {
    font-size: 1.8rem;
    line-height: 1.18;
    color: #261403;
}

/* Social Section */
.social-section {
    position: relative;
    margin-top: 0;
    padding: 72px 32px 62px;
    background:
        radial-gradient(circle at top left, rgba(197, 166, 118, 0.32), transparent 32%),
        linear-gradient(180deg, #e8dcc7 0%, #e3d8c0 100%);
    overflow: hidden;
}

.social-copy {
    max-width: 720px;
    margin: 0 auto 26px;
    text-align: center;
}

.social-kicker {
    margin: 0 0 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 0.82rem;
    color: #8a5b2e;
}

.social-section h2 {
    margin: 0 0 16px;
    font-size: 2.2rem;
    color: #261403;
}

.social-copy p:last-child {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.7;
    color: rgba(38, 20, 3, 0.84);
}

.section-divider {
    background: #e3d8c0;
    position: relative;
    padding: 74px 0 0;
    line-height: 0;
    overflow: hidden;
}

.section-divider .editorial {
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 72px;
    max-height: 72px;
    z-index: 2;
    pointer-events: none;
}

.section-divider .parallax1 > use {
    animation: move-forever-1 14s linear infinite;
}

.section-divider .parallax2 > use {
    animation: move-forever-2 12s linear infinite;
}

.section-divider .parallax3 > use {
    animation: move-forever-3 10s linear infinite;
}

.section-divider .parallax4 > use {
    animation: move-forever-4 8s linear infinite;
}

@keyframes move-forever-1 {
    0% {
        transform: translateX(85px);
    }
    100% {
        transform: translateX(-90px);
    }
}

@keyframes move-forever-2 {
    0% {
        transform: translateX(-90px);
    }
    100% {
        transform: translateX(85px);
    }
}

@keyframes move-forever-3 {
    0% {
        transform: translateX(85px);
    }
    100% {
        transform: translateX(-90px);
    }
}

@keyframes move-forever-4 {
    0% {
        transform: translateX(-90px);
    }
    100% {
        transform: translateX(85px);
    }
}

.social-grid {
    display: grid;
    max-width: 860px;
    margin: 0 auto;
    gap: 18px;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.social-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px;
    border-radius: 26px;
    text-decoration: none;
    color: #261403;
    background: rgba(255, 249, 239, 0.78);
    border: 1px solid rgba(138, 91, 46, 0.14);
    box-shadow: 0 18px 34px rgba(92, 62, 32, 0.11);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    backdrop-filter: blur(4px);
}

.social-card:hover,
.social-card:focus-visible {
    transform: translateY(-6px);
    box-shadow: 0 24px 40px rgba(92, 62, 32, 0.16);
    border-color: rgba(138, 91, 46, 0.28);
}

.social-card-instagram {
    background: linear-gradient(160deg, rgba(255, 239, 231, 0.94), rgba(255, 248, 236, 0.9));
}

.social-card-facebook {
    background: linear-gradient(160deg, rgba(233, 239, 247, 0.95), rgba(251, 247, 239, 0.9));
}

.social-gimmick-card {
    padding: 26px;
    background: linear-gradient(160deg, rgba(246, 232, 205, 0.95), rgba(255, 248, 236, 0.96));
}

.raviolo-stage {
    --raviolo-walker-size: 190px;
    position: relative;
    min-height: 200px;
    margin: 4px 0 2px;
    padding: 8px 12px 0;
    border-radius: 22px;
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0) 58%),
        linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(232, 214, 183, 0.42));
    overflow: hidden;
}

.raviolo-walker {
    position: absolute;
    left: 12px;
    bottom: 0;
    width: min(var(--raviolo-walker-size), calc(100% - 24px));
    max-width: calc(100% - 24px);
    animation: raviolo-walk 13.5s ease-in-out infinite;
    transform-origin: center bottom;
    will-change: left, transform;
}

.raviolo-mascot {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 14px 18px rgba(109, 78, 35, 0.18));
    transform-origin: center bottom;
    animation: raviolo-float 4.6s ease-in-out infinite, raviolo-tippy 0.9s ease-in-out infinite;
}

.social-card-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.social-card-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8a5b2e;
}

.social-card strong {
    font-size: 1.35rem;
    line-height: 1.3;
}

.raviolo-speech-bubble {
    position: relative;
    margin: 8px 0 2px;
    padding: 20px 20px 18px;
    border-radius: 26px;
    background: #fffdf7;
    border: 3px solid #261403;
}

.raviolo-speech-bubble::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -15px;
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 10px solid transparent;
    border-top: 20px solid #261403;
    transform: translateX(-50%);
}

.raviolo-speech-bubble::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 0;
    height: 0;
    border-left: 13px solid transparent;
    border-right: 8px solid transparent;
    border-top: 16px solid #fffdf7;
    transform: translateX(-50%);
}

.raviolo-speech-bubble strong {
    display: block;
    margin-bottom: 8px;
}

.social-card span:last-child,
.social-gimmick-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(38, 20, 3, 0.82);
}

.social-gimmick-btn {
    align-self: flex-start;
    margin-top: auto;
    border: none;
    border-radius: 999px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #8a5b2e, #b88f5f);
    color: #fffaf2;
    font-family: inherit;
    font-size: 0.98rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 12px 24px rgba(138, 91, 46, 0.2);
}

.social-gimmick-btn:hover,
.social-gimmick-btn:focus-visible {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 16px 28px rgba(138, 91, 46, 0.24);
}

.raviolo-cheer {
    animation: raviolo-cheer-glow 0.75s ease;
}

.oracle-bounce {
    animation: oracle-bounce 0.45s ease;
}

@keyframes raviolo-float {
    0% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-7px) rotate(2deg);
    }
    100% {
        transform: translateY(0) rotate(-2deg);
    }
}

@keyframes raviolo-walk {
    0% {
        left: 12px;
        transform: scaleX(-1);
    }
    22% {
        left: calc(100% - var(--raviolo-walker-size) - 44px);
        transform: scaleX(-1);
    }
    28% {
        left: calc(100% - var(--raviolo-walker-size) - 20px);
        transform: scaleX(-1);
    }
    31% {
        left: calc(100% - var(--raviolo-walker-size) - 16px);
        transform: scaleX(-1) rotate(-1.5deg);
    }
    34% {
        left: calc(100% - var(--raviolo-walker-size) - 16px);
        transform: scaleX(1) rotate(0deg);
    }
    50% {
        left: 52px;
        transform: scaleX(1);
    }
    56% {
        left: 16px;
        transform: scaleX(1);
    }
    59% {
        left: 12px;
        transform: scaleX(1) rotate(1.5deg);
    }
    62% {
        left: 12px;
        transform: scaleX(-1) rotate(0deg);
    }
    78% {
        left: calc(100% - var(--raviolo-walker-size) - 48px);
        transform: scaleX(-1);
    }
    84% {
        left: calc(100% - var(--raviolo-walker-size) - 18px);
        transform: scaleX(-1);
    }
    87% {
        left: calc(100% - var(--raviolo-walker-size) - 12px);
        transform: scaleX(-1) rotate(-1.5deg);
    }
    90% {
        left: calc(100% - var(--raviolo-walker-size) - 12px);
        transform: scaleX(1) rotate(0deg);
    }
    100% {
        left: 12px;
        transform: scaleX(1);
    }
}

@keyframes raviolo-tippy {
    0% {
        transform: translateY(0) rotate(-1.5deg);
    }
    25% {
        transform: translateY(-1px) rotate(1.6deg);
    }
    50% {
        transform: translateY(0) rotate(-1deg);
    }
    75% {
        transform: translateY(-1px) rotate(1.4deg);
    }
    100% {
        transform: translateY(0) rotate(-1.5deg);
    }
}

@keyframes raviolo-cheer-glow {
    0% {
        filter: drop-shadow(0 14px 18px rgba(109, 78, 35, 0.18)) brightness(1);
    }
    30% {
        filter: drop-shadow(0 18px 28px rgba(184, 143, 95, 0.38)) brightness(1.06);
    }
    65% {
        filter: drop-shadow(0 20px 30px rgba(184, 143, 95, 0.28)) brightness(1.1);
    }
    100% {
        filter: drop-shadow(0 14px 18px rgba(109, 78, 35, 0.18)) brightness(1);
    }
}

@keyframes oracle-bounce {
    0% {
        transform: translateY(8px);
        opacity: 0.35;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 900px) {
    .hours-highlight {
        padding: 34px 20px 20px;
    }

    .hours-highlight-inner {
        padding: 42px 20px 24px;
        border-top-left-radius: 42% 10%;
        border-top-right-radius: 42% 10%;
    }

    .hours-highlight h2 {
        margin-bottom: 32px;
    }

    .hours-columns {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 34px;
    }

    .hours-block h3 {
        font-size: 1.55rem;
    }

    .hours-block p,
    .hours-address {
        font-size: 1.22rem;
    }

    .social-section {
        margin-top: 0;
        padding: 72px 20px 60px;
    }

    .section-divider {
        padding: 64px 0 0;
    }

    .section-divider .editorial {
        top: 8px;
        height: 62px;
        max-height: 62px;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .social-links-grid {
        grid-template-columns: 1fr;
    }

    .social-card {
        padding: 24px;
    }

    .raviolo-speech-bubble {
        padding: 16px 16px 14px;
    }

    .raviolo-speech-bubble::before {
        left: 50%;
    }

    .raviolo-speech-bubble::after {
        left: 50%;
    }

    .raviolo-stage {
        --raviolo-walker-size: 168px;
        min-height: 200px;
    }

    .raviolo-walker {
        animation-duration: 11.5s;
    }

    .raviolo-mascot {
        width: 100%;
    }
}

/* Maps Section */
.maps-section {
    position: relative;
    margin-top: 0;
    padding: 110px 40px 80px;
    background: #e3d8c0;
    text-align: center;
    overflow: hidden;
}

.maps-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #000;
    font-weight: 300;
    letter-spacing: 1px;
}

.maps-layout {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.maps-layout::before,
.maps-layout::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.maps-layout::before {
    width: 180px;
    height: 180px;
    top: 40px;
    left: -90px;
    background: radial-gradient(circle, rgba(197, 166, 118, 0.24), rgba(197, 166, 118, 0));
}

.maps-layout::after {
    width: 220px;
    height: 220px;
    right: -120px;
    bottom: 20px;
    background: radial-gradient(circle, rgba(184, 143, 95, 0.18), rgba(184, 143, 95, 0));
}

.contact-details {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    align-content: start;
    text-align: left;
    color: #000;
    gap: 16px;
}

.contact-group {
    position: relative;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.48));
    border: 1px solid rgba(38, 20, 3, 0.12);
    border-radius: 14px;
    padding: 22px 24px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.contact-group::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
    background: linear-gradient(180deg, #c5a676, #b88f5f);
}

.contact-group:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.11);
}

.contact-details h3 {
    font-size: 1.25rem;
    margin: 0 0 12px;
    letter-spacing: 0.3px;
    color: #261403;
}

.contact-details p {
    margin: 0 0 10px;
    line-height: 1.6;
}

.contact-details p:last-of-type {
    margin-bottom: 0;
}

.contact-details a {
    color: #261403;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-group-reservation p {
    margin-bottom: 16px;
}

.contact-group-reservation {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    grid-column: 1 / -1;
    background: linear-gradient(145deg, rgba(38, 20, 3, 0.93), rgba(38, 20, 3, 0.84));
    color: #e3d8c0;
    border-color: rgba(38, 20, 3, 0.55);
}

.contact-group-reservation::before {
    display: none;
}

.contact-group-reservation h3 {
    color: #e3d8c0;
}

.contact-group-reservation .reservation-btn {
    align-self: flex-start;
    width: auto;
    min-width: 250px;
    padding-inline: 22px;
    background: #e3d8c0;
    color: #261403;
    border-color: rgba(227, 216, 192, 0.65);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.contact-group-reservation .reservation-btn {
    align-self: flex-start;
}

.contact-group-reservation .reservation-btn,
.contact-group-reservation .reservation-btn:hover,
.contact-group-reservation .reservation-btn:visited {
    color: #261403;
}

.reservation-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 320px);
    min-height: 44px;
    padding: 12px 24px;
    border-radius: 6px;
    clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
    border: 1px solid rgba(38, 20, 3, 0.22);
    background: #261403;
    color: #e3d8c0;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

header .reservation-btn {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.reservation-btn:hover {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.info .reservation-btn {
    border-radius: 999px;
    clip-path: none;
    padding-inline: 28px;
    box-shadow: 0 10px 22px rgba(38, 20, 3, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.info .reservation-btn:hover {
    box-shadow: 0 12px 26px rgba(38, 20, 3, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-details .reservation-btn,
.contact-details .reservation-btn:hover,
.contact-details .reservation-btn:visited {
    color: inherit;
    text-decoration: none;
}

.contact-details .contact-group-reservation .reservation-btn,
.contact-details .contact-group-reservation .reservation-btn:hover,
.contact-details .contact-group-reservation .reservation-btn:visited {
    color: #261403;
}

.map-container {
    position: relative;
    width: min(100%, 620px);
    aspect-ratio: 1 / 1;
    margin-left: 0;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(38, 20, 3, 0.1);
}

.map-container iframe {
    flex: 1;
    width: 100%;
    height: 100%;
    min-height: 100%;
    border: none;
    display: none;
}

.map-container iframe.enabled {
    display: block;
}

.maps-consent-placeholder {
    flex: 1;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    padding: 30px;
    background: #e3d8c0;
    color: #000;
}

.maps-consent-placeholder p {
    margin: 0;
    text-align: center;
    max-width: 520px;
}

.maps-consent-placeholder.hidden {
    display: none;
}

.contact-reservation-card {
    position: relative;
    z-index: 1;
    width: min(100%, 620px);
    padding: 28px 24px 30px;
    border-radius: 18px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.48));
    border: 1px solid rgba(38, 20, 3, 0.12);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
    text-align: center;
    color: #261403;
}

.contact-reservation-card h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: #261403;
}

.contact-reservation-card p {
    max-width: 500px;
    margin: 0 auto 20px;
    line-height: 1.65;
}

.contact-reservation-card .reservation-btn {
    border-radius: 999px;
    clip-path: none;
    padding-inline: 28px;
    box-shadow: 0 10px 22px rgba(38, 20, 3, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-reservation-card .reservation-btn:hover {
    box-shadow: 0 12px 26px rgba(38, 20, 3, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Footer */
footer {
    position: relative;
    overflow: hidden;
    background: #261403;
    color: #fff;
    text-align: center;
    padding: 72px 40px 30px;
}

footer::before {
    content: "";
    position: absolute;
    top: -69px;
    left: 50%;
    width: 128%;
    height: 124px;
    transform: translateX(-50%);
    background: #e3d8c0;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
}

footer > p {
    margin-bottom: 2em;
}

.footer-links {
    margin-top: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

.footer-links a {
    display: inline-block;
    color: #fff;
    text-decoration: underline;
    font-size: 1em;
}

.footer-socials {
    position: absolute;
    right: 28px;
    bottom: 24px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-social-btn {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(227, 216, 192, 0.24);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.footer-social-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.footer-social-btn:hover,
.footer-social-btn:focus-visible {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.24);
}

.cookie-settings-link {
    margin-top: 0;
    display: inline-block;
    border: none;
    background: transparent;
    color: #fff;
    text-decoration: underline;
    cursor: pointer;
    font-size: 1em;
    font-family: inherit;
    line-height: inherit;
}

.cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    background: rgba(227, 216, 192, 0.96);
    color: #000;
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: 1200;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.cookie-banner p a {
    color: #000;
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    border: none;
    border-radius: 8px;
    padding: 9px 14px;
    font-size: 0.92rem;
    cursor: pointer;
}

.cookie-btn-primary {
    background: #000;
    color: #e3d8c0;
}

.cookie-btn-secondary {
    background: transparent;
    color: #000;
    border: 1px solid rgba(0, 0, 0, 0.7);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1400;
    padding: 20px;
}

.cookie-modal.open {
    display: flex;
}

.cookie-modal-card {
    width: min(640px, 100%);
    background: #e3d8c0;
    border-radius: 14px;
    padding: 22px;
    color: #000;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.cookie-modal-card h3 {
    margin: 0 0 8px;
}

.cookie-modal-card p {
    margin: 0 0 18px;
    line-height: 1.5;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-top: 1px solid #ececec;
    align-items: center;
}

.cookie-option small {
    display: block;
    color: #000;
    margin-top: 3px;
}

.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #000;
}

.cookie-modal-actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 800px) {
    .cookie-banner {
        left: 14px;
        right: 14px;
        bottom: 14px;
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }

    .cookie-modal-actions .cookie-btn {
        flex: 1 1 100%;
    }
}

.myPdfSlider .swiper-slide {
    width: 320px;
}

.myPdfSlider .swiper-slide img {
    display: block;
}

.menu-slide-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

@media (max-width: 1180px) {
    header {
        justify-content: space-between;
        align-items: flex-start;
        padding: 18px 20px;
        gap: 16px;
    }

    .logo-wrap {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 68px;
        height: 68px;
        flex: 0 0 auto;
    }

    .header-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-end;
        gap: 10px;
        width: auto;
        flex: 1 1 auto;
        min-width: 0;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 8px 16px;
        margin-left: 0;
        max-width: 100%;
    }

    header .header-reservation {
        justify-self: auto;
        padding: 9px 18px;
        font-size: 0.95rem;
        text-align: center;
    }

    nav a {
        margin: 0;
        font-size: 0.95rem;
    }
}

@media (max-width: 760px) {
    header {
        flex-direction: column;
        align-items: center;
        padding: 12px 14px;
    }

    .logo-wrap {
        position: relative;
        width: 54px;
        height: 54px;
    }

    .header-nav {
        width: 100%;
        align-items: center;
        gap: 8px;
    }

    .nav-links {
        justify-content: center;
        gap: 6px 12px;
    }

    nav a {
        font-size: 0.88rem;
    }

    header .header-reservation {
        width: min(100%, 320px);
    }
}

@media (max-width: 900px) {
    .hero {
        height: 75vh;
        min-height: 520px;
    }

    .hero .curve {
        height: 118px;
    }

    .hero .curve::after {
        height: 158px;
    }

    .hero video {
        object-position: center center;
    }

    .maps-section {
        margin-top: 0;
        padding: 84px 20px 56px;
    }

    .maps-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .maps-layout {
        gap: 20px;
    }

    .maps-layout::before,
    .maps-layout::after {
        display: none;
    }

    .map-container {
        width: 100%;
        margin-left: 0;
    }

    .map-container iframe,
    .maps-consent-placeholder {
        min-height: 380px;
        height: 380px;
    }
}

@media (max-width: 600px) {
    .hours-highlight {
        padding: 24px 14px 14px;
    }

    .hours-highlight-inner {
        padding: 34px 16px 22px;
        border-top-left-radius: 46% 8%;
        border-top-right-radius: 46% 8%;
    }

    .hours-kicker {
        letter-spacing: 0.22em;
        font-size: 0.82rem;
    }

    .hours-highlight h2 {
        font-size: clamp(2rem, 11vw, 3rem);
        margin-bottom: 24px;
    }

    .hours-block h3 {
        font-size: 1.32rem;
    }

    .hours-block p,
    .hours-address {
        font-size: 1.08rem;
    }

    .hero {
        height: 68vh;
        min-height: 420px;
    }

    .hero-content h1 {
        margin-bottom: 10px;
    }

    .hero-content h3 {
        font-size: 0.98rem;
    }

    .hero .curve {
        height: 96px;
    }

    .hero .curve::after {
        width: 120%;
        height: 130px;
        transform: translate(-50%, 50%);
    }

    .about {
        padding: 18px 14px 52px;
    }

    .about h2 {
        font-size: clamp(1.9rem, 8vw, 2.5rem);
        line-height: 1.08;
        margin-bottom: 18px;
    }

    .about p {
        font-size: 1.18rem;
        line-height: 1.55;
    }

    .maps-section {
        padding: 74px 14px 46px;
    }

    .contact-reservation-card {
        padding: 22px 16px 24px;
    }

    .contact-reservation-card h3 {
        font-size: 1.45rem;
    }

    .section-divider {
        padding: 50px 0 0;
    }

    .section-divider .editorial {
        top: 7px;
        height: 48px;
        max-height: 48px;
    }

    .maps-section h2 {
        font-size: 1.7rem;
        margin-bottom: 22px;
    }

    .contact-group {
        padding: 14px;
    }

    .reservation-btn {
        width: min(100%, 290px);
    }

    .contact-group-reservation .reservation-btn {
        min-width: 0;
        width: min(100%, 290px);
    }

    .map-container iframe,
    .maps-consent-placeholder {
        min-height: 300px;
        height: 300px;
        padding: 20px;
    }

    footer {
        padding: 58px 20px 24px;
    }

    .footer-socials {
        position: static;
        justify-content: center;
        margin-top: 18px;
    }

    footer::before {
        top: -55px;
        height: 99px;
        width: 136%;
    }
}