:root {
    --fd-cream: #090909;
    --fd-cream-2: #111111;
    --fd-brown: #e10600;
    --fd-brown-2: #b31217;
    --fd-line: rgba(225, 6, 0, .30);
    --fd-line-strong: rgba(225, 6, 0, .55);
    --fd-shadow: 0 18px 54px rgba(0, 0, 0, .42);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--fd-cream-2);
    color: var(--fd-brown)
}

body.fdairy-lock {
    overflow: hidden
}

/* =========================================================
   FOVEAUX DAIRY — ASYMMETRIC FLOATING HEADER
   Completely different from the previous centered-crest design.
========================================================= */

.fdairyNav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 9999;
    padding: 18px clamp(16px, 3vw, 42px) 0;
    font-family: "Montserrat", sans-serif;
    pointer-events: none;
}

.fdairyNav__wrap {
    width: min(1500px, 100%);
    margin: 0 auto;
    border: 1px solid var(--fd-line-strong);
    background: rgba(9, 9, 9, .98);
    box-shadow: 0 12px 34px rgba(225, 6, 0, .12);
    pointer-events: auto;
    transition: transform .34s cubic-bezier(.2, .75, .2, 1), box-shadow .3s ease, background .3s ease;
}

.fdairyNav__bar {
    min-height: 92px;
    padding: 0 18px 0 22px;
    display: grid;
    grid-template-columns: minmax(235px, 1fr) auto minmax(235px, 1fr);
    align-items: center;
    gap: 26px;
    transition: min-height .3s ease, padding .3s ease;
}

.fdairyNav__brand {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--fd-brown);
    text-decoration: none;
}

.fdairyNav__logo {
    width: 230px;
    height: 100px;
    object-fit: contain;
    display: block;
    transition: width .3s ease, height .3s ease, transform .35s ease;
}

.fdairyNav__brand:hover .fdairyNav__logo {
    transform: translateY(-2px) rotate(-.8deg)
}

.fdairyNav__brandCopy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 14px;
    border-left: 1px solid var(--fd-line-strong);
}

.fdairyNav__brandCopy strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    line-height: .95;
    font-weight: 700;
}

.fdairyNav__brandCopy small {
    margin-top: 4px;
    font-size: 8px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    opacity: .7;
    white-space: nowrap;
}

.fdairyNav__desktop {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 3vw, 48px);
}

.fdairyNav__link {
    position: relative;
    height: 48px;
    display: flex;
    align-items: center;
    color: var(--fd-brown);
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    overflow: hidden;
}

.fdairyNav__link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 6px;
    height: 1px;
    background: var(--fd-brown);
    transition: right .3s cubic-bezier(.2, .8, .2, 1);
}

.fdairyNav__link span {
    transition: transform .28s ease
}

.fdairyNav__link:hover span {
    transform: translateY(-2px)
}

.fdairyNav__link:hover::after,
.fdairyNav__link.is-current::after {
    right: 0
}

.fdairyNav__actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 12px;
}

.fdairyNav__order {
    min-height: 50px;
    padding-left: 22px;
    border: 1px solid var(--fd-brown);
    background: var(--fd-brown);
    color: var(--fd-cream-2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}

.fdairyNav__orderIcon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-left: 1px solid rgba(255, 255, 255, .18);
    transition: border-color .25s ease, transform .25s ease;
}

.fdairyNav__orderIcon i {
    font-size: 18px
}

.fdairyNav__order:hover {
    transform: translateY(-2px);
    background: transparent;
    color: var(--fd-brown);
    box-shadow: 0 10px 24px rgba(225, 6, 0, .16);
}

.fdairyNav__order:hover .fdairyNav__orderIcon {
    border-color: var(--fd-line-strong)
}

.fdairyNav__order:hover i {
    transform: translate(2px, -2px)
}

.fdairyNav__toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--fd-brown);
    background: transparent;
    color: var(--fd-brown);
    padding: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
}

.fdairyNav__toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: currentColor;
    transition: transform .25s ease, width .25s ease;
}

.fdairyNav__toggle span:last-child {
    width: 13px;
    margin-left: 7px
}

.fdairyNav__toggle:hover span:last-child {
    width: 20px;
    margin-left: 0
}

.fdairyNav__underbar {
    min-height: 28px;
    padding: 0 21px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
    border-top: 1px solid var(--fd-line);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    opacity: .72;
    transition: max-height .28s ease, min-height .28s ease, opacity .2s ease, padding .28s ease;
}

.fdairyNav__dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--fd-brown)
}

.fdairyNav.is-scrolled {
    padding-top: 8px
}

.fdairyNav.is-scrolled .fdairyNav__wrap {
    box-shadow: var(--fd-shadow)
}

.fdairyNav.is-scrolled .fdairyNav__bar {
    min-height: 72px
}

.fdairyNav.is-scrolled .fdairyNav__logo {
    width: 80px;
    height: 60px;
}

.fdairyNav.is-scrolled .fdairyNav__underbar {
    min-height: 0;
    max-height: 0;
    opacity: 0;
    padding-block: 0;
    overflow: hidden;
    border-top-color: transparent
}

.fdairyNav.is-scrolled .fdairyNav__brandCopy small {
    display: none
}

.fdairyNav.is-scrolled .fdairyNav__brandCopy strong {
    font-size: 21px
}

/* Mobile panel */

.fdairyPanel {
    position: fixed;
    inset: 0;
    z-index: 10002;
    display: flex;
    flex-direction: column;
    background: var(--fd-cream);
    color: var(--fd-brown);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .5s cubic-bezier(.22, .76, .16, 1), visibility .5s;
    pointer-events: auto;
    overflow: auto;
}

.fdairyPanel.is-open {
    transform: translateX(0);
    visibility: visible
}

.fdairyPanel__head {
    min-height: 88px;
    padding: 14px 16px 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--fd-line-strong);
}

.fdairyPanel__logoLink {
    display: inline-flex;
    align-items: center
}

.fdairyPanel__logoLink img {
    width: 78px;
    display: block;
}

.fdairyPanel__close {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid var(--fd-brown);
    background: var(--fd-brown);
    color: var(--fd-cream-2);
    cursor: pointer;
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

.fdairyPanel__close i {
    font-size: 25px
}

.fdairyPanel__close:hover {
    transform: rotate(6deg);
    background: transparent;
    color: var(--fd-brown)
}

.fdairyPanel__body {
    width: min(780px, 100%);
    min-height: calc(100dvh - 88px);
    margin: 0 auto;
    padding: 42px 22px 24px;
    display: flex;
    flex-direction: column;
}

.fdairyPanel__eyebrow {
    margin-bottom: 18px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
    opacity: .65;
}

.fdairyPanel__nav {
    border-top: 1px solid var(--fd-line-strong)
}

.fdairyPanel__nav a {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--fd-line-strong);
    color: var(--fd-brown);
    text-decoration: none;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(32px, 8vw, 48px);
    line-height: 1;
    font-weight: 700;
    transition: padding .25s ease, background .25s ease;
}

.fdairyPanel__nav a i {
    font-size: 22px;
    transition: transform .25s ease
}

.fdairyPanel__nav a:hover {
    padding-left: 10px;
    background: rgba(225, 6, 0, .05)
}

.fdairyPanel__nav a:hover i {
    transform: translateX(4px)
}

.fdairyPanel__order {
    margin-top: 26px;
    min-height: 86px;
    padding: 16px 18px 16px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: var(--fd-brown);
    color: var(--fd-cream-2);
    text-decoration: none;
}

.fdairyPanel__order span {
    font-family: "Cormorant Garamond", serif;
    font-size: 29px;
    font-weight: 700;
    line-height: 1
}

.fdairyPanel__order small {
    display: block;
    margin-bottom: 7px;
    font-family: "Montserrat", sans-serif;
    font-size: 8px;
    letter-spacing: .22em;
    text-transform: uppercase;
    opacity: .78
}

.fdairyPanel__order i {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .24);
    display: grid;
    place-items: center;
    font-size: 20px
}

.fdairyPanel__footer {
    margin-top: auto;
    padding-top: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .19em;
    text-transform: uppercase;
    opacity: .65;
}

.fdairyPanel__footerMark {
    width: 24px;
    height: 1px;
    background: var(--fd-brown)
}

.fdairyNav__scrim {
    position: fixed;
    inset: 0;
    z-index: 10001;
    border: 0;
    background: rgba(0, 0, 0, .72);
    opacity: 0;
    visibility: hidden;
    pointer-events: auto;
    transition: opacity .3s ease, visibility .3s;
}

.fdairyNav__scrim.is-open {
    opacity: 1;
    visibility: visible
}

/* entrance */

.fdairyNav__wrap {
    animation: fdairyDrop .65s cubic-bezier(.2, .8, .2, 1) both
}

@keyframes fdairyDrop {
    from {
        opacity: 0;
        transform: translateY(-18px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* demo only */

.demo {
    min-height: 100vh;
    padding: 180px 8vw 80px;
    display: grid;
    place-items: center;
    text-align: center
}

.demo--cream {
    background: var(--fd-cream-2);
    color: var(--fd-brown)
}

.demo--brown {
    background: var(--fd-brown);
    color: var(--fd-cream-2)
}

.demo p {
    font: 700 10px/1 "Montserrat", sans-serif;
    letter-spacing: .24em;
    text-transform: uppercase
}

.demo h1,
.demo h2 {
    margin: 12px 0 0;
    font: 700 clamp(48px, 8vw, 108px)/.88 "Cormorant Garamond", serif
}

@media (max-width:1180px) {
    .fdairyNav__bar {
        grid-template-columns: auto 1fr auto
    }
    .fdairyNav__brandCopy {
        display: none
    }
    .fdairyNav__desktop {
        gap: 24px
    }
}

@media (max-width:880px) {
    .fdairyNav {
        padding: 10px 10px 0
    }
    .fdairyNav.is-scrolled {
        padding-top: 0
    }
    .fdairyNav__wrap {
        border-left: 0;
        border-right: 0
    }
    .fdairyNav__bar {
        min-height: 76px;
        padding: 0 12px 0 15px;
        grid-template-columns: 1fr auto;
        gap: 14px;
    }
    .fdairyNav__logo {
        width: 98px;
        height: 60px
    }
    .fdairyNav__desktop,
    .fdairyNav__order,
    .fdairyNav__underbar {
        display: none
    }
    .fdairyNav__toggle {
        display: flex
    }
    .fdairyNav.is-scrolled .fdairyNav__bar {
        min-height: 68px
    }
    .fdairyNav.is-scrolled .fdairyNav__logo {
        width: 86px;
        height: 50px
    }
}

@media (max-width:480px) {
    .fdairyNav {
        padding-inline: 0
    }
    .fdairyNav__wrap {
        width: 100%;
        border-top: 1px solid var(--fd-line-strong);
        border-bottom: 1px solid var(--fd-line-strong)
    }
    .fdairyNav__bar {
        padding-left: 14px;
        padding-right: 12px
    }
    .fdairyPanel__head {
        min-height: 82px
    }
    .fdairyPanel__body {
        padding: 34px 18px 22px
    }
    .fdairyPanel__nav a {
        min-height: 70px
    }
    .fdairyPanel__order span {
        font-size: 26px
    }
}

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

/* hero section */

/* =========================================
   FOVEAUX DAIRY - ALTERNATE HERO
========================================= */

.fvdHeroAlt {
    --fvd-cream: #090909;
    --fvd-cream-soft: #121212;
    --fvd-brown: #e10600;
    --fvd-brown-soft: #ff4d52;
    --fvd-border: rgba(225, 6, 0, 0.30);
    position: relative;
    width: 100%;
    min-height: 990px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--fvd-cream);
    color: var(--fvd-brown);
    padding: 70px 0;
}

/* LARGE BACKGROUND WORD */

.fvdHeroAlt::before {
    content: "DAIRY";
    position: absolute;
    left: -25px;
    bottom: -50px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(120px, 18vw, 300px);
    font-weight: 400;
    line-height: 0.8;
    color: rgba(225, 6, 0, 0.055);
    pointer-events: none;
}

/* MAIN WRAPPER */

.fvdHeroAlt__shell {
    position: relative;
    z-index: 2;
    width: min(1420px, calc(100% - 90px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(420px, 0.9fr) minmax(520px, 1.1fr);
    gap: clamp(60px, 8vw, 135px);
    align-items: center;
}

/* =========================================
   CONTENT
========================================= */

.fvdHeroAlt__content {
    max-width: 610px;
}

/* SMALL TOP LABEL */

.fvdHeroAlt__brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--fvd-brown-soft);
}

.fvdHeroAlt__line {
    width: 45px;
    height: 1px;
    background: var(--fvd-brown);
}

/* HEADING */

.fvdHeroAlt__title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(68px, 7vw, 108px);
    font-weight: 400;
    line-height: 0.85;
    letter-spacing: -0.055em;
    color: var(--fvd-brown);
}

.fvdHeroAlt__title em {
    display: block;
    margin-top: 8px;
    font-weight: 400;
    font-style: italic;
    color: var(--fvd-brown-soft);
}

/* DESCRIPTION */

.fvdHeroAlt__text {
    max-width: 490px;
    margin: 32px 0 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(245, 245, 245, 0.76);
}

/* BUTTON AREA */

.fvdHeroAlt__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

/* PRIMARY BUTTON */

.fvdHeroAlt__primaryBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 56px;
    padding: 0 26px;
    background: var(--fvd-brown);
    color: var(--fvd-cream);
    border: 1px solid var(--fvd-brown);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.fvdHeroAlt__primaryBtn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.fvdHeroAlt__primaryBtn:hover {
    background: transparent;
    color: var(--fvd-brown);
    transform: translateY(-3px);
}

.fvdHeroAlt__primaryBtn:hover i {
    transform: translate(4px, -4px);
}

/* SECONDARY BUTTON */

.fvdHeroAlt__secondaryBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 56px;
    padding: 0 24px;
    border: 1px solid var(--fvd-border);
    color: var(--fvd-brown);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.fvdHeroAlt__secondaryBtn:hover {
    background: var(--fvd-cream-soft);
    border-color: var(--fvd-brown);
    transform: translateY(-3px);
}

/* META INFO */

.fvdHeroAlt__meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
    padding-top: 26px;
    border-top: 1px solid var(--fvd-border);
}

.fvdHeroAlt__metaItem {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.fvdHeroAlt__metaItem>i {
    margin-top: 2px;
    font-size: 21px;
    color: var(--fvd-brown);
}

.fvdHeroAlt__metaItem span {
    display: block;
    margin-bottom: 5px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.56);
}

.fvdHeroAlt__metaItem strong {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--fvd-brown);
}

/* =========================================
   VISUAL
========================================= */

.fvdHeroAlt__visual {
    position: relative;
}

/* MAIN IMAGE FRAME */

.fvdHeroAlt__frame {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border: 1px solid rgba(225, 6, 0, 0.34);
    background: #151515;
}

/* DECORATIVE OFFSET BORDER */

.fvdHeroAlt__frame::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(225, 6, 0, 0.48);
    z-index: 5;
    pointer-events: none;
}

/* SLIDES */

.fvdHeroAlt__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 0.75s ease, transform 1.1s cubic-bezier(.22, .61, .36, 1);
}

.fvdHeroAlt__slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.fvdHeroAlt__slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* LOGO SEAL */

.fvdHeroAlt__seal {
    position: absolute;
    width: 150px;
    height: 150px;
    top: -55px;
    left: -55px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: var(--fvd-cream);
    border: 1px solid var(--fvd-brown);
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.42);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.fvdHeroAlt__seal img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fvdHeroAlt__seal:hover {
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.56);
}

/* CAPTION */

.fvdHeroAlt__caption {
    position: absolute;
    left: 28px;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 235px;
    padding: 15px 18px;
    background: var(--fvd-cream);
    z-index: 8;
}

.fvdHeroAlt__captionNumber {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    line-height: 1;
    color: var(--fvd-brown);
}

.fvdHeroAlt__caption small {
    display: block;
    margin-bottom: 3px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.56);
}

.fvdHeroAlt__caption strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-weight: 400;
    color: var(--fvd-brown);
}

/* =========================================
   SLIDER CONTROLS
========================================= */

.fvdHeroAlt__controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 18px;
}

/* ARROW BUTTON */

.fvdHeroAlt__nav {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--fvd-brown);
    background: transparent;
    color: var(--fvd-brown);
    cursor: pointer;
    font-size: 20px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.fvdHeroAlt__nav:hover {
    background: var(--fvd-brown);
    color: var(--fvd-cream);
    transform: translateY(-2px);
}

/* DOTS */

.fvdHeroAlt__dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fvdHeroAlt__dots button {
    width: 8px;
    height: 8px;
    border: 0;
    padding: 0;
    border-radius: 50%;
    background: rgba(225, 6, 0, 0.34);
    cursor: pointer;
    transition: width 0.35s ease, border-radius 0.35s ease, background-color 0.35s ease;
}

.fvdHeroAlt__dots button.is-active {
    width: 30px;
    border-radius: 20px;
    background: var(--fvd-brown);
}

/* =========================================
   LOAD ANIMATION
========================================= */

.fvdHeroAlt__content {
    opacity: 0;
    transform: translateY(30px);
    animation: fvdContentLoad 0.9s ease forwards;
}

.fvdHeroAlt__visual {
    opacity: 0;
    transform: translateX(35px);
    animation: fvdVisualLoad 1s 0.15s ease forwards;
}

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

@keyframes fvdVisualLoad {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =========================================
   LAPTOP
========================================= */

@media (max-width: 1199px) {
    .fvdHeroAlt {
        min-height: 700px;
    }
    .fvdHeroAlt__shell {
        width: calc(100% - 60px);
        grid-template-columns: 0.9fr 1fr;
        gap: 60px;
    }
    .fvdHeroAlt__title {
        font-size: 78px;
    }
    .fvdHeroAlt__frame {
        height: 520px;
    }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
    .fvdHeroAlt {
        min-height: auto;
        padding: 100px 0 70px;
    }
    .fvdHeroAlt__shell {
        width: min(760px, calc(100% - 44px));
        grid-template-columns: 1fr;
        gap: 85px;
    }
    .fvdHeroAlt__content {
        max-width: 670px;
    }
    .fvdHeroAlt__title {
        max-width: 650px;
        font-size: 82px;
    }
    .fvdHeroAlt__text {
        max-width: 560px;
    }
    .fvdHeroAlt__frame {
        height: 560px;
    }
    .fvdHeroAlt__seal {
        left: 30px;
        width: 130px;
        height: 130px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
    .fvdHeroAlt {
        padding: 75px 0 55px;
    }
    .fvdHeroAlt__shell {
        width: calc(100% - 32px);
        gap: 60px;
    }
    .fvdHeroAlt__brand {
        margin-bottom: 22px;
    }
    .fvdHeroAlt__title {
        font-size: clamp(52px, 15vw, 70px);
        line-height: 0.9;
    }
    .fvdHeroAlt__text {
        margin-top: 24px;
        font-size: 14px;
    }
    .fvdHeroAlt__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 28px;
    }
    .fvdHeroAlt__primaryBtn,
    .fvdHeroAlt__secondaryBtn {
        width: 100%;
        padding: 0 16px;
        font-size: 9px;
    }
    .fvdHeroAlt__meta {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 35px;
    }
    .fvdHeroAlt__frame {
        height: 460px;
    }
    .fvdHeroAlt__seal {
        width: 105px;
        height: 105px;
        left: 20px;
        top: -38px;
    }
    .fvdHeroAlt__caption {
        left: 16px;
        bottom: 16px;
        min-width: 205px;
        padding: 12px 14px;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
    .fvdHeroAlt__shell {
        width: calc(100% - 26px);
    }
    .fvdHeroAlt__actions {
        grid-template-columns: 1fr;
    }
    .fvdHeroAlt__frame {
        height: 390px;
    }
    .fvdHeroAlt__seal {
        width: 90px;
        height: 90px;
    }
    .fvdHeroAlt__caption {
        right: 14px;
        left: 14px;
        min-width: 0;
    }
    .fvdHeroAlt__controls {
        justify-content: center;
    }
}

/* about section */

.fdStory {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--fd-cream);
    color: var(--fd-brown);
    padding: clamp(72px, 8vw, 80px) 0 clamp(60px, 7vw, 108px);
}

.fdStory::before,
.fdStory::after {
    content: "";
    position: absolute;
    z-index: -1;
    pointer-events: none;
    border: 1px solid rgba(225, 6, 0, .22);
    border-radius: 50%;
}

.fdStory::before {
    width: 440px;
    height: 440px;
    left: -250px;
    top: 10%
}

.fdStory::after {
    width: 270px;
    height: 270px;
    right: -155px;
    bottom: 8%
}

.fdStory__grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .14;
    background-image: radial-gradient(rgba(225, 6, 0, .34) .7px, transparent .7px);
    background-size: 10px 10px;
    /* the pattern is dots, not a color gradient */
}

.fdStory__shell {
    width: min(1320px, calc(100% - 48px));
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

.fdStory__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--fd-line);
    font-size: 11px;
    letter-spacing: .2em;
    font-weight: 700;
}

.fdStory__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px
}

.fdStory__eyebrow i {
    font-size: 16px
}

.fdStory__note {
    opacity: .68;
    text-align: right
}

.fdStory__grid {
    display: grid;
    grid-template-columns: minmax(330px, .86fr) minmax(0, 1.14fr);
    gap: clamp(55px, 8vw, 130px);
    align-items: center;
    padding: clamp(52px, 7vw, 90px) 0 54px;
}

.fdStory__brand {
    position: relative;
    min-width: 0
}

.fdStory__seal {
    position: relative;
    width: min(100%, 520px);
    aspect-ratio: 1;
    margin: 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid rgba(225, 6, 0, .34);
    border-radius: 50%;
    transition: transform .35s ease;
    will-change: transform;
}

.fdStory__seal::before {
    content: "";
    position: absolute;
    inset: 28px;
    border: 1px solid rgba(225, 6, 0, .25);
    border-radius: 50%;
}

.fdStory__logo {
    width: 66%;
    height: 66%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 25px 55px rgba(225, 6, 0, .18);
    transition: transform .45s cubic-bezier(.2, .7, .2, 1);
}

.fdStory__seal:hover .fdStory__logo {
    transform: scale(1.035) rotate(-1deg)
}

.fdStory__orbit {
    position: absolute;
    border: 1px solid rgba(225, 6, 0, .40);
    border-radius: 50%;
    pointer-events: none;
}

.fdStory__orbit--one {
    width: 16px;
    height: 16px;
    top: 13%;
    right: 14%;
    background: var(--fd-brown)
}

.fdStory__orbit--two {
    width: 11px;
    height: 11px;
    left: 9%;
    bottom: 23%;
    background: var(--fd-cream)
}

.fdStory__miniCopy {
    width: min(390px, 90%);
    margin: -18px 0 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding: 18px 20px;
    background: var(--fd-brown);
    color: var(--fd-cream);
    box-shadow: 0 18px 36px rgba(225, 6, 0, .18);
}

.fdStory__miniCopy p {
    margin: 0;
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: .02em
}

.fdStory__index {
    font-family: var(--fd-serif);
    font-size: 28px;
    line-height: 1
}

.fdStory__content {
    max-width: 660px
}

.fdStory__kicker {
    margin: 0 0 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .24em
}

.fdStory__title {
    margin: 0;
    font-family: var(--fd-serif);
    font-size: clamp(54px, 6vw, 90px);
    line-height: 0.99;
    letter-spacing: -.045em;
    font-weight: 600;
}

.fdStory__title em {
    font-weight: 500;
    color: var(--fd-brown-soft)
}

.fdStory__rule {
    display: flex;
    align-items: center;
    width: 100%;
    height: 34px;
    margin: 14px 0 4px
}

.fdStory__rule::before {
    content: "";
    width: 8px;
    height: 8px;
    border: 1px solid var(--fd-brown);
    border-radius: 50%
}

.fdStory__rule span {
    display: block;
    height: 1px;
    background: var(--fd-line);
    flex: 1;
    margin-left: 10px;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 1s ease
}

.fdStory__rule.is-visible span {
    transform: scaleX(1)
}

.fdStory__copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 25px
}

.fdStory__copy p {
    margin: 0;
    color: rgba(245, 245, 245, .80);
    font-size: 14px;
    line-height: 1.9
}

.fdStory__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 34px
}

.fdStory__feature {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 18px 0;
    border-top: 1px solid var(--fd-line);
    transition: transform .25s ease
}

.fdStory__feature:hover {
    transform: translateY(-4px)
}

.fdStory__featureIcon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(225, 6, 0, .38);
    border-radius: 50%;
    font-size: 18px;
    transition: background-color .25s ease, color .25s ease, transform .25s ease
}

.fdStory__feature:hover .fdStory__featureIcon {
    background: var(--fd-brown);
    color: var(--fd-cream);
    transform: rotate(-8deg)
}

.fdStory__feature h3 {
    margin: 1px 0 5px;
    font-family: var(--fd-serif);
    font-size: 24px;
    line-height: 1
}

.fdStory__feature p {
    margin: 0;
    font-size: 12px;
    line-height: 1.65;
    color: rgba(245, 245, 245, .72)
}

.fdStory__cta {
    width: max-content;
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    padding: 15px 18px 15px 20px;
    border: 1px solid var(--fd-brown);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--fd-brown) !important;
    transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.fdStory__cta i {
    font-size: 18px;
    transition: transform .25s ease
}

.fdStory__cta:hover {
    background: var(--fd-brown);
    color: var(--fd-cream) !important;
    transform: translateY(-3px)
}

.fdStory__cta:hover i {
    transform: translate(3px, -3px)
}

.fdStory__footerLine {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--fd-line);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    opacity: .72;
}

.fdStory__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--fd-brown)
}

.fdReveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .75s ease, transform .75s cubic-bezier(.2, .7, .2, 1)
}

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

@media (max-width:1100px) {
    .fdStory__grid {
        grid-template-columns: .95fr 1.05fr;
        gap: 54px
    }
    .fdStory__copy {
        grid-template-columns: 1fr
    }
}

@media (max-width:860px) {
    .fdStory__shell {
        width: min(100% - 34px, 760px)
    }
    .fdStory__topline {
        align-items: flex-start
    }
    .fdStory__note {
        max-width: 220px
    }
    .fdStory__grid {
        grid-template-columns: 1fr;
        gap: 58px;
        padding-top: 42px
    }
    .fdStory__brand {
        max-width: 580px;
        margin: auto;
        width: 100%
    }
    .fdStory__miniCopy {
        margin: -14px auto 0
    }
    .fdStory__content {
        max-width: 720px
    }
    .fdStory__copy {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:640px) {
    .fdStory {
        padding: 56px 0 50px
    }
    .fdStory__shell {
        width: calc(100% - 28px)
    }
    .fdStory__topline {
        flex-direction: column;
        gap: 9px
    }
    .fdStory__note {
        text-align: left;
        max-width: none;
        font-size: 9px
    }
    .fdStory__grid {
        padding: 34px 0 40px;
        gap: 46px
    }
    .fdStory__seal {
        width: min(94vw, 430px)
    }
    .fdStory__logo {
        width: 70%;
        height: 70%
    }
    .fdStory__miniCopy {
        width: 92%;
        padding: 16px
    }
    .fdStory__title {
        font-size: clamp(48px, 15vw, 70px)
    }
    .fdStory__copy,
    .fdStory__features {
        grid-template-columns: 1fr
    }
    .fdStory__copy {
        gap: 16px
    }
    .fdStory__features {
        gap: 0
    }
    .fdStory__cta {
        width: 100%;
        justify-content: space-between
    }
    .fdStory__footerLine {
        align-items: flex-start;
        flex-wrap: wrap;
        line-height: 1.5
    }
}

@media (max-width:390px) {
    .fdStory__miniCopy {
        grid-template-columns: 1fr;
        gap: 8px
    }
    .fdStory__index {
        font-size: 22px
    }
    .fdStory__feature {
        grid-template-columns: 36px 1fr
    }
    .fdStory__featureIcon {
        width: 36px;
        height: 36px
    }
}

@media (prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important
    }
    .fdReveal {
        opacity: 1;
        transform: none
    }
    .fdStory__rule span {
        transform: none
    }
}

/* menu section */

/* =========================================
   FOVEAUX DAIRY - EDITORIAL MENU SECTION
========================================= */

.fdMenuEditorial {
    --fd-cream: #090909;
    --fd-cream-light: #121212;
    --fd-brown: #e10600;
    --fd-brown-soft: #ff4d52;
    --fd-line: rgba(225, 6, 0, 0.28);
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--fd-cream);
    color: var(--fd-brown);
    padding: clamp(80px, 9vw, 70px) 0;
}

/* DECORATIVE BACKGROUND TEXT */

.fdMenuEditorial::before {
    content: "FOVEAUX";
    position: absolute;
    top: 12px;
    right: -30px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(90px, 17vw, 260px);
    font-weight: 400;
    line-height: 1;
    color: rgba(225, 6, 0, 0.055);
    pointer-events: none;
    user-select: none;
}

/* MAIN WRAPPER */

.fdMenuEditorial__shell {
    position: relative;
    z-index: 2;
    width: min(1380px, calc(100% - 80px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(270px, 0.72fr) minmax(600px, 1.6fr);
    gap: clamp(55px, 7vw, 120px);
    align-items: start;
}

/* =========================================
   LEFT SIDE
========================================= */

.fdMenuEditorial__intro {
    position: sticky;
    top: 120px;
}

/* EYEBROW */

.fdMenuEditorial__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--fd-brown);
}

.fdMenuEditorial__eyebrow i {
    font-size: 17px;
}

/* TITLE */

.fdMenuEditorial__intro h2 {
    max-width: 450px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 5.4vw, 82px);
    font-weight: 400;
    line-height: 0.93;
    letter-spacing: -0.045em;
    color: var(--fd-brown);
}

.fdMenuEditorial__intro h2 em {
    display: block;
    font-weight: 400;
    font-style: italic;
    color: var(--fd-brown-soft);
}

/* DESCRIPTION */

.fdMenuEditorial__intro p {
    max-width: 390px;
    margin: 30px 0 34px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(245, 245, 245, 0.76);
}

/* MAIN BUTTON */

.fdMenuEditorial__mainBtn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid var(--fd-brown);
    color: var(--fd-brown);
    background: transparent;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.fdMenuEditorial__mainBtn i {
    font-size: 18px;
    transition: transform 0.35s ease;
}

.fdMenuEditorial__mainBtn:hover {
    background: var(--fd-brown);
    color: var(--fd-cream);
    transform: translateY(-3px);
}

.fdMenuEditorial__mainBtn:hover i {
    transform: translate(4px, -4px);
}

/* =========================================
   MENU LIST
========================================= */

.fdMenuEditorial__list {
    border-top: 1px solid var(--fd-line);
}

/* MENU ITEM */

.fdMenuEditorial__item {
    position: relative;
    display: grid;
    grid-template-columns: 55px 1fr 145px 58px;
    gap: 24px;
    align-items: center;
    min-height: 190px;
    padding: 25px 0;
    border-bottom: 1px solid var(--fd-line);
    text-decoration: none;
    color: var(--fd-brown);
    transition: padding 0.4s ease, background-color 0.4s ease;
}

/* ITEM HOVER BACKGROUND */

.fdMenuEditorial__item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--fd-cream-light);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(.22, .61, .36, 1);
    z-index: -1;
}

.fdMenuEditorial__item:hover::before {
    transform: scaleY(1);
}

.fdMenuEditorial__item:hover {
    padding-left: 20px;
    padding-right: 15px;
}

/* NUMBER */

.fdMenuEditorial__number {
    align-self: start;
    padding-top: 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(245, 245, 245, 0.58);
}

/* CATEGORY */

.fdMenuEditorial__category span {
    display: block;
    margin-bottom: 8px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.62);
}

.fdMenuEditorial__category h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 4vw, 60px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.035em;
    color: var(--fd-brown);
    transition: transform 0.4s ease;
}

.fdMenuEditorial__item:hover .fdMenuEditorial__category h3 {
    transform: translateX(8px);
}

/* IMAGE */

.fdMenuEditorial__picture {
    width: 145px;
    height: 125px;
    overflow: hidden;
    border-radius: 70px 70px 16px 16px;
    background: #181818;
    transform: rotate(2deg);
    transition: border-radius 0.45s ease, transform 0.45s ease;
}

.fdMenuEditorial__picture img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(.22, .61, .36, 1);
}

.fdMenuEditorial__item:hover .fdMenuEditorial__picture {
    transform: rotate(0deg) scale(1.04);
    border-radius: 18px;
}

.fdMenuEditorial__item:hover .fdMenuEditorial__picture img {
    transform: scale(1.08);
}

/* ARROW */

.fdMenuEditorial__arrow {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(225, 6, 0, 0.42);
    border-radius: 50%;
    font-size: 21px;
    color: var(--fd-brown);
    transition: background-color 0.35s ease, color 0.35s ease, transform 0.4s ease;
}

.fdMenuEditorial__item:hover .fdMenuEditorial__arrow {
    background: var(--fd-brown);
    color: var(--fd-cream);
    transform: rotate(45deg);
}

/* =========================================
   SCROLL ANIMATION
========================================= */

.fdMenuReveal {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity 0.8s cubic-bezier(.22, .61, .36, 1), transform 0.8s cubic-bezier(.22, .61, .36, 1);
}

.fdMenuReveal.fdMenuVisible {
    opacity: 1;
    transform: translateY(0);
}

.fdMenuEditorial__item:nth-child(2) {
    transition-delay: 0.08s;
}

.fdMenuEditorial__item:nth-child(3) {
    transition-delay: 0.16s;
}

/* =========================================
   LAPTOP
========================================= */

@media (max-width: 1199px) {
    .fdMenuEditorial__shell {
        width: min(1180px, calc(100% - 50px));
        grid-template-columns: 0.72fr 1.4fr;
        gap: 55px;
    }
    .fdMenuEditorial__item {
        grid-template-columns: 40px 1fr 120px 50px;
        gap: 17px;
    }
    .fdMenuEditorial__picture {
        width: 120px;
        height: 110px;
    }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
    .fdMenuEditorial {
        padding: 90px 0;
    }
    .fdMenuEditorial__shell {
        width: min(760px, calc(100% - 44px));
        grid-template-columns: 1fr;
        gap: 65px;
    }
    .fdMenuEditorial__intro {
        position: relative;
        top: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 35px;
    }
    .fdMenuEditorial__eyebrow {
        grid-column: 1 / -1;
    }
    .fdMenuEditorial__intro h2 {
        font-size: 64px;
    }
    .fdMenuEditorial__intro p {
        margin-top: 0;
        align-self: end;
    }
    .fdMenuEditorial__mainBtn {
        grid-column: 2;
        width: max-content;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
    .fdMenuEditorial {
        padding: 72px 0;
    }
    .fdMenuEditorial::before {
        top: 35px;
        font-size: 100px;
    }
    .fdMenuEditorial__shell {
        width: calc(100% - 36px);
        gap: 50px;
    }
    .fdMenuEditorial__intro {
        display: block;
    }
    .fdMenuEditorial__intro h2 {
        max-width: 340px;
        font-size: clamp(46px, 14vw, 62px);
    }
    .fdMenuEditorial__intro p {
        margin: 25px 0 28px;
    }
    /* MENU CARD */
    .fdMenuEditorial__item {
        grid-template-columns: 35px 1fr 72px;
        grid-template-areas: "number category arrow" ". image image";
        min-height: auto;
        gap: 16px;
        padding: 28px 0;
    }
    .fdMenuEditorial__item:hover {
        padding-left: 0;
        padding-right: 0;
    }
    .fdMenuEditorial__number {
        grid-area: number;
    }
    .fdMenuEditorial__category {
        grid-area: category;
    }
    .fdMenuEditorial__picture {
        grid-area: image;
        width: 100%;
        height: 180px;
        margin-top: 9px;
        border-radius: 14px;
        transform: none;
    }
    .fdMenuEditorial__arrow {
        grid-area: arrow;
        justify-self: end;
        width: 46px;
        height: 46px;
    }
    .fdMenuEditorial__category h3 {
        font-size: 38px;
    }
    .fdMenuEditorial__item:hover .fdMenuEditorial__category h3 {
        transform: none;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
    .fdMenuEditorial__shell {
        width: calc(100% - 28px);
    }
    .fdMenuEditorial__intro h2 {
        font-size: 47px;
    }
    .fdMenuEditorial__category h3 {
        font-size: 33px;
    }
    .fdMenuEditorial__picture {
        height: 165px;
    }
    .fdMenuEditorial__mainBtn {
        width: 100%;
    }
}

/* footer section */

.fdUrbanFooter {
    position: relative;
    overflow: hidden;
    background: var(--fd-cream);
    color: var(--fd-brown);
    isolation: isolate;
    border-top: 1px solid var(--fd-brown);
}

.fdUrbanFooter::before,
.fdUrbanFooter::after {
    content: "";
    position: absolute;
    z-index: -1;
    border: 1px solid var(--fd-line);
    border-radius: 50%;
    pointer-events: none;
}

.fdUrbanFooter::before {
    width: 360px;
    height: 360px;
    left: -185px;
    top: 72px;
}

.fdUrbanFooter::after {
    width: 520px;
    height: 520px;
    right: -290px;
    bottom: -295px;
}

.fdUrbanFooter__topRule {
    width: 100%;
    height: 10px;
    background: var(--fd-brown);
    position: relative;
}

.fdUrbanFooter__topRule::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 15px;
    height: 1px;
    background: var(--fd-brown);
    opacity: .34;
}

.fdUrbanFooter__shell {
    width: min(1420px, calc(100% - 88px));
    margin: 0 auto;
    padding: 88px 0 62px;
    display: grid;
    grid-template-columns: minmax(330px, .88fr) minmax(620px, 1.6fr);
    gap: clamp(54px, 6vw, 108px);
    align-items: start;
}

.fdUrbanFooter__brand {
    position: relative;
    padding-right: clamp(0px, 2vw, 30px);
}

.fdUrbanFooter__logoLink {
    display: inline-flex;
    text-decoration: none;
    margin-bottom: 30px;
}

.fdUrbanFooter__logoFrame {
    width: 156px;
    height: 156px;
    display: grid;
    place-items: center;
    border: 1px solid var(--fd-brown);
    border-radius: 50%;
    background: var(--fd-paper);
    box-shadow: 0 12px 0 rgba(0, 0, 0, .38);
    transition: transform .45s cubic-bezier(.2, .8, .2, 1), box-shadow .45s ease;
}

.fdUrbanFooter__logoFrame:hover {
    transform: translateY(-7px) rotate(-2deg);
    box-shadow: 0 18px 0 rgba(0, 0, 0, .48);
}

.fdUrbanFooter__logo {
    width: 122px;
    height: 122px;
    display: block;
    object-fit: contain;
    border-radius: 50%;
}

.fdUrbanFooter__eyebrow {
    margin: 0 0 13px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.fdUrbanFooter__title {
    margin: 0;
    max-width: 520px;
    font-family: "DM Serif Display", Georgia, serif;
    font-weight: 400;
    font-size: clamp(44px, 4.2vw, 72px);
    line-height: .94;
    letter-spacing: -.035em;
}

.fdUrbanFooter__title em {
    font-weight: 400;
    color: var(--fd-brown-soft);
}

.fdUrbanFooter__intro {
    max-width: 520px;
    margin: 26px 0 0;
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: .02em;
}

.fdUrbanFooter__quickActions {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.fdUrbanFooter__roundLink {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--fd-brown);
    text-decoration: none;
    font-size: 20px;
    transition: transform .3s ease, background-color .3s ease, color .3s ease;
}

.fdUrbanFooter__roundLink:hover {
    transform: translateY(-4px);
    background: var(--fd-brown);
    color: var(--fd-cream);
}

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

.fdUrbanFooter__panel {
    min-height: 246px;
    padding: 30px 30px 28px;
    border: 1px solid var(--fd-brown);
    background: rgba(17, 17, 17, .88);
    position: relative;
    overflow: hidden;
    transition: transform .4s cubic-bezier(.2, .8, .2, 1), box-shadow .4s ease, background-color .35s ease;
}

.fdUrbanFooter__panel::after {
    content: "";
    position: absolute;
    width: 86px;
    height: 86px;
    right: -35px;
    bottom: -35px;
    border: 1px solid var(--fd-line);
    border-radius: 50%;
    transition: transform .45s ease;
}

.fdUrbanFooter__panel:hover {
    transform: translateY(-7px);
    box-shadow: 10px 10px 0 var(--fd-shadow);
    background: var(--fd-paper);
}

.fdUrbanFooter__panel:hover::after {
    transform: scale(1.35);
}

.fdUrbanFooter__hoursPanel {
    grid-column: 1/-1;
    min-height: 220px;
}

.fdUrbanFooter__panelHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--fd-line);
    margin-bottom: 22px;
}

.fdUrbanFooter__panelHead i {
    font-size: 24px
}

.fdUrbanFooter__panelNo {
    font-family: "DM Serif Display", serif;
    font-size: 21px
}

.fdUrbanFooter__label {
    margin: 0 0 7px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase
}

.fdUrbanFooter__panelTitle {
    margin: 0 0 20px;
    font-family: "DM Serif Display", serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.05
}

.fdUrbanFooter__textLink {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.75;
    font-weight: 600;
    color: var(--fd-brown) !important;
}

.fdUrbanFooter__textLink i {
    flex: 0 0 auto;
    font-size: 20px;
    transition: transform .28s ease;
}

.fdUrbanFooter__textLink:hover i {
    transform: translate(4px, -4px)
}

/* Opening-hours widget compatibility */

.fdUrbanFooter__hoursWidget {
    width: 100%;
    min-height: 42px;
    font-size: 13px;
    line-height: 1.75;
    color: var(--fd-brown);
}

.fdUrbanFooter__hoursWidget * {
    color: inherit !important;
    font-family: "Montserrat", Arial, sans-serif !important
}

.fdUrbanFooter__hoursWidget ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important
}

.fdUrbanFooter__hoursWidget li {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 9px 0 !important;
    border-bottom: 1px solid rgba(225, 6, 0, .28);
}

.fdUrbanFooter__hoursWidget li:last-child {
    border-bottom: 0
}

.fdUrbanFooter__hoursWidget p {
    margin: 0 0 8px !important
}

.fdUrbanFooter__hoursWidget table {
    width: 100% !important;
    border-collapse: collapse !important
}

.fdUrbanFooter__hoursWidget td {
    padding: 8px 0 !important;
    border-bottom: 1px solid rgba(225, 6, 0, .28) !important
}

.fdUrbanFooter__hoursWidget a {
    text-decoration: none !important;
    font-weight: 600 !important
}

.fdUrbanFooter__bottom {
    width: min(1420px, calc(100% - 88px));
    margin: 0 auto;
    min-height: 92px;
    padding: 22px 0 26px;
    border-top: 1px solid var(--fd-brown);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
}

.fdUrbanFooter__copyright {
    margin: 0;
    font-size: 11px;
    letter-spacing: .05em
}

.fdUrbanFooter__bottomMark {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .23em
}

.fdUrbanFooter__bottomMark span {
    width: 38px;
    height: 1px;
    background: var(--fd-brown)
}

.fdUrbanFooter__toTop {
    justify-self: end;
    width: 48px;
    height: 48px;
    border: 1px solid var(--fd-brown);
    border-radius: 50%;
    background: transparent;
    color: var(--fd-brown);
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 19px;
    transition: transform .3s ease, background-color .3s ease, color .3s ease;
}

.fdUrbanFooter__toTop:hover {
    transform: translateY(-4px);
    background: var(--fd-brown);
    color: var(--fd-cream)
}

/* Reveal animation */

.fdUrbanFooter__reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.2, .8, .2, 1);
}

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

@media (max-width:1180px) {
    .fdUrbanFooter__shell {
        grid-template-columns: 1fr;
        gap: 50px
    }
    .fdUrbanFooter__brand {
        display: grid;
        grid-template-columns: auto 1fr;
        column-gap: 34px;
        align-items: center
    }
    .fdUrbanFooter__logoLink {
        grid-row: 1/5;
        margin: 0
    }
    .fdUrbanFooter__eyebrow {
        align-self: end
    }
    .fdUrbanFooter__title {
        font-size: clamp(46px, 7vw, 72px)
    }
    .fdUrbanFooter__intro {
        margin-top: 18px
    }
    .fdUrbanFooter__quickActions {
        margin-top: 18px
    }
}

@media (max-width:760px) {
    .fdUrbanFooter::before {
        width: 250px;
        height: 250px;
        left: -160px;
        top: 90px
    }
    .fdUrbanFooter::after {
        width: 340px;
        height: 340px;
        right: -220px;
        bottom: -190px
    }
    .fdUrbanFooter__shell,
    .fdUrbanFooter__bottom {
        width: min(100% - 34px, 680px)
    }
    .fdUrbanFooter__shell {
        padding: 62px 0 44px;
        gap: 38px
    }
    .fdUrbanFooter__brand {
        display: block
    }
    .fdUrbanFooter__logoLink {
        margin-bottom: 24px
    }
    .fdUrbanFooter__logoFrame {
        width: 132px;
        height: 132px
    }
    .fdUrbanFooter__logo {
        width: 104px;
        height: 104px
    }
    .fdUrbanFooter__title {
        font-size: clamp(42px, 12vw, 58px)
    }
    .fdUrbanFooter__details {
        grid-template-columns: 1fr
    }
    .fdUrbanFooter__hoursPanel {
        grid-column: auto
    }
    .fdUrbanFooter__panel {
        min-height: 0;
        padding: 25px 22px 24px
    }
    .fdUrbanFooter__panelTitle {
        font-size: 27px
    }
    .fdUrbanFooter__hoursWidget li {
        display: block;
        padding: 8px 0 !important
    }
    .fdUrbanFooter__bottom {
        grid-template-columns: 1fr auto;
        min-height: 112px
    }
    .fdUrbanFooter__bottomMark {
        display: none
    }
}

@media (max-width:420px) {
    .fdUrbanFooter__shell,
    .fdUrbanFooter__bottom {
        width: calc(100% - 28px)
    }
    .fdUrbanFooter__title {
        font-size: 40px
    }
    .fdUrbanFooter__intro {
        font-size: 13px;
        line-height: 1.8
    }
    .fdUrbanFooter__copyright {
        max-width: 230px;
        line-height: 1.6
    }
}

@media (prefers-reduced-motion:reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important
    }
    .fdUrbanFooter__reveal {
        opacity: 1;
        transform: none
    }
}

/* map section */

/* ===============================
   FOVEAUX DAIRY - FULL WIDTH MAP
================================ */

.foveauxMapSection {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #090909;
}

.foveauxMapSection__map {
    position: relative;
    width: 100%;
    height: 560px;
    overflow: hidden;
}

/* MAP */

.foveauxMapSection__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    filter: sepia(8%) saturate(85%) contrast(96%);
}

/* ADDRESS CARD */

.foveauxMapSection__info {
    position: absolute;
    left: clamp(20px, 7vw, 110px);
    top: 50%;
    transform: translateY(-50%);
    width: min(390px, calc(100% - 40px));
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px;
    background: #090909;
    border: 1px solid rgba(225, 6, 0, 0.30);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.52);
    z-index: 5;
}

/* ICON */

.foveauxMapSection__icon {
    width: 54px;
    min-width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e10600;
    border-radius: 50%;
    color: #e10600;
    font-size: 23px;
    transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.foveauxMapSection__info:hover .foveauxMapSection__icon {
    background: #e10600;
    color: #090909;
    transform: rotate(-8deg);
}

/* SMALL LABEL */

.foveauxMapSection__content>span {
    display: inline-block;
    margin-bottom: 8px;
    color: #e10600;
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
}

/* TITLE */

.foveauxMapSection__content h3 {
    margin: 0 0 12px;
    color: #e10600;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(27px, 3vw, 38px);
    font-weight: 500;
    line-height: 1;
}

/* ADDRESS */

.foveauxMapSection__content p {
    margin: 0 0 22px;
    color: #d8d8d8;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.75;
}

/* GET DIRECTIONS */

.foveauxMapSection__content a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #e10600;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
    padding-bottom: 6px;
}

/* LINK LINE */

.foveauxMapSection__content a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #e10600;
    transform-origin: right;
    transform: scaleX(1);
    transition: transform 0.35s ease;
}

.foveauxMapSection__content a:hover::after {
    transform: scaleX(0);
}

.foveauxMapSection__content a i {
    font-size: 17px;
    transition: transform 0.3s ease;
}

.foveauxMapSection__content a:hover i {
    transform: translate(4px, -4px);
}

/* ===============================
   TABLET
================================ */

@media (max-width: 991px) {
    .foveauxMapSection__map {
        height: 520px;
    }
    .foveauxMapSection__info {
        left: 35px;
        padding: 28px;
    }
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 767px) {
    .foveauxMapSection {
        padding: 0;
    }
    .foveauxMapSection__map {
        height: auto;
        overflow: visible;
    }
    .foveauxMapSection__map iframe {
        height: 400px;
    }
    .foveauxMapSection__info {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        padding: 28px 22px;
        border-left: 0;
        border-right: 0;
        box-shadow: none;
    }
    .foveauxMapSection__content h3 {
        font-size: 30px;
    }
}

/* ===============================
   SMALL MOBILE
================================ */

@media (max-width: 480px) {
    .foveauxMapSection__map iframe {
        height: 350px;
    }
    .foveauxMapSection__info {
        gap: 15px;
        padding: 24px 18px;
    }
    .foveauxMapSection__icon {
        width: 46px;
        min-width: 46px;
        height: 46px;
        font-size: 20px;
    }
    .foveauxMapSection__content h3 {
        font-size: 27px;
    }
    .foveauxMapSection__content p {
        font-size: 13px;
    }
}

.order-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px;
    background: #fc6143;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    animation: pulse 2s infinite;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity .4s ease, transform .4s ease, visibility .4s ease, background .3s ease, box-shadow .3s ease;
}

.order-btn img {
    width: 100%;
    height: 100%;
    display: block;
    margin: 0;
    padding: 0;
    object-fit: contain;
    box-sizing: border-box;
    transition: transform .3s ease;
}

.order-btn:hover {
    background: #e10600;
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
}

.order-btn:hover img {
    transform: scale(1.08);
}

.order-btn:active {
    transform: scale(.96);
}

/* =============================
   PULSE ANIMATION
============================= */

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(225, 6, 0, 0.70), 0 6px 15px rgba(0, 0, 0, 0.3);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(225, 6, 0, 0), 0 6px 15px rgba(0, 0, 0, 0.3);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(225, 6, 0, 0), 0 6px 15px rgba(0, 0, 0, 0.3);
    }
}

/* =============================
   TABLET
============================= */

@media(max-width:768px) {
    .order-btn {
        bottom: 22px;
        right: 22px;
        width: 58px;
        height: 58px;
        padding: 10px;
    }
}

/* =============================
   MOBILE
============================= */

@media(max-width:600px) {
    .order-btn {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
        padding: 9px;
    }
}

/* =============================
   SMALL MOBILE
============================= */

@media(max-width:380px) {
    .order-btn {
        bottom: 16px;
        left: 16px;
        width: 50px;
        height: 50px;
        padding: 8px;
    }
}

/* =============================
   ACCESSIBILITY
============================= */

.order-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
}

/* Reduced motion */

@media(prefers-reduced-motion:reduce) {
    .order-btn {
        animation: none;
    }
}

/* Show Class */

.order-btn.show-order-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ============================================
   FINAL SPACING / FLOATING ORDER BUTTON FIXES
============================================ */

.smkEmberStory,
.smkMenuLedger,
.smkGuestFire {
    padding-block: var(--section-space);
}

.smkPitFooter {
    padding-top: var(--section-space);
}

.order-btn.show-order-btn:hover {
    transform: translateY(-4px) scale(1.06);
}

.order-btn.show-order-btn:active {
    transform: scale(.96);
}