@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* || RESET */

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

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

input,
button,
textarea {
    font: inherit;
}

/* || VARIABLES */

:root {
    /* FONTS */
    --FF: "Inter", sans-serif;
    --FF-DISPLAY: "Playfair Display", serif;
    --FS: clamp(0.9375rem, 2vh, 1rem);

    /* COLORS — light mode (warm amber/cream, extracted from coffee imagery) */
    --COLOR-BASE: #f5f0e8;
    --COLOR-SURFACE: #fffdf9;
    --COLOR-SURFACE-ALT: #f0e8da;
    --COLOR-BORDER: #d4b896;
    --COLOR-AMBER: #b05215;
    --COLOR-AMBER-DARK: #8f4210;
    --COLOR-TERRACOTTA: #c04a18;
    --COLOR-CREAM: #1a1108;
    --COLOR-MUTED: #6b5240;
    --COLOR-FAINT: #7a6050;
    --COLOR-NAV-ACTIVE: #8f4210;
    --COLOR-HERO-HEADING: #f0ede6;
    --COLOR-HERO-SUB: #c8b8a2;
    --COLOR-HERO-ACCENT: #e4a774;

    /* SEMANTIC ALIASES */
    --BODY-BG: var(--COLOR-BASE);
    --TEXT-PRIMARY: var(--COLOR-CREAM);
    --TEXT-SECONDARY: var(--COLOR-MUTED);
    --TEXT-ACCENT: var(--COLOR-AMBER);
    --BORDER: 1px solid var(--COLOR-BORDER);
    --BORDER-RADIUS: 4px;

    /* LAYOUT */
    --MAX-WIDTH: 100%;
    --PADDING-X: clamp(1.25rem, 4%, 2rem);
    --PADDING-Y: 0.625rem;

    /* SPACING */
    --SPACE-SM: clamp(0.75rem, 2vh, 1rem);
    --SPACE-MD: clamp(1.25rem, 3vh, 1.75rem);
    --SPACE-LG: clamp(2rem, 5vh, 3rem);

    /* TRANSITIONS */
    --TRANSITION: 0.25s ease;
}

/* || DARK MODE */

@media (prefers-color-scheme: dark) {
    :root {
        --COLOR-BASE: #0e0b09;
        --COLOR-SURFACE: #1a1108;
        --COLOR-SURFACE-ALT: #150f08;
        --COLOR-BORDER: #2e1d0e;
        --COLOR-AMBER: #e4a774;
        --COLOR-AMBER-DARK: #c4824a;
        --COLOR-TERRACOTTA: #d06030;
        --COLOR-CREAM: #f0ede6;
        --COLOR-MUTED: #9a8570;
        --COLOR-FAINT: #907560;
        --COLOR-NAV-ACTIVE: #e4a774;
        --COLOR-HERO-HEADING: #f0ede6;
        --COLOR-HERO-SUB: #c8b8a2;
        --COLOR-HERO-ACCENT: #e4a774;
    }
}

/* || UTILITY CLASSES */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.back-top {
    text-align: center;
    padding: var(--SPACE-MD) 0 var(--SPACE-LG);
}

/* || BASE */

html {
    scroll-behavior: smooth;
    font-size: var(--FS);
    font-family: var(--FF);
    background-color: var(--COLOR-BASE);
    color: var(--TEXT-PRIMARY);
}

body {
    min-height: 100vh;
    max-width: var(--MAX-WIDTH);
    margin: 0 auto;
    background-color: var(--COLOR-SURFACE);
    border-left: var(--BORDER);
    border-right: var(--BORDER);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}

h1,
h2,
h3,
h4 {
    font-family: var(--FF-DISPLAY);
    line-height: 1.15;
}

p {
    line-height: 1.7;
    color: var(--TEXT-SECONDARY);
}

strong {
    color: var(--TEXT-PRIMARY);
    font-weight: 600;
}

abbr {
    text-decoration: underline dotted;
    cursor: help;
}

a:any-link {
    color: var(--TEXT-ACCENT);
    text-decoration: none;
    transition: color var(--TRANSITION), opacity var(--TRANSITION);
}

a:hover,
a:focus-visible {
    color: var(--COLOR-CREAM);
    opacity: 0.85;
}

a:active {
    color: var(--COLOR-AMBER-DARK);
}

a:focus-visible {
    outline: 2px solid var(--COLOR-AMBER);
    outline-offset: 3px;
    border-radius: 2px;
}

/* || HEADER */

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--COLOR-BASE);
    border-bottom: var(--BORDER);
}

.header__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.header__brand {
    width: 100%;
    padding: 0.85rem var(--PADDING-X);
    text-align: center;
    font-family: var(--FF-DISPLAY);
    font-size: clamp(1.1rem, 3vw, 1.35rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--TEXT-PRIMARY);
    background-color: var(--COLOR-BASE);
}

.header__brand-accent {
    color: var(--TEXT-ACCENT);
}

.header__nav {
    width: 100%;
    background-color: var(--COLOR-SURFACE-ALT);
    border-top: var(--BORDER);
}

.header__nav-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    padding: 0 var(--PADDING-X);
}

.header__nav-link {
    display: block;
    padding: 0.6rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--TEXT-SECONDARY);
    text-decoration: none;
    transition: color var(--TRANSITION);
    border-bottom: 2px solid transparent;
}

.header__nav-link:any-link {
    color: var(--TEXT-SECONDARY);
}

.header__nav-link:hover,
.header__nav-link:focus-visible {
    color: var(--TEXT-PRIMARY);
    opacity: 1;
}

.header__nav-link--active,
.header__nav-link--active:any-link {
    color: var(--COLOR-NAV-ACTIVE);
    border-bottom-color: var(--COLOR-NAV-ACTIVE);
}

/* || HERO */

.hero {
    position: relative;
    overflow: hidden;
}

.hero__figure {
    display: block;
    line-height: 0;
}

.hero__img {
    width: 100%;
    height: clamp(220px, 40vw, 380px);
    object-fit: cover;
    object-position: center;
    filter: brightness(0.65);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(14, 11, 9, 0.95) 0%,
            rgba(14, 11, 9, 0.5) 50%,
            rgba(14, 11, 9, 0.15) 100%);
}

.hero__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--SPACE-LG) var(--PADDING-X) var(--SPACE-MD);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6), 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero__eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--COLOR-HERO-ACCENT);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.hero__heading {
    font-family: var(--FF-DISPLAY);
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--COLOR-HERO-HEADING);
    margin-bottom: 0.6rem;
    line-height: 1.1;
}

.hero__heading em {
    font-style: italic;
    color: var(--COLOR-HERO-ACCENT);
}

.hero__sub {
    font-size: 0.875rem;
    color: var(--COLOR-HERO-SUB);
    max-width: 480px;
    line-height: 1.65;
    margin-bottom: 0;
}

.hero__cta {
    display: inline-block;
    margin-top: var(--SPACE-SM);
    padding: 0.6em 1.4em;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--COLOR-HERO-ACCENT);
    border: 1px solid var(--COLOR-HERO-ACCENT);
    border-radius: var(--BORDER-RADIUS);
    text-decoration: none;
    transition: background-color var(--TRANSITION), color var(--TRANSITION);
}

.hero__cta:hover,
.hero__cta:focus-visible {
    background-color: var(--COLOR-HERO-ACCENT);
    color: var(--COLOR-SURFACE);
    opacity: 1;
}

/* || MAIN */

.main {
    margin: 0 auto;
    max-width: 1280px;
    padding: var(--SPACE-LG) var(--PADDING-X);
}

.main__article {
    scroll-margin-top: 7rem;
    margin-bottom: var(--SPACE-LG);
}

.main__article:last-of-type {
    min-height: calc(100vh - 22rem);
}

/* || SECTION HEADER */

.section-header {
    margin-bottom: var(--SPACE-MD);
}

.section-header__eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--TEXT-ACCENT);
    margin-bottom: 0.4rem;
    line-height: 1;
}

.section-header__heading {
    font-family: var(--FF-DISPLAY);
    font-size: clamp(1.4rem, 4vw, 1.9rem);
    font-weight: 600;
    color: var(--TEXT-PRIMARY);
    margin-bottom: 0.6rem;
}

.section-header__rule {
    width: 36px;
    height: 2px;
    background-color: var(--COLOR-AMBER);
    margin-bottom: 0.85rem;
    border: none;
}

.section-header__desc {
    font-size: 0.875rem;
    color: var(--TEXT-SECONDARY);
}

/* || MENU */

.menu__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1px;
    background-color: var(--COLOR-BORDER);
    border: var(--BORDER);
    border-radius: var(--BORDER-RADIUS);
    overflow: hidden;
    margin-bottom: 1px;
}

.menu__card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
    background-color: var(--COLOR-SURFACE);
    transition: background-color var(--TRANSITION);
}

.menu__card:hover {
    background-color: var(--COLOR-SURFACE-ALT);
}

.menu__card-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--COLOR-TERRACOTTA);
    border: 1px solid var(--COLOR-TERRACOTTA);
    padding: 0.2em 0.5em;
    border-radius: 2px;
    width: fit-content;
}

.menu__card-name {
    font-family: var(--FF-DISPLAY);
    font-size: 1rem;
    font-weight: 600;
    color: var(--TEXT-PRIMARY);
}

.menu__card-desc {
    font-size: 0.8rem;
    color: var(--TEXT-SECONDARY);
    line-height: 1.55;
    flex: 1;
}

.menu__card-sizes {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    list-style: none;
    margin-top: 0.25rem;
    padding-top: 0.75rem;
    border-top: var(--BORDER);
}

.menu__card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.menu__card-size {
    color: var(--TEXT-SECONDARY);
}

.menu__card-price {
    color: var(--TEXT-ACCENT);
    font-weight: 500;
}

.menu__dessert {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background-color: var(--COLOR-SURFACE);
    border: var(--BORDER);
    border-top: none;
    border-radius: 0 0 var(--BORDER-RADIUS) var(--BORDER-RADIUS);
    gap: 1rem;
}

.menu__dessert-left {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.menu__dessert-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--TEXT-SECONDARY);
}

.menu__dessert-names {
    font-family: var(--FF-DISPLAY);
    font-size: 0.95rem;
    color: var(--TEXT-PRIMARY);
}

.menu__dessert-names em {
    font-style: italic;
    color: var(--TEXT-SECONDARY);
    font-size: 0.8rem;
    font-family: var(--FF);
}

.menu__dessert-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--TEXT-ACCENT);
    white-space: nowrap;
}

/* || HOURS */

.hours__schedule {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background-color: var(--COLOR-BORDER);
    border: var(--BORDER);
    border-radius: var(--BORDER-RADIUS);
    overflow: hidden;
    margin-bottom: var(--SPACE-SM);
}

.hours__schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 1.25rem;
    background-color: var(--COLOR-SURFACE);
    gap: 1rem;
}

.hours__day {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--TEXT-SECONDARY);
}

.hours__time {
    font-family: var(--FF-DISPLAY);
    font-size: 1rem;
    color: var(--TEXT-PRIMARY);
    text-align: right;
}

.hours__note {
    font-size: 0.8rem;
    color: var(--COLOR-MUTED);
    line-height: 1.6;
    padding: 0 0.25rem;
}

/* || CONTACT INFO */
.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-info .section-header {
    width: 100%;
    max-width: 720px;
}

.contact-info__address {
    font-style: normal;
    display: flex;
    width: 100%;
    max-width: 720px;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--TEXT-SECONDARY);
    line-height: 1.75;
    padding: 1.25rem;
    background-color: var(--COLOR-SURFACE-ALT);
    border: var(--BORDER);
    border-radius: var(--BORDER-RADIUS);
}

.contact-info__address a {
    color: var(--TEXT-ACCENT);
}

/* || CONTACT FORM */

.contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-form .section-header {
    width: 100%;
    max-width: 720px;
}

.contact-form__form {
    display: flex;
    width: 100%;
    max-width: 720px;
    flex-direction: column;
    gap: var(--SPACE-SM);
}

.contact-form__fieldset {
    border: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.contact-form__label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--TEXT-SECONDARY);
}

.contact-form__input,
.contact-form__textarea {
    width: 100%;
    padding: 0.65em 0.85em;
    background-color: var(--COLOR-SURFACE-ALT);
    border: var(--BORDER);
    border-radius: var(--BORDER-RADIUS);
    color: var(--TEXT-PRIMARY);
    font-size: 0.9rem;
    transition: border-color var(--TRANSITION), box-shadow var(--TRANSITION);
    resize: vertical;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
    color: var(--COLOR-FAINT);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
    outline: none;
    border-color: var(--COLOR-AMBER);
    box-shadow: 0 0 0 3px rgba(228, 167, 116, 0.12);
}

.contact-form__actions {
    flex-direction: row;
    gap: 0.75rem;
}

.contact-form__btn {
    flex: 1;
    padding: 0.75em 1.25em;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--BORDER-RADIUS);
    cursor: pointer;
    transition: background-color var(--TRANSITION), color var(--TRANSITION), transform var(--TRANSITION), box-shadow var(--TRANSITION);
    border: 1px solid transparent;
}

.contact-form__btn--primary {
    background-color: var(--COLOR-AMBER);
    color: var(--COLOR-BASE);
    border-color: var(--COLOR-AMBER);
}

.contact-form__btn--primary:hover,
.contact-form__btn--primary:focus-visible {
    background-color: var(--COLOR-AMBER-DARK);
    border-color: var(--COLOR-AMBER-DARK);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(228, 167, 116, 0.25);
}

.contact-form__btn--primary:active {
    transform: translateY(0);
    box-shadow: none;
}

.contact-form__btn--ghost {
    background-color: transparent;
    color: var(--TEXT-SECONDARY);
    border-color: var(--COLOR-BORDER);
}

.contact-form__btn--ghost:hover,
.contact-form__btn--ghost:focus-visible {
    color: var(--TEXT-PRIMARY);
    border-color: var(--TEXT-SECONDARY);
    transform: translateY(-2px);
}

.contact-form__btn--ghost:active {
    transform: translateY(0);
}

.contact-form__btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* || ABOUT */

.about__body {
    font-size: 0.9rem;
    color: var(--TEXT-SECONDARY);
    line-height: 1.8;
    margin-bottom: 1em;
}

.about__quote {
    border-left: 2px solid var(--COLOR-AMBER);
    padding: 0.75rem 1.25rem;
    margin: var(--SPACE-MD) 0;
    background-color: var(--COLOR-SURFACE-ALT);
    border-radius: 0 var(--BORDER-RADIUS) var(--BORDER-RADIUS) 0;
}

.about__quote p {
    font-family: var(--FF-DISPLAY);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--COLOR-CREAM);
    line-height: 1.5;
}

.about__trivia {
    margin-top: var(--SPACE-MD);
    border: var(--BORDER);
    border-radius: var(--BORDER-RADIUS);
    overflow: hidden;
}

.about__trivia-heading {
    font-family: var(--FF);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--TEXT-ACCENT);
    padding: 0.75rem 1.25rem 0;
}

.about__details {
    padding: 0;
}

.about__summary {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--TEXT-PRIMARY);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color var(--TRANSITION);
}

.about__summary::-webkit-details-marker {
    display: none;
}

.about__summary::after {
    content: '+';
    font-size: 1.1rem;
    color: var(--TEXT-ACCENT);
    transition: transform var(--TRANSITION);
    line-height: 1;
}

.about__details[open] .about__summary::after {
    transform: rotate(45deg);
}

.about__summary:hover {
    background-color: var(--COLOR-SURFACE-ALT);
}

.about__answer {
    padding: 0.75rem 1.25rem 1rem;
    border-top: var(--BORDER);
    background-color: var(--COLOR-SURFACE-ALT);
}

.about__answer p {
    font-size: 0.85rem;
    color: var(--TEXT-SECONDARY);
    line-height: 1.7;
}

.about__answer cite a {
    font-size: 0.8rem;
}

/* || FOOTER */

.footer {
    position: sticky;
    bottom: 0;
    background-color: var(--COLOR-BASE);
    border-top: var(--BORDER);
}

.footer__inner {
    padding: var(--PADDING-Y) var(--PADDING-X);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__copy {
    font-size: 0.75rem;
    color: var(--COLOR-FAINT);
    line-height: 1;
}

.footer__sep {
    margin: 0 0.5em;
}

/* || MEDIA QUERIES */

@media screen and (max-width: 359px) {
    :root {
        --FS: 0.875rem;
    }

    .header__nav-link {
        padding: 0.5rem 0.5rem;
    }
}

@media screen and (min-width: 500px) {
    .header__inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }

    .header__brand {
        width: auto;
        text-align: left;
        padding-right: 1rem;
        display: flex;
        align-items: center;
        border-bottom: none;
    }

    .header__nav {
        width: auto;
        border-top: none;
        border-left: var(--BORDER);
        background-color: transparent;
    }

    .header__nav-list {
        height: 100%;
        align-items: stretch;
        padding: 0;
    }

    .header__nav-link {
        height: 100%;
        display: flex;
        align-items: center;
        padding: 0 clamp(0.55rem, 3vw, 2rem);
        border-bottom: none;
        border-top: 2px solid transparent;
        border-bottom: 2px solid transparent;
    }

    .header__nav-link--active {
        border-bottom-color: var(--COLOR-NAV-ACTIVE);
    }

    .menu__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hours__schedule-row {
        padding: 1.25rem 1.5rem;
    }

    .footer__inner {
        justify-content: space-between;
    }
}

/* || KEYFRAMES */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* || ANIMATIONS */

@media (prefers-reduced-motion: no-preference) {

    /* HERO — cascade in on page load */

    .hero__content .hero__eyebrow {
        animation: fadeUp 0.5s ease both;
        animation-delay: 0.1s;
    }

    .hero__content .hero__heading {
        animation: fadeUp 0.55s ease both;
        animation-delay: 0.25s;
    }

    .hero__content .hero__sub {
        animation: fadeUp 0.55s ease both;
        animation-delay: 0.4s;
    }

    .hero__content .hero__cta {
        animation: fadeUp 0.5s ease both;
        animation-delay: 0.55s;
    }

    /* SCROLL-DRIVEN — section headers */

    .section-header {
        animation: fadeUp linear both;
        animation-timeline: view();
        animation-range: entry 0% entry 35%;
    }

    /* SCROLL-DRIVEN — menu cards stagger */

    .menu__card:nth-child(1) {
        animation: fadeUp linear both;
        animation-timeline: view();
        animation-range: entry 0% entry 40%;
    }

    .menu__card:nth-child(2) {
        animation: fadeUp linear both;
        animation-timeline: view();
        animation-range: entry 5% entry 45%;
    }

    .menu__card:nth-child(3) {
        animation: fadeUp linear both;
        animation-timeline: view();
        animation-range: entry 10% entry 50%;
    }

    .menu__dessert {
        animation: fadeUp linear both;
        animation-timeline: view();
        animation-range: entry 0% entry 40%;
    }

    /* SCROLL-DRIVEN — hours rows stagger */

    .hours__schedule-row:nth-child(1) {
        animation: fadeUp linear both;
        animation-timeline: view();
        animation-range: entry 0% entry 45%;
    }

    .hours__schedule-row:nth-child(2) {
        animation: fadeUp linear both;
        animation-timeline: view();
        animation-range: entry 5% entry 50%;
    }

    /* SCROLL-DRIVEN — about content */

    .about__body {
        animation: fadeUp linear both;
        animation-timeline: view();
        animation-range: entry 0% entry 40%;
    }

    .about__quote {
        animation: fadeUp linear both;
        animation-timeline: view();
        animation-range: entry 0% entry 45%;
    }

    .about__trivia {
        animation: fadeUp linear both;
        animation-timeline: view();
        animation-range: entry 0% entry 45%;
    }

    /* SCROLL-DRIVEN — contact blocks */

    .contact-info__address {
        animation: fadeUp linear both;
        animation-timeline: view();
        animation-range: entry 0% entry 40%;
    }

    .contact-form__form {
        animation: fadeUp linear both;
        animation-timeline: view();
        animation-range: entry 0% entry 35%;
    }

    /* SCROLL-DRIVEN — hours note */

    .hours__note {
        animation: fadeIn linear both;
        animation-timeline: view();
        animation-range: entry 10% entry 50%;
    }
}