:root {
                --og-inkwell: rgba(41, 55, 57, 1);
                --og-lunar: #3f4e4f;
                --og-creme: #a27b5b;
                --og-au-lait: #dcd7c9;
                --og-white: #f5f1e8;
                --og-hero-image: none;
            }

            html {
                scroll-behavior: smooth;
            }

            html,
            body {
                min-height: 100%;
                margin: 0;
                background: var(--og-inkwell);
            }

            body.osteria-tredita-template {
                color: var(--og-au-lait);
                font-family: Arial, Helvetica, sans-serif;
            }

            body.osteria-tredita-template.admin-bar .osteria-nav {
                top: 32px;
            }

            body.osteria-mobile-menu-open {
                overflow: hidden;
            }

            .osteria-page {
                min-height: 100vh;
                background: var(--og-inkwell);
                overflow-x: hidden;
            }

            .osteria-nav {
                position: fixed;
                top: 0;
                left: 0;
                z-index: 20;
                width: 100%;
                padding: 34px clamp(22px, 5vw, 68px);
                box-sizing: border-box;
                display: grid;
                grid-template-columns: 1fr auto 1fr;
                align-items: center;
                gap: 24px;
                color: var(--og-white);
                letter-spacing: 0.12em;
                text-transform: uppercase;
                transition: padding 240ms ease, background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
            }

            .osteria-nav::before {
                content: "";
                position: absolute;
                inset: 0;
                z-index: -1;
                background: linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0));
                -webkit-backdrop-filter: blur(0);
                backdrop-filter: blur(0);
                pointer-events: none;
                transition: background 240ms ease, opacity 240ms ease, -webkit-backdrop-filter 240ms ease, backdrop-filter 240ms ease;
            }

            .osteria-nav.osteria-nav--scrolled {
                padding-top: 15px;
                padding-bottom: 15px;
                border-bottom: 1px solid rgba(245, 241, 232, 0.12);
                box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
            }

            .osteria-nav.osteria-nav--scrolled::before {
                background: rgba(10, 13, 14, 0.58);
                -webkit-backdrop-filter: blur(18px);
                backdrop-filter: blur(18px);
            }

            .osteria-nav a {
                color: inherit;
                font-size: 14px;
                font-weight: 800;
                text-decoration: none;
                transition: color 180ms ease, opacity 180ms ease;
            }

            .osteria-nav a:hover,
            .osteria-nav a:focus {
                color: var(--og-au-lait);
                opacity: 0.82;
            }

            .osteria-nav__group {
                display: flex;
                align-items: center;
                gap: clamp(22px, 4vw, 64px);
            }

            .osteria-nav__group--right {
                justify-content: flex-end;
            }

            .osteria-nav__logo-link {
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }

            .osteria-nav__mark {
                width: min(150px, 30vw);
                height: auto;
                opacity: 0.96;
                transition: width 240ms ease, opacity 180ms ease, transform 240ms ease;
            }

            .osteria-nav.osteria-nav--scrolled .osteria-nav__mark {
                width: min(92px, 18vw);
                opacity: 0.92;
            }

            .osteria-nav__reserve {
                position: relative;
                font-family: Georgia, "Times New Roman", serif;
                font-size: 25px !important;
                font-style: italic;
                font-weight: 400 !important;
                letter-spacing: 0 !important;
                text-transform: none !important;
            }

            .osteria-nav__reserve::after {
                content: "";
                position: absolute;
                right: 0;
                bottom: -6px;
                width: 100%;
                height: 2px;
                background: var(--og-creme);
            }

            .osteria-menu-toggle {
                display: none;
                width: 46px;
                height: 46px;
                align-items: center;
                justify-content: center;
                justify-self: end;
                border: 0;
                padding: 0;
                background: transparent;
                color: var(--og-white);
                cursor: pointer;
                transition: opacity 180ms ease, transform 180ms ease;
            }

            .osteria-menu-toggle:hover,
            .osteria-menu-toggle:focus {
                opacity: 0.72;
                transform: translateY(-1px);
            }

            .osteria-menu-toggle span {
                display: block;
                width: 28px;
                height: 2px;
                background: currentColor;
                position: relative;
            }

            .osteria-menu-toggle span::before,
            .osteria-menu-toggle span::after {
                content: "";
                position: absolute;
                left: 0;
                width: 28px;
                height: 2px;
                background: currentColor;
            }

            .osteria-menu-toggle span::before {
                top: -8px;
            }

            .osteria-menu-toggle span::after {
                top: 8px;
            }

            .osteria-mobile-menu {
                position: fixed;
                inset: 0;
                z-index: 1000;
                display: flex;
                align-items: center;
                justify-content: center;
                min-height: 100vh;
                padding: 78px 28px;
                box-sizing: border-box;
                background: #000;
                color: #fff;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transition: opacity 180ms ease, visibility 180ms ease;
            }

            body.osteria-mobile-menu-open .osteria-mobile-menu {
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
            }

            .osteria-mobile-menu__close {
                position: absolute;
                top: 42px;
                right: 34px;
                width: 46px;
                height: 46px;
                border: 0;
                padding: 0;
                background: transparent;
                color: #fff;
                font-family: Arial, Helvetica, sans-serif;
                font-size: 40px;
                font-weight: 300;
                line-height: 1;
                cursor: pointer;
            }

            .osteria-mobile-menu__links {
                display: grid;
                gap: 30px;
                width: min(420px, 100%);
                text-align: center;
                transform: translateY(-8px);
            }

            .osteria-mobile-menu__links a {
                color: #fff;
                font-size: clamp(26px, 7vw, 32px);
                font-weight: 400;
                letter-spacing: 0.11em;
                line-height: 1.25;
                text-decoration: none;
            }

            .osteria-mobile-menu__links a:hover,
            .osteria-mobile-menu__links a:focus {
                color: var(--og-au-lait);
            }

            body.osteria-animations-ready [data-osteria-animate] {
                opacity: 0;
                transform: translateY(34px);
                transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
                will-change: opacity, transform;
            }

            body.osteria-animations-ready [data-osteria-animate="fade-left"] {
                transform: translateX(-34px);
            }

            body.osteria-animations-ready [data-osteria-animate="fade-right"] {
                transform: translateX(34px);
            }

            body.osteria-animations-ready [data-osteria-animate].is-visible {
                opacity: 1;
                transform: translate(0, 0);
            }

            .osteria-hero {
                position: relative;
                min-height: 100vh;
                display: grid;
                place-items: center;
                overflow: hidden;
                background: #111;
            }

            .osteria-hero__media {
                position: absolute;
                inset: 0;
                background-image:
                    linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.56)),
                    linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.12) 50%, rgba(0, 0, 0, 0.45)),
                    var(--og-hero-image);
                background-position: center;
                background-size: cover;
                transform: scale(1.02);
                transition: transform 900ms ease, filter 900ms ease;
            }

            .osteria-hero:hover .osteria-hero__media {
                transform: scale(1.055);
                filter: saturate(1.08);
            }

            .osteria-hero__content {
                position: relative;
                z-index: 1;
                width: min(680px, calc(100% - 44px));
                margin-top: 64px;
                text-align: center;
            }

            .osteria-hero__logo {
                display: block;
                width: min(520px, 86vw);
                height: auto;
                margin: 0 auto;
                filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.38));
            }

            .osteria-hero__line {
                width: min(320px, 68vw);
                height: 1px;
                margin: 28px auto 18px;
                background: rgba(245, 241, 232, 0.72);
            }

            .osteria-hero__subtitle {
                margin: 22px 0 0;
                color: rgba(245, 241, 232, 0.9);
                font-family: Georgia, "Times New Roman", serif;
                font-size: clamp(28px, 4vw, 54px);
                font-style: italic;
                line-height: 1;
            }

            .osteria-hero__title {
                margin: 0 auto;
                color: var(--og-white);
                font-family: Georgia, "Times New Roman", serif;
                font-size: clamp(54px, 11vw, 148px);
                font-weight: 400;
                letter-spacing: 0.02em;
                line-height: 0.86;
                text-transform: uppercase;
            }

            .osteria-hero__lead {
                max-width: 760px;
                margin: 18px auto 0;
                color: rgba(245, 241, 232, 0.86);
                font-family: Georgia, "Times New Roman", serif;
                font-size: clamp(20px, 2.6vw, 34px);
                font-weight: 400;
                letter-spacing: 0;
                line-height: 1.25;
            }

            .osteria-hero__scroll {
                position: absolute;
                right: clamp(20px, 3vw, 46px);
                bottom: clamp(18px, 3vw, 38px);
                width: 52px;
                height: 52px;
                border: 1px solid rgba(245, 241, 232, 0.62);
                border-radius: 50%;
                display: grid;
                place-items: center;
                color: var(--og-white);
                font-size: 24px;
                line-height: 1;
                text-decoration: none;
                transition: background-color 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms ease;
            }

            .osteria-hero__scroll:hover,
            .osteria-hero__scroll:focus {
                background: rgba(245, 241, 232, 0.14);
                opacity: 0.82;
                transform: translateY(2px);
            }

            .osteria-section {
                display: grid;
                grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
                min-height: 760px;
                background: var(--og-au-lait);
                color: var(--og-inkwell);
            }

            .osteria-section--reverse .osteria-section__image {
                order: 2;
            }

            .osteria-section__image {
                min-height: 620px;
                background-position: center;
                background-size: cover;
                transition: filter 420ms ease, transform 720ms ease;
            }

            .osteria-section:hover .osteria-section__image {
                filter: saturate(1.08) contrast(1.03);
            }

            .osteria-section__copy {
                display: flex;
                flex-direction: column;
                justify-content: center;
                max-width: 560px;
                padding: clamp(52px, 4vw, 112px);
            }

            .osteria-eyebrow {
                margin: 0 0 24px;
                color: var(--og-creme);
                font-size: 12px;
                font-weight: 800;
                letter-spacing: 0.18em;
                line-height: 1.2;
                text-transform: uppercase;
            }

            .osteria-section h2,
            .osteria-info h2,
            .osteria-apply h1,
            .osteria-apply h2,
            .osteria-gallery h2 {
                margin: 0;
                font-family: Georgia, "Times New Roman", serif;
                font-size: clamp(42px, 3vw, 86px);
                font-weight: 400;
                letter-spacing: 0;
                line-height: 0.95;
            }

            .osteria-section p {
                max-width: 520px;
                margin: 28px 0 0;
                color: rgba(41, 55, 57, 0.82);
                font-size: 18px;
                line-height: 1.75;
            }

            .osteria-button {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                align-self: flex-start;
                min-height: 48px;
                margin-top: 34px;
                padding: 0 34px;
                border: 1px solid currentColor;
                border-radius: 999px;
                color: var(--og-inkwell);
                font-size: 12px;
                font-weight: 800;
                letter-spacing: 0.12em;
                text-decoration: none;
                text-transform: uppercase;
                transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, opacity 180ms ease;
            }

            .osteria-button:hover,
            .osteria-button:focus {
                background: var(--og-inkwell);
                color: var(--og-au-lait);
                transform: translateY(-1px);
            }

            .osteria-button--ghost {
                border-color: rgba(220, 215, 201, 0.58);
                background: transparent;
                color: var(--og-au-lait);
            }

            .osteria-button--ghost:hover,
            .osteria-button--ghost:focus {
                background: var(--og-au-lait);
                color: var(--og-inkwell);
            }

            .osteria-gallery {
                padding: clamp(58px, 7vw, 104px) 0;
                background: var(--og-inkwell);
                color: var(--og-au-lait);
                overflow: hidden;
            }

            .osteria-gallery__intro {
                width: min(1180px, calc(100% - 42px));
                margin: 0 auto 34px;
                display: flex;
                align-items: end;
                justify-content: space-between;
                gap: 24px;
            }

            .osteria-gallery .osteria-button {
                color: var(--og-au-lait);
            }

            .osteria-gallery .osteria-button:hover,
            .osteria-gallery .osteria-button:focus {
                background: var(--og-au-lait);
                color: var(--og-inkwell);
            }

            .osteria-gallery__track {
                width: min(1180px, calc(100% - 42px));
                margin: 0 auto;
                display: grid;
                grid-template-columns: repeat(4, minmax(220px, 1fr));
                gap: 20px;
            }

            .osteria-gallery__item {
                position: relative;
                min-height: 360px;
                display: flex;
                align-items: flex-end;
                padding: 22px;
                box-sizing: border-box;
                background-position: center;
                background-size: cover;
                overflow: hidden;
                transition: transform 260ms ease, filter 260ms ease;
            }

            .osteria-gallery__item:hover {
                transform: translateY(-6px);
                filter: saturate(1.08);
            }

            .osteria-gallery__item::before {
                content: "";
                position: absolute;
                inset: 0;
                background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.68));
            }

            .osteria-gallery__item span {
                position: relative;
                z-index: 1;
                color: var(--og-white);
                font-family: Georgia, "Times New Roman", serif;
                font-size: 25px;
                line-height: 1;
                transition: transform 220ms ease, opacity 220ms ease;
            }

            .osteria-gallery__item:hover span {
                opacity: 0.9;
                transform: translateY(-3px);
            }

            .osteria-info {
                background: var(--og-au-lait);
                color: var(--og-inkwell);
                padding: clamp(58px, 8vw, 108px) clamp(22px, 5vw, 68px);
            }

            .osteria-info__grid {
                width: min(1180px, 100%);
                margin: 0 auto;
                display: grid;
                grid-template-columns: repeat(4, minmax(0, 1fr));
                gap: clamp(28px, 4vw, 58px);
            }

            .osteria-info h2 {
                margin-bottom: 24px;
                font-size: clamp(36px, 4vw, 60px);
            }

            .osteria-info h3 {
                margin: 22px 0 8px;
                color: var(--og-creme);
                font-size: 13px;
                font-weight: 800;
                letter-spacing: 0.13em;
                text-transform: uppercase;
            }

            .osteria-info p,
            .osteria-info a {
                color: rgba(41, 55, 57, 0.82);
                font-size: 16px;
                line-height: 1.65;
            }

            .osteria-info a {
                text-decoration-thickness: 1px;
                text-underline-offset: 4px;
            }

            .osteria-apply {
                background: var(--og-inkwell);
                color: var(--og-au-lait);
                padding: clamp(58px, 8vw, 112px) clamp(18px, 4vw, 56px);
            }

            .osteria-apply--page {
                min-height: 100vh;
                padding-top: clamp(154px, 17vw, 230px);
            }

            .osteria-apply__shell {
                width: min(1060px, 100%);
                margin: 0 auto;
                padding: clamp(28px, 5vw, 64px);
                box-sizing: border-box;
                background: var(--og-au-lait);
                color: var(--og-inkwell);
            }

            .osteria-apply h1,
            .osteria-apply h2 {
                color: var(--og-inkwell);
            }

            .osteria-apply__lead {
                max-width: 760px;
                margin: 18px 0 38px;
                color: rgba(41, 55, 57, 0.78);
                font-size: 17px;
                line-height: 1.7;
            }

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

            .osteria-apply .wpcf7,
            .osteria-apply .wpcf7-form,
            .osteria-apply .wpcf7-form p {
                width: 100%;
            }

            .osteria-cf7-grid label,
            .osteria-apply .wpcf7-form label {
                display: block;
                width: 100%;
                margin: 0;
                color: var(--og-inkwell);
                font-size: 11px;
                font-weight: 800;
                letter-spacing: 0.08em;
                text-transform: uppercase;
            }

            .osteria-apply .wpcf7-form-control-wrap {
                display: block;
                width: 100%;
            }

            .osteria-cf7-full {
                grid-column: 1 / -1;
            }

            .osteria-cf7-section,
            .osteria-cf7-subsection {
                margin-top: 18px;
                color: var(--og-inkwell);
                font-family: Georgia, "Times New Roman", serif;
                letter-spacing: 0;
                line-height: 1.1;
            }

            .osteria-cf7-section {
                border-top: 1px solid rgba(41, 55, 57, 0.24);
                padding-top: 22px;
                font-size: clamp(28px, 3vw, 42px);
            }

            .osteria-cf7-subsection {
                color: var(--og-creme);
                font-size: 23px;
            }

            .osteria-cf7-note,
            .osteria-cf7-legal {
                margin: 0;
                color: rgba(41, 55, 57, 0.78);
                font-size: 14px;
                line-height: 1.65;
            }

            .osteria-cf7-legal {
                font-size: 12px;
            }

            .osteria-apply .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-acceptance) {
                display: block;
                width: 100%;
                min-height: 50px;
                margin-top: 8px;
                padding: 13px 15px;
                border: 1px solid rgba(41, 55, 57, 0.18);
                border-radius: 12px;
                background: rgba(255, 255, 255, 0.36);
                color: var(--og-inkwell);
                font-size: 16px;
                box-sizing: border-box;
                box-shadow: inset 0 -1px 0 rgba(41, 55, 57, 0.12);
                transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
            }

            .osteria-apply .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-acceptance):focus {
                outline: none;
                border-color: rgba(41, 55, 57, 0.58);
                background: rgba(255, 255, 255, 0.56);
                box-shadow: 0 0 0 3px rgba(162, 123, 91, 0.18);
            }

            .osteria-apply textarea.wpcf7-form-control {
                min-height: 126px;
                resize: vertical;
            }

            .osteria-apply .wpcf7-checkbox {
                display: flex !important;
                flex-wrap: wrap;
                gap: 10px;
                min-height: auto !important;
                padding: 10px 12px;
            }

            .osteria-apply .wpcf7-list-item {
                margin: 0 12px 0 0;
            }

            .osteria-apply .wpcf7-list-item label {
                display: inline-flex;
                align-items: center;
                gap: 7px;
                width: auto;
                font-size: 12px;
                letter-spacing: 0.03em;
                text-transform: none;
            }

            .osteria-apply input[type="checkbox"] {
                width: 16px;
                height: 16px;
                accent-color: var(--og-inkwell);
            }

            .osteria-apply .wpcf7-submit {
                width: 100%;
                min-height: 54px;
                border: 1px solid var(--og-inkwell);
                border-radius: 999px;
                background: var(--og-inkwell);
                color: var(--og-au-lait);
                font-weight: 900;
                letter-spacing: 0.12em;
                text-transform: uppercase;
                cursor: pointer;
                transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
            }

            .osteria-apply .wpcf7-submit:hover,
            .osteria-apply .wpcf7-submit:focus {
                background: transparent;
                color: var(--og-inkwell);
                transform: translateY(-1px);
            }

            .osteria-cf7-placeholder {
                border: 1px dashed rgba(41, 55, 57, 0.44);
                padding: 18px;
                font-size: 14px;
                line-height: 1.6;
            }

            .osteria-cf7-placeholder p {
                margin: 0 0 12px;
            }

            .osteria-cf7-placeholder code {
                color: var(--og-inkwell);
                white-space: normal;
            }

            .osteria-menu-page {
                min-height: 100vh;
                padding: clamp(138px, 14vw, 196px) clamp(16px, 4vw, 58px) clamp(70px, 9vw, 128px);
                background:
                    radial-gradient(circle at 50% 0%, rgba(220, 215, 201, 0.08), transparent 34%),
                    var(--og-inkwell);
                color: var(--og-inkwell);
                box-sizing: border-box;
            }

            .osteria-menu-sheet {
                width: min(1180px, 100%);
                margin: 0 auto;
                padding: clamp(14px, 2vw, 22px);
                background:
                    linear-gradient(rgba(245, 241, 232, 0.92), rgba(245, 241, 232, 0.92)),
                    repeating-linear-gradient(0deg, rgba(41, 55, 57, 0.035) 0, rgba(41, 55, 57, 0.035) 1px, transparent 1px, transparent 7px);
                box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
            }

            .osteria-menu-sheet__inner {
                border: 2px solid rgba(41, 55, 57, 0.86);
                outline: 1px solid rgba(41, 55, 57, 0.72);
                outline-offset: -10px;
                padding: clamp(36px, 5vw, 68px) clamp(18px, 5vw, 72px) clamp(42px, 5vw, 72px);
            }

            .osteria-menu-header {
                text-align: center;
            }

            .osteria-menu-header__logo {
                width: min(270px, 68vw);
                height: auto;
                margin: 0 auto 34px;
                display: block;
            }

            .osteria-menu-header__eyebrow {
                margin: 0 0 8px;
                color: rgba(41, 55, 57, 0.62);
                font-size: 12px;
                font-weight: 800;
                letter-spacing: 0.28em;
                text-transform: uppercase;
            }

            .osteria-menu-header h1 {
                margin: 0;
                font-family: Georgia, "Times New Roman", serif;
                font-size: clamp(42px, 7vw, 82px);
                font-weight: 400;
                letter-spacing: 0.01em;
                line-height: 0.94;
                text-transform: uppercase;
            }

            .osteria-menu-feature {
                margin-top: clamp(34px, 5vw, 58px);
            }

            .osteria-menu-feature__title,
            .osteria-menu-section__heading {
                display: grid;
                grid-template-columns: 1fr auto 1fr;
                align-items: center;
                gap: 18px;
            }

            .osteria-menu-feature__title span,
            .osteria-menu-section__heading span {
                border-top: 3px dotted rgba(41, 55, 57, 0.72);
            }

            .osteria-menu-feature__title h2,
            .osteria-menu-section__heading h2 {
                margin: 0;
                font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
                font-size: clamp(28px, 4vw, 43px);
                font-weight: 400;
                letter-spacing: 0.08em;
                line-height: 1;
                text-transform: uppercase;
            }

            .osteria-menu-feature__items {
                display: grid;
                grid-template-columns: repeat(3, minmax(0, 1fr));
                margin-top: 22px;
                border-top: 1px solid rgba(41, 55, 57, 0.64);
                border-bottom: 1px solid rgba(41, 55, 57, 0.64);
            }

            .osteria-menu-feature__items article {
                padding: 18px 22px;
                text-align: center;
            }

            .osteria-menu-feature__items article + article {
                border-left: 1px solid rgba(41, 55, 57, 0.58);
            }

            .osteria-menu-feature h3,
            .osteria-menu-item h3 {
                margin: 0;
                font-family: Georgia, "Times New Roman", serif;
                font-size: 18px;
                line-height: 1.2;
            }

            .osteria-menu-feature p,
            .osteria-menu-item p {
                margin: 5px 0 0;
                color: rgba(41, 55, 57, 0.78);
                font-size: 15px;
                font-style: italic;
                line-height: 1.32;
            }

            .osteria-menu-feature strong,
            .osteria-menu-item strong {
                display: inline-block;
                margin-top: 7px;
                font-size: 14px;
                letter-spacing: 0.04em;
            }

            .osteria-menu-grid {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: clamp(34px, 5vw, 64px) clamp(38px, 6vw, 78px);
                margin-top: clamp(38px, 5vw, 66px);
            }

            .osteria-menu-section {
                break-inside: avoid;
            }

            .osteria-menu-section__note {
                margin: 12px 0 0;
                padding: 9px 12px;
                border-top: 1px solid rgba(41, 55, 57, 0.5);
                border-bottom: 1px solid rgba(41, 55, 57, 0.5);
                font-size: 12px;
                font-weight: 900;
                letter-spacing: 0.14em;
                text-align: center;
                text-transform: uppercase;
            }

            .osteria-menu-list {
                margin-top: 17px;
            }

            .osteria-menu-item {
                display: grid;
                grid-template-columns: minmax(0, 1fr) auto;
                gap: 18px;
                padding: 12px 0;
                border-bottom: 1px solid rgba(41, 55, 57, 0.28);
            }

            .osteria-menu-item strong {
                margin-top: 2px;
                white-space: nowrap;
            }

            .osteria-menu-page {
                padding: clamp(180px, 11vw, 170px) clamp(22px, 5vw, 70px) clamp(78px, 8vw, 120px);
                background: var(--og-inkwell);
                color: #444c4d;
            }

            body.osteria-animations-ready .osteria-menu-page [data-osteria-animate] {
                opacity: 1;
                transform: none;
            }

            .osteria-menu-sheet {
                width: min(1068px, 100%);
                padding: 0;
                background: #f7f8f6;
                box-shadow: none;
            }

            .osteria-menu-sheet__inner {
                border: 1px solid rgba(78, 86, 87, 0.82);
                outline: 0;
                padding: 0;
            }

            .osteria-menu-header {
                display: grid;
                place-items: center;
                min-height: 238px;
                padding: 46px 32px 34px;
                border-bottom: 1px solid rgba(78, 86, 87, 0.82);
            }

            .osteria-menu-subpage-header {
                display: grid;
                place-items: center;
                min-height: 180px;
                border-bottom: 1px solid rgba(78, 86, 87, 0.82);
            }

            .osteria-menu-header__logo {
                width: min(250px, 42vw);
                margin: 0;
            }

            .osteria-menu-header__eyebrow {
                display: none;
            }

            .osteria-menu-heading {
                display: grid;
                place-items: center;
                margin: 0 0 24px;
                text-align: center;
            }

            .osteria-menu-heading--dotted {
                grid-template-columns: 1fr auto 1fr;
                gap: 34px;
            }

            .osteria-menu-heading span {
                width: 100%;
                border-top: 2px dotted rgba(106, 112, 112, 0.72);
            }

            .osteria-menu-heading h2,
            .osteria-menu-page-title {
                margin: 0;
                font-family: Georgia, "Times New Roman", serif;
                font-size: 30px;
                font-weight: 800;
                line-height: 1;
                text-align: center;
                text-transform: uppercase;
                letter-spacing: 0;
            }

            .osteria-menu-heading--dotted h2 {
                font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
                font-size: 32px;
                font-weight: 400;
            }

            .osteria-menu-band {
                padding: 34px 16px;
                border-bottom: 1px solid rgba(78, 86, 87, 0.82);
            }

            .osteria-menu-band--antipasto {
                padding-top: 26px;
                padding-bottom: 38px;
            }

            .osteria-menu-inline {
                display: grid;
                grid-template-columns: repeat(var(--og-menu-columns, 4), minmax(0, 1fr));
                align-items: start;
            }

            .osteria-menu-inline--six {
                --og-menu-columns: 6;
            }

            .osteria-menu-inline .osteria-menu-item + .osteria-menu-item {
                border-left: 1px solid rgba(100, 107, 107, 0.78);
            }

            .osteria-menu-item {
                display: block;
                min-width: 0;
                padding: 0 18px;
                border: 0;
                text-align: center;
            }

            .osteria-menu-item h3 {
                margin: 0;
                font-family: Georgia, "Times New Roman", serif;
                font-size: 18px;
                font-weight: 800;
                line-height: 0.98;
                text-transform: uppercase;
                letter-spacing: 0;
            }

            .osteria-menu-item p {
                margin: 7px 0 0;
                color: #444c4d;
                font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
                font-size: 14px;
                font-style: normal;
                font-weight: 400;
                line-height: 1.16;
            }

            .osteria-menu-item strong {
                display: block;
                margin-top: 7px;
                color: #444c4d;
                font-family: Arial, Helvetica, sans-serif;
                font-size: 17px;
                font-weight: 800;
                line-height: 1;
                letter-spacing: 0;
                white-space: normal;
            }

            .osteria-menu-food-grid {
                display: grid;
                grid-template-columns: 38% 62%;
                border-bottom: 1px solid rgba(78, 86, 87, 0.82);
            }

            .osteria-menu-panel {
                padding: 36px 28px;
                border-left: 1px solid rgba(78, 86, 87, 0.82);
            }

            .osteria-menu-panel--pasta {
                border-left: 0;
            }

            .osteria-menu-panel--secondi {
                min-height: 440px;
                border-bottom: 1px solid rgba(78, 86, 87, 0.82);
            }

            .osteria-menu-stack {
                display: grid;
                gap: 30px;
            }

            .osteria-menu-stack--tight {
                gap: 28px;
            }

            .osteria-menu-mini-grid {
                display: grid;
                grid-template-columns: 34% 66%;
            }

            .osteria-menu-panel--mini {
                min-height: 176px;
            }

            .osteria-menu-panel--mini + .osteria-menu-panel--mini {
                border-left: 1px solid rgba(78, 86, 87, 0.82);
            }

            .osteria-menu-panel--mini .osteria-menu-inline {
                --og-menu-columns: 2;
            }

            .osteria-menu-panel--mini:first-child .osteria-menu-inline {
                --og-menu-columns: 1;
            }

            .osteria-menu-band--contorni {
                --og-menu-columns: 3;
            }

            .osteria-menu-band--dolce {
                --og-menu-columns: 4;
                padding-top: 30px;
            }

            .osteria-menu-page-break {
                border-top: 0;
            }

            .osteria-menu-wines {
                min-height: 1180px;
            }

            .osteria-menu-wines .osteria-menu-page-title {
                padding: 64px 0 52px;
            }

            .osteria-menu-wine-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                border-top: 0;
            }

            .osteria-menu-wine-grid > div {
                padding: 0 62px 62px;
            }

            .osteria-menu-wine-grid > div + div {
                border-left: 1px solid rgba(78, 86, 87, 0.82);
            }

            .osteria-menu-wine-section + .osteria-menu-wine-section {
                margin-top: 48px;
            }

            .osteria-menu-wine-section .osteria-menu-item h3 {
                font-size: 20px;
                line-height: 1.05;
            }

            .osteria-menu-wine-section .osteria-menu-item p {
                font-family: Georgia, "Times New Roman", serif;
                font-size: 18px;
                line-height: 0.98;
                text-transform: uppercase;
            }

            .osteria-menu-wine-section .osteria-menu-item strong {
                font-size: 14px;
            }

            .osteria-menu-drinks {
                border-top: 1px solid rgba(78, 86, 87, 0.82);
            }

            .osteria-menu-cocktails {
                padding: 68px 94px 64px;
                border-bottom: 1px solid rgba(78, 86, 87, 0.82);
            }

            .osteria-menu-cocktail-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 52px 104px;
                margin-top: 52px;
                position: relative;
            }

            .osteria-menu-cocktail-grid::before {
                content: "";
                position: absolute;
                top: 0;
                bottom: 0;
                left: 50%;
                border-left: 1px solid rgba(78, 86, 87, 0.82);
            }

            .osteria-menu-band--soft {
                --og-menu-columns: 7;
                padding: 42px 28px;
            }

            .osteria-menu-band--soft .osteria-menu-page-title {
                margin-bottom: 38px;
            }

            .osteria-menu-bottom-grid {
                display: grid;
                grid-template-columns: 30% 70%;
                min-height: 275px;
            }

            .osteria-menu-bottom-grid .osteria-menu-panel:first-child {
                border-left: 0;
            }

            .osteria-menu-bottom-grid .osteria-menu-inline {
                --og-menu-columns: 4;
                margin-top: 40px;
            }

            .osteria-menu-bottom-grid .osteria-menu-panel:first-child .osteria-menu-inline {
                --og-menu-columns: 1;
                gap: 38px;
            }

            .osteria-menu-lavazza {
                margin-top: 42px;
                text-align: center;
                color: #163f73;
                text-transform: uppercase;
            }

            .osteria-menu-lavazza strong {
                display: block;
                font-family: Arial, Helvetica, sans-serif;
                font-size: 32px;
                font-weight: 900;
                font-style: italic;
                line-height: 0.9;
            }

            .osteria-menu-lavazza span {
                display: block;
                margin-top: 4px;
                font-size: 10px;
                font-weight: 800;
                letter-spacing: 0.08em;
            }

            .osteria-not-found {
                min-height: 100vh;
                display: grid;
                place-items: center;
                padding: clamp(154px, 17vw, 230px) clamp(22px, 5vw, 68px) clamp(80px, 10vw, 140px);
                background:
                    linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0)),
                    var(--og-inkwell);
                color: var(--og-au-lait);
                box-sizing: border-box;
                text-align: center;
            }

            .osteria-not-found__inner {
                width: min(760px, 100%);
            }

            .osteria-not-found h1 {
                margin: 0;
                color: var(--og-white);
                font-family: Georgia, "Times New Roman", serif;
                font-size: clamp(48px, 8vw, 104px);
                font-weight: 400;
                letter-spacing: 0;
                line-height: 0.98;
            }

            .osteria-not-found p:not(.osteria-eyebrow) {
                width: min(620px, 100%);
                margin: 24px auto 0;
                color: rgba(245, 241, 232, 0.78);
                font-size: 18px;
                line-height: 1.7;
            }

            .osteria-not-found__actions {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 14px;
                margin-top: 38px;
            }

            .osteria-not-found .osteria-button {
                border-color: var(--og-au-lait);
                background: var(--og-au-lait);
                color: var(--og-inkwell);
            }

            .osteria-not-found .osteria-button:hover,
            .osteria-not-found .osteria-button:focus {
                background: var(--og-white);
                color: var(--og-inkwell);
            }

            .osteria-not-found .osteria-button--ghost {
                border-color: rgba(220, 215, 201, 0.58);
                background: transparent;
                color: var(--og-au-lait);
            }

            .osteria-not-found .osteria-button--ghost:hover,
            .osteria-not-found .osteria-button--ghost:focus {
                background: var(--og-au-lait);
                color: var(--og-inkwell);
            }

            .osteria-footer {
                background: #121718;
                color: rgba(220, 215, 201, 0.78);
                padding: 42px clamp(22px, 5vw, 68px);
            }

            .osteria-footer__inner {
                width: min(1180px, 100%);
                margin: 0 auto;
            }

            .osteria-footer__brand {
                margin-bottom: 42px;
                text-align: center;
            }

            .osteria-footer__brand img {
                width: min(240px, 58vw);
                height: auto;
                margin-bottom: 22px;
            }

            .osteria-footer__brand p {
                margin: 0;
                font-size: 12px;
                letter-spacing: 0.12em;
                text-transform: uppercase;
            }

            .osteria-footer__grid {
                display: grid;
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: clamp(28px, 5vw, 70px);
                border-top: 1px solid rgba(220, 215, 201, 0.24);
                padding-top: 38px;
                text-align: left;
            }

            .osteria-footer h4 {
                margin: 0 0 20px;
                color: var(--og-au-lait);
                font-family: Georgia, "Times New Roman", serif;
                font-size: 24px;
                font-weight: 400;
                letter-spacing: 0;
                line-height: 1;
            }

            .osteria-footer h3 {
                margin: 0 0 10px;
                color: var(--og-creme);
                font-size: 12px;
                font-weight: 800;
                letter-spacing: 0.14em;
                text-transform: uppercase;
            }

            .osteria-footer p,
            .osteria-footer a {
                color: rgba(220, 215, 201, 0.78);
                font-size: 15px;
                line-height: 1.7;
            }

            .osteria-footer a {
                text-decoration-thickness: 1px;
                text-underline-offset: 4px;
                transition: color 180ms ease, opacity 180ms ease;
            }

            .osteria-footer a:hover,
            .osteria-footer a:focus {
                color: var(--og-white);
                opacity: 0.82;
            }

            @media (prefers-reduced-motion: reduce) {
                html {
                    scroll-behavior: auto;
                }

                *,
                *::before,
                *::after {
                    transition-duration: 0.01ms !important;
                    animation-duration: 0.01ms !important;
                    animation-iteration-count: 1 !important;
                }

                body.osteria-animations-ready [data-osteria-animate] {
                    opacity: 1;
                    transform: none;
                }
            }

            @media (max-width: 980px) {
                body.osteria-tredita-template.admin-bar .osteria-nav {
                    top: 46px;
                }

                .osteria-nav {
                    grid-template-columns: 1fr auto 1fr;
                    gap: 12px;
                    padding: 22px;
                    text-align: center;
                }

                .osteria-nav.osteria-nav--scrolled {
                    padding-top: 12px;
                    padding-bottom: 12px;
                }

                .osteria-nav__group,
                .osteria-nav__group--right {
                    display: none;
                }

                .osteria-nav__logo-link {
                    grid-column: 2;
                }

                .osteria-menu-toggle {
                    grid-column: 3;
                    display: inline-flex;
                }

                .osteria-nav__mark {
                    width: min(120px, 52vw);
                    margin: 0 auto;
                }

                .osteria-nav.osteria-nav--scrolled .osteria-nav__mark {
                    width: min(82px, 28vw);
                }

                .osteria-section,
                .osteria-section--reverse .osteria-section__image {
                    grid-template-columns: 1fr;
                    order: initial;
                }

                .osteria-section {
                    min-height: auto;
                }

                .osteria-section__image {
                    min-height: 72vw;
                }

                .osteria-section__copy {
                    max-width: none;
                    padding: 46px 24px 58px;
                }

                .osteria-gallery__intro {
                    display: block;
                }

                .osteria-gallery__track {
                    grid-template-columns: 1fr;
                }

                .osteria-gallery__item {
                    min-height: 280px;
                }

                .osteria-info__grid {
                    grid-template-columns: 1fr;
                }

                .osteria-footer__grid {
                    grid-template-columns: 1fr;
                }

                .osteria-apply__shell {
                    padding: 26px 18px;
                }

                .osteria-menu-page {
                    padding: 118px 14px 54px;
                }

                .osteria-menu-sheet {
                    padding: 0;
                }

                .osteria-menu-sheet__inner {
                    padding: 0;
                    outline-offset: 0;
                }

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

                .osteria-menu-feature__items article + article {
                    border-top: 1px solid rgba(41, 55, 57, 0.58);
                    border-left: 0;
                }
            }

            @media (max-width: 600px) {
                .osteria-nav a {
                    font-size: 12px;
                }

                .osteria-nav__reserve {
                    font-size: 21px !important;
                }

                .osteria-mobile-menu__close {
                    top: 32px;
                    right: 24px;
                }

                .osteria-mobile-menu__links {
                    gap: 29px;
                }

                .osteria-hero__content {
                    margin-top: 126px;
                }

                .osteria-hero__title {
                    font-size: clamp(48px, 16vw, 82px);
                }

                .osteria-section h2,
                .osteria-info h2,
                .osteria-apply h1,
                .osteria-apply h2,
                .osteria-gallery h2 {
                    font-size: clamp(38px, 12vw, 58px);
                }

                .osteria-menu-header__logo {
                    width: min(250px, 72vw);
                    margin-bottom: 24px;
                }

                .osteria-menu-header h1 {
                    font-size: clamp(34px, 12vw, 50px);
                }

                .osteria-menu-feature__title,
                .osteria-menu-section__heading {
                    grid-template-columns: 1fr;
                    gap: 10px;
                    text-align: center;
                }

                .osteria-menu-feature__title span,
                .osteria-menu-section__heading span {
                    width: 100%;
                }

                .osteria-menu-feature__title h2,
                .osteria-menu-section__heading h2 {
                    font-size: clamp(25px, 9vw, 34px);
                }

                .osteria-menu-item {
                    display: block;
                    gap: 0;
                    text-align: center;
                }

                .osteria-menu-item strong {
                    margin-top: 0;
                }
            }

            @media (max-width: 900px) {
                .osteria-menu-header,
                .osteria-menu-subpage-header {
                    min-height: 178px;
                    padding: 34px 18px;
                }

                .osteria-menu-header__logo {
                    width: min(230px, 70vw);
                }

                .osteria-menu-food-grid,
                .osteria-menu-wine-grid,
                .osteria-menu-cocktail-grid,
                .osteria-menu-bottom-grid,
                .osteria-menu-mini-grid {
                    grid-template-columns: 1fr;
                }

                .osteria-menu-wine-grid > div,
                .osteria-menu-cocktails {
                    padding-left: 22px;
                    padding-right: 22px;
                }

                .osteria-menu-panel,
                .osteria-menu-panel--mini + .osteria-menu-panel--mini,
                .osteria-menu-wine-grid > div + div {
                    border-left: 0;
                    border-top: 1px solid rgba(78, 86, 87, 0.82);
                }

                .osteria-menu-panel--pasta,
                .osteria-menu-bottom-grid .osteria-menu-panel:first-child {
                    border-top: 0;
                }

                .osteria-menu-inline,
                .osteria-menu-inline--six,
                .osteria-menu-band--soft .osteria-menu-inline,
                .osteria-menu-band--dolce .osteria-menu-inline,
                .osteria-menu-band--contorni .osteria-menu-inline,
                .osteria-menu-bottom-grid .osteria-menu-inline {
                    grid-template-columns: 1fr;
                }

                .osteria-menu-inline .osteria-menu-item + .osteria-menu-item {
                    border-left: 0;
                    border-top: 1px solid rgba(100, 107, 107, 0.62);
                    padding-top: 22px;
                    margin-top: 22px;
                }

                .osteria-menu-cocktail-grid::before {
                    display: none;
                }

                .osteria-menu-heading--dotted {
                    gap: 12px;
                }

                .osteria-menu-heading h2,
                .osteria-menu-page-title {
                    font-size: 26px;
                }

                .osteria-menu-item h3 {
                    font-size: 19px;
                    line-height: 1;
                }
            }
