:root {
    --ink: #20231f;
    --cream: #f4f0e8;
    --paper: #fbfaf7;
    --green: #3b2923;
    --orange: #c76338;
    --line: rgba(32, 35, 31, 0.18);
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', Arial, sans-serif;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;
}
.site-header {
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    border-bottom: 1px solid var(--line);
    position: relative;
    z-index: 5;
    background: var(--paper);
}
.brand {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 26px;
    letter-spacing: -1.5px;
    text-decoration: none;
    line-height: 1;
}
.brand i {
    font-weight: 500;
    color: var(--orange);
    font-style: italic;
}
.desktop-nav {
    display: flex;
    gap: 32px;
    margin-left: auto;
    margin-right: 38px;
}
.desktop-nav a,
.footer-links a {
    color: var(--ink);
    font-size: 13px;
    text-decoration: none;
}
.desktop-nav a:hover,
.footer-links a:hover {
    color: var(--orange);
}
.header-cta {
    border: 1px solid var(--ink);
    border-radius: 50px;
    padding: 10px 17px;
    color: var(--ink);
    font-size: 12px;
    text-decoration: none;
}
.header-cta span,
.button span {
    margin-left: 13px;
    font-size: 16px;
}
.menu-toggle {
    display: none;
    background: none;
    border: 0;
}
.hero {
    min-height: 690px;
    display: grid;
    grid-template-columns: 40% 52%;
    padding: 72px 5vw 90px 90px;
    gap: 6vw;
    align-items: center;
}
.eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 27px;
    color: var(--orange);
}
h1,
h2,
h3,
p {
    margin-top: 0;
}
h1,
h2 {
    font-family: var(--serif);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 0.98;
}
h1 {
    font-size: clamp(54px, 7.2vw, 108px);
    margin-bottom: 30px;
}
h1 em,
h2 em {
    font-style: italic;
    color: var(--orange);
}
.hero-intro {
    font-size: 18px;
    line-height: 1.5;
    max-width: 385px;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 29px;
    margin-top: 38px;
}
.button {
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}
.button-dark {
    background: var(--ink);
    color: var(--paper);
}
.button-light {
    background: var(--cream);
    color: var(--ink);
    margin-top: 27px;
}
.text-link {
    color: var(--ink);
    font-size: 13px;
    text-decoration: none;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 4px;
}
.text-link span {
    padding-left: 9px;
    font-size: 17px;
}
.hero-image-wrap {
    height: 530px;
    position: relative;
}
.hero-image {
    height: 100%;
    background:
        linear-gradient(180deg, rgba(29, 34, 27, 0.02), rgba(29, 34, 27, 0.28)),
        url('https://images.unsplash.com/photo-1509440159596-0249088772ff?auto=format&fit=crop&w=1200&q=85')
            center/cover;
    border-radius: 190px 190px 4px 4px;
}
.hero-stamp {
    width: 126px;
    height: 126px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--paper);
    position: absolute;
    left: -58px;
    bottom: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: rotate(-12deg);
    font-family: var(--serif);
}
.hero-stamp span {
    font-size: 11px;
    line-height: 1.2;
}
.hero-stamp strong {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.25;
}
.image-note {
    position: absolute;
    right: -5px;
    bottom: -60px;
    font-family: var(--serif);
    font-size: 13px;
    font-style: italic;
    line-height: 1.2;
}
.marquee {
    background: var(--green);
    color: var(--cream);
    overflow: hidden;
    padding: 17px 0;
    font-family: var(--serif);
    font-size: 17px;
    white-space: nowrap;
}
.marquee div {
    word-spacing: 4px;
    animation: scroll 24s linear infinite;
}
.marquee span {
    color: #d47d4e;
    padding: 0 30px;
    font-family: var(--sans);
    font-size: 12px;
}
@keyframes scroll {
    to {
        transform: translateX(-22%);
    }
}
.section {
    padding: 120px 8vw;
}
.section-kicker {
    display: flex;
    gap: 28px;
    color: var(--orange);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    margin-bottom: 62px;
}
.section-kicker span:first-child {
    color: var(--ink);
}
.story-grid,
.customers-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 13vw;
}
.story h2,
.customers h2 {
    font-size: clamp(48px, 6vw, 84px);
    margin: 0;
}
.story-body {
    padding-top: 55px;
    max-width: 420px;
}
.large-copy {
    font-family: var(--serif);
    font-size: 24px;
    line-height: 1.35;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
}
.story-body p:not(.large-copy) {
    font-size: 15px;
    margin-bottom: 35px;
}
.range {
    background: var(--green);
    color: var(--cream);
    padding-bottom: 140px;
}
.light,
.light span:first-child {
    color: #e29a74;
}
.light span:first-child {
    color: var(--cream);
}
.range h2 {
    font-size: clamp(48px, 6vw, 82px);
    margin: 0;
}
.range-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 60px;
}
.range-heading p {
    max-width: 250px;
    font-size: 15px;
    margin: 0;
    color: #d8d5cb;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 19px;
}
.product-card-offset {
    margin-top: 74px;
}
.product-photo {
    height: 350px;
    background-position: center;
    background-size: cover;
}
.photo-bread {
    background-image: url('https://www.calcotthall.com/media/shapes/original/medium/0/23/bakery-fresh_breadjpg.jpg');
}
.photo-rolls {
    background-image: url('https://images.unsplash.com/photo-1586444248902-2f64eddc13df?auto=format&fit=crop&w=800&q=80');
}
.photo-cakes {
    background-image: url('https://images.unsplash.com/photo-1578985545062-69928b1d9587?auto=format&fit=crop&w=800&q=80');
}
.product-meta {
    padding: 20px 0;
    border-top: 1px solid rgba(244, 240, 232, 0.35);
}
.product-meta span {
    font-size: 11px;
    color: #db9673;
}
.product-meta h3 {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
    margin: 10px 0 5px;
}
.product-meta p {
    color: #d8d5cb;
    font-size: 13px;
    line-height: 1.45;
    margin: 0;
    max-width: 230px;
}
.customers {
    background: var(--cream);
}
.customers-grid {
    align-items: start;
}
.customers-grid > div:last-child {
    padding-top: 23px;
}
.customer-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
    margin-top: 50px;
}
.customer-list span {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
}
.contact {
    position: relative;
    background: var(--orange);
    color: var(--paper);
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.contact .eyebrow {
    color: #f6d4bf;
}
.contact h2 {
    font-size: clamp(60px, 8vw, 115px);
    margin: 0 0 18px;
}
.contact p:not(.eyebrow) {
    font-size: 17px;
}
.contact-mark {
    position: absolute;
    right: 5vw;
    bottom: -55px;
    font-family: var(--serif);
    font-size: 360px;
    line-height: 1;
    font-style: italic;
    color: rgba(32, 35, 31, 0.11);
    pointer-events: none;
}
.site-footer {
    background: var(--ink);
    color: var(--cream);
    padding: 45px 5vw 38px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr auto;
    align-items: end;
    gap: 30px;
}
.footer-brand {
    color: var(--cream);
    font-size: 28px;
}
.site-footer p {
    font-size: 13px;
    margin: 0;
    color: #c6c5bd;
}
.footer-links {
    display: flex;
    gap: 24px;
}
.footer-links a {
    color: var(--cream);
    font-size: 12px;
}
.site-footer small {
    color: #9f9f97;
    font-size: 11px;
}
@media (max-width: 800px) {
    .site-header {
        height: 72px;
        padding: 0 6vw;
    }
    .desktop-nav,
    .header-cta {
        display: none;
    }
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: 8px;
    }
    .menu-toggle span {
        display: block;
        width: 24px;
        height: 1px;
        background: var(--ink);
    }
    .hero {
        display: block;
        padding: 62px 7vw 100px;
    }
    .hero h1 {
        font-size: 61px;
    }
    .hero-image-wrap {
        height: 390px;
        margin-top: 55px;
        margin-left: 13vw;
    }
    .hero-stamp {
        left: -40px;
        bottom: 24px;
    }
    .image-note {
        right: 0;
        bottom: -38px;
    }
    .section {
        padding: 88px 7vw;
    }
    .section-kicker {
        margin-bottom: 43px;
    }
    .story-grid,
    .customers-grid {
        display: block;
    }
    .story-body,
    .customers-grid > div:last-child {
        padding-top: 42px;
    }
    .range-heading {
        display: block;
    }
    .range-heading p {
        margin-top: 24px;
    }
    .product-grid {
        display: block;
    }
    .product-card,
    .product-card-offset {
        margin: 0 0 48px;
    }
    .product-photo {
        height: 310px;
    }
    .contact {
        min-height: 430px;
    }
    .contact-mark {
        font-size: 220px;
        bottom: -25px;
    }
    .site-footer {
        grid-template-columns: 1fr 1fr;
        padding: 39px 7vw;
        align-items: start;
    }
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .site-footer small {
        grid-column: 1/-1;
        margin-top: 20px;
    }
}
:root {
    --mobile-menu-bg: var(--paper);
}
@media (max-width: 800px) {
    .desktop-nav.mobile-open {
        display: flex;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        margin: 0;
        padding: 22px 7vw;
        background: var(--mobile-menu-bg);
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        gap: 18px;
    }
}
.range-controls {
    display: flex;
    gap: 8px;
    margin-top: 28px;
}
.range-arrow {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(244, 240, 232, 0.45);
    background: transparent;
    border-radius: 50%;
    color: var(--cream);
    font-size: 17px;
    cursor: pointer;
    transition: 0.2s;
}
.range-arrow:hover {
    background: var(--cream);
    color: var(--green);
}
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}
.product-card.is-active .product-photo {
    box-shadow: 0 0 0 3px var(--orange);
}
.story-toggle {
    border: 0;
    border-bottom: 1px solid var(--ink);
    background: transparent;
    cursor: pointer;
    padding-left: 0;
}
.story-more {
    border-top: 1px solid var(--line);
    margin: 26px 0 30px;
    padding-top: 22px;
}
.story-more p {
    margin-bottom: 14px;
}
.hero-image {
    background-image:
        linear-gradient(180deg, rgba(29, 34, 27, 0.02), rgba(29, 34, 27, 0.28)),
        url('https://www.glenngarry.com/images/image_2.jpg');
}
.photo-bread {
    background-image: url('https://www.glenngarry.com/images/image_3.jpg');
}
.photo-rolls {
    background-image: url('https://www.glenngarry.com/images/image_1.jpg');
}
.photo-cakes {
    background-image: url('https://www.glenngarry.com/images/page3-img1.png');
}
.gallery-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 52px;
}
.gallery-heading h2 {
    font-size: clamp(48px, 6vw, 82px);
    margin: 0;
}
.gallery-heading p {
    max-width: 270px;
    font-size: 15px;
    margin: 0;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.gallery-item {
    border: 0;
    padding: 0;
    background: none;
    text-align: left;
    cursor: pointer;
    color: var(--ink);
    font: inherit;
}
.gallery-item img {
    display: block;
    width: 100%;
    height: 210px;
    object-fit: cover;
    filter: saturate(0.82);
    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}
.gallery-item:hover img {
    transform: scale(0.97);
    filter: saturate(1.08);
}
.gallery-item span {
    display: block;
    font-size: 12px;
    margin-top: 10px;
}
.gallery-wide {
    grid-column: span 2;
}
.gallery-tall img {
    height: 270px;
}
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(20, 25, 21, 0.94);
    z-index: 20;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 6vw;
}
.lightbox.is-open {
    display: flex;
}
.lightbox img {
    max-width: min(100%, 1100px);
    max-height: 82vh;
    object-fit: contain;
}
.lightbox p {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--cream);
    font-family: var(--serif);
    font-size: 18px;
}
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: 0;
    color: var(--cream);
    font-size: 42px;
    font-weight: 200;
    cursor: pointer;
}
@media (max-width: 800px) {
    .gallery-heading {
        display: block;
    }
    .gallery-heading p {
        margin-top: 24px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .gallery-wide {
        grid-column: span 2;
    }
    .gallery-item img,
    .gallery-tall img {
        height: 180px;
    }
    .gallery-wide img {
        height: 220px;
    }
}
.brand-logo {
    display: flex;
    align-items: center;
    width: 300px;
    height: 80px;
}
.brand-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}
.story-visual img {
    display: block;
    width: 100%;
    max-width: 550px;
    height: 230px;
    object-fit: cover;
    margin-top: 42px;
    filter: saturate(0.85);
}
.story-visual p {
    font-family: var(--serif);
    font-size: 15px;
    font-style: italic;
    margin: 12px 0 0;
}
.customers-photo {
    display: block;
    width: 100%;
    max-width: 550px;
    height: 250px;
    object-fit: cover;
    margin-top: 42px;
    filter: saturate(0.84);
}
.footer-brand {
    width: 165px;
    height: 54px;
}
.site-footer .footer-brand img {
    filter: brightness(0) invert(1);
    opacity: 0.88;
}
.site-footer .footer-links {
    flex-wrap: wrap;
    row-gap: 8px;
}
@media (max-width: 800px) {
    .brand-logo {
        width: 252px;
        height: 80px;
    }
    .story-visual img,
    .customers-photo {
        max-width: none;
        height: 210px;
    }
    .story-visual img {
        margin-top: 30px;
    }
}
.scroll-progress {
    position: fixed;
    z-index: 30;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    pointer-events: none;
}
.scroll-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--orange);
    transition: width 0.1s linear;
}
.hero-carousel {
    overflow: visible;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition:
        opacity 0.8s ease,
        transform 1.2s ease;
}
.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 190px 190px 4px 4px;
    display: block;
    filter: saturate(0.9);
}
.hero-slide > span {
    position: absolute;
    top: 22px;
    right: 24px;
    padding: 8px 12px;
    background: rgba(251, 250, 247, 0.88);
    border-radius: 30px;
    color: var(--ink);
    font-size: 11px;
}
.carousel-controls {
    position: absolute;
    z-index: 2;
    left: 22px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.carousel-controls button {
    border: 1px solid rgba(251, 250, 247, 0.75);
    background: rgba(32, 35, 31, 0.46);
    color: var(--paper);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
}
.carousel-controls button:hover,
.carousel-controls button.is-active {
    background: var(--orange);
}
.carousel-dots {
    display: flex;
    gap: 6px;
}
.carousel-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    background: rgba(251, 250, 247, 0.6);
}
.carousel-dots button.is-active {
    width: 22px;
    border-radius: 8px;
}
.customer-switcher {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 42px 0 18px;
}
.customer-switcher button {
    border: 1px solid var(--line);
    border-radius: 30px;
    background: transparent;
    color: var(--ink);
    padding: 9px 13px;
    font: inherit;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}
.customer-switcher button:hover,
.customer-switcher button.is-active {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--cream);
}
.customer-detail {
    font-family: var(--serif);
    font-size: 18px;
    font-style: italic;
    margin-bottom: 24px;
    min-height: 28px;
}
.product-card {
    transition: transform 0.35s ease;
}
.product-card:hover {
    transform: translateY(-8px);
}
.product-card:hover .product-photo {
    filter: saturate(1.15);
}
@media (max-width: 800px) {
    .hero-carousel {
        height: 390px;
        margin-left: 0;
    }
    .hero-slide img {
        border-radius: 140px 140px 4px 4px;
    }
    .hero-slide > span {
        top: 16px;
        right: 16px;
    }
    .carousel-controls {
        left: 16px;
        bottom: 16px;
    }
    .customer-switcher {
        margin-top: 30px;
    }
    .customer-switcher button {
        font-size: 11px;
    }
}
.team {
    background: var(--cream);
}
.team-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 55px;
}
.team-heading h2 {
    font-size: clamp(48px, 6vw, 82px);
    margin: 0;
}
.team-heading p {
    max-width: 310px;
    font-size: 15px;
    margin: 0;
}
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-rows: 220px;
    gap: 14px;
}
.team-photo {
    position: relative;
    display: block;
    overflow: hidden;
    border: 0;
    padding: 0;
    background: var(--ink);
    cursor: pointer;
    text-align: left;
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.78);
    transition:
        transform 0.55s ease,
        filter 0.55s ease;
}
.team-photo span {
    position: absolute;
    bottom: 14px;
    left: 16px;
    color: var(--cream);
    font-family: var(--serif);
    font-size: 15px;
    opacity: 0;
    transform: translateY(8px);
    transition: 0.35s ease;
    text-shadow: 0 1px 9px rgba(0, 0, 0, 0.45);
}
.team-photo:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 42%,
        rgba(18, 21, 18, 0.75)
    );
    opacity: 0;
    transition: 0.35s ease;
}
.team-photo:hover img {
    transform: scale(1.05);
    filter: saturate(1.05);
}
.team-photo:hover:after,
.team-photo:hover span {
    opacity: 1;
}
.team-photo span {
    z-index: 1;
}
.team-photo-large {
    grid-row: span 2;
}
.team-photo-wide {
    grid-column: span 2;
}
@media (max-width: 800px) {
    .team-heading {
        display: block;
    }
    .team-heading p {
        margin-top: 24px;
    }
    .team-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
        gap: 10px;
    }
    .team-photo-large {
        grid-row: span 2;
    }
    .team-photo-wide {
        grid-column: span 2;
    }
    .team-photo span {
        font-size: 13px;
        opacity: 1;
        transform: none;
    }
    .team-photo:after {
        opacity: 1;
    }
}
.team-grid{grid-auto-rows:auto}.team-photo{aspect-ratio:1 / 1}.team-photo-large{grid-row:auto}.team-photo-wide{grid-column:span 2}
@media(max-width:800px){.team-grid{grid-auto-rows:auto}.team-photo-large{grid-row:auto}.team-photo-wide{grid-column:span 2}}
.marquee div{transform:translateX(100%);animation:marquee-right-to-left 24s linear infinite}@keyframes marquee-right-to-left{from{transform:translateX(100%)}to{transform:translateX(-100%)}}
.marquee>div.marquee-track{display:flex;width:max-content;white-space:nowrap;transform:translateX(0);animation:marquee-loop 32s linear infinite}.marquee .marquee-group{display:flex;align-items:center;flex-shrink:0;animation:none;transform:none}.marquee-track span{display:inline-block}@keyframes marquee-loop{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.contact{justify-content:space-between;gap:9vw}.contact-inner{position:relative;z-index:1;max-width:530px}.contact-form{position:relative;z-index:1;width:min(100%,430px);display:grid;grid-template-columns:1fr 1fr;gap:14px 16px;margin-left:auto}.contact-form label{display:flex;flex-direction:column;gap:7px}.contact-form label span{font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:#f9d7c2}.contact-form input,.contact-form select,.contact-form textarea{width:100%;border:0;border-bottom:1px solid rgba(251,250,247,.55);border-radius:0;background:transparent;color:var(--paper);padding:8px 0;font:inherit;font-size:14px;outline:none}.contact-form input::placeholder,.contact-form textarea::placeholder{color:rgba(251,250,247,.65)}.contact-form select{appearance:none}.contact-form select option{color:var(--ink)}.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus{border-color:var(--paper)}.form-message{grid-column:1 / -1}.form-submit{border:0;cursor:pointer;justify-self:start}.form-status{grid-column:1 / -1;color:#ffe2d0;font-size:13px;min-height:20px;margin:0}.contact-form .button-light{margin-top:7px}
@media(max-width:800px){.contact{display:block}.contact-form{width:100%;margin-top:52px}.contact-form input,.contact-form select,.contact-form textarea{font-size:16px}.contact-mark{opacity:.7}}
.business-details{display:grid;grid-template-columns:1fr 1fr;gap:16px 26px;margin-top:36px;max-width:430px}.business-details a,.business-details div{color:var(--paper);text-decoration:none;border-top:1px solid rgba(251,250,247,.45);padding-top:12px}.business-details strong,.business-details span{display:block}.business-details strong{font-family:var(--serif);font-size:17px;font-weight:500}.business-details span{font-size:12px;line-height:1.45;color:#f9d7c2;margin-top:4px}
@media(max-width:800px){.business-details{max-width:none;margin-top:32px}.business-details strong{font-size:16px}}
.photo-bread{background-image:url('img/bread-from-oven.png')}.photo-rolls{background-image:url('img/bread-share.png')}.photo-cakes{background-image:url('img/pasta-bread.png')}
.range,.marquee{background-color:#3b2923}.button-dark{background:#3b2923}.range-arrow:hover{color:#3b2923}
.site-loader{position:fixed;inset:0;z-index:100;background:#3b2923;color:var(--cream);display:grid;place-items:center;overflow:hidden;transition:opacity .8s ease,visibility .8s ease}.site-loader.is-hidden{opacity:0;visibility:hidden;pointer-events:none}.loader-video{position:absolute;width:100%;height:100%;object-fit:cover;opacity:.5;filter:saturate(.7) contrast(1.05)}.loader-shade{position:absolute;inset:0;background:linear-gradient(135deg,rgba(59,41,35,.78),rgba(24,19,16,.72))}.loader-content{position:relative;z-index:1;display:flex;flex-direction:column;align-items:center;gap:16px}.loader-content img{width:min(280px,58vw);height:auto;filter:brightness(0) invert(1);opacity:.96}.loader-content p{margin:0;color:#f4d1bc;font-family:var(--serif);font-size:15px;font-style:italic}.loader-line{width:130px;height:2px;background:rgba(244,240,232,.28);overflow:hidden}.loader-line span{display:block;width:45%;height:100%;background:var(--orange);animation:loader-line 1.4s ease-in-out infinite}@keyframes loader-line{0%{transform:translateX(-110%)}100%{transform:translateX(330%)}}
.loader-content img{filter:none}

/* Responsive menu and footer polish */
@media (max-width: 800px) {
    .menu-toggle {
        position: relative;
        width: 42px;
        height: 42px;
        padding: 0;
        display: block;
    }
    .menu-toggle span {
        position: absolute;
        left: 9px;
        top: 20px;
        width: 24px;
        height: 1.5px;
        margin: 0;
        transform-origin: center;
        transition: transform .28s ease, background-color .28s ease;
    }
    .menu-toggle span:first-child { transform: translateY(-4px); }
    .menu-toggle span:last-child { transform: translateY(4px); }
    .menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }
}

.site-footer {
    background: var(--ink);
    color: var(--cream);
    padding: 68px 5vw 24px;
    display: block;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.25fr .75fr .9fr 1.3fr;
    gap: 5vw;
    padding-bottom: 62px;
}
.footer-brand-block { display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand { width: 190px; height: auto; display: block; margin-bottom: 24px; }
.site-footer .footer-brand img { width: 100%; height: auto; filter: brightness(0) invert(1); opacity: .92; }
.site-footer p { font-size: 14px; line-height: 1.5; color: #c6c5bd; margin: 0; }
.footer-email { margin-top: 26px; color: var(--cream); font-size: 14px; text-decoration: none; border-bottom: 1px solid rgba(244,240,232,.35); padding-bottom: 5px; }
.footer-email span, .footer-bottom span, .footer-button span { margin-left: 10px; }
.footer-column { padding-top: 5px; }
.footer-label { color: var(--orange) !important; text-transform: uppercase; letter-spacing: .14em; font-size: 10px !important; font-weight: 700; margin-bottom: 20px !important; }
.site-footer .footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.site-footer .footer-links a, .site-footer .footer-links span { color: var(--cream); font-size: 14px; line-height: 1.4; text-decoration: none; }
.site-footer .footer-links a:hover, .footer-email:hover, .footer-bottom a:hover { color: #f4c2a8; }
.footer-cta { border-left: 1px solid rgba(244,240,232,.22); padding-left: 4vw; }
.footer-cta h2 { font-size: clamp(30px, 3vw, 48px); line-height: .98; margin: 8px 0 28px; }
.footer-cta h2 em { color: #f4c2a8; }
.footer-button { display: inline-flex; align-items: center; background: var(--cream); color: var(--ink); border-radius: 999px; padding: 13px 18px; font-size: 13px; text-decoration: none; transition: transform .2s ease, background .2s ease; }
.footer-button:hover { transform: translateY(-2px); background: #f4c2a8; }
.footer-bottom { border-top: 1px solid rgba(244,240,232,.2); padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.footer-bottom small { color: #9f9f97; font-size: 11px; }
.footer-bottom a { color: var(--cream); font-size: 12px; text-decoration: none; }
@media (max-width: 800px) {
    .site-footer { padding: 54px 7vw 22px; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 42px 28px; padding-bottom: 42px; }
    .footer-brand-block, .footer-cta { grid-column: 1 / -1; }
    .footer-brand { width: 175px; margin-bottom: 20px; }
    .footer-cta { border-left: 0; border-top: 1px solid rgba(244,240,232,.22); padding: 32px 0 0; }
    .footer-cta h2 { font-size: 38px; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 14px; }
}

.footer-brand-block {
    align-items: center;
    text-align: center;
}
.footer-email {
    display: inline-flex;
    align-items: center;
}
@media (max-width: 800px) {
    .site-footer {
        padding: 46px 7vw 18px;
    }
    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 22px;
        padding-bottom: 34px;
    }
    .footer-brand-block {
        padding-bottom: 4px;
    }
    .footer-brand {
        width: 188px;
        margin-bottom: 17px;
    }
    .footer-email {
        margin-top: 21px;
        font-size: 13px;
    }
    .footer-column {
        min-width: 0;
        padding-top: 0;
    }
    .footer-label {
        margin-bottom: 15px !important;
        font-size: 9px !important;
    }
    .site-footer .footer-links {
        gap: 10px;
    }
    .site-footer .footer-links a,
    .site-footer .footer-links span {
        font-size: 13px;
    }
    .footer-cta {
        margin-top: 2px;
        padding-top: 28px;
    }
    .footer-cta h2 {
        max-width: 290px;
        font-size: 36px;
        margin-bottom: 23px;
    }
    .footer-button {
        padding: 12px 17px;
    }
    .footer-bottom {
        gap: 11px;
    }
    .footer-bottom small {
        max-width: 290px;
        line-height: 1.45;
    }
}

.range .product-meta {
    border-top: 0;
    padding-top: 12px;
}

.site-footer {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 86% 0%, rgba(199,99,56,.2), transparent 29%), #1b211e;
    border-top: 1px solid rgba(244,240,232,.16);
}
.site-footer::after {
    content: 'GG';
    position: absolute;
    right: 4vw;
    bottom: -90px;
    color: rgba(244,240,232,.045);
    font: italic 300px/1 var(--serif);
    pointer-events: none;
}
.footer-main,
.footer-bottom {
    position: relative;
    z-index: 1;
}
@media (max-width: 800px) {
    .site-footer::after {
        right: -18px;
        bottom: -40px;
        font-size: 190px;
    }
}

.footer-main {
    max-width: 1440px;
    margin: 0 auto;
    align-items: start;
}
.footer-brand-block {
    justify-self: center;
    width: 100%;
    padding-top: 4px;
}
.footer-column,
.footer-cta {
    align-self: start;
}
.footer-bottom {
    max-width: 1440px;
    margin: 0 auto;
}
@media (min-width: 801px) {
    .footer-column + .footer-column,
    .footer-cta {
        border-left: 0;
        padding-left: 0;
    }
}
@media (max-width: 800px) {
    .footer-main {
        align-items: start;
    }
    .footer-brand-block {
        justify-self: stretch;
        padding-top: 0;
        padding-bottom: 8px;
    }
    .footer-column {
        padding-top: 3px;
    }
    .footer-column {
        text-align: center;
    }
    .site-footer .footer-links {
        align-items: center;
    }
}

/* Image interaction system */
.story-visual img,
.customers-photo,
.product-photo,
.team-photo {
    border-radius: 18px;
    box-shadow: 0 18px 34px rgba(32, 35, 31, .14);
    transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s ease, filter .45s ease;
}
.story-visual img,
.customers-photo {
    cursor: zoom-in;
}
.story-visual img:hover,
.customers-photo:hover {
    transform: translateY(-7px) scale(1.012);
    box-shadow: 0 24px 42px rgba(32, 35, 31, .2);
    filter: saturate(1.04);
}
.product-photo {
    position: relative;
    overflow: hidden;
}
.product-photo::after,
.team-photo::before {
    content: '';
    position: absolute;
    inset: -20% auto -20% -70%;
    width: 38%;
    background: linear-gradient(105deg, transparent, rgba(255,255,255,.34), transparent);
    transform: skewX(-18deg) translateX(0);
    transition: transform .75s ease;
    pointer-events: none;
    z-index: 2;
}
.product-card:hover .product-photo {
    transform: translateY(-5px) scale(1.012);
    box-shadow: 0 25px 44px rgba(32, 35, 31, .26);
}
.product-card:hover .product-photo::after,
.team-photo:hover::before,
.team-photo:focus-visible::before {
    transform: skewX(-18deg) translateX(390%);
}
.team-photo {
    border: 0;
    transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s ease;
}
.team-photo:hover,
.team-photo:focus-visible {
    transform: translateY(-6px);
    box-shadow: 0 24px 42px rgba(32, 35, 31, .2);
}
.team-photo:focus-visible,
.story-visual img:focus-visible,
.customers-photo:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 5px;
}
.hero-slide img {
    box-shadow: 0 24px 50px rgba(32, 35, 31, .2);
}
@media (prefers-reduced-motion: reduce) {
    .story-visual img,
    .customers-photo,
    .product-photo,
    .team-photo,
    .product-photo::after,
    .team-photo::before {
        transition: none;
    }
}
