:root {
    --bg-1: #06140f;
    --bg-2: #0c2b1f;
    --bg-3: #123c2b;
    --green: #2ee08b;
    --green-2: #7dffbc;
    --green-soft: rgba(46, 224, 139, .18);
    --cream: #fff4d8;
    --gold: #f4c15d;
    --tomato: #e94b35;
    --text: #f8f4e8;
    --muted: rgba(248, 244, 232, .72);
    --dim: rgba(248, 244, 232, .52);
    --glass: rgba(255, 255, 255, .08);
    --glass-2: rgba(255, 255, 255, .12);
    --glass-border: rgba(255, 255, 255, .18);
    --shadow: 0 30px 90px rgba(0, 0, 0, .55);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 20px;
    --wrap: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100%;
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 18% 18%, rgba(46, 224, 139, .28), transparent 28%),
        radial-gradient(circle at 82% 20%, rgba(244, 193, 93, .22), transparent 24%),
        radial-gradient(circle at 50% 92%, rgba(233, 75, 53, .18), transparent 30%),
        linear-gradient(135deg, var(--bg-1), var(--bg-2) 48%, var(--bg-3));
    overflow-x: hidden;
}

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

body:not(.otto-body):not(.otto-admin-body)::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, black, transparent 78%);
    opacity: .55;
}

body:not(.otto-body):not(.otto-admin-body)::after {
    content: "";
    position: fixed;
    inset: -20%;
    pointer-events: none;
    background:
        conic-gradient(from 180deg at 50% 50%,
            transparent,
            rgba(46, 224, 139, .08),
            transparent,
            rgba(244, 193, 93, .07),
            transparent);
    animation: slowSpin 34s linear infinite;
    opacity: .85;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 14px 18px;
    backdrop-filter: blur(20px);
    background: linear-gradient(180deg, rgba(4, 16, 11, .86), rgba(4, 16, 11, .42));
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.header-inner {
    width: min(var(--wrap), 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.brand-logo-wrap,
.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 244, 216, .22), transparent 38%),
        linear-gradient(135deg, rgba(23, 79, 64, .96), rgba(6, 20, 15, .92));
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 0 34px rgba(46,224,139,.20), inset 0 1px 0 rgba(255,255,255,.13);
    overflow: hidden;
}

.brand-logo {
    width: 34px;
    height: 34px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,.28));
}

.brand-mark {
    color: #062015;
    font-weight: 1000;
    letter-spacing: -.08em;
}

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

.brand-text strong {
    font-size: 15px;
    letter-spacing: .02em;
}

.brand-text span {
    margin-top: 4px;
    color: var(--dim);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: wrap;
}

.main-nav a {
    padding: 10px 12px;
    border-radius: 999px;
    color: rgba(255,244,216,.82);
    font-size: 13px;
    font-weight: 850;
    border: 1px solid transparent;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
    background: rgba(255,255,255,.075);
    border-color: rgba(255,255,255,.13);
    color: var(--cream);
    transform: translateY(-1px);
    outline: none;
}

.main-nav .nav-cta {
    background: rgba(244,193,93,.08);
    border-color: rgba(244,193,93,.24);
    color: rgba(255,244,216,.9);
    box-shadow: none;
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
    background: rgba(244,193,93,.14);
    border-color: rgba(244,193,93,.36);
    color: var(--cream);
}

.main-nav .nav-cta[aria-current="page"] {
    background: linear-gradient(135deg, rgba(46,224,139,.95), rgba(244,193,93,.88));
    border-color: rgba(255,255,255,.28);
    color: #062015;
    box-shadow: 0 14px 34px rgba(46,224,139,.16);
}

.nav-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 18px;
    background:
        radial-gradient(circle at 50% 18%, rgba(46,224,139,.32), transparent 44%),
        linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.08)),
        rgba(10, 28, 20, .88);
    color: var(--cream);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 18px 38px rgba(0,0,0,.34), 0 0 28px rgba(46,224,139,.12);
    cursor: pointer;
    place-items: center;
    padding: 0;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
    border-color: rgba(46,224,139,.46);
    background:
        radial-gradient(circle at 50% 18%, rgba(46,224,139,.40), transparent 46%),
        linear-gradient(145deg, rgba(255,255,255,.20), rgba(255,255,255,.10)),
        rgba(12, 32, 23, .94);
    transform: translateY(-1px);
    outline: none;
}

.nav-toggle span {
    grid-area: 1 / 1;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 0 16px rgba(46,224,139,.26);
    transition: transform .28s cubic-bezier(.2,.8,.2,1), opacity .2s ease, width .2s ease;
}

.nav-toggle span:nth-child(1) {
    transform: translateY(-7px);
}

.nav-toggle span:nth-child(3) {
    transform: translateY(7px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    width: 8px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg);
}

.site-main {
    flex: 1;
}

.hero {
    min-height: calc(100vh - 70px);
    display: grid;
    place-items: center;
    padding: 54px 18px 28px;
}

.hero-card,
.page-card,
.content-card,
.feature-card {
    border: 1px solid var(--glass-border);
    background:
        linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.045)),
        rgba(5, 18, 13, .74);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
}

.hero-card {
    width: min(var(--wrap), 100%);
    position: relative;
    overflow: hidden;
    padding: clamp(30px, 6vw, 74px);
    border-radius: var(--radius-xl);
}

.hero-card::before,
.page-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(46, 224, 139, .22), transparent 28%),
        radial-gradient(circle at 88% 16%, rgba(244, 193, 93, .16), transparent 25%),
        radial-gradient(circle at 80% 86%, rgba(233, 75, 53, .14), transparent 24%);
    pointer-events: none;
}

.hero-content,
.page-card > * {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 790px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(0,0,0,.22);
    color: var(--cream);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.badge-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 24px var(--green);
}

h1 {
    margin: 26px 0 16px;
    max-width: 900px;
    font-size: clamp(44px, 8vw, 98px);
    line-height: .9;
    letter-spacing: -.07em;
    text-transform: uppercase;
}

h1 span {
    display: block;
    color: var(--green);
    text-shadow: 0 0 32px rgba(46, 224, 139, .28);
}

h2 {
    margin: 0 0 12px;
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1;
    letter-spacing: -.04em;
}

.subtitle {
    max-width: 740px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(18px, 2.2vw, 25px);
    line-height: 1.45;
}

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

.page-actions {
    margin-top: 18px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 20px;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 950;
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 18px 50px rgba(0,0,0,.24);
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    outline: none;
}

.button-primary {
    background: linear-gradient(135deg, rgba(46,224,139,.98), rgba(244,193,93,.9));
    color: #062015;
}

.button-soft {
    background: rgba(255,255,255,.075);
    color: var(--cream);
}

.details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.chip {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.075);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,244,216,.86);
    font-size: 14px;
    font-weight: 800;
}

.pizza-orbit {
    position: absolute;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    border: 1px dashed rgba(255,255,255,.13);
    right: -120px;
    top: -120px;
    animation: slowSpin 38s linear infinite reverse;
    opacity: .9;
}

.pizza-orbit::before,
.pizza-orbit::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: var(--gold);
    box-shadow:
        60px 80px 0 rgba(233,75,53,.75),
        130px 190px 0 rgba(46,224,139,.75),
        210px 90px 0 rgba(255,244,216,.65),
        250px 245px 0 rgba(244,193,93,.8);
}

.pizza-orbit::before {
    width: 14px;
    height: 14px;
    left: 72px;
    top: 64px;
}

.pizza-orbit::after {
    width: 9px;
    height: 9px;
    right: 96px;
    bottom: 72px;
}

.corner {
    position: absolute;
    left: -90px;
    bottom: -95px;
    width: 260px;
    height: 260px;
    border-radius: 58px;
    rotate: 18deg;
    background: linear-gradient(135deg, rgba(46,224,139,.18), rgba(255,255,255,.035));
    border: 1px solid rgba(255,255,255,.1);
}

.section,
.page-hero {
    padding: 28px 18px;
}

.section-tight {
    padding-top: 0;
}

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

.section-narrow {
    width: min(860px, 100%);
}

.page-hero {
    padding-top: 54px;
}

.page-card {
    position: relative;
    overflow: hidden;
    padding: clamp(30px, 6vw, 64px);
    border-radius: var(--radius-xl);
}

.page-card h1 {
    max-width: 880px;
    font-size: clamp(38px, 6vw, 76px);
}

.content-card {
    border-radius: var(--radius-lg);
    padding: clamp(22px, 4vw, 34px);
    margin-bottom: 16px;
}

.content-card p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.content-card p:last-child {
    margin-bottom: 0;
}

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

.feature-grid-two {
    grid-template-columns: repeat(2, 1fr);
}

.feature-card {
    display: grid;
    gap: 10px;
    min-height: 170px;
    padding: 22px;
    border-radius: var(--radius-lg);
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.feature-card:hover,
.feature-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(46,224,139,.32);
    outline: none;
}

.feature-kicker {
    color: var(--green-2);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.feature-card strong {
    color: var(--cream);
    font-size: 20px;
    line-height: 1.12;
}

.feature-card span:last-child {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.5;
}

.contact-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.contact-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 14px;
    border-radius: 18px;
    background: rgba(255,255,255,.065);
    border: 1px solid rgba(255,255,255,.11);
    color: rgba(255,244,216,.88);
    font-weight: 800;
}

.contact-row span:first-child {
    color: var(--dim);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.site-footer {
    position: relative;
    z-index: 1;
    margin-top: 36px;
    padding: 28px 18px 34px;
    border-top: 1px solid rgba(255,255,255,.09);
    background: rgba(2, 11, 7, .38);
}

.footer-inner {
    width: min(var(--wrap), 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    color: rgba(248,244,232,.56);
    font-size: 13px;
}

.footer-inner strong {
    color: rgba(255,244,216,.84);
}

.footer-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,244,216,.66);
    font-weight: 800;
}

@keyframes slowSpin {
    to {
        transform: rotate(360deg);
    }
}

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

/* Real OTTO logo support */
.hero-logo-card,
.hero-brand-card,
.logo-showcase {
    display: grid;
    place-items: center;
}

.hero-logo-card img,
.hero-brand-card img,
.logo-showcase img {
    width: min(210px, 54vw);
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 22px 42px rgba(0,0,0,.34));
}

@media (max-width: 860px) {
    .feature-grid,
    .feature-grid-two {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .site-header {
        position: sticky;
        top: 0;
        padding: 11px 14px;
    }

    .header-inner {
        align-items: center;
        flex-direction: row;
    }

    .brand {
        position: relative;
        z-index: 102;
    }

    .brand-logo-wrap,
    .brand-mark {
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }

    .brand-logo {
        width: 32px;
        height: 32px;
    }

    .brand-text strong {
        font-size: 14px;
    }

    .brand-text span {
        font-size: 10px;
        letter-spacing: .15em;
    }

    .nav-toggle {
        position: relative;
        z-index: 102;
        display: grid;
        flex: 0 0 auto;
    }

    body.site-nav-open .brand {
        position: fixed;
        top: 16px;
        left: 50%;
        z-index: 103;
        transform: translateX(-50%);
        text-align: center;
        pointer-events: none;
    }

    body.site-nav-open .brand .brand-logo-wrap,
    body.site-nav-open .brand .brand-mark {
        width: 44px;
        height: 44px;
        border-radius: 16px;
    }

    body.site-nav-open .brand .brand-logo {
        width: 35px;
        height: 35px;
    }

    body.site-nav-open .brand .brand-text {
        align-items: center;
    }

    body.site-nav-open .nav-toggle {
        position: fixed;
        top: 14px;
        right: 14px;
        z-index: 104;
        background:
            radial-gradient(circle at 50% 18%, rgba(46,224,139,.36), transparent 46%),
            linear-gradient(145deg, rgba(255,255,255,.20), rgba(255,255,255,.10)),
            rgba(14, 35, 25, .96);
        box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 20px 46px rgba(0,0,0,.38), 0 0 34px rgba(46,224,139,.14);
    }

    .main-nav {
        position: fixed;
        inset: 0;
        z-index: 100;
        width: 100%;
        min-height: 100dvh;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 12px;
        padding: 92px 22px 34px;
        overflow-y: auto;
        overscroll-behavior: contain;
        background:
            radial-gradient(circle at 14% 12%, rgba(46,224,139,.28), transparent 30%),
            radial-gradient(circle at 88% 20%, rgba(244,193,93,.22), transparent 28%),
            radial-gradient(circle at 50% 100%, rgba(233,75,53,.18), transparent 34%),
            rgba(4,16,11,.94);
        backdrop-filter: blur(26px) saturate(1.1);
        border: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px) scale(.985);
        transition: opacity .28s ease, transform .34s cubic-bezier(.2,.8,.2,1), visibility 0s linear .34s;
    }

    .main-nav::before {
        content: "";
        position: fixed;
        inset: 14px;
        border: 1px solid rgba(255,255,255,.11);
        border-radius: 30px;
        pointer-events: none;
        box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 28px 90px rgba(0,0,0,.36);
    }

    .main-nav a {
        width: min(100%, 430px);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 64px;
        padding: 18px 20px;
        border-radius: 24px;
        font-size: 18px;
        letter-spacing: -.02em;
        background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.055));
        border-color: rgba(255,255,255,.16);
        box-shadow: 0 18px 46px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.10);
        opacity: 0;
        transform: translateY(18px) scale(.98);
        transition: opacity .26s ease, transform .32s cubic-bezier(.2,.8,.2,1), background .18s ease, border-color .18s ease;
    }

    .main-nav a::after {
        content: "→";
        color: rgba(244,193,93,.86);
        font-size: 17px;
        transform: translateX(-4px);
        transition: transform .18s ease;
    }

    .main-nav a:hover::after,
    .main-nav a:focus-visible::after {
        transform: translateX(0);
    }

    .main-nav .nav-cta {
        background: linear-gradient(135deg, rgba(46,224,139,.20), rgba(244,193,93,.12));
        color: var(--cream);
    }

    .main-nav .nav-cta[aria-current="page"] {
        color: #062015;
    }

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

    body.site-nav-open .main-nav a {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    body.site-nav-open .main-nav a:nth-child(1) { transition-delay: .06s; }
    body.site-nav-open .main-nav a:nth-child(2) { transition-delay: .11s; }
    body.site-nav-open .main-nav a:nth-child(3) { transition-delay: .16s; }
    body.site-nav-open .main-nav a:nth-child(4) { transition-delay: .21s; }

    .hero {
        min-height: auto;
        padding-top: 22px;
    }

    .hero-card,
    .page-card {
        border-radius: 26px;
        padding: 30px 18px;
    }

    h1 {
        letter-spacing: -.055em;
    }

    .hero-actions,
    .button {
        width: 100%;
    }

    .pizza-orbit {
        width: 250px;
        height: 250px;
        right: -125px;
        top: -110px;
    }

    .contact-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }
}


/* OTTO public shell integration for menu/admin pages */
body.otto-body .site-shell,
body.otto-admin-body .site-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.otto-body .otto-menu-shell {
    flex: 1;
    min-height: auto;
    padding-top: 18px;
    padding-bottom: 18px;
}

body.otto-body .otto-menu-shell + .site-footer,
body.otto-admin-body .site-footer {
    margin-top: auto;
}

body.otto-body .site-header {
    z-index: 30;
}

body.otto-admin-body .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
}

body.otto-admin-body .otto-admin-login {
    flex: 1;
    min-height: auto;
}

body.otto-admin-body .otto-admin-shell {
    flex: 1;
}

/* OTTO content pages v0.4.8 */
.section-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--green-2);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.page-card-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    align-items: center;
    gap: 28px;
}

.page-copy {
    position: relative;
    z-index: 2;
}

.oven-card {
    position: relative;
    z-index: 2;
    min-height: 260px;
    border-radius: 34px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.18);
    background:
        radial-gradient(circle at 50% 70%, rgba(233,75,53,.34), transparent 36%),
        radial-gradient(circle at 50% 36%, rgba(244,193,93,.2), transparent 35%),
        linear-gradient(145deg, rgba(255,255,255,.11), rgba(0,0,0,.16));
    box-shadow: inset 0 0 70px rgba(0,0,0,.32), 0 24px 70px rgba(0,0,0,.28);
}

.oven-card strong {
    font-size: 56px;
    line-height: 1;
    letter-spacing: -.09em;
    color: var(--cream);
    text-shadow: 0 0 34px rgba(244,193,93,.34);
}

.oven-card small {
    color: rgba(255,244,216,.72);
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.oven-logo {
    position: relative;
    z-index: 2;
    width: min(190px, 72%);
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 20px 42px rgba(0,0,0,.34));
}

.oven-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244,193,93,.85), rgba(233,75,53,.32) 48%, transparent 72%);
    filter: blur(8px);
    animation: pulseGlow 3s ease-in-out infinite;
}

.story-card,
.note-card,
.contact-panel,
.map-panel {
    position: relative;
    overflow: hidden;
}

.story-card::after,
.note-card::after,
.contact-panel::after,
.map-panel::after {
    content: "";
    position: absolute;
    inset: auto -18% -42% auto;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46,224,139,.14), transparent 66%);
    pointer-events: none;
}

.values-grid {
    margin-bottom: 16px;
}

.value-card {
    min-height: 190px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
    gap: 16px;
    align-items: stretch;
}

.contact-panel,
.map-panel {
    margin-bottom: 0;
}

.contact-row strong {
    text-align: right;
}

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

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

.contact-actions .button,
.map-button {
    min-width: 160px;
}

.map-panel {
    display: flex;
    flex-direction: column;
}

.map-panel p {
    margin-bottom: 20px;
}

.map-plate {
    position: relative;
    flex: 1;
    min-height: 250px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    background:
        linear-gradient(35deg, transparent 47%, rgba(255,255,255,.09) 48%, rgba(255,255,255,.09) 52%, transparent 53%),
        linear-gradient(125deg, transparent 44%, rgba(46,224,139,.16) 45%, rgba(46,224,139,.16) 50%, transparent 51%),
        radial-gradient(circle at 62% 42%, rgba(244,193,93,.26), transparent 24%),
        rgba(255,255,255,.055);
    box-shadow: inset 0 0 70px rgba(0,0,0,.18);
}

.map-pin {
    position: absolute;
    left: 50%;
    top: 44%;
    transform: translate(-50%, -50%);
    width: 78px;
    height: 78px;
    border-radius: 26px 26px 26px 6px;
    rotate: -45deg;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(46,224,139,.98), rgba(244,193,93,.9));
    color: #062015;
    font-weight: 1000;
    box-shadow: 0 20px 50px rgba(46,224,139,.22);
}

.map-pin::before {
    content: "";
    position: absolute;
    inset: 13px;
    border-radius: 18px 18px 18px 4px;
    background: rgba(255,255,255,.22);
}

.map-pin {
    text-indent: -2px;
}

.map-pin::after {
    content: "OTTO";
    position: absolute;
    rotate: 45deg;
    color: #062015;
    font-size: 14px;
    letter-spacing: -.04em;
}

.map-line {
    position: absolute;
    border-radius: 999px;
    background: rgba(255,255,255,.1);
}

.map-line-one {
    width: 72%;
    height: 7px;
    left: 12%;
    top: 24%;
    rotate: -11deg;
}

.map-line-two {
    width: 58%;
    height: 7px;
    right: 8%;
    bottom: 24%;
    rotate: 18deg;
}

.map-line-three {
    width: 7px;
    height: 76%;
    left: 24%;
    top: 12%;
    rotate: 13deg;
}

.map-button {
    margin-top: 16px;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(.95);
        opacity: .72;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

@media (max-width: 900px) {
    .page-card-split,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .oven-card,
    .map-plate {
        min-height: 220px;
    }

    .contact-row strong {
        text-align: left;
    }
}

@media (max-width: 560px) {
    .oven-card {
        min-height: 190px;
        border-radius: 26px;
    }

    .oven-card strong {
        font-size: 44px;
    }

    .map-plate {
        min-height: 200px;
        border-radius: 22px;
    }
}
