/* Alpine Café Editorial — homepage design system */
:root {
    --color-bg-primary: #4A4A2E;
    --color-bg-secondary: #5C5A3A;
    --color-bg-card: #EFE9D8;
    --color-bg-card-alt: #E4DCC5;
    --color-text-on-dark: #F2ECDD;
    --color-text-on-light: #3A3A26;
    --color-text-muted-dark: #C9C3A8;
    --color-text-muted-light: #7A765C;
    --color-accent-coffee: #2B1B12;
    --color-accent-cream-foam: #E8D9B8;
    --color-divider: rgba(242, 236, 221, 0.15);
    --color-divider-light: rgba(58, 58, 38, 0.12);
    --color-dot-pattern: rgba(242, 236, 221, 0.25);

    --font-display: 'Canela', 'Reckless', 'Fraunces', serif;
    --font-body: 'Suisse Works', 'PP Editorial', 'Cormorant', serif;
    --text-hero: 120px;
    --text-hero-mobile: 56px;
    --letter-spacing-hero: 0.01em;
    --line-height-hero: 0.95;
    --text-h2: 28px;
    --letter-spacing-h2: 0.08em;
    --text-body: 11px;
    --letter-spacing-body: 0.12em;
    --line-height-body: 1.8;
    --text-nav: 11px;
    --letter-spacing-nav: 0.15em;
    --space-section-padding: 80px;
    --space-section-padding-mobile: 32px;
    --space-card-padding: 40px;
    --space-grid-gap: 16px;
    --container-max: 1200px;
}

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

.home-page {
    margin: 0;
    min-width: 320px;
    background: var(--color-bg-primary);
    color: var(--color-text-on-dark);
    font-family: var(--font-body);
    font-size: var(--text-body);
    font-weight: 400;
    letter-spacing: var(--letter-spacing-body);
    line-height: var(--line-height-body);
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
}

.home-page img {
    display: block;
    max-width: 100%;
}

.home-page a {
    color: inherit;
    text-decoration: none;
}

.home-page button {
    color: inherit;
    font: inherit;
}

.home-page p,
.home-page h1,
.home-page h2,
.home-page h3,
.home-page figure,
.home-page blockquote {
    margin: 0;
}

.home-page p {
    text-align: center;
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page .brand-name {
    font-family: var(--font-display);
    font-weight: 300;
    letter-spacing: 0;
    text-transform: none;
}

.home-page h2 {
    font-size: clamp(3.75rem, 7.5vw, 6.5rem);
    line-height: 0.9;
}

.home-page h3 {
    font-size: 28px;
    line-height: 1.05;
}

.content-width {
    width: min(calc(100% - 64px), var(--container-max));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 100;
    padding: 10px 14px;
    color: var(--color-text-on-light) !important;
    background: var(--color-bg-card);
    transform: translateY(-150%);
}

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

/* Navigation */
.site-header {
    position: relative;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    height: 64px;
    padding: 0 32px;
    background: var(--color-bg-primary);
    border-bottom: 1px solid var(--color-divider);
}

.brand-mark {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    width: fit-content;
    line-height: 1;
    text-transform: none;
}

.brand-logo {
    width: 96px;
    height: auto;
}

.brand-name {
    font-size: 25px;
    font-style: italic;
    line-height: 0.8;
}

.brand-tagline {
    margin-top: 7px;
    color: var(--color-text-muted-dark);
    font-family: var(--font-body);
    font-size: 8px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(34px, 4vw, 64px);
}

.desktop-nav a,
.header-utilities a,
.header-utilities span {
    position: relative;
    font-size: var(--text-nav);
    letter-spacing: var(--letter-spacing-nav);
    text-transform: uppercase;
}

.desktop-nav a::after,
.header-utilities a::after,
.site-footer nav a::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 1px;
    background: currentColor;
    content: '';
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 280ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.header-utilities a:hover::after,
.header-utilities a:focus-visible::after,
.site-footer nav a:hover::after,
.site-footer nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-utilities {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}

.header-utilities span {
    color: var(--color-text-muted-dark);
}

.menu-toggle,
.mobile-nav {
    display: none;
}

/* Hero */
.hero {
    position: relative;
    min-height: calc(100svh - 64px);
    padding: 30px 0 58px;
    overflow: hidden;
    background: var(--color-bg-primary);
}

.hero-kicker,
.eyebrow {
    color: var(--color-text-muted-dark);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-align: center;
}

.hero-stage {
    position: relative;
    display: grid;
    align-items: center;
    isolation: isolate;
    width: 100%;
    min-height: clamp(540px, 66svh, 700px);
    margin: 2px auto 0;
    overflow: visible;
}

.hero-title {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-text-on-dark);
    font-size: clamp(132px, 15.8vw, 220px);
    letter-spacing: var(--letter-spacing-hero);
    line-height: 0.82;
    text-align: center;
    text-transform: none;
    font-variation-settings: "opsz" 144;
}

.hero-title span:first-child {
    margin-right: 2.35em;
}

.hero-title span:last-child {
    margin-top: -0.08em;
    margin-left: 1.18em;
}

.hero-product {
    position: absolute;
    z-index: 3;
    top: 58%;
    left: 50%;
    width: clamp(285px, 30vw, 410px);
    max-height: 520px;
    object-fit: contain;
    filter: saturate(0.82) contrast(1.06) sepia(0.06);
    transform: translate(-50%, -35%) rotate(0deg);
    transform-origin: center;
    transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero:hover .hero-product {
    transform: translate(-50%, -37%) rotate(0deg);
}

.hero-notes {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: end;
    gap: 46px;
    width: 100%;
    margin-top: -112px;
    padding: 0 clamp(32px, 6vw, 96px);
}

.hero-notes p {
    max-width: 390px;
    color: var(--color-text-muted-dark);
}

.hero-notes p:last-child {
    justify-self: end;
}

.text-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 36px;
    padding: 5px 0;
    border-bottom: 1px solid currentColor;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-align: center;
    text-transform: uppercase;
    transition: opacity 220ms ease, letter-spacing 220ms ease;
}

.text-link:hover,
.text-link:focus-visible {
    letter-spacing: 0.2em;
    opacity: 0.75;
}

.text-link-dark {
    color: var(--color-text-on-light) !important;
}

.dot-divider {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 24px;
    opacity: 0.75;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Ccircle cx='2' cy='2' r='1' fill='%23F2ECDD' fill-opacity='.25'/%3E%3C/svg%3E");
}

.dot-divider-secondary {
    position: relative;
    background-color: var(--color-bg-secondary);
}

/* Shared section heading */
.light-section {
    color: var(--color-text-on-light);
    background: var(--color-bg-card);
}

.section-heading {
    max-width: 760px;
    padding-bottom: 58px;
    text-align: center;
}

.section-heading .eyebrow {
    margin-bottom: 22px;
}

.section-heading h2 {
    margin-bottom: 28px;
}

.section-heading > p:last-child {
    max-width: 460px;
    margin-inline: auto;
    color: var(--color-text-muted-dark);
}

.section-heading-light .eyebrow,
.light-section .eyebrow {
    color: var(--color-text-muted-light);
}

.section-heading-light > p:last-child {
    color: var(--color-text-muted-light);
}

/* About */
.about-section {
    padding: var(--space-section-padding) 0 112px;
}

.content-card {
    padding: var(--space-card-padding);
    background: var(--color-bg-card-alt);
    text-align: center;
}

.content-card .eyebrow {
    margin-bottom: 26px;
}

.content-card h2 {
    margin-bottom: 34px;
}

.editorial-copy {
    max-width: 610px;
    margin: 0 auto 26px !important;
    color: var(--color-text-muted-light);
}

.story-collage {
    display: grid;
    grid-template-columns: 0.82fr 1.38fr 0.92fr;
    align-items: center;
    gap: var(--space-grid-gap);
    margin-top: 64px;
}

.collage-image img {
    width: 100%;
    filter: saturate(0.55) contrast(1.08) sepia(0.1);
}

.collage-image-small img {
    height: 280px;
    object-fit: cover;
}

.collage-image-large img {
    height: 410px;
    object-fit: cover;
}

.collage-image-medium img {
    height: 330px;
    object-fit: cover;
}

.collage-image figcaption {
    padding-top: 12px;
    color: var(--color-text-muted-light);
    font-size: 9px;
    letter-spacing: 0.15em;
    text-align: center;
}

/* Principles */
.principles-section {
    padding: 112px 0 120px;
    background: var(--color-bg-secondary);
}

.advantages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--color-divider);
}

.advantage {
    min-height: 300px;
    padding: 34px 24px 24px;
    border-right: 1px solid var(--color-divider);
    text-align: center;
}

.advantage:last-child {
    border-right: 0;
}

.number-badge {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 30px;
    margin-bottom: 52px;
    border: 1px solid var(--color-divider);
    color: var(--color-text-muted-dark);
    background: rgba(228, 220, 197, 0.06);
    font-family: var(--font-display);
    font-size: 15px;
    letter-spacing: 0;
    text-transform: none;
}

.advantage h3 {
    margin-bottom: 28px;
}

.advantage p {
    max-width: 210px;
    margin-inline: auto;
    color: var(--color-text-muted-dark);
}

/* Products */
.signature-section {
    padding: 112px 0 120px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: var(--space-grid-gap);
}

.product-card {
    text-align: center;
}

.product-card-raised {
    margin-top: 64px;
}

.product-image {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 390px;
    padding: 52px 24px 38px;
    overflow: hidden;
    background: var(--color-bg-card-alt);
}

.product-image img {
    width: min(94%, 310px);
    max-height: 235px;
    object-fit: contain;
    filter: saturate(0.78) contrast(1.06) sepia(0.06);
    transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.035) rotate(-1deg);
}

.product-index {
    position: absolute;
    top: 22px;
    left: 22px;
    color: var(--color-text-muted-light);
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 0;
    text-transform: none;
}

.product-kind {
    margin-top: 22px !important;
    color: var(--color-text-muted-light);
}

.product-card h3 {
    margin: 9px 0 14px;
}

.product-card > p:last-child {
    color: var(--color-text-muted-light);
}

.centered-action {
    display: flex;
    justify-content: center;
    margin-top: 64px;
}

/* Craft collage */
.craft-section {
    padding: 112px 0 120px;
    background: var(--color-bg-primary);
}

.craft-collage {
    display: grid;
    grid-template-columns: 1.25fr 0.9fr 1.05fr;
    grid-template-rows: 245px 185px;
    gap: var(--space-grid-gap);
}

.craft-collage figure {
    overflow: hidden;
}

.craft-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.55) contrast(1.08) sepia(0.1);
    transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.craft-collage figure:hover img {
    transform: scale(1.025);
}

.craft-a {
    grid-row: 1 / 3;
}

.craft-b {
    grid-column: 2;
    grid-row: 1;
}

.craft-c {
    grid-column: 3;
    grid-row: 1 / 3;
}

.craft-d {
    grid-column: 2;
    grid-row: 2;
}

.craft-e,
.craft-f {
    display: none;
}

/* Testimonials */
.testimonials-section {
    padding: 112px 0 120px;
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-divider);
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--color-divider);
    border-bottom: 1px solid var(--color-divider);
}

.testimonials blockquote {
    min-height: 300px;
    padding: 28px 36px 34px;
    border-right: 1px solid var(--color-divider);
    text-align: center;
}

.testimonials blockquote:last-child {
    border-right: 0;
}

.quote-mark {
    display: block;
    height: 76px;
    font-family: var(--font-display);
    font-size: 76px;
    font-weight: 300;
    line-height: 1;
    text-transform: none;
}

.testimonials blockquote p {
    max-width: 290px;
    margin: 16px auto 30px;
    color: var(--color-text-muted-dark);
}

.testimonials cite {
    color: var(--color-text-on-dark);
    font-size: 9px;
    font-style: normal;
    letter-spacing: 0.16em;
}

/* Journal */
.journal-section {
    padding: 112px 0 120px;
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-grid-gap);
}

.journal-story {
    display: block;
    padding-left: var(--space-grid-gap);
    border-left: 1px solid var(--color-divider-light);
    text-align: center;
}

.journal-story img {
    width: 100%;
    height: 280px;
    margin-bottom: 22px;
    object-fit: cover;
    filter: saturate(0.55) contrast(1.08) sepia(0.08);
}

.story-meta {
    color: var(--color-text-muted-light);
    font-size: 9px;
    letter-spacing: 0.15em;
}

.journal-story h3 {
    margin: 14px 0 15px;
}

.journal-story p {
    max-width: 330px;
    margin-inline: auto;
    color: var(--color-text-muted-light);
}

/* Footer */
.site-footer {
    position: relative;
    padding: 112px 0 30px;
    overflow: hidden;
    background: var(--color-accent-coffee);
}

.footer-intro {
    padding-bottom: 92px;
    text-align: center;
}

.footer-intro .eyebrow {
    margin-bottom: 24px;
}

.footer-intro h2 {
    margin-bottom: 30px;
}

.footer-intro > p:not(.eyebrow) {
    margin-bottom: 22px;
    color: var(--color-text-muted-dark);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: end;
    gap: 40px;
    padding: 34px 0;
    border-top: 1px solid var(--color-divider);
    border-bottom: 1px solid var(--color-divider);
}

.footer-brand {
    justify-self: start;
}

.footer-brand .brand-logo {
    width: 116px;
}

.site-footer nav {
    display: flex;
    gap: 32px;
}

.site-footer nav a {
    position: relative;
    font-size: 10px;
}

.footer-contact {
    justify-self: end;
}

.footer-contact p,
.footer-contact a {
    display: block;
    color: var(--color-text-muted-dark);
    font-size: 9px;
    text-align: right;
}

.footer-contact a {
    margin-top: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    padding-top: 24px;
    color: var(--color-text-muted-dark);
    font-size: 8px;
}

/* Motion */
.js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 850ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Tablet */
@media (max-width: 960px) {
    .hero-title {
        font-size: clamp(104px, 14vw, 150px);
    }

    .hero-stage {
        min-height: 520px;
    }

    .hero-product {
        top: 59%;
        width: clamp(260px, 34vw, 350px);
    }

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

    .advantage:nth-child(2) {
        border-right: 0;
    }

    .advantage:nth-child(-n+2) {
        border-bottom: 1px solid var(--color-divider);
    }

    .product-image {
        min-height: 320px;
    }

    .footer-main {
        grid-template-columns: 1fr auto;
    }

    .footer-contact {
        grid-column: 1 / 3;
        justify-self: center;
    }

    .footer-contact p,
    .footer-contact a {
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 720px) {
    .content-width {
        width: calc(100% - 40px);
    }

    .home-page h2 {
        font-size: clamp(3.25rem, 16vw, 4.5rem);
    }

    .site-header {
        grid-template-columns: 1fr auto;
        height: 74px;
        padding: 0 20px;
    }

    .desktop-nav,
    .header-utilities {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        gap: 11px;
        padding: 10px 0 10px 12px;
        border: 0;
        background: transparent;
        cursor: pointer;
        font-size: 9px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    .menu-toggle-lines {
        position: relative;
        display: block;
        width: 19px;
        height: 7px;
    }

    .menu-toggle-lines::before,
    .menu-toggle-lines::after {
        position: absolute;
        left: 0;
        display: block;
        width: 100%;
        height: 1px;
        background: currentColor;
        content: '';
        transition: transform 220ms ease;
    }

    .menu-toggle-lines::before {
        top: 0;
    }

    .menu-toggle-lines::after {
        bottom: 0;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
        transform: translateY(3px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
        transform: translateY(-3px) rotate(-45deg);
    }

    .mobile-nav {
        position: absolute;
        top: 74px;
        right: 0;
        left: 0;
        z-index: 60;
        display: grid;
        padding: 20px;
        background: var(--color-bg-primary);
        border-bottom: 1px solid var(--color-divider);
    }

    .mobile-nav[hidden] {
        display: none;
    }

    .mobile-nav a,
    .mobile-nav span {
        padding: 15px 0;
        border-bottom: 1px solid var(--color-divider);
        text-align: center;
    }

    .mobile-nav span {
        color: var(--color-text-muted-dark);
        border-bottom: 0;
    }

    .hero {
        min-height: calc(100svh - 74px);
        padding-top: 34px;
    }

    .hero-kicker {
        width: calc(100% - 48px);
        margin-inline: auto;
        font-size: 8px;
    }

    .hero-stage {
        width: 100%;
        min-height: 430px;
        margin-top: 0;
    }

    .hero-title {
        font-size: clamp(62px, 18vw, 88px);
        line-height: 0.86;
    }

    .hero-title span:first-child {
        margin-right: 1.3em;
    }

    .hero-title span:last-child {
        margin-top: -0.02em;
        margin-left: 0.38em;
    }

    .hero-product {
        top: 60%;
        width: clamp(200px, 52vw, 250px);
        max-height: 280px;
        transform: translate(-50%, -34%) rotate(0deg);
    }

    .hero:hover .hero-product {
        transform: translate(-50%, -34%) rotate(0deg);
    }

    .hero-notes {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        margin-top: 24px;
    }

    .hero-notes p,
    .hero-notes p:last-child {
        max-width: 280px;
        font-size: 9px;
        letter-spacing: 0.1em;
        justify-self: auto;
    }

    .hero-notes .text-link {
        order: 3;
        margin-top: 4px;
    }

    .about-section,
    .principles-section,
    .signature-section,
    .craft-section,
    .testimonials-section,
    .journal-section,
    .site-footer {
        padding-top: calc(var(--space-section-padding-mobile) * 2);
        padding-bottom: calc(var(--space-section-padding-mobile) * 2);
    }

    .content-card {
        width: calc(100% - 24px);
        padding: var(--space-section-padding-mobile) 20px;
    }

    .story-collage {
        grid-template-columns: 0.9fr 1.1fr;
        align-items: end;
        margin-top: 40px;
    }

    .collage-image-small img {
        height: 220px;
    }

    .collage-image-large {
        grid-row: span 2;
    }

    .collage-image-large img {
        height: 370px;
    }

    .collage-image-medium {
        display: none;
    }

    .section-heading {
        padding-bottom: 42px;
    }

    .section-heading .eyebrow {
        margin-bottom: 17px;
    }

    .section-heading h2 {
        margin-bottom: 23px;
    }

    .advantages {
        grid-template-columns: 1fr;
    }

    .advantage,
    .advantage:nth-child(2),
    .advantage:last-child {
        min-height: auto;
        padding: 28px 18px 34px;
        border-right: 0;
        border-bottom: 1px solid var(--color-divider);
    }

    .number-badge {
        margin-bottom: 24px;
    }

    .advantage h3 {
        margin-bottom: 20px;
    }

    .product-grid {
        display: flex;
        width: 100%;
        padding: 0 20px 10px;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .product-grid::-webkit-scrollbar {
        display: none;
    }

    .product-card {
        flex: 0 0 82%;
        scroll-snap-align: center;
    }

    .product-card-raised {
        margin-top: 0;
    }

    .product-image {
        min-height: 330px;
    }

    .centered-action {
        margin-top: 38px;
    }

    .craft-collage {
        grid-template-columns: 1.2fr 0.8fr;
        grid-template-rows: 210px 160px 180px;
        gap: 10px;
    }

    .craft-a {
        grid-column: 1;
        grid-row: 1 / 3;
    }

    .craft-b {
        grid-column: 2;
        grid-row: 1;
    }

    .craft-c {
        grid-column: 1 / 3;
        grid-row: 3;
    }

    .craft-d {
        grid-column: 2;
        grid-row: 2;
    }

    .testimonials {
        grid-template-columns: 1fr;
    }

    .testimonials blockquote,
    .testimonials blockquote:last-child {
        min-height: auto;
        padding: 22px 20px 36px;
        border-right: 0;
        border-bottom: 1px solid var(--color-divider);
    }

    .testimonials blockquote:last-child {
        border-bottom: 0;
    }

    .quote-mark {
        height: 58px;
        font-size: 64px;
    }

    .journal-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 12px;
    }

    .journal-story {
        padding-left: 0;
        border-left: 0;
    }

    .journal-story-featured {
        grid-column: 1 / 3;
    }

    .journal-story img,
    .journal-story-featured img {
        height: 230px;
    }

    .journal-story h3 {
        font-size: 23px;
    }

    .site-footer {
        padding-bottom: 22px;
    }

    .footer-intro {
        padding-bottom: 58px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 30px 0;
    }

    .footer-brand,
    .footer-contact {
        grid-column: auto;
        justify-self: center;
    }

    .site-footer nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px 25px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        padding-top: 20px;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .hero-stage {
        min-height: 400px;
    }

    .hero-title {
        font-size: clamp(56px, 16.6vw, 68px);
    }

    .hero-product {
        top: 61%;
        width: min(54vw, 215px);
    }

    .story-collage {
        width: calc(100% - 24px);
    }

    .journal-grid {
        grid-template-columns: 1fr;
    }

    .journal-story-featured {
        grid-column: auto;
    }

    .journal-story img,
    .journal-story-featured img {
        height: 320px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-page *,
    .home-page *::before,
    .home-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
