/*
 * OTTO Pizza Napoletana · Visual system 1.0
 * Contemporary Neapolitan editorial design with one brand accent.
 */

:root,
html[data-theme="light"] {
    color-scheme: light;
    --otto-accent: #174f40;
    --otto-accent-strong: #0e3b30;
    --otto-accent-soft: rgba(23, 79, 64, 0.09);
    --otto-accent-line: rgba(23, 79, 64, 0.2);
    --otto-canvas: #f4f5f1;
    --otto-canvas-deep: #e9ede7;
    --otto-surface: #ffffff;
    --otto-surface-soft: rgba(255, 255, 255, 0.76);
    --otto-surface-solid: #ffffff;
    --otto-ink: #17211d;
    --otto-ink-soft: #5f6c66;
    --otto-ink-faint: #85918b;
    --otto-line: rgba(23, 33, 29, 0.12);
    --otto-line-strong: rgba(23, 33, 29, 0.2);
    --otto-header: rgba(244, 245, 241, 0.82);
    --otto-overlay: rgba(8, 17, 13, 0.72);
    --otto-shadow-sm: 0 12px 34px rgba(21, 39, 31, 0.08);
    --otto-shadow-md: 0 26px 70px rgba(21, 39, 31, 0.12);
    --otto-shadow-lg: 0 42px 110px rgba(21, 39, 31, 0.18);
    --otto-display: "Bodoni MT", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
    --otto-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --otto-wrap: 1240px;
    --otto-radius-sm: 12px;
    --otto-radius-md: 20px;
    --otto-radius-lg: 30px;
    --otto-radius-xl: 42px;
}

html[data-theme="dark"] {
    color-scheme: dark;
    --otto-accent: #42aa83;
    --otto-accent-strong: #77c5a6;
    --otto-accent-soft: rgba(66, 170, 131, 0.12);
    --otto-accent-line: rgba(66, 170, 131, 0.27);
    --otto-canvas: #0b1210;
    --otto-canvas-deep: #07100d;
    --otto-surface: #121c18;
    --otto-surface-soft: rgba(18, 28, 24, 0.8);
    --otto-surface-solid: #121c18;
    --otto-ink: #f1f4ef;
    --otto-ink-soft: #a7b2ac;
    --otto-ink-faint: #74827b;
    --otto-line: rgba(238, 245, 240, 0.11);
    --otto-line-strong: rgba(238, 245, 240, 0.2);
    --otto-header: rgba(11, 18, 16, 0.82);
    --otto-overlay: rgba(2, 7, 5, 0.78);
    --otto-shadow-sm: 0 14px 36px rgba(0, 0, 0, 0.2);
    --otto-shadow-md: 0 28px 74px rgba(0, 0, 0, 0.3);
    --otto-shadow-lg: 0 46px 120px rgba(0, 0, 0, 0.42);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
    background: var(--otto-canvas);
}

body,
body.otto-body {
    min-height: 100vh;
    margin: 0;
    color: var(--otto-ink);
    font-family: var(--otto-sans);
    font-size: 16px;
    line-height: 1.6;
    background:
        radial-gradient(circle at 8% 0%, var(--otto-accent-soft), transparent 28rem),
        linear-gradient(180deg, var(--otto-canvas) 0%, var(--otto-canvas-deep) 100%);
    overflow-x: clip;
    transition: color 0.25s ease, background-color 0.25s ease;
}

body:not(.otto-admin-body)::before,
body:not(.otto-admin-body)::after,
body.otto-body::before {
    display: none !important;
}

body.site-nav-open,
body.otto-modal-open {
    overflow: hidden;
}

::selection {
    color: #fff;
    background: var(--otto-accent);
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

img {
    max-width: 100%;
}

:focus-visible {
    outline: 3px solid var(--otto-accent-line);
    outline-offset: 4px;
}

.site-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main,
.otto-gallery-page {
    flex: 1;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 12px 24px;
    border-bottom: 1px solid var(--otto-line);
    background: var(--otto-header);
    box-shadow: none;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 50%;
    z-index: 1000;
    padding: 10px 16px;
    border-radius: 999px;
    color: #fff;
    background: #174f40;
    transform: translate(-50%, -150%);
    transition: transform 0.18s ease;
}

.skip-link:focus {
    transform: translate(-50%, 0);
}

.header-inner {
    width: min(var(--otto-wrap), 100%);
    min-height: 54px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
    flex: 0 0 auto;
}

.brand-logo-wrap,
.brand-mark {
    width: 46px;
    height: 46px;
    padding: 0;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    overflow: hidden;
    border: 1px solid var(--otto-accent-line);
    border-radius: 50%;
    background: var(--otto-surface);
    box-shadow: var(--otto-shadow-sm);
}

.brand-logo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: none;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text strong {
    color: var(--otto-ink);
    font-size: 0.92rem;
    font-weight: 820;
    letter-spacing: -0.01em;
}

.brand-text span {
    margin-top: 5px;
    color: var(--otto-ink-faint);
    font-size: 0.64rem;
    font-weight: 750;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    flex-wrap: nowrap;
}

.main-nav a,
.main-nav .nav-cta {
    min-height: 42px;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    color: var(--otto-ink-soft);
    background: transparent;
    box-shadow: none;
    font-size: 0.84rem;
    font-weight: 760;
    transition: color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"],
.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible,
.main-nav .nav-cta[aria-current="page"] {
    color: var(--otto-accent-strong);
    border: 0;
    background: var(--otto-accent-soft);
    box-shadow: none;
    transform: none;
}

.header-controls {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.theme-toggle,
.nav-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 1px solid var(--otto-line);
    border-radius: 50%;
    color: var(--otto-ink);
    background: var(--otto-surface-soft);
    box-shadow: none;
    cursor: pointer;
    transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.theme-toggle:hover,
.nav-toggle:hover {
    color: var(--otto-accent-strong);
    border-color: var(--otto-accent-line);
    background: var(--otto-accent-soft);
    transform: translateY(-1px);
}

.theme-icon {
    grid-area: 1 / 1;
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: opacity 0.2s ease, transform 0.25s ease;
}

.theme-icon-sun {
    opacity: 0;
    transform: rotate(-35deg) scale(0.7);
}

.theme-icon-moon {
    opacity: 1;
    transform: rotate(0) scale(1);
}

html[data-theme="dark"] .theme-icon-sun {
    opacity: 1;
    transform: rotate(0) scale(1);
}

html[data-theme="dark"] .theme-icon-moon {
    opacity: 0;
    transform: rotate(35deg) scale(0.7);
}

.nav-toggle {
    display: none;
}

.nav-toggle span {
    grid-area: 1 / 1;
    width: 18px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: none;
    transition: transform 0.25s ease, opacity 0.18s ease;
}

.nav-toggle span:nth-child(1) { transform: translateY(-6px); }
.nav-toggle span:nth-child(3) { transform: translateY(6px); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }

/* Shared typography and actions */

.eyebrow,
.section-kicker,
.feature-kicker {
    margin: 0;
    color: var(--otto-accent-strong);
    font-family: var(--otto-sans);
    font-size: 0.76rem;
    font-weight: 830;
    letter-spacing: 0.17em;
    line-height: 1.25;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    color: var(--otto-ink);
    font-family: var(--otto-display);
    font-weight: 500;
    text-transform: none;
}

h1 em,
h2 em {
    color: var(--otto-accent-strong);
    font-weight: inherit;
}

.section {
    position: relative;
    padding: clamp(66px, 8vw, 112px) 24px;
}

.section-inner,
.home-hero-inner,
.editorial-hero-inner,
.contact-hero-inner {
    width: min(var(--otto-wrap), 100%);
    margin: 0 auto;
}

.section-heading {
    margin-bottom: clamp(32px, 5vw, 60px);
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.65fr);
    align-items: end;
    gap: clamp(30px, 6vw, 90px);
}

.section-heading h2 {
    margin: 13px 0 0;
    font-size: clamp(2.7rem, 5.2vw, 5rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
}

.section-heading > p {
    margin: 0 0 4px;
    color: var(--otto-ink-soft);
    font-size: 1rem;
    line-height: 1.75;
}

.section-heading-compact {
    grid-template-columns: 1fr;
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.button,
.button-primary,
.button-soft,
.button-quiet {
    min-height: 52px;
    padding: 13px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid var(--otto-line);
    border-radius: 999px;
    color: var(--otto-ink);
    background: var(--otto-surface);
    box-shadow: none;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1;
    transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    border-color: var(--otto-accent-line);
}

.button-primary {
    color: #fff;
    border-color: #174f40;
    background: #174f40;
    box-shadow: 0 14px 30px rgba(23, 79, 64, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
    color: #fff;
    border-color: #0e3b30;
    background: #0e3b30;
    box-shadow: 0 18px 38px rgba(23, 79, 64, 0.26);
}

.button-quiet,
.button-soft {
    color: var(--otto-accent-strong);
    border-color: var(--otto-accent-line);
    background: var(--otto-accent-soft);
}

/* Home */

.home-hero {
    padding: clamp(46px, 6vw, 88px) 24px clamp(72px, 9vw, 130px);
}

.home-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(370px, 0.74fr);
    align-items: center;
    gap: clamp(48px, 8vw, 120px);
}

.home-hero-copy {
    padding: 28px 0;
}

.home-hero-copy h1 {
    max-width: 790px;
    margin: 20px 0 24px;
    font-size: clamp(4rem, 7.7vw, 7.4rem);
    line-height: 0.86;
    letter-spacing: -0.075em;
    text-transform: none;
}

.home-hero-copy h1 em {
    display: inline-block;
    font-style: italic;
}

.home-lead,
.editorial-lead {
    max-width: 640px;
    margin: 0;
    color: var(--otto-ink-soft);
    font-size: clamp(1.03rem, 1.4vw, 1.18rem);
    line-height: 1.8;
}

.home-facts {
    margin: 48px 0 0;
    padding: 24px 0 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    border-top: 1px solid var(--otto-line);
}

.home-facts div {
    min-width: 0;
}

.home-facts dt {
    color: var(--otto-ink);
    font-family: var(--otto-display);
    font-size: 1.25rem;
    line-height: 1.1;
}

.home-facts dd {
    margin: 6px 0 0;
    color: var(--otto-ink-faint);
    font-size: 0.72rem;
    font-weight: 740;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.home-hero-media,
.editorial-hero-media {
    position: relative;
    min-height: 620px;
    margin: 0;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid var(--otto-line);
    border-radius: 260px 260px 32px 32px;
    background: var(--otto-surface);
    box-shadow: var(--otto-shadow-lg);
}

.home-hero-media::after,
.editorial-hero-media::after,
.contact-place-media::after,
.about-place-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 52%, rgba(3, 10, 7, 0.72));
}

.home-hero-media > img,
.editorial-hero-media > img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    display: block;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.home-hero-media:hover > img,
.editorial-hero-media:hover > img {
    transform: scale(1.025);
}

.home-hero-media figcaption {
    position: absolute;
    right: 26px;
    bottom: 25px;
    left: 26px;
    z-index: 2;
    color: #fff;
}

.home-hero-media figcaption span {
    display: block;
    margin-bottom: 8px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.home-hero-media figcaption strong {
    display: block;
    max-width: 320px;
    font-family: var(--otto-display);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.25;
}

.home-hero-mark {
    position: absolute;
    top: 49%;
    right: -7px;
    z-index: 2;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.34em;
    transform: rotate(90deg) translateX(50%);
}

.home-discover {
    border-top: 1px solid var(--otto-line);
}

.discover-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.82fr 0.68fr;
    gap: 16px;
}

.discover-card {
    position: relative;
    min-height: 410px;
    display: block;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid var(--otto-line);
    border-radius: var(--otto-radius-lg);
    color: #fff;
    background: var(--otto-surface);
    box-shadow: var(--otto-shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.discover-card:hover,
.discover-card:focus-visible {
    transform: translateY(-5px);
    border-color: var(--otto-accent-line);
    box-shadow: var(--otto-shadow-md);
}

.discover-card > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.discover-card:hover > img {
    transform: scale(1.04);
}

.discover-card-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(3, 10, 7, 0.02) 28%, rgba(3, 10, 7, 0.82) 100%);
}

.discover-card-copy {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 8px 14px;
}

.discover-card-copy small {
    grid-column: 1 / -1;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.68rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.discover-card-copy strong {
    font-family: var(--otto-display);
    font-size: clamp(1.45rem, 2.4vw, 2.15rem);
    font-weight: 500;
    line-height: 1.05;
}

.discover-card-copy em {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    font-family: var(--otto-sans);
    font-style: normal;
}

.discover-card-text {
    color: #fff;
    border-color: #174f40;
    background: #174f40;
}

.discover-card-text .discover-card-copy small {
    color: rgba(255, 255, 255, 0.66);
}

.discover-number {
    position: absolute;
    top: 24px;
    left: 24px;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--otto-display);
    font-size: 1.2rem;
}

.home-values {
    background: var(--otto-surface-soft);
    border-block: 1px solid var(--otto-line);
}

.values-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(48px, 8vw, 120px);
}

.values-intro h2 {
    margin: 14px 0 22px;
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.values-intro > p:last-child {
    max-width: 430px;
    margin: 0;
    color: var(--otto-ink-soft);
}

.values-list {
    border-top: 1px solid var(--otto-line-strong);
}

.values-list article {
    padding: 25px 0;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 22px;
    border-bottom: 1px solid var(--otto-line);
}

.values-list article > span,
.principle-grid article > span {
    color: var(--otto-accent-strong);
    font-family: var(--otto-display);
    font-size: 1rem;
}

.values-list h3 {
    margin: 0 0 6px;
    font-size: 1.6rem;
    line-height: 1.1;
}

.values-list p {
    margin: 0;
    color: var(--otto-ink-soft);
}

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

.voice-grid blockquote {
    margin: 0;
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid var(--otto-line);
    border-radius: var(--otto-radius-lg);
    background: var(--otto-surface-soft);
    box-shadow: var(--otto-shadow-sm);
}

.voice-grid .stars {
    color: var(--otto-accent-strong);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
}

.voice-grid p {
    margin: 22px 0 30px;
    font-family: var(--otto-display);
    font-size: clamp(1.45rem, 2.7vw, 2.2rem);
    line-height: 1.23;
}

.voice-grid footer {
    color: var(--otto-ink-faint);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.home-visit {
    padding-top: 24px;
}

.visit-card {
    position: relative;
    overflow: hidden;
    padding: clamp(32px, 5vw, 64px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 40px;
    border-radius: var(--otto-radius-xl);
    color: #fff;
    background:
        radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.11), transparent 22rem),
        #174f40;
    box-shadow: var(--otto-shadow-md);
}

.visit-card .eyebrow,
.visit-card h2,
.visit-card p {
    color: #fff;
}

.visit-card .eyebrow { opacity: 0.68; }
.visit-card h2 { margin: 10px 0 8px; font-size: clamp(2.6rem, 5vw, 4.8rem); line-height: 0.95; letter-spacing: -0.055em; }
.visit-card p { margin: 0; opacity: 0.74; }
.visit-card .button-primary { color: #174f40; border-color: #fff; background: #fff; box-shadow: none; }
.visit-card .button-primary:hover { color: #174f40; background: #f2f5f1; }

.visit-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.visit-phone {
    display: grid;
    gap: 4px;
    color: #fff;
}

.visit-phone small { opacity: 0.64; font-size: 0.68rem; font-weight: 780; letter-spacing: 0.1em; text-transform: uppercase; }
.visit-phone strong { font-size: 1.12rem; }

/* Editorial pages */

.editorial-hero {
    padding: clamp(52px, 7vw, 100px) 24px clamp(70px, 9vw, 128px);
}

.editorial-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
    align-items: center;
    gap: clamp(48px, 9vw, 130px);
}

.editorial-hero-copy h1,
.contact-hero-copy h1 {
    margin: 20px 0 26px;
    font-size: clamp(3.8rem, 7vw, 7rem);
    line-height: 0.89;
    letter-spacing: -0.07em;
    text-transform: none;
}

.editorial-hero-media {
    min-height: 560px;
}

.editorial-hero-media > img {
    min-height: 560px;
}

.editorial-hero-media figcaption {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: 16px;
    color: #fff;
}

.editorial-hero-media figcaption span {
    font-family: var(--otto-display);
    font-size: 2.8rem;
    line-height: 0.9;
}

.editorial-hero-media figcaption p {
    max-width: 180px;
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.76rem;
    line-height: 1.4;
}

.about-story {
    border-top: 1px solid var(--otto-line);
    background: var(--otto-surface-soft);
}

.story-layout {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: clamp(36px, 7vw, 100px);
}

.story-aside {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
}

.story-index {
    color: var(--otto-accent-strong);
    font-family: var(--otto-display);
    font-size: 3.2rem;
    line-height: 1;
}

.story-copy h2 {
    max-width: 850px;
    margin: 0 0 44px;
    font-size: clamp(2.5rem, 4.8vw, 4.7rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

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

.story-columns p {
    margin: 0;
    color: var(--otto-ink-soft);
    font-size: 1.02rem;
    line-height: 1.8;
}

.principle-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--otto-line-strong);
}

.principle-grid article {
    min-height: 285px;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--otto-line);
    border-bottom: 1px solid var(--otto-line);
}

.principle-grid article:first-child { border-left: 1px solid var(--otto-line); }
.principle-grid h3 { margin: auto 0 14px; font-size: 1.65rem; line-height: 1.1; }
.principle-grid p { margin: 0; color: var(--otto-ink-soft); font-size: 0.92rem; line-height: 1.65; }

.about-place {
    padding-top: 26px;
}

.about-place-card {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: flex-end;
    border-radius: var(--otto-radius-xl);
    box-shadow: var(--otto-shadow-md);
}

.about-place-card > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-place-card::after {
    background: linear-gradient(90deg, rgba(3, 10, 7, 0.88) 0%, rgba(3, 10, 7, 0.54) 52%, rgba(3, 10, 7, 0.12) 100%);
}

.about-place-copy {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: clamp(30px, 6vw, 70px);
    color: #fff;
}

.about-place-copy .eyebrow,
.about-place-copy h2,
.about-place-copy p { color: #fff; }
.about-place-copy .eyebrow { opacity: 0.7; }
.about-place-copy h2 { margin: 12px 0 18px; font-size: clamp(2.7rem, 5.2vw, 5rem); line-height: 0.96; letter-spacing: -0.055em; }
.about-place-copy p { max-width: 520px; margin: 0; opacity: 0.78; }
.about-place-copy .button-quiet { color: #fff; border-color: rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.1); }

/* Contact */

.contact-hero {
    padding: clamp(64px, 9vw, 135px) 24px clamp(62px, 8vw, 110px);
}

.contact-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
    align-items: end;
    gap: clamp(40px, 8vw, 120px);
}

.contact-phone-card {
    position: relative;
    min-height: 270px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid #174f40;
    border-radius: var(--otto-radius-lg);
    color: #fff;
    background: #174f40;
    box-shadow: var(--otto-shadow-md);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-phone-card:hover { transform: translateY(-5px); box-shadow: var(--otto-shadow-lg); }

.contact-phone-icon {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
}

.contact-phone-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.contact-phone-card small { opacity: 0.64; font-size: 0.69rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.contact-phone-card strong { margin-top: 8px; font-family: var(--otto-display); font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 500; line-height: 1; }
.contact-phone-card em { margin-top: 28px; display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; font-style: normal; font-weight: 780; }

.contact-details {
    border-top: 1px solid var(--otto-line);
    background: var(--otto-surface-soft);
}

.contact-details-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
    align-items: stretch;
    gap: clamp(38px, 7vw, 90px);
}

.contact-information {
    padding: 20px 0;
}

.contact-information h2 {
    margin: 14px 0 36px;
    font-size: clamp(2.45rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.contact-list {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--otto-line-strong);
}

.contact-row {
    min-height: 92px;
    padding: 22px 2px;
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    border: 0;
    border-bottom: 1px solid var(--otto-line);
    border-radius: 0;
    color: var(--otto-ink);
    background: transparent;
    transition: color 0.18s ease, padding 0.18s ease;
}

a.contact-row:hover {
    padding-inline: 10px;
    color: var(--otto-accent-strong);
    background: var(--otto-accent-soft);
}

.contact-row > span:first-child {
    color: var(--otto-ink-faint);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-row > strong {
    font-size: 1rem;
    font-weight: 690;
}

.contact-row > em {
    font-style: normal;
}

.contact-row-hours {
    align-items: start;
}

.contact-row-hours > strong {
    display: grid;
    gap: 10px;
}

.contact-row-hours > strong > span {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.contact-row-hours b,
.contact-row-hours i {
    font-size: 0.88rem;
    font-style: normal;
    font-weight: 650;
}

.contact-row-hours i { color: var(--otto-ink-soft); }

.contact-place-media {
    position: relative;
    min-height: 590px;
    margin: 0;
    overflow: hidden;
    isolation: isolate;
    border-radius: 230px 230px 28px 28px;
    box-shadow: var(--otto-shadow-md);
}

.contact-place-media > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.contact-place-media figcaption {
    position: absolute;
    right: 28px;
    bottom: 26px;
    left: 28px;
    z-index: 2;
    display: grid;
    gap: 5px;
    color: #fff;
}

.contact-place-media figcaption span { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; opacity: 0.68; }
.contact-place-media figcaption strong { font-family: var(--otto-display); font-size: 1.35rem; font-weight: 500; }

/* Digital menu */

body.otto-body {
    background:
        radial-gradient(circle at 90% 0%, var(--otto-accent-soft), transparent 34rem),
        linear-gradient(180deg, var(--otto-canvas) 0%, var(--otto-canvas-deep) 100%);
}

.otto-menu-shell,
.otto-language-shell {
    position: relative;
    z-index: 1;
    width: min(var(--otto-wrap), 100%);
    min-height: auto;
    margin: 0 auto;
    padding: clamp(46px, 6vw, 82px) 24px clamp(78px, 9vw, 130px);
}

.otto-menu-shell {
    display: block;
}

.otto-app-header {
    margin: 0 0 clamp(34px, 5vw, 58px);
    padding: 0 0 clamp(26px, 4vw, 42px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 34px;
    border-bottom: 1px solid var(--otto-line-strong);
}

.otto-menu-heading {
    min-width: 0;
}

.otto-menu-heading h1,
.otto-header-title h1 {
    margin: 13px 0 12px;
    color: var(--otto-ink);
    font-family: var(--otto-display);
    font-size: clamp(3.1rem, 6vw, 6rem);
    font-weight: 500;
    line-height: 0.92;
    letter-spacing: -0.065em;
}

.otto-menu-heading > p:last-child,
.otto-header-title p {
    max-width: 610px;
    margin: 0;
    color: var(--otto-ink-soft);
    font-size: 0.98rem;
    font-weight: 400;
    line-height: 1.7;
}

.otto-menu-tools {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.otto-category-count {
    min-height: 44px;
    padding: 9px 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--otto-line);
    border-radius: 999px;
    color: var(--otto-ink-soft);
    background: var(--otto-surface-soft);
    font-size: 0.76rem;
    font-weight: 700;
}

.otto-category-count strong {
    color: var(--otto-accent-strong);
    font-family: var(--otto-display);
    font-size: 1.06rem;
    font-weight: 500;
}

.otto-lang-toggle {
    padding: 3px;
    display: flex;
    align-items: center;
    gap: 2px;
    border: 1px solid var(--otto-line);
    border-radius: 999px;
    background: var(--otto-surface-soft);
    box-shadow: none;
}

.otto-lang-toggle a {
    min-width: 42px;
    min-height: 38px;
    padding: 8px 10px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--otto-ink-faint);
    background: transparent;
    font-size: 0.72rem;
    font-weight: 850;
}

.otto-lang-toggle a.is-active,
.otto-lang-toggle a[aria-current="true"] {
    color: #fff;
    background: #174f40;
    box-shadow: none;
}

.otto-header-logo-btn {
    position: relative;
    width: 52px;
    height: 52px;
    padding: 0;
    display: grid;
    place-items: center;
    isolation: auto;
    overflow: hidden;
    border: 1px solid var(--otto-accent-line);
    border-radius: 50%;
    background: var(--otto-surface);
    box-shadow: var(--otto-shadow-sm);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.otto-header-logo-btn::before,
.otto-header-logo-btn::after {
    display: none;
}

.otto-header-logo-btn:hover { transform: translateY(-2px); box-shadow: var(--otto-shadow-md); }

.otto-header-logo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border: 0;
    border-radius: 50%;
    filter: none;
}

.otto-category-screen {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

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

.otto-category-card,
.otto-category-card--seasonal {
    position: relative;
    min-height: 245px;
    padding: 0;
    display: block;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid var(--otto-line);
    border-radius: var(--otto-radius-md);
    color: #fff;
    background: var(--otto-surface);
    box-shadow: var(--otto-shadow-sm);
    transform: none;
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.otto-category-card:hover,
.otto-category-card:focus-visible,
.otto-category-card--seasonal:hover,
.otto-category-card--seasonal:focus-visible {
    transform: translateY(-5px);
    border-color: var(--otto-accent-line);
    box-shadow: var(--otto-shadow-md);
}

.otto-category-card::before,
.otto-category-card::after,
.otto-category-card--seasonal::before,
.otto-category-card--seasonal::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    transform: none;
    animation: none;
    pointer-events: none;
}

.otto-category-card::before,
.otto-category-card--seasonal::before {
    background: linear-gradient(180deg, rgba(3, 10, 7, 0.02) 24%, rgba(3, 10, 7, 0.82) 100%);
}

.otto-category-card::after,
.otto-category-card--seasonal::after {
    inset: auto 18px 20px auto;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    content: "↗";
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    color: #fff;
    background: rgba(3, 10, 7, 0.12);
    backdrop-filter: blur(8px);
}

.otto-category-cover {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    border-radius: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.001);
    transition: transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.otto-category-card--seasonal .otto-category-cover,
.otto-category-card--seasonal .otto-category-icon {
    z-index: 0;
}

.otto-category-card:hover .otto-category-cover {
    transform: scale(1.045);
}

.otto-category-icon {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: grid;
    place-items: center;
    font-size: 3rem;
    background: linear-gradient(145deg, var(--otto-accent-soft), var(--otto-surface));
}

.otto-category-card strong,
.otto-category-card--seasonal strong {
    position: absolute;
    right: 66px;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    margin: 0;
    color: #fff;
    font-family: var(--otto-display);
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    font-weight: 500;
    line-height: 1.06;
    text-align: left;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.otto-back-btn {
    width: fit-content;
    margin-bottom: 24px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 0;
    color: var(--otto-accent-strong);
    background: transparent;
    box-shadow: none;
    font-size: 0.76rem;
    font-weight: 820;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.otto-back-btn:hover { transform: translateX(-3px); }

.otto-products-screen-open {
    margin: 0;
    padding: 0;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.otto-product-category,
.otto-product-category--seasonal {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.otto-product-category--seasonal {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.otto-section-title {
    grid-column: 1 / -1;
    margin: 44px 0 8px;
    padding: 0 0 14px;
    border-bottom: 1px solid var(--otto-line-strong);
    color: var(--otto-ink);
    font-family: var(--otto-display);
    font-size: clamp(2rem, 3.4vw, 3rem);
    font-weight: 500;
    letter-spacing: -0.035em;
}

.otto-section-title:first-child {
    margin-top: 0;
}

.otto-product-card {
    position: relative;
    min-height: 154px;
    padding: 0;
    display: grid;
    grid-template-columns: 138px minmax(0, 1fr);
    align-items: stretch;
    overflow: hidden;
    border: 1px solid var(--otto-line);
    border-radius: var(--otto-radius-md);
    color: var(--otto-ink);
    background: var(--otto-surface-soft);
    box-shadow: var(--otto-shadow-sm);
    text-align: left;
    cursor: pointer;
    transform: none;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.otto-product-card:hover,
.otto-product-card:focus-visible {
    transform: translateY(-3px);
    border-color: var(--otto-accent-line);
    background: var(--otto-surface);
    box-shadow: var(--otto-shadow-md);
}

.otto-product-thumb,
.otto-product-thumb-empty {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 154px;
    display: block;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background-color: var(--otto-canvas-deep);
    background-position: center;
    background-size: cover;
}

.otto-product-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    border-right: 1px solid var(--otto-line);
    background: linear-gradient(90deg, transparent 65%, rgba(3, 10, 7, 0.16));
}

.otto-product-info {
    min-width: 0;
    padding: 20px 20px 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 10px;
}

.otto-product-info > strong {
    color: var(--otto-ink);
    font-family: var(--otto-display);
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.1;
}

.otto-product-card-prices,
.otto-product-card-prices-stack,
.otto-product-card-prices-split {
    margin-top: auto;
    padding-top: 11px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 9px 14px;
    border-top: 1px solid var(--otto-line);
}

.otto-product-card-price {
    min-width: 0;
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
    color: var(--otto-ink-soft);
}

.otto-product-card-price span {
    color: var(--otto-ink-faint);
    font-size: 0.68rem;
    font-weight: 700;
}

.otto-product-card-price strong {
    color: var(--otto-accent-strong);
    font-size: 0.92rem;
    font-weight: 830;
}

.otto-product-card.is-featured {
    border-color: var(--otto-accent-line);
    background: linear-gradient(135deg, var(--otto-accent-soft), var(--otto-surface-soft));
    box-shadow: var(--otto-shadow-sm);
}

.otto-product-featured-star {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    color: #fff;
    background: #174f40;
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.16);
    font-size: 0.72rem;
}

.otto-product-card.is-unavailable {
    opacity: 0.62;
    filter: none;
}

.otto-product-card.is-unavailable .otto-product-thumb {
    filter: grayscale(0.8);
}

.otto-product-unavailable-label {
    width: fit-content;
    padding: 5px 8px;
    border: 1px solid var(--otto-line);
    border-radius: 999px;
    color: var(--otto-ink-soft);
    background: var(--otto-canvas-deep);
    font-size: 0.64rem;
    font-weight: 780;
}

.otto-product-unavailable-label::before { display: none; }

.otto-product-section-badge {
    width: fit-content;
    color: var(--otto-accent-strong);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.otto-empty-state {
    padding: 46px 24px;
    border: 1px dashed var(--otto-line-strong);
    border-radius: var(--otto-radius-md);
    color: var(--otto-ink-soft);
    background: var(--otto-surface-soft);
    text-align: center;
}

/* Product modal */

.otto-modal,
.otto-info-modal {
    position: fixed;
    inset: 0;
    z-index: 500;
    padding: 24px;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.otto-modal.is-open,
.otto-info-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.otto-modal-backdrop,
.otto-info-modal-backdrop {
    position: absolute;
    inset: 0;
    background: var(--otto-overlay);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.otto-modal-card {
    position: relative;
    z-index: 2;
    width: min(920px, 100%);
    max-height: calc(100dvh - 130px);
    overflow: auto;
    border: 1px solid var(--otto-line-strong);
    border-radius: var(--otto-radius-lg);
    color: var(--otto-ink);
    background: var(--otto-surface-solid);
    box-shadow: var(--otto-shadow-lg);
    opacity: 1;
    transform: none;
    animation: none;
}

.otto-modal-bg,
.otto-modal-overlay {
    display: none;
}

.otto-modal-close,
.otto-info-close,
.otto-gallery-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 8;
    width: 42px;
    height: 42px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 1px solid var(--otto-line);
    border-radius: 50%;
    color: var(--otto-ink);
    background: var(--otto-surface-soft);
    box-shadow: var(--otto-shadow-sm);
    backdrop-filter: blur(12px);
    cursor: pointer;
}

.otto-modal-content,
.otto-modal-card.is-tight .otto-modal-content,
.otto-modal-card.is-ultra-tight .otto-modal-content {
    min-height: 520px;
    max-height: none;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
    grid-template-rows: auto auto auto auto 1fr;
    align-content: center;
    gap: 13px 30px;
    overflow: visible;
}

.otto-modal-hero,
.otto-modal-card.is-tight .otto-modal-hero,
.otto-modal-card.is-ultra-tight .otto-modal-hero {
    position: relative;
    grid-column: 1;
    grid-row: 1 / -1;
    min-height: 520px;
    height: 100%;
    margin: 0;
    overflow: hidden;
    border: 0;
    border-radius: calc(var(--otto-radius-lg) - 1px) 0 0 calc(var(--otto-radius-lg) - 1px);
    background: var(--otto-canvas-deep);
}

.otto-modal-hero img,
.otto-modal-card.is-ultra-tight .otto-modal-hero img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: block;
    object-fit: cover;
}

.otto-modal-hero-empty {
    background: var(--otto-accent-soft) url("../img/logo.svg") center / 128px 128px no-repeat;
}

.otto-modal-content > :not(.otto-modal-hero) {
    grid-column: 2;
    margin-right: 34px;
}

.otto-modal-featured,
.otto-modal-card.is-ultra-tight .otto-modal-featured {
    width: fit-content;
    margin-top: 70px;
    padding: 6px 9px;
    border: 1px solid var(--otto-accent-line);
    border-radius: 999px;
    color: var(--otto-accent-strong);
    background: var(--otto-accent-soft);
    font-size: 0.67rem;
    font-weight: 800;
}

.otto-modal-featured[hidden],
.otto-modal-availability[hidden],
.otto-modal-hero[hidden] { display: none; }

.otto-modal-content h2,
.otto-modal-card.is-tight .otto-modal-content h2,
.otto-modal-card.is-ultra-tight .otto-modal-content h2 {
    margin-top: 70px;
    margin-bottom: 0;
    color: var(--otto-ink);
    font-family: var(--otto-display);
    font-size: clamp(2rem, 4vw, 3.35rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.otto-modal-featured:not([hidden]) + h2 {
    margin-top: 0;
}

.otto-modal-content p,
.otto-modal-card.is-tight .otto-modal-content p,
.otto-modal-card.is-ultra-tight .otto-modal-content p {
    margin-top: 0;
    margin-bottom: 4px;
    color: var(--otto-ink-soft);
    font-size: 0.92rem;
    line-height: 1.65;
}

.otto-modal-availability,
.otto-modal-card.is-ultra-tight .otto-modal-availability {
    width: fit-content;
    padding: 6px 10px;
    border: 1px solid var(--otto-line);
    border-radius: 999px;
    color: var(--otto-ink-soft);
    background: var(--otto-canvas-deep);
    font-size: 0.68rem;
    font-weight: 780;
}

.otto-modal-sizes,
.otto-modal-allergens,
.otto-modal-card.is-tight .otto-modal-allergens,
.otto-modal-card.is-ultra-tight .otto-modal-allergens {
    margin-top: 5px;
    margin-bottom: 28px;
    padding-top: 16px;
    border-top: 1px solid var(--otto-line);
}

.otto-modal-sizes small,
.otto-modal-allergens small,
.otto-modal-card.is-tight .otto-modal-allergens small,
.otto-modal-card.is-ultra-tight .otto-modal-allergens small {
    display: block;
    margin-bottom: 10px;
    color: var(--otto-ink-faint);
    font-size: 0.65rem;
    font-weight: 820;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.otto-size-row,
.otto-modal-card.is-tight .otto-size-row,
.otto-modal-card.is-ultra-tight .otto-size-row {
    min-height: 39px;
    padding: 7px 0;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--otto-line);
    color: var(--otto-ink-soft);
    font-size: 0.82rem;
}

.otto-size-row strong {
    color: var(--otto-accent-strong);
    font-size: 0.9rem;
}

#ottoModalAllergens,
.otto-modal-card.is-tight #ottoModalAllergens {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.otto-allergen-chip,
.otto-modal-card.is-tight .otto-allergen-chip,
.otto-modal-card.is-ultra-tight .otto-allergen-chip {
    min-height: 30px;
    padding: 4px 9px 4px 5px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid var(--otto-line);
    border-radius: 999px;
    color: var(--otto-ink-soft);
    background: var(--otto-canvas);
}

.otto-allergen-chip b,
.otto-modal-card.is-tight .otto-allergen-chip b,
.otto-modal-card.is-ultra-tight .otto-allergen-chip b {
    width: 21px;
    height: 21px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #174f40;
    font-size: 0.62rem;
}

.otto-allergen-chip em { font-size: 0.7rem; font-style: normal; }

.otto-modal-gallery-counter,
.otto-modal-card.is-ultra-tight .otto-modal-gallery-counter {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    padding: 6px 9px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    color: #fff;
    background: rgba(3, 10, 7, 0.4);
    backdrop-filter: blur(8px);
    font-size: 0.68rem;
}

.otto-modal-gallery-dots,
.otto-modal-card.is-ultra-tight .otto-modal-gallery-dots {
    position: absolute;
    bottom: 17px;
    left: 50%;
    z-index: 3;
    display: flex;
    gap: 6px;
    transform: translateX(-50%);
}

.otto-modal-gallery-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
}

.otto-modal-gallery-dot.is-active { background: #fff; transform: scale(1.2); }

.otto-modal-switcher,
.otto-modal.is-tight .otto-modal-switcher,
.otto-modal.is-ultra-tight .otto-modal-switcher {
    position: fixed;
    left: 50%;
    bottom: 18px;
    z-index: 4;
    width: min(780px, calc(100% - 48px));
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    transform: translateX(-50%);
}

.otto-modal-switcher[hidden] { display: none; }

.otto-modal-switch-btn,
.otto-modal.is-tight .otto-modal-switch-btn,
.otto-modal.is-ultra-tight .otto-modal-switch-btn {
    min-width: 0;
    min-height: 48px;
    padding: 8px 14px;
    overflow: hidden;
    border: 1px solid var(--otto-line-strong);
    border-radius: 999px;
    color: var(--otto-ink);
    background: var(--otto-surface-solid);
    box-shadow: var(--otto-shadow-sm);
    cursor: pointer;
}

.otto-modal-switch-dir,
.otto-modal.is-tight .otto-modal-switch-dir,
.otto-modal.is-ultra-tight .otto-modal-switch-dir {
    color: var(--otto-accent-strong);
    font-size: 0.65rem;
    font-weight: 800;
}

.otto-modal-switch-name,
.otto-modal.is-tight .otto-modal-switch-name,
.otto-modal.is-ultra-tight .otto-modal-switch-name {
    color: var(--otto-ink-soft);
    font-size: 0.68rem;
}

/* Restaurant info modal */

.otto-info-card {
    position: relative;
    z-index: 2;
    width: min(560px, 100%);
    max-height: calc(100dvh - 48px);
    overflow: auto;
    border: 1px solid var(--otto-line-strong);
    border-radius: var(--otto-radius-lg);
    color: var(--otto-ink);
    background: var(--otto-surface-solid);
    box-shadow: var(--otto-shadow-lg);
    opacity: 1;
    transform: none;
    animation: none;
}

.otto-info-orb { display: none; }

.otto-info-content,
.otto-info-content .otto-info-content {
    min-height: 0;
    padding: 34px;
    display: block;
    grid-template-rows: none;
    gap: 0;
}

.otto-info-brand {
    min-height: auto;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: 0;
    background: transparent;
}

.otto-info-brand .otto-info-logo-wrap,
.otto-info-logo-wrap {
    width: 88px;
    height: 88px;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--otto-accent-line);
    border-radius: 50%;
    background: var(--otto-surface);
    box-shadow: var(--otto-shadow-sm);
}

.otto-info-brand .otto-info-logo-wrap img,
.otto-info-logo-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50%;
}

.otto-info-details {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--otto-line-strong);
}

.otto-info-block,
.otto-info-block-link {
    min-height: 82px;
    padding: 18px 0;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    border: 0;
    border-bottom: 1px solid var(--otto-line);
    border-radius: 0;
    color: var(--otto-ink);
    background: transparent;
}

a.otto-info-block:hover { color: var(--otto-accent-strong); background: transparent; }
.otto-info-icon { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--otto-line); border-radius: 50%; color: var(--otto-accent-strong); background: var(--otto-accent-soft); font-size: 0.85rem; }
.otto-info-copy { display: grid; gap: 4px; }
.otto-info-label { color: var(--otto-ink-faint); font-size: 0.64rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.otto-info-copy strong, .otto-info-phone { color: var(--otto-ink); font-size: 1rem; }
.otto-info-copy em { color: var(--otto-ink-soft); font-size: 0.82rem; font-style: normal; }
.otto-info-hours-list { display: grid; gap: 5px; }
.otto-info-hours-row { display: flex; justify-content: space-between; gap: 14px; color: var(--otto-ink-soft); font-size: 0.78rem; }
.otto-info-hours-row strong { color: var(--otto-ink); font-size: 0.78rem; }
.otto-info-credit { margin-top: 24px; color: var(--otto-ink-faint); font-size: 0.68rem; text-align: left; }
.otto-info-credit a { color: var(--otto-accent-strong); }

/* Language gateway */

.otto-language-page {
    display: grid;
    place-items: center;
}

.language-theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 20;
}

.otto-language-shell {
    width: min(580px, 100%);
    min-height: 100vh;
    padding-block: 80px 30px;
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: center;
}

.otto-language-card {
    position: relative;
    overflow: hidden;
    padding: clamp(32px, 7vw, 54px);
    border: 1px solid var(--otto-line);
    border-radius: var(--otto-radius-xl);
    color: var(--otto-ink);
    background: var(--otto-surface-soft);
    box-shadow: var(--otto-shadow-md);
    backdrop-filter: blur(18px);
    text-align: center;
}

.otto-language-card::before { display: none; }
.otto-logo-mark { width: 112px; height: 112px; margin: 0 auto 24px; padding: 0; overflow: hidden; border: 1px solid var(--otto-accent-line); border-radius: 50%; background: var(--otto-surface); box-shadow: var(--otto-shadow-sm); }
.otto-logo-mark img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; box-shadow: none; }
.otto-language-card h1 { margin: 18px 0 5px; color: var(--otto-ink); font-family: var(--otto-display); font-size: clamp(2.5rem, 8vw, 4.1rem); font-weight: 500; letter-spacing: -0.055em; }
.otto-subtitle { color: var(--otto-ink-soft); }
.otto-language-actions { margin-top: 32px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.otto-lang-btn { min-height: 76px; padding: 13px; display: flex; align-items: center; gap: 12px; border: 1px solid var(--otto-line); border-radius: var(--otto-radius-md); color: var(--otto-ink); background: var(--otto-surface); box-shadow: none; transition: transform 0.2s ease, border-color 0.2s ease; }
.otto-lang-btn:hover { transform: translateY(-3px); border-color: var(--otto-accent-line); }
.otto-lang-btn span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #174f40; font-size: 0.72rem; font-weight: 850; }
.otto-lang-btn strong { font-size: 0.86rem; }
.otto-mini-footer { color: var(--otto-ink-faint); font-size: 0.7rem; }
.otto-mini-footer a { color: var(--otto-accent-strong); }

/* Gallery */

.otto-gallery-page {
    padding-bottom: 34px;
}

.otto-gallery-hero,
.otto-gallery-section {
    padding: clamp(48px, 7vw, 88px) 24px;
}

.otto-gallery-section {
    padding-top: 14px;
}

.otto-gallery-hero-card,
.otto-gallery-inner {
    width: min(var(--otto-wrap), 100%);
    margin: 0 auto;
}

.otto-gallery-hero-card {
    position: relative;
    min-height: auto;
    padding: 0;
    overflow: visible;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.68fr);
    align-items: center;
    gap: clamp(46px, 8vw, 110px);
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.otto-gallery-hero-card::before,
.otto-gallery-hero-card::after {
    display: none;
}

.otto-gallery-hero-copy h1 {
    max-width: 760px;
    margin: 16px 0 20px;
    color: var(--otto-ink);
    font-family: var(--otto-display);
    font-size: clamp(4rem, 7vw, 7rem);
    font-weight: 500;
    line-height: 0.88;
    letter-spacing: -0.07em;
}

.otto-gallery-hero-copy p:last-child {
    max-width: 610px;
    margin: 0;
    color: var(--otto-ink-soft);
    font-size: 1.04rem;
    line-height: 1.75;
}

.otto-gallery-hero-orb {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 510px;
    aspect-ratio: auto;
    margin: 0;
    overflow: hidden;
    display: block;
    border: 1px solid var(--otto-line);
    border-radius: 210px 210px 26px 26px;
    background: var(--otto-surface);
    box-shadow: var(--otto-shadow-md);
}

.otto-gallery-hero-orb img {
    width: 100%;
    height: 100%;
    min-height: 510px;
    display: block;
    object-fit: cover;
    filter: none;
}

.otto-gallery-hero-orb figcaption {
    position: absolute;
    right: 22px;
    bottom: 20px;
    left: 22px;
    z-index: 2;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.72rem;
    font-weight: 700;
}

.otto-gallery-hero-orb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 58%, rgba(3, 10, 7, 0.66));
}

.otto-gallery-toolbar {
    position: sticky;
    top: 80px;
    z-index: 12;
    margin-bottom: 24px;
    padding: 8px;
    display: flex;
    gap: 6px;
    overflow-x: auto;
    border: 1px solid var(--otto-line);
    border-radius: 999px;
    background: var(--otto-header);
    box-shadow: var(--otto-shadow-sm);
    backdrop-filter: blur(16px);
}

.otto-gallery-pill,
.otto-gallery-load {
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--otto-ink-soft);
    background: transparent;
    box-shadow: none;
    font-size: 0.76rem;
    font-weight: 780;
}

.otto-gallery-pill { min-height: 38px; padding: 8px 13px; }
.otto-gallery-pill:hover, .otto-gallery-pill:focus-visible, .otto-gallery-load:hover, .otto-gallery-load:focus-visible { color: var(--otto-accent-strong); border-color: var(--otto-accent-line); background: var(--otto-accent-soft); transform: none; }
.otto-gallery-pill.is-active, .otto-gallery-pill[aria-pressed="true"] { color: #fff; border-color: #174f40; background: #174f40; box-shadow: none; }

.otto-gallery-grid {
    columns: 4 235px;
    column-gap: 16px;
}

.otto-gallery-item {
    margin: 0 0 16px;
    overflow: hidden;
    border: 1px solid var(--otto-line);
    border-radius: var(--otto-radius-md);
    color: var(--otto-ink);
    background: var(--otto-surface-soft);
    box-shadow: var(--otto-shadow-sm);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.otto-gallery-item:hover,
.otto-gallery-item:focus-visible {
    transform: translateY(-4px);
    border-color: var(--otto-accent-line);
    box-shadow: var(--otto-shadow-md);
}

.otto-gallery-item img { background: var(--otto-canvas-deep); }
.otto-gallery-item-copy { padding: 14px 15px 16px; }
.otto-gallery-item-copy p { color: var(--otto-ink-soft); font-size: 0.84rem; }
.otto-gallery-item-tags span { color: var(--otto-accent-strong); border-color: var(--otto-accent-line); background: var(--otto-accent-soft); }
.otto-gallery-empty { border-color: var(--otto-line-strong); color: var(--otto-ink-soft); background: var(--otto-surface-soft); }
.otto-gallery-load { min-width: 220px; min-height: 48px; padding: 11px 18px; border-color: var(--otto-accent-line); color: var(--otto-accent-strong); background: var(--otto-accent-soft); }

.otto-gallery-modal {
    background: transparent;
}

.otto-gallery-modal-backdrop {
    background: var(--otto-overlay);
    backdrop-filter: blur(12px);
}

.otto-gallery-modal-card {
    border: 1px solid var(--otto-line-strong);
    border-radius: var(--otto-radius-lg);
    background: var(--otto-surface-solid);
    box-shadow: var(--otto-shadow-lg);
}

.otto-gallery-modal-card img { background: var(--otto-canvas-deep); }
.otto-gallery-modal-card p { color: var(--otto-ink-soft); }

/* Footer */

.site-footer {
    margin-top: auto;
    padding: 30px 24px 28px;
    border-top: 1px solid var(--otto-line);
    color: var(--otto-ink-soft);
    background: var(--otto-surface-soft);
}

.footer-inner {
    width: min(var(--otto-wrap), 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 26px;
}

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

.footer-brand img {
    width: 44px;
    height: 44px;
    display: block;
    border: 1px solid var(--otto-accent-line);
    border-radius: 50%;
    background: var(--otto-surface);
}

.footer-brand span { display: grid; gap: 3px; }
.footer-brand strong { color: var(--otto-ink); font-size: 0.86rem; }
.footer-brand small { color: var(--otto-ink-faint); font-size: 0.65rem; letter-spacing: 0.08em; }

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px 17px;
}

.footer-links a {
    color: var(--otto-ink-soft);
    font-size: 0.72rem;
    font-weight: 700;
}

.footer-links a:hover { color: var(--otto-accent-strong); }
.footer-meta { color: var(--otto-ink-faint); font-size: 0.68rem; text-align: right; }

/* Responsive */

@media (max-width: 1080px) {
    .home-hero-inner,
    .editorial-hero-inner,
    .otto-gallery-hero-card {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
        gap: 48px;
    }

    .discover-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .discover-card-featured { grid-row: span 2; min-height: 650px; }
    .discover-card:not(.discover-card-featured) { min-height: 317px; }
    .principle-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .principle-grid article:nth-child(3) { border-left: 1px solid var(--otto-line); }
    .otto-category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .footer-inner { grid-template-columns: auto 1fr; }
    .footer-links { justify-content: flex-end; }
    .footer-meta { grid-column: 1 / -1; text-align: center; }
}

@media (max-width: 860px) {
    .site-header { padding-inline: 18px; }
    .nav-toggle { display: grid; }

    .main-nav {
        position: fixed;
        inset: 0;
        z-index: 1;
        margin: 0;
        padding: 112px 24px 38px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 2px;
        background: var(--otto-canvas);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-14px);
        pointer-events: none;
        transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s ease;
    }

    .site-nav-open .main-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .main-nav a,
    .main-nav .nav-cta {
        min-height: 58px;
        padding: 13px 18px;
        justify-content: flex-start;
        border-bottom: 1px solid var(--otto-line);
        border-radius: 0;
        color: var(--otto-ink);
        background: transparent;
        font-family: var(--otto-display);
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        font-weight: 500;
    }

    .main-nav a:hover,
    .main-nav a[aria-current="page"],
    .main-nav .nav-cta[aria-current="page"] {
        color: var(--otto-accent-strong);
        background: transparent;
    }

    .home-hero-inner,
    .editorial-hero-inner,
    .contact-hero-inner,
    .contact-details-grid,
    .otto-gallery-hero-card {
        grid-template-columns: 1fr;
    }

    .home-hero-media,
    .editorial-hero-media { width: min(580px, 100%); justify-self: center; }
    .values-layout { grid-template-columns: 1fr; }
    .story-layout { grid-template-columns: 110px minmax(0, 1fr); gap: 35px; }
    .contact-phone-card { min-height: 230px; }
    .contact-place-media { width: min(620px, 100%); min-height: 520px; justify-self: center; }
    .otto-gallery-hero-orb { width: min(540px, 100%); justify-self: center; }
    .otto-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .otto-product-category, .otto-product-category--seasonal { grid-template-columns: 1fr !important; }

    .otto-modal-content,
    .otto-modal-card.is-tight .otto-modal-content,
    .otto-modal-card.is-ultra-tight .otto-modal-content {
        grid-template-columns: minmax(250px, 0.82fr) minmax(0, 1.18fr);
        gap: 12px 24px;
    }

    .otto-gallery-grid { columns: 3 210px; }
}

@media (max-width: 680px) {
    .site-header { padding: 9px 14px; }
    .brand-logo-wrap { width: 42px; height: 42px; }
    .brand-text strong { font-size: 0.83rem; }
    .brand-text span { font-size: 0.56rem; letter-spacing: 0.14em; }
    .theme-toggle, .nav-toggle { width: 42px; height: 42px; }

    .section,
    .home-hero,
    .editorial-hero,
    .contact-hero,
    .otto-gallery-hero,
    .otto-gallery-section {
        padding-inline: 16px;
    }

    .home-hero { padding-top: 42px; }
    .home-hero-copy { padding-top: 0; }
    .home-hero-copy h1, .editorial-hero-copy h1, .contact-hero-copy h1, .otto-gallery-hero-copy h1 { font-size: clamp(3.25rem, 15vw, 5.1rem); }
    .home-lead, .editorial-lead { font-size: 1rem; line-height: 1.72; }
    .home-facts { gap: 10px; }
    .home-facts dt { font-size: 1.06rem; }
    .home-facts dd { font-size: 0.61rem; }

    .home-hero-media,
    .editorial-hero-media {
        min-height: 520px;
        border-radius: 180px 180px 24px 24px;
    }

    .home-hero-media > img,
    .editorial-hero-media > img { min-height: 520px; }

    .section-heading { grid-template-columns: 1fr; gap: 18px; }
    .section-heading h2 { font-size: clamp(2.55rem, 12vw, 4rem); }
    .discover-grid { grid-template-columns: 1fr; }
    .discover-card, .discover-card-featured, .discover-card:not(.discover-card-featured) { min-height: 360px; grid-row: auto; }
    .discover-card-text { min-height: 290px; }
    .values-list article { grid-template-columns: 38px 1fr; gap: 12px; }
    .voice-grid { grid-template-columns: 1fr; }

    .visit-card { grid-template-columns: 1fr; gap: 30px; border-radius: var(--otto-radius-lg); }
    .visit-actions { align-items: flex-start; flex-direction: column; }
    .visit-phone { padding-left: 4px; }

    .story-layout { grid-template-columns: 1fr; }
    .story-aside { flex-direction: row; align-items: center; }
    .story-index { font-size: 2.2rem; }
    .story-columns { grid-template-columns: 1fr; gap: 18px; }
    .principle-grid { grid-template-columns: 1fr; }
    .principle-grid article, .principle-grid article:nth-child(3) { min-height: 230px; border-left: 1px solid var(--otto-line); }
    .about-place-card { min-height: 620px; border-radius: var(--otto-radius-lg); }
    .about-place-card::after { background: linear-gradient(180deg, rgba(3, 10, 7, 0.05) 20%, rgba(3, 10, 7, 0.9) 100%); }
    .about-place-copy { padding: 28px 24px; }

    .contact-details-grid { gap: 48px; }
    .contact-row { grid-template-columns: 92px minmax(0, 1fr) auto; gap: 10px; }
    .contact-row-hours > strong > span { flex-direction: column; gap: 1px; }
    .contact-place-media { min-height: 500px; border-radius: 180px 180px 24px 24px; }

    .otto-menu-shell,
    .otto-language-shell { padding-inline: 16px; }
    .otto-app-header { grid-template-columns: 1fr; align-items: start; gap: 24px; }
    .otto-menu-heading h1 { font-size: clamp(3.1rem, 14vw, 4.8rem); }
    .otto-menu-tools { justify-content: flex-start; flex-wrap: wrap; }
    .otto-category-count { order: 3; }
    .otto-category-card, .otto-category-card--seasonal { min-height: 210px; }
    .otto-product-card { grid-template-columns: 116px minmax(0, 1fr); min-height: 142px; }
    .otto-product-thumb, .otto-product-thumb-empty { min-height: 142px; }
    .otto-product-info { padding: 16px; }
    .otto-product-info > strong { font-size: 1.18rem; }

    .otto-modal,
    .otto-info-modal {
        padding: 0;
        place-items: end center;
    }

    .otto-modal-card {
        width: 100%;
        max-height: calc(100dvh - 60px);
        border-width: 1px 0 0;
        border-radius: 28px 28px 0 0;
    }

    .otto-modal-content,
    .otto-modal-card.is-tight .otto-modal-content,
    .otto-modal-card.is-ultra-tight .otto-modal-content {
        min-height: auto;
        padding-bottom: 94px;
        display: block;
    }

    .otto-modal-hero,
    .otto-modal-card.is-tight .otto-modal-hero,
    .otto-modal-card.is-ultra-tight .otto-modal-hero {
        width: 100%;
        min-height: 285px;
        height: 285px;
        border-radius: 27px 27px 0 0;
    }

    .otto-modal-hero img,
    .otto-modal-card.is-ultra-tight .otto-modal-hero img { min-height: 285px; }
    .otto-modal-content > :not(.otto-modal-hero) { margin-right: 22px; margin-left: 22px; }
    .otto-modal-featured, .otto-modal-card.is-ultra-tight .otto-modal-featured { margin-top: 24px; }
    .otto-modal-content h2, .otto-modal-card.is-tight .otto-modal-content h2, .otto-modal-card.is-ultra-tight .otto-modal-content h2 { margin-top: 28px; font-size: 2.35rem; }
    .otto-modal-featured:not([hidden]) + h2 { margin-top: 10px; }
    .otto-modal-sizes, .otto-modal-allergens { margin-bottom: 20px; }
    .otto-modal-switcher, .otto-modal.is-tight .otto-modal-switcher, .otto-modal.is-ultra-tight .otto-modal-switcher { bottom: 8px; width: calc(100% - 16px); }
    .otto-modal-switch-name { display: none; }

    .otto-info-card { width: 100%; max-height: calc(100dvh - 40px); border-width: 1px 0 0; border-radius: 28px 28px 0 0; }
    .otto-info-content { padding: 28px 20px; }

    .otto-language-actions { grid-template-columns: 1fr; }
    .otto-gallery-hero-orb { min-height: 460px; border-radius: 180px 180px 24px 24px; }
    .otto-gallery-hero-orb img { min-height: 460px; }
    .otto-gallery-toolbar { top: 67px; border-radius: 18px; }
    .otto-gallery-grid { columns: 2 145px; column-gap: 10px; }
    .otto-gallery-item { margin-bottom: 10px; border-radius: 16px; }
    .otto-gallery-item-copy { padding: 11px; }
    .otto-gallery-item-copy p { font-size: 0.75rem; }

    .site-footer { padding-inline: 16px; }
    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .footer-brand { justify-content: center; }
    .footer-links { justify-content: center; }
}

@media (max-width: 430px) {
    .brand-text { display: none; }
    .header-inner { gap: 10px; }
    .header-controls { margin-left: auto; }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .button { width: 100%; }
    .home-facts { grid-template-columns: 1fr; }
    .home-facts div { padding: 8px 0; display: flex; align-items: baseline; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--otto-line); }
    .home-facts dd { margin: 0; }
    .home-hero-media, .editorial-hero-media { min-height: 460px; }
    .home-hero-media > img, .editorial-hero-media > img { min-height: 460px; }
    .otto-category-grid { gap: 10px; }
    .otto-category-card, .otto-category-card--seasonal { min-height: 178px; border-radius: 16px; }
    .otto-category-card strong, .otto-category-card--seasonal strong { right: 44px; bottom: 14px; left: 14px; font-size: 1.05rem; }
    .otto-category-card::after, .otto-category-card--seasonal::after { right: 12px; bottom: 12px; width: 30px; height: 30px; font-size: 0.72rem; }
    .otto-category-count { display: none; }
    .otto-product-card { grid-template-columns: 102px minmax(0, 1fr); }
    .otto-product-info { padding: 13px; }
    .otto-product-card-prices { gap: 7px; }
    .otto-product-card-price { gap: 5px; }
    .otto-product-card-price span { font-size: 0.61rem; }
    .otto-product-card-price strong { font-size: 0.8rem; }
    .contact-row { grid-template-columns: 1fr auto; }
    .contact-row > span:first-child { grid-column: 1 / -1; }
    .contact-row-hours { grid-template-columns: 1fr; }
    .contact-row-hours > strong { grid-column: 1; }
    .otto-gallery-grid { columns: 2 125px; }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
