/*
Theme Name: Arena 8 Gastrowebshop
Theme URI: https://www.pizzeria-arena8.de
Author: Arena 8
Description: Eigenständiges, responsives Bestell-Theme für Arena 8 Kebap & Pizzahaus in Dornburg-Frickhofen.
Version: 2.1.0
Requires at least: 6.2
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: arena8
*/

:root {
    --ar8-red: oklch(0.58 0.23 29);
    --ar8-red-deep: oklch(0.43 0.18 28);
    --ar8-yellow: oklch(0.88 0.17 95);
    --ar8-green: oklch(0.48 0.08 145);
    --ar8-ink: oklch(0.19 0.012 85);
    --ar8-charcoal: oklch(0.25 0.012 85);
    --ar8-paper: oklch(0.95 0.02 78);
    --ar8-cream: oklch(0.985 0.012 80);
    --ar8-muted: oklch(0.52 0.022 75);
    --ar8-line: oklch(0.79 0.024 77);
    --ar8-red-rgb: 226, 38, 31;
    --ar8-ink-rgb: 25, 25, 22;
    --ar8-font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
    --ar8-font-body: "Atkinson Hyperlegible Next", Arial, sans-serif;
    --ar8-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ar8-container: min(1280px, calc(100% - 48px));
    --ar8-section: clamp(78px, 10vw, 150px);
    --ar8-shadow-food: 0 28px 55px rgba(31, 16, 7, 0.24);
    --ar8-shadow-action: 0 14px 30px rgba(169, 16, 20, 0.28);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ar8-ink);
    background: var(--ar8-paper);
    font-family: var(--ar8-font-body);
    font-size: 1rem;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea,
select {
    font-family: var(--ar8-font-body);
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
    height: auto;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
dd,
figure,
address {
    margin: 0;
}

ul,
ol {
    padding: 0;
}

address {
    font-style: normal;
}

[hidden] {
    display: none !important;
}

::selection {
    color: var(--ar8-cream);
    background: var(--ar8-red);
}

:focus-visible {
    outline: 3px solid var(--ar8-yellow);
    outline-offset: 4px;
}

.ar8-icon {
    width: 1.15em;
    height: 1.15em;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ar8-container {
    width: var(--ar8-container);
    margin-inline: auto;
}

.ar8-skip-link {
    position: fixed;
    z-index: 10000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--ar8-cream);
    background: var(--ar8-ink);
    transform: translateY(-160%);
}

.ar8-skip-link:focus {
    transform: translateY(0);
}

.ar8-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 14px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: var(--ar8-font-display);
    font-size: 1.06rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.035em;
    transition: color 220ms var(--ar8-ease), background-color 220ms var(--ar8-ease), border-color 220ms var(--ar8-ease), transform 220ms var(--ar8-ease), box-shadow 220ms var(--ar8-ease);
}

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

.ar8-btn:active {
    transform: translateY(0);
}

.ar8-btn--large {
    min-height: 62px;
    padding: 18px 27px;
    font-size: clamp(1.05rem, 1.7vw, 1.22rem);
}

.ar8-btn--primary {
    color: var(--ar8-cream);
    background: var(--ar8-red);
    box-shadow: var(--ar8-shadow-action);
}

.ar8-btn--primary:hover {
    background: var(--ar8-red-deep);
    box-shadow: 0 18px 38px rgba(169, 16, 20, 0.34);
}

.ar8-btn--light {
    color: var(--ar8-ink);
    background: var(--ar8-cream);
    border-color: color-mix(in oklch, var(--ar8-ink) 18%, transparent);
}

.ar8-btn--light:hover {
    color: var(--ar8-cream);
    background: var(--ar8-charcoal);
    border-color: var(--ar8-charcoal);
}

.ar8-btn--dark {
    color: var(--ar8-cream);
    background: var(--ar8-ink);
}

.ar8-btn--dark:hover {
    background: var(--ar8-red-deep);
}

.ar8-btn--outline {
    color: var(--ar8-ink);
    background: transparent;
    border-color: color-mix(in oklch, var(--ar8-ink) 28%, transparent);
}

.ar8-btn--outline:hover {
    background: color-mix(in oklch, var(--ar8-cream) 50%, transparent);
    border-color: var(--ar8-ink);
}

.ar8-btn--yellow {
    color: var(--ar8-ink);
    background: var(--ar8-yellow);
    box-shadow: 0 16px 38px rgba(93, 63, 0, 0.22);
}

.ar8-btn--yellow:hover {
    background: var(--ar8-cream);
}

.ar8-btn__arrow {
    transition: transform 220ms var(--ar8-ease);
}

.ar8-btn:hover .ar8-btn__arrow {
    transform: translateX(4px);
}

.ar8-section-number {
    font-family: var(--ar8-font-display);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ar8-announcement {
    color: var(--ar8-ink);
    background: var(--ar8-yellow);
    border-bottom: 1px solid color-mix(in oklch, var(--ar8-ink) 22%, transparent);
}

.ar8-announcement__inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 0.92rem;
}

.ar8-announcement__signal {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--ar8-red);
    box-shadow: 0 0 0 5px rgba(var(--ar8-red-rgb), 0.14);
}

.ar8-announcement strong {
    font-family: var(--ar8-font-display);
    font-size: 1.02rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ar8-announcement a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 44px;
    margin-left: auto;
    font-weight: 700;
}

.ar8-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    color: var(--ar8-cream);
    background: var(--ar8-ink);
    border-bottom: 1px solid color-mix(in oklch, var(--ar8-cream) 10%, transparent);
    transition: box-shadow 220ms var(--ar8-ease);
}

.admin-bar .ar8-header {
    top: 32px;
}

.ar8-header.is-scrolled {
    box-shadow: 0 12px 28px rgba(var(--ar8-ink-rgb), 0.24);
}

.ar8-header__inner {
    min-height: 82px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(24px, 4vw, 62px);
}

.ar8-wordmark {
    width: max-content;
    display: inline-flex;
    flex-direction: column;
    color: var(--ar8-cream);
    line-height: 0.77;
    padding-block: 4px;
}

.ar8-wordmark strong {
    font-family: var(--ar8-font-display);
    font-size: 2.65rem;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.ar8-wordmark strong span {
    color: var(--ar8-red);
}

.ar8-wordmark small {
    margin-top: 8px;
    font-family: var(--ar8-font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ar8-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 3vw, 40px);
}

.ar8-nav a {
    position: relative;
    padding-block: 12px;
    color: color-mix(in oklch, var(--ar8-cream) 72%, transparent);
    font-size: 0.93rem;
    font-weight: 600;
}

.ar8-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 2px;
    background: var(--ar8-yellow);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 260ms var(--ar8-ease);
}

.ar8-nav a:hover {
    color: var(--ar8-cream);
}

.ar8-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.ar8-header__order {
    min-height: 48px;
    padding: 12px 18px;
    box-shadow: 0 8px 22px rgba(169, 16, 20, 0.24);
}

.ar8-hero {
    position: relative;
    min-height: 0;
    overflow: hidden;
    color: var(--ar8-cream);
    background: var(--ar8-ink);
}

.ar8-hero__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    pointer-events: none;
    background-image: radial-gradient(circle, color-mix(in oklch, var(--ar8-cream) 28%, transparent) 1px, transparent 1.5px);
    background-size: 26px 26px;
    mask-image: linear-gradient(90deg, var(--ar8-ink) 0%, transparent 70%);
}

.ar8-hero__grid {
    position: relative;
    z-index: 1;
    min-height: clamp(700px, calc(100svh - 132px), 800px);
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
    align-items: center;
    gap: clamp(42px, 5vw, 76px);
    padding-block: clamp(46px, 6vh, 68px) 34px;
}

.ar8-hero__copy {
    position: relative;
    z-index: 2;
    max-width: 580px;
}

.ar8-kicker {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: clamp(20px, 2.5vw, 30px);
}

.ar8-kicker::after {
    content: "";
    width: clamp(38px, 5vw, 72px);
    height: 1px;
    margin-left: 4px;
    background: color-mix(in oklch, var(--ar8-cream) 28%, transparent);
}

.ar8-kicker > span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: var(--ar8-ink);
    background: var(--ar8-yellow);
    border-radius: 50%;
    font-family: var(--ar8-font-display);
    font-size: 1.1rem;
    font-weight: 900;
}

.ar8-kicker p {
    font-family: var(--ar8-font-display);
    font-size: clamp(0.92rem, 1.4vw, 1.08rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ar8-hero h1 {
    display: flex;
    flex-direction: column;
    max-width: 720px;
    font-family: var(--ar8-font-display);
    font-size: clamp(5.25rem, 8.15vw, 8.2rem);
    font-weight: 900;
    line-height: 0.76;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

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

.ar8-hero h1 span:nth-child(2) {
    color: var(--ar8-red);
}

.ar8-hero h1 strong {
    color: var(--ar8-yellow);
    font-weight: 900;
}

.ar8-hero__lead {
    max-width: 49ch;
    margin-top: clamp(24px, 3vw, 32px);
    color: color-mix(in oklch, var(--ar8-cream) 78%, transparent);
    font-size: clamp(1.02rem, 1.25vw, 1.14rem);
    line-height: 1.58;
}

.ar8-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.ar8-hero__actions .ar8-btn--light {
    color: var(--ar8-cream);
    background: transparent;
    border-color: color-mix(in oklch, var(--ar8-cream) 30%, transparent);
}

.ar8-hero__actions .ar8-btn--light:hover {
    color: var(--ar8-ink);
    background: var(--ar8-cream);
    border-color: var(--ar8-cream);
}

.ar8-hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 13px 22px;
    margin-top: 22px;
    padding-top: 17px;
    border-top: 1px solid color-mix(in oklch, var(--ar8-cream) 14%, transparent);
    list-style: none;
    color: color-mix(in oklch, var(--ar8-cream) 70%, transparent);
    font-size: 0.91rem;
}

.ar8-hero__facts li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.ar8-hero__facts .ar8-icon {
    color: var(--ar8-yellow);
}

.ar8-hero__visual {
    position: relative;
    min-height: 550px;
    isolation: isolate;
}

.ar8-hero__visual::before {
    content: "";
    position: absolute;
    z-index: -1;
    right: -4%;
    bottom: 2%;
    width: 48%;
    aspect-ratio: 1;
    border: 1px solid color-mix(in oklch, var(--ar8-yellow) 34%, transparent);
    border-radius: 50%;
    opacity: 0.6;
}

.ar8-hero__poster {
    position: absolute;
    inset: 2% 0 7% 3%;
    overflow: hidden;
    background: var(--ar8-red);
    border: 2px solid var(--ar8-cream);
    border-radius: 28px;
    box-shadow: 12px 12px 0 var(--ar8-yellow);
    transform: rotate(1.8deg);
}

.ar8-hero__poster::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid color-mix(in oklch, var(--ar8-cream) 42%, transparent);
    border-radius: 18px;
}

.ar8-hero__poster::after {
    content: "8";
    position: absolute;
    z-index: 0;
    top: -14%;
    right: 3%;
    color: color-mix(in oklch, var(--ar8-cream) 12%, transparent);
    font-family: var(--ar8-font-display);
    font-size: clamp(18rem, 28vw, 27rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.08em;
    pointer-events: none;
}

.ar8-hero__poster-label {
    position: relative;
    z-index: 2;
    width: min-content;
    padding: 36px 0 0 36px;
    font-family: var(--ar8-font-display);
    text-transform: uppercase;
}

.ar8-hero__poster-label span {
    display: block;
    font-size: clamp(1.1rem, 2vw, 1.55rem);
    font-weight: 700;
    letter-spacing: 0.08em;
}

.ar8-hero__poster-label strong {
    display: block;
    color: var(--ar8-yellow);
    font-size: clamp(4.35rem, 7.1vw, 6.9rem);
    line-height: 0.78;
    letter-spacing: -0.045em;
}

.ar8-hero__pizza {
    position: absolute;
    z-index: 1;
    right: -24%;
    bottom: 1%;
    width: 136%;
    max-width: none;
    filter: drop-shadow(0 30px 28px rgba(64, 9, 2, 0.3));
}

.ar8-hero__burger {
    position: absolute;
    z-index: 4;
    right: -3%;
    bottom: -1%;
    width: min(44%, 320px);
    filter: drop-shadow(0 28px 24px rgba(10, 4, 1, 0.42));
    transform: rotate(-5deg);
}

.ar8-hero__stamp {
    position: absolute;
    z-index: 5;
    top: -1%;
    right: -1%;
    width: 136px;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--ar8-ink);
    background: var(--ar8-yellow);
    border: 2px solid var(--ar8-ink);
    border-radius: 50%;
    box-shadow: 6px 6px 0 var(--ar8-cream);
    font-family: var(--ar8-font-display);
    line-height: 0.86;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(8deg);
}

.ar8-hero__stamp strong {
    font-size: 1.7rem;
    font-weight: 900;
}

.ar8-hero__stamp span {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.ar8-hero__scribble {
    position: absolute;
    z-index: 5;
    top: 34%;
    left: -4%;
    color: var(--ar8-yellow);
    font-family: var(--ar8-font-display);
    font-size: 4.4rem;
    font-weight: 900;
    transform: rotate(18deg);
}

.ar8-hero__visual-note {
    position: absolute;
    z-index: 6;
    left: 7%;
    bottom: 3%;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 40px;
    padding: 8px 14px;
    color: var(--ar8-ink);
    background: var(--ar8-cream);
    border: 1px solid color-mix(in oklch, var(--ar8-ink) 24%, transparent);
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(var(--ar8-ink-rgb), 0.2);
    font-family: var(--ar8-font-display);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    transform: rotate(-2deg);
}

.ar8-hero__visual-note::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ar8-red);
    box-shadow: 0 0 0 4px rgba(var(--ar8-red-rgb), 0.13);
}

.ar8-hero__footer {
    position: relative;
    z-index: 2;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid color-mix(in oklch, var(--ar8-cream) 14%, transparent);
    color: color-mix(in oklch, var(--ar8-cream) 70%, transparent);
    font-size: 0.9rem;
}

.ar8-hero__footer > span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.ar8-hero__footer > span::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ar8-yellow);
}

.ar8-hero__footer > span[data-state="open"]::before {
    background: oklch(0.72 0.16 145);
}

.ar8-hero__footer a,
.ar8-text-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 700;
}

.ar8-hero__footer a:hover,
.ar8-text-link:hover {
    color: var(--ar8-red);
}

.ar8-text-link {
    min-height: 44px;
}

.ar8-launch {
    padding-block: var(--ar8-section);
    background: var(--ar8-yellow);
}

.ar8-launch .ar8-container {
    display: grid;
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
    align-items: end;
    gap: clamp(44px, 8vw, 120px);
}

.ar8-launch__head h2,
.ar8-menu__head h2,
.ar8-order h2,
.ar8-info h2,
.ar8-final h2 {
    margin-top: 18px;
    font-family: var(--ar8-font-display);
    font-size: clamp(3.6rem, 7vw, 7rem);
    font-weight: 900;
    line-height: 0.84;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.ar8-launch__head > p:last-child {
    max-width: 47ch;
    margin-top: 26px;
}

.ar8-launch__offers {
    border-top: 2px solid var(--ar8-ink);
}

.ar8-offer {
    min-height: 126px;
    display: grid;
    grid-template-columns: 110px 1fr auto;
    align-items: center;
    gap: 18px;
    border-bottom: 2px solid var(--ar8-ink);
}

.ar8-offer time {
    font-family: var(--ar8-font-display);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ar8-offer strong {
    font-family: var(--ar8-font-display);
    font-size: clamp(1.5rem, 3vw, 2.45rem);
    font-weight: 800;
    line-height: 1;
}

.ar8-offer > span {
    color: var(--ar8-red-deep);
    font-family: var(--ar8-font-display);
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 900;
    line-height: 1;
}

.ar8-menu {
    padding-block: var(--ar8-section);
    background: var(--ar8-paper);
}

.ar8-menu__head {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.75fr);
    gap: 30px clamp(40px, 9vw, 140px);
    align-items: end;
    margin-bottom: clamp(50px, 7vw, 90px);
}

.ar8-menu__head .ar8-section-number {
    grid-column: 1 / -1;
    color: var(--ar8-red);
}

.ar8-menu__head h2 {
    margin-top: 0;
}

.ar8-menu__head h2 span {
    color: var(--ar8-red);
}

.ar8-menu__head > p:not(.ar8-section-number) {
    max-width: 54ch;
    color: var(--ar8-muted);
}

.ar8-menu__head .ar8-text-link {
    grid-column: 2;
    width: max-content;
    margin-top: -18px;
    color: var(--ar8-red-deep);
}

.ar8-food-stage {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
    grid-template-rows: 250px 220px 270px;
    grid-template-areas:
        "doner pizza pizza"
        "doner pide burger"
        "pasta pasta veggie";
    gap: 16px;
}

.ar8-food {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    padding: 26px;
    border: 1px solid color-mix(in oklch, var(--ar8-ink) 16%, transparent);
    border-radius: 28px;
    isolation: isolate;
    transition: transform 280ms var(--ar8-ease), box-shadow 280ms var(--ar8-ease);
}

.ar8-food:hover {
    z-index: 2;
    box-shadow: 0 22px 40px rgba(var(--ar8-ink-rgb), 0.16);
    transform: translateY(-6px);
}

.ar8-food--doner {
    grid-area: doner;
    color: var(--ar8-cream);
    background: var(--ar8-red);
}

.ar8-food--pizza {
    grid-area: pizza;
    color: var(--ar8-ink);
    background: var(--ar8-yellow);
}

.ar8-food--pide {
    grid-area: pide;
    color: var(--ar8-cream);
    background: var(--ar8-charcoal);
}

.ar8-food--pasta {
    grid-area: pasta;
    color: var(--ar8-ink);
    background: var(--ar8-cream);
}

.ar8-food--burger {
    grid-area: burger;
    color: var(--ar8-cream);
    background: var(--ar8-red-deep);
}

.ar8-food--veggie {
    grid-area: veggie;
    color: var(--ar8-cream);
    background: var(--ar8-green);
}

.ar8-food__number {
    position: relative;
    z-index: 3;
    font-family: var(--ar8-font-display);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.ar8-food__copy {
    position: relative;
    z-index: 3;
    max-width: 60%;
    display: flex;
    flex-direction: column;
    margin-top: 15px;
}

.ar8-food__copy strong {
    font-family: var(--ar8-font-display);
    font-size: clamp(1.8rem, 3.3vw, 3.35rem);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
}

.ar8-food__copy small {
    max-width: 34ch;
    margin-top: 12px;
    font-size: 0.91rem;
    line-height: 1.35;
    opacity: 0.78;
}

.ar8-food img {
    position: absolute;
    z-index: 1;
    right: -10%;
    bottom: -11%;
    width: 64%;
    max-height: 82%;
    object-fit: contain;
    filter: drop-shadow(0 18px 18px rgba(20, 10, 4, 0.24));
    transition: transform 360ms var(--ar8-ease);
}

.ar8-food:hover img {
    transform: scale(1.05) rotate(-1deg);
}

.ar8-food--doner img {
    right: -18%;
    bottom: 3%;
    width: 104%;
    max-height: 58%;
}

.ar8-food--pizza img,
.ar8-food--pide img {
    right: -13%;
    bottom: -8%;
    width: 72%;
}

.ar8-food--pasta img {
    right: -3%;
    bottom: -20%;
    width: 55%;
    max-height: 112%;
}

.ar8-food--burger img,
.ar8-food--veggie img {
    right: -10%;
    bottom: -17%;
    width: 66%;
}

.ar8-food__action {
    position: absolute;
    z-index: 4;
    right: 22px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 12px;
    color: var(--ar8-ink);
    background: var(--ar8-cream);
    border-radius: 999px;
    font-family: var(--ar8-font-display);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.ar8-category-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: clamp(52px, 7vw, 86px);
    border-top: 1px solid var(--ar8-line);
}

.ar8-category-list a {
    min-height: 78px;
    display: grid;
    grid-template-columns: 35px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px 18px 14px 0;
    border-bottom: 1px solid var(--ar8-line);
    transition: color 180ms var(--ar8-ease), padding 220ms var(--ar8-ease);
}

.ar8-category-list a:not(:nth-child(3n + 1)) {
    padding-left: 18px;
}

.ar8-category-list a:nth-child(3n + 2),
.ar8-category-list a:nth-child(3n + 3) {
    border-left: 1px solid var(--ar8-line);
}

.ar8-category-list a:last-child:nth-child(3n + 1) {
    grid-column: 1 / -1;
}

.ar8-category-list a:hover {
    color: var(--ar8-red);
    padding-right: 10px;
}

.ar8-category-list span {
    color: var(--ar8-muted);
    font-family: var(--ar8-font-display);
    font-size: 0.84rem;
    font-weight: 800;
}

.ar8-category-list strong {
    font-family: var(--ar8-font-display);
    font-size: clamp(1.15rem, 2vw, 1.48rem);
    font-weight: 800;
    line-height: 1.05;
}

.ar8-order {
    position: relative;
    overflow: hidden;
    padding-block: var(--ar8-section);
    color: var(--ar8-cream);
    background: var(--ar8-ink);
}

.ar8-order::before {
    content: "08";
    position: absolute;
    top: -9%;
    right: -1%;
    color: color-mix(in oklch, var(--ar8-cream) 4%, transparent);
    font-family: var(--ar8-font-display);
    font-size: clamp(24rem, 44vw, 44rem);
    font-weight: 900;
    line-height: 0.8;
}

.ar8-order__image {
    position: absolute;
    z-index: 2;
    right: -8%;
    bottom: -5%;
    width: min(40vw, 580px);
    opacity: 0.28;
    pointer-events: none;
}

.ar8-order__image img {
    width: 100%;
    filter: drop-shadow(0 30px 32px rgba(0, 0, 0, 0.45));
    transform: rotate(-7deg);
}

.ar8-order__inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(270px, 0.82fr) minmax(380px, 1.18fr);
    gap: clamp(58px, 10vw, 160px);
}

.ar8-order__intro .ar8-section-number {
    color: var(--ar8-yellow);
}

.ar8-order__intro > p:not(.ar8-section-number) {
    max-width: 54ch;
    margin-top: 28px;
    color: color-mix(in oklch, var(--ar8-cream) 70%, transparent);
}

.ar8-order__intro .ar8-btn {
    margin-top: 32px;
}

.ar8-steps {
    list-style: none;
    border-top: 1px solid color-mix(in oklch, var(--ar8-cream) 20%, transparent);
}

.ar8-steps li {
    min-height: 150px;
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;
    align-items: center;
    max-width: 620px;
    border-bottom: 1px solid color-mix(in oklch, var(--ar8-cream) 20%, transparent);
}

.ar8-steps li > span {
    color: var(--ar8-yellow);
    font-family: var(--ar8-font-display);
    font-size: 1.1rem;
    font-weight: 900;
}

.ar8-steps strong {
    font-family: var(--ar8-font-display);
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.ar8-steps p {
    max-width: 43ch;
    margin-top: 8px;
    color: color-mix(in oklch, var(--ar8-cream) 60%, transparent);
}

.ar8-info {
    padding-block: var(--ar8-section);
    background: var(--ar8-paper);
}

.ar8-info__headline {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    align-items: end;
    gap: 50px;
    margin-bottom: clamp(52px, 7vw, 90px);
}

.ar8-info__headline .ar8-section-number {
    color: var(--ar8-red);
}

.ar8-info__headline > p {
    max-width: 50ch;
    color: var(--ar8-muted);
}

.ar8-info__layout {
    display: grid;
    grid-template-columns: 0.95fr 0.95fr 1.3fr;
    align-items: stretch;
    gap: 16px;
}

.ar8-info__primary,
.ar8-info__hours,
.ar8-delivery {
    min-height: 460px;
    padding: clamp(26px, 3.5vw, 42px);
    border: 1px solid color-mix(in oklch, var(--ar8-ink) 15%, transparent);
    border-radius: 28px;
}

.ar8-info__primary {
    display: flex;
    flex-direction: column;
    background: var(--ar8-yellow);
}

.ar8-info__hours {
    background: var(--ar8-cream);
}

.ar8-delivery {
    color: var(--ar8-cream);
    background: var(--ar8-charcoal);
}

.ar8-info__icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
}

.ar8-info__icon .ar8-icon {
    width: 24px;
    height: 24px;
}

.ar8-info__primary > p,
.ar8-info__hours > p,
.ar8-delivery__head p {
    margin-top: 32px;
    font-family: var(--ar8-font-display);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ar8-info__primary h3,
.ar8-delivery h3 {
    margin-top: 14px;
    font-family: var(--ar8-font-display);
    font-size: clamp(2.2rem, 3.8vw, 3.6rem);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
}

.ar8-info__primary address {
    margin-top: 24px;
    font-size: 1.08rem;
}

.ar8-info__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: auto;
    padding-top: 30px;
}

.ar8-info__hours dl {
    margin-top: 37px;
}

.ar8-info__hours dl > div {
    padding-block: 18px;
    border-top: 1px solid var(--ar8-line);
}

.ar8-info__hours dt {
    font-weight: 700;
}

.ar8-info__hours dd {
    color: var(--ar8-red-deep);
    font-family: var(--ar8-font-display);
    font-size: 1.35rem;
    font-weight: 800;
}

.ar8-info__hours > small,
.ar8-delivery > small {
    display: block;
    margin-top: 18px;
    opacity: 0.65;
}

.ar8-delivery__head {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.ar8-delivery__head p {
    margin-top: 0;
    color: var(--ar8-yellow);
}

.ar8-delivery__rows {
    margin-top: 38px;
    border-top: 1px solid color-mix(in oklch, var(--ar8-cream) 20%, transparent);
}

.ar8-delivery__rows > div {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid color-mix(in oklch, var(--ar8-cream) 20%, transparent);
}

.ar8-delivery__rows strong {
    font-family: var(--ar8-font-display);
    font-size: 1.2rem;
    font-weight: 800;
}

.ar8-delivery__rows span {
    color: color-mix(in oklch, var(--ar8-cream) 66%, transparent);
    font-size: 0.92rem;
    text-align: right;
}

.ar8-final {
    position: relative;
    overflow: hidden;
    padding-block: clamp(76px, 9vw, 126px);
    color: var(--ar8-cream);
    background: var(--ar8-red);
}

.ar8-final::before,
.ar8-final::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border: 2px solid color-mix(in oklch, var(--ar8-cream) 25%, transparent);
    border-radius: 50%;
}

.ar8-final::before {
    top: -100px;
    left: 33%;
}

.ar8-final::after {
    right: -70px;
    bottom: -90px;
}

.ar8-final__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: center;
    gap: 50px;
}

.ar8-final__copy > p {
    font-family: var(--ar8-font-display);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ar8-final h2 {
    max-width: 820px;
}

.ar8-final .ar8-btn {
    margin-top: 34px;
}

.ar8-final__visual {
    position: relative;
    min-height: 340px;
}

.ar8-final__visual > span {
    position: absolute;
    top: 50%;
    left: 50%;
    color: color-mix(in oklch, var(--ar8-cream) 13%, transparent);
    font-family: var(--ar8-font-display);
    font-size: clamp(19rem, 31vw, 31rem);
    font-weight: 900;
    line-height: 0.6;
    transform: translate(-50%, -50%);
}

.ar8-final__visual img {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: min(110%, 600px);
    max-width: none;
    filter: drop-shadow(0 28px 30px rgba(80, 8, 4, 0.36));
    transform: translate(-50%, -50%) rotate(-4deg);
}

.ar8-footer {
    padding-block: 54px 28px;
    color: color-mix(in oklch, var(--ar8-cream) 70%, transparent);
    background: var(--ar8-ink);
}

.ar8-footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    align-items: start;
    gap: 42px;
}

.ar8-wordmark--footer {
    color: var(--ar8-cream);
}

.ar8-footer__links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 7px;
    color: var(--ar8-cream);
    font-weight: 700;
}

.ar8-footer__links a,
.ar8-footer__bottom a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.ar8-footer a:hover {
    color: var(--ar8-yellow);
}

.ar8-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 48px;
    padding-top: 22px;
    border-top: 1px solid color-mix(in oklch, var(--ar8-cream) 13%, transparent);
    font-size: 0.87rem;
}

.ar8-footer__bottom > div {
    display: flex;
    gap: 20px;
}

.ar8-mobile-order {
    display: none;
}

.ar8-basic-page {
    min-height: 100svh;
    padding-block: 70px;
    background: var(--ar8-paper);
}

.ar8-basic-page .ar8-wordmark {
    color: var(--ar8-ink);
}

.ar8-entry {
    max-width: 760px;
    margin-block: 70px 40px;
}

.ar8-entry h1 {
    font-family: var(--ar8-font-display);
    font-size: clamp(3.2rem, 8vw, 6rem);
    line-height: 0.9;
}

.ar8-entry__content {
    margin-top: 30px;
}

.js [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition: opacity 700ms var(--ar8-ease), transform 700ms var(--ar8-ease);
}

.js [data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (max-width: 1120px) {
    .ar8-header__inner {
        gap: 24px;
    }

    .ar8-nav {
        gap: 22px;
    }

    .ar8-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(390px, 0.94fr);
        gap: 32px;
    }

    .ar8-hero__visual {
        min-height: 510px;
    }

    .ar8-hero__poster {
        inset: 5% 0 9% 0;
    }

    .ar8-hero__burger {
        right: -2%;
        width: 45%;
    }

    .ar8-food-stage {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 320px 250px 270px 280px;
        grid-template-areas:
            "doner doner"
            "pizza pide"
            "pasta pasta"
            "burger veggie";
    }

    .ar8-food--doner img {
        right: -5%;
        bottom: -12%;
        width: 64%;
        max-height: 100%;
    }

    .ar8-info__layout {
        grid-template-columns: 1fr 1fr;
    }

    .ar8-delivery {
        grid-column: 1 / -1;
        min-height: 0;
    }

    .ar8-delivery__rows {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .ar8-delivery__rows > div:nth-child(even) {
        padding-left: 22px;
        border-left: 1px solid color-mix(in oklch, var(--ar8-cream) 20%, transparent);
    }
}

@media (max-width: 900px) {
    :root {
        --ar8-container: min(100% - 36px, 760px);
    }

    .ar8-announcement__inner {
        justify-content: flex-start;
    }

    .ar8-announcement__inner > span:not(.ar8-announcement__signal),
    .ar8-announcement a {
        display: none;
    }

    .ar8-header__inner {
        min-height: 76px;
        grid-template-columns: auto 1fr;
    }

    .ar8-nav {
        display: none;
    }

    .ar8-header__order {
        justify-self: end;
    }

    .ar8-hero {
        min-height: auto;
    }

    .ar8-hero__grid {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 38px;
        padding-block: 68px 44px;
    }

    .ar8-hero__copy {
        max-width: 650px;
    }

    .ar8-hero h1 {
        font-size: clamp(5.6rem, 16vw, 8.2rem);
    }

    .ar8-hero__visual {
        width: min(100%, 650px);
        min-height: 500px;
        margin-inline: auto;
    }

    .ar8-hero__footer {
        min-height: 62px;
    }

    .ar8-launch .ar8-container,
    .ar8-menu__head,
    .ar8-order__inner,
    .ar8-info__headline,
    .ar8-final__inner {
        grid-template-columns: 1fr;
    }

    .ar8-launch .ar8-container {
        align-items: start;
    }

    .ar8-menu__head .ar8-section-number,
    .ar8-menu__head .ar8-text-link {
        grid-column: 1;
    }

    .ar8-menu__head .ar8-text-link {
        margin-top: -8px;
    }

    .ar8-category-list {
        grid-template-columns: 1fr 1fr;
    }

    .ar8-category-list a:nth-child(3n + 2),
    .ar8-category-list a:nth-child(3n + 3) {
        border-left: 0;
    }

    .ar8-category-list a:nth-child(even) {
        padding-left: 18px;
        border-left: 1px solid var(--ar8-line);
    }

    .ar8-category-list a:nth-child(odd) {
        padding-left: 0;
    }

    .ar8-order__inner {
        gap: 62px;
    }

    .ar8-order__image {
        right: -15%;
        width: 50vw;
        opacity: 0.22;
    }

    .ar8-steps {
        max-width: 640px;
    }

    .ar8-info__headline {
        align-items: start;
    }

    .ar8-final__visual {
        min-height: 300px;
    }

    .ar8-footer__top {
        grid-template-columns: 1fr 1fr;
    }

    .ar8-footer__links {
        grid-column: 2;
        grid-row: 1 / span 2;
    }
}

@media (max-width: 620px) {
    :root {
        --ar8-container: calc(100% - 28px);
        --ar8-section: 76px;
    }

    html {
        scroll-padding-top: 88px;
    }

    body {
        padding-bottom: calc(76px + env(safe-area-inset-bottom));
    }

    .admin-bar .ar8-header {
        top: 46px;
    }

    .ar8-announcement__inner {
        min-height: 38px;
        gap: 11px;
    }

    .ar8-announcement strong {
        font-size: 0.9rem;
    }

    .ar8-header__inner {
        min-height: 70px;
    }

    .ar8-wordmark strong {
        font-size: 2.05rem;
    }

    .ar8-wordmark small {
        margin-top: 6px;
        font-size: 0.6rem;
    }

    .ar8-header__order {
        min-width: 48px;
        min-height: 48px;
        padding: 12px;
        border-radius: 50%;
    }

    .ar8-header__order span,
    .ar8-header__order .ar8-btn__arrow {
        display: none;
    }

    .ar8-hero__grid {
        gap: 34px;
        padding-block: 48px 30px;
    }

    .ar8-kicker {
        margin-bottom: 23px;
    }

    .ar8-kicker > span {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .ar8-kicker p {
        max-width: 250px;
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .ar8-kicker::after {
        display: none;
    }

    .ar8-hero h1 {
        font-size: clamp(4.45rem, 22vw, 6.05rem);
        line-height: 0.77;
    }

    .ar8-hero__lead {
        margin-top: 24px;
        font-size: 1.02rem;
    }

    .ar8-hero__actions {
        display: grid;
    }

    .ar8-hero__actions .ar8-btn {
        width: 100%;
    }

    .ar8-hero__facts {
        display: grid;
        gap: 8px;
        padding-top: 15px;
    }

    .ar8-hero__visual {
        min-height: 365px;
    }

    .ar8-hero__poster {
        inset: 3% 3% 8% 0;
        border-radius: 20px;
        box-shadow: 7px 7px 0 var(--ar8-yellow);
    }

    .ar8-hero__poster::before {
        inset: 10px;
        border-radius: 12px;
    }

    .ar8-hero__poster-label {
        padding: 24px 0 0 23px;
    }

    .ar8-hero__poster-label strong {
        font-size: clamp(3.8rem, 20vw, 5.25rem);
    }

    .ar8-hero__pizza {
        right: -34%;
        bottom: 3%;
        width: 154%;
    }

    .ar8-hero__burger {
        right: -4%;
        bottom: -2%;
        width: 47%;
    }

    .ar8-hero__stamp {
        top: 0;
        right: 0;
        width: 104px;
        box-shadow: 4px 4px 0 var(--ar8-cream);
    }

    .ar8-hero__stamp strong {
        font-size: 1.4rem;
    }

    .ar8-hero__stamp span {
        font-size: 0.78rem;
    }

    .ar8-hero__scribble {
        display: none;
    }

    .ar8-hero__visual-note {
        left: 4%;
        bottom: 1%;
        min-height: 36px;
        padding: 7px 11px;
        font-size: 0.75rem;
    }

    .ar8-hero__footer {
        min-height: 56px;
        font-size: 0.82rem;
    }

    .ar8-hero__footer a {
        display: none;
    }

    .ar8-launch__head h2,
    .ar8-menu__head h2,
    .ar8-order h2,
    .ar8-info h2,
    .ar8-final h2 {
        font-size: clamp(3.2rem, 16vw, 4.65rem);
    }

    .ar8-launch .ar8-container {
        gap: 42px;
    }

    .ar8-offer {
        min-height: 108px;
        grid-template-columns: 74px 1fr auto;
        gap: 10px;
    }

    .ar8-offer time {
        font-size: 0.75rem;
    }

    .ar8-offer strong {
        font-size: 1.35rem;
    }

    .ar8-offer > span {
        font-size: 1.9rem;
    }

    .ar8-menu__head {
        gap: 22px;
        margin-bottom: 44px;
    }

    .ar8-food-stage {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .ar8-food {
        min-height: 270px;
        padding: 22px;
        border-radius: 20px;
    }

    .ar8-food__copy {
        max-width: 68%;
    }

    .ar8-food__copy strong {
        font-size: 2.2rem;
    }

    .ar8-food img,
    .ar8-food--doner img,
    .ar8-food--pizza img,
    .ar8-food--pide img,
    .ar8-food--pasta img,
    .ar8-food--burger img,
    .ar8-food--veggie img {
        right: -12%;
        bottom: -14%;
        width: 72%;
        max-height: 70%;
    }

    .ar8-food--doner img {
        bottom: -6%;
        width: 76%;
        max-height: 50%;
    }

    .ar8-food--doner {
        min-height: 320px;
    }

    .ar8-food--pizza img,
    .ar8-food--pide img {
        width: 88%;
    }

    .ar8-food__action {
        right: 16px;
        bottom: 15px;
    }

    .ar8-category-list {
        grid-template-columns: 1fr;
        margin-top: 48px;
    }

    .ar8-category-list a,
    .ar8-category-list a:not(:nth-child(3n + 1)),
    .ar8-category-list a:nth-child(even),
    .ar8-category-list a:nth-child(odd) {
        min-height: 68px;
        padding: 12px 6px 12px 0;
        border-left: 0;
    }

    .ar8-category-list a:last-child:nth-child(3n + 1) {
        grid-column: auto;
    }

    .ar8-order__inner {
        gap: 52px;
    }

    .ar8-order__image {
        right: -28%;
        width: 80vw;
        opacity: 0.26;
    }

    .ar8-order__intro .ar8-btn {
        width: 100%;
    }

    .ar8-steps li {
        min-height: 135px;
        grid-template-columns: 46px 1fr;
        gap: 12px;
    }

    .ar8-steps strong {
        font-size: 1.75rem;
    }

    .ar8-info__layout {
        grid-template-columns: 1fr;
    }

    .ar8-info__primary,
    .ar8-info__hours,
    .ar8-delivery {
        min-height: 0;
        padding: 26px;
        border-radius: 20px;
    }

    .ar8-info__primary {
        min-height: 450px;
    }

    .ar8-delivery {
        grid-column: auto;
    }

    .ar8-delivery__head {
        flex-direction: column;
    }

    .ar8-delivery__head p {
        margin-top: 10px;
    }

    .ar8-delivery__rows {
        display: block;
    }

    .ar8-delivery__rows > div,
    .ar8-delivery__rows > div:nth-child(even) {
        min-height: 74px;
        padding-left: 0;
        border-left: 0;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 2px;
    }

    .ar8-delivery__rows span {
        text-align: left;
    }

    .ar8-final__inner {
        gap: 28px;
    }

    .ar8-final .ar8-btn {
        width: 100%;
    }

    .ar8-final__visual {
        min-height: 240px;
    }

    .ar8-footer {
        padding-block: 46px 24px;
    }

    .ar8-footer__top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ar8-footer__links {
        grid-column: 1;
        grid-row: auto;
        align-items: flex-start;
    }

    .ar8-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .ar8-mobile-order {
        position: fixed;
        z-index: 2000;
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
        background: var(--ar8-ink);
        border-top: 1px solid color-mix(in oklch, var(--ar8-cream) 14%, transparent);
    }

    .js .ar8-mobile-order {
        opacity: 0;
        pointer-events: none;
        transform: translateY(105%);
        transition: opacity 220ms var(--ar8-ease), transform 320ms var(--ar8-ease);
    }

    .js .ar8-mobile-order.is-visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .ar8-mobile-order a {
        min-height: 54px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 12px;
        padding: 12px 18px;
        color: var(--ar8-cream);
        background: var(--ar8-red);
        border-radius: 999px;
        box-shadow: var(--ar8-shadow-action);
        font-family: var(--ar8-font-display);
        font-size: 1.05rem;
        font-weight: 800;
        letter-spacing: 0.035em;
        text-align: center;
    }
}

@media (max-width: 380px) {
    :root {
        --ar8-container: calc(100% - 22px);
    }

    .ar8-hero h1 {
        font-size: 4.25rem;
    }

    .ar8-hero__visual {
        min-height: 330px;
    }

    .ar8-offer {
        grid-template-columns: 64px 1fr;
    }

    .ar8-offer > span {
        grid-column: 2;
        margin-top: -14px;
        padding-bottom: 10px;
    }
}

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

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

    .js [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
