:root {
    --primary-red: #d3211c;
    --dark-red: #7d2323;
    --ink: #1b1a19;
    --muted: #66707a;
    --paper: #fffdfa;
    --warm: #efeeec;
    --line: #ded7d1;
    --white: #ffffff;
    --shadow: 0 20px 50px rgba(27, 26, 25, 0.10);
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-secondary);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: var(--primary-red); text-decoration: none; transition: color .2s ease, transform .2s ease, background .2s ease, border-color .2s ease; }
a:hover { color: var(--dark-red); }
p { margin: 0 0 1rem; color: var(--muted); max-width: 72ch; }
h1, h2, h3, h4 { margin: 0 0 1rem; font-family: var(--font-primary); line-height: 1.12; color: var(--dark-red); letter-spacing: 0; }
h1 { font-size: clamp(2.7rem, 6vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 2rem); }
h4 { font-size: 1.05rem; }
ul, ol { color: var(--muted); }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 92px 0; position: relative; }
.section.tight { padding: 58px 0; }
.accent-text { color: var(--primary-red); }
.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-red);
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: .82rem;
    margin-bottom: 18px;
}
.eyebrow::after { content: ""; width: 34px; height: 2px; background: currentColor; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 11px 24px;
    border: 2px solid var(--primary-red);
    border-radius: 999px;
    color: var(--primary-red);
    background: transparent;
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
}
.btn:hover { background: var(--primary-red); color: var(--white); transform: translateY(-2px); }
.btn.primary { background: var(--primary-red); color: var(--white); }
.btn.primary:hover { background: var(--dark-red); border-color: var(--dark-red); }
.btn.light { border-color: var(--white); color: var(--white); }
.btn.light:hover { background: var(--white); color: var(--dark-red); }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.section-nav-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color .3s ease, box-shadow .3s ease;
    background: transparent;
}
.section-nav-top.scrolled,
.section-nav-top.menu-open {
    background: rgba(255, 253, 250, .96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(27, 26, 25, .08);
}
.container-nav-desktop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    min-height: 78px;
    margin: 0 auto;
    padding: 1rem 2rem;
}
.container-nav-d-logo img { height: 48px; width: auto; transition: height .25s ease; }
.section-nav-top.scrolled .container-nav-d-logo img { height: 40px; }
.container-nav-d-links { display: flex; align-items: center; gap: 1.05rem; }
.container-nav-d-links .nav-link {
    color: var(--ink);
    font-family: var(--font-primary);
    font-size: .94rem;
    font-weight: 700;
    white-space: nowrap;
}
.section-nav-top:not(.scrolled):not(.menu-open) .container-nav-d-links .nav-link {
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0,0,0,.25);
}
.container-nav-d-links .nav-link:hover,
.container-nav-d-links .nav-link.active,
.container-nav-d-links .nav-item:has(a.active) > .nav-link { color: var(--primary-red); }
.nav-item { position: relative; }
.nav-link-arrow::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}
.nav-dropdown {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    min-width: 230px;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity .2s ease, transform .2s ease, visibility 0s linear .18s;
}
.nav-dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -20px;
    height: 20px;
}
.nav-dropdown-wide { min-width: 310px; }
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.dropdown-open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
    transition-delay: 0s;
}
.nav-dropdown a {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
    color: var(--ink);
    font-family: var(--font-primary);
    font-size: .9rem;
    font-weight: 700;
}
.nav-dropdown a:hover,
.nav-dropdown a.active {
    background: #fff5f4;
    color: var(--primary-red);
}
.nav-cta-btn { padding: 8px 14px; }
.section-nav-top:not(.scrolled):not(.menu-open) .nav-cta-btn {
    border-color: var(--white);
    color: var(--white);
}
.section-nav-top:not(.scrolled):not(.menu-open) .nav-cta-btn:hover {
    border-color: var(--primary-red);
    color: var(--white);
}
.menu_tablet {
    display: none;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 1px solid rgba(211, 33, 28, .16);
    border-radius: 50%;
    background: rgba(211, 33, 28, .08);
    color: var(--primary-red);
    cursor: pointer;
    position: relative;
}
.section-nav-top:not(.scrolled):not(.menu-open) .menu_tablet {
    color: var(--white);
    background: rgba(27, 26, 25, .24);
    border-color: rgba(255,255,255,.18);
}
.menu_tablet-bar {
    position: absolute;
    left: 12px;
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .25s ease, opacity .2s ease;
}
.menu_tablet-bar-1 { transform: translateY(-8px); }
.menu_tablet-bar-2 { transform: translateY(0); }
.menu_tablet-bar-3 { transform: translateY(8px); }
.menu_tablet.is-open .menu_tablet-bar-1 { transform: rotate(45deg); }
.menu_tablet.is-open .menu_tablet-bar-2 { opacity: 0; }
.menu_tablet.is-open .menu_tablet-bar-3 { transform: rotate(-45deg); }
body.mobile-menu-open { overflow: hidden; }
.mobile-menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(27, 26, 25, .38);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 997;
    transition: opacity .25s ease, visibility .25s ease;
}
.mobile-menu-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.container-menu-devices {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 430px);
    height: 100vh;
    padding: 6.5rem 1.5rem 2rem;
    background: linear-gradient(180deg, #f6f1eb 0%, #ffffff 100%);
    box-shadow: -24px 0 50px rgba(0,0,0,.16);
    z-index: 998;
    overflow-y: auto;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .32s cubic-bezier(.22, 1, .36, 1), opacity .2s ease, visibility .2s ease;
}
.container-menu-devices.menu-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.mobile-menu-inner { display: flex; flex-direction: column; min-height: 100%; }
.menu-d-links-list { list-style: none; padding: 0; margin: 0; }
.mobile-nav-item { border-bottom: 1px solid rgba(27, 26, 25, .08); }
.mobile-nav-row { display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.mobile-nav-link {
    display: flex;
    width: 100%;
    padding: 1rem .25rem;
    color: var(--ink);
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.08rem;
}
.mobile-nav-row .mobile-nav-link { width: auto; padding: .9rem 0; }
.mobile-nav-link.active,
.mobile-submenu a.active,
.mobile-nav-link:hover,
.mobile-submenu a:hover { color: var(--primary-red); }
.mobile-submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
}
.mobile-submenu-toggle-icon {
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .25s ease;
}
.mobile-submenu-toggle[aria-expanded="true"] .mobile-submenu-toggle-icon {
    transform: rotate(-135deg) translateY(2px);
}
.mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0 0 0 1rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .3s ease, opacity .2s ease, padding-bottom .2s ease;
}
.mobile-nav-item.submenu-open .mobile-submenu {
    opacity: 1;
    padding-bottom: .75rem;
}
.mobile-submenu a {
    display: block;
    padding: .72rem .25rem;
    color: var(--muted);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: .95rem;
}
.mobile-menu-cta { margin-top: 28px; align-self: flex-start; }

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background .25s ease, box-shadow .25s ease;
    background: transparent;
}
.site-header.scrolled, .site-header.solid {
    background: rgba(255, 253, 250, .96);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 35px rgba(27, 26, 25, .08);
}
.nav-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.brand img { width: 186px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a {
    color: var(--ink);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: .95rem;
}
.site-header:not(.scrolled):not(.solid) .nav-links > a:not(.btn), .site-header:not(.scrolled):not(.solid) .menu-toggle { color: var(--white); text-shadow: 0 1px 2px rgba(0,0,0,.25); }
.nav-links a.active, .nav-links a:hover { color: var(--primary-red); }
.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--dark-red);
    font-size: 1.75rem;
    cursor: pointer;
}
.mobile-menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(420px, 82vw);
    background: var(--warm);
    z-index: 1200;
    transform: translateX(105%);
    transition: transform .25s ease;
    box-shadow: -25px 0 60px rgba(0,0,0,.14);
    padding: 34px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-close { border: 0; background: transparent; color: var(--primary-red); font-size: 2rem; float: right; cursor: pointer; }
.mobile-menu ul { clear: both; list-style: none; padding: 55px 0 0; margin: 0; display: grid; gap: 18px; }
.mobile-menu a { font-family: var(--font-primary); font-weight: 700; color: var(--ink); font-size: 1.1rem; }

.hero {
    display: grid;
    align-items: center;
    padding: 140px 0 80px;
    color: var(--white);
    background: var(--ink);
    position: relative;
    overflow: hidden;
}
.hero:not(.home)::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(125,35,35,0.72) 0%, rgba(26,26,26,0.88) 60%);
}
.hero:not(.home)::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--hero-image, url('../images/whyus.jpg')) center/cover;
    opacity: .3;
}
.hero.home { min-height: 100vh; background: linear-gradient(115deg, rgba(27,26,25,.82), rgba(125,35,35,.58)), var(--hero-image, url('../images/millfull.jpg')) center/cover; overflow: hidden; position: relative; }
.hero.home video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.hero.home::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, rgba(27,26,25,.82), rgba(125,35,35,.58)); }
.hero .container { position: relative; z-index: 2; }
.hero h1, .hero p { color: var(--white); }
.hero:not(.home) h1 { font-size: clamp(32px, 5vw, 56px); margin-bottom: 1rem; }
.hero:not(.home) p { font-size: 1.1rem; max-width: 600px; margin: 0; color: rgba(255,255,255,.8); }
.hero.home p { font-size: clamp(1.05rem, 2vw, 1.28rem); max-width: 850px; color: rgba(255,255,255,.90); }
.hero .hero-accent { color: #ffdad8; font-weight: 700; margin-top: 4px; }
.hero .eyebrow { color: #ffdad8; }
.hero:not(.home) h1,
.hero:not(.home) p,
.hero:not(.home) .eyebrow { text-shadow: 0 2px 12px rgba(0,0,0,.28); }

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
    gap: 58px;
    align-items: start;
}
.feature-panel {
    background: var(--warm);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
}
.feature-panel p:last-child { margin-bottom: 0; }
.image-panel {
    position: relative;
    border-radius: 8px;
    overflow: visible;
    background: var(--primary-red);
}
.image-panel::after,
.home-feature-media::after,
.quality-cta-image::after,
.split-image::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 15px;
    left: 15px;
    z-index: 0;
    border: 2px solid var(--primary-red);
    border-radius: 8px;
    transition: top .25s ease, left .25s ease;
}
.image-panel:hover::after,
.home-feature-media:hover::after,
.quality-cta-image:hover::after,
.split-image:hover::after {
    top: 10px;
    left: 10px;
}
.image-panel img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 34px; }
.card-grid.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid.four-up { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 26px;
    box-shadow: 0 10px 28px rgba(27,26,25,.06);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.card h3 { font-size: 1.35rem; }
.card p { max-width: none; }
.card .btn { margin-top: auto; align-self: flex-start; }
.aligned-list-cards .card p {
    min-height: 82px;
}
.aligned-list-cards .card ul {
    margin-top: 0;
}
.card-brand-logo {
    width: auto;
    max-width: 190px;
    height: 86px;
    margin: 0 0 18px;
    object-fit: contain;
    object-position: left center;
}
.logo-card { align-items: center; text-align: center; }
.logo-card img { max-height: 112px; width: auto; margin: 0 auto 20px; object-fit: contain; }
.logo-card p { text-align: center; }

.brand-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
    gap: 44px;
    align-items: center;
}
.brand-intro-copy p { max-width: 68ch; }
.brand-intro-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}
.brand-intro-logo img {
    max-width: 100%;
    max-height: 170px;
    object-fit: contain;
}
.customer-logo-row {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 26px;
    align-items: center;
    margin-top: 36px;
}
.customer-logo-row img {
    width: 100%;
    max-height: 72px;
    object-fit: contain;
    filter: saturate(.92);
    transition: transform .24s ease, filter .24s ease, drop-shadow .24s ease;
}
.customer-logo-row img:hover {
    filter: saturate(1.05) drop-shadow(0 14px 18px rgba(27,26,25,.18));
    transform: translateY(-6px);
}

.home-feature {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
    gap: 46px;
    align-items: center;
}
.home-feature.reverse { grid-template-columns: minmax(360px, 1.08fr) minmax(0, .92fr); }
.home-feature.reverse .home-feature-copy { order: 2; }
.home-feature.reverse .home-feature-media { order: 1; }
.home-feature-copy p { max-width: 62ch; }
.home-feature-media {
    position: relative;
    border-radius: 8px;
    overflow: visible;
    background: var(--primary-red);
}
.home-feature-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: clamp(340px, 36vw, 500px);
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.cafe-banner-section { padding-top: 26px; }
.home-banner {
    min-height: 440px;
    display: grid;
    align-items: center;
    padding: 72px;
    border-radius: 8px;
    overflow: hidden;
    color: var(--white);
    background-color: var(--dark-red);
    background-image:
        linear-gradient(90deg, rgba(125, 35, 35, 0.632) 0%, rgba(125, 35, 35, 0.524) 36%, rgba(211, 34, 28, 0.189) 66%, rgba(27,26,25,.08) 100%),
        linear-gradient(0deg, rgba(27,26,25,.18), rgba(27,26,25,.18));
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: var(--shadow);
}
.home-banner.cafe-visit-banner {
    background-image:
        linear-gradient(90deg, rgba(125, 35, 35, 0.86) 0%, rgba(125, 35, 35, 0.68) 36%, rgba(211, 34, 28, 0.24) 66%, rgba(27,26,25,.08) 100%),
        linear-gradient(0deg, rgba(27,26,25,.18), rgba(27,26,25,.18)),
        url('../images/close-up-barista-female-hands-pressing-coffee-into-tamper-prepares-order-cafe-counter.jpg');
}
.home-banner-content { max-width: 680px; }
.home-banner h2, .home-banner p { color: var(--white); }
.home-banner .eyebrow { color: #ffdad8; }
.home-banner .btn { border-color: var(--white); color: var(--white); }
.home-banner .btn.primary { border-color: var(--primary-red); }
.contact-cta-section { padding-top: 72px; }
.center-cta {
    display: grid;
    justify-items: center;
    text-align: center;
}
.center-cta .eyebrow { justify-content: center; }
.center-cta p { margin-left: auto; margin-right: auto; }
.center-cta .button-row { justify-content: center; }
.quality-cta-section { padding-top: 72px; }
.quality-cta-layout {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
    gap: 0;
    align-items: stretch;
    overflow: hidden;
    border-radius: 8px;
    background: var(--dark-red);
    box-shadow: var(--shadow);
}
.quality-cta-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 58px;
    color: var(--white);
}
.quality-cta-copy h2,
.quality-cta-copy p {
    color: var(--white);
}
.quality-cta-copy .eyebrow { color: #ffdad8; }
.quality-cta-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.quality-cta-image {
    position: relative;
    overflow: visible;
    background: var(--primary-red);
}

.split-band {
    background: var(--dark-red);
    color: var(--white);
}
.split-band h2, .split-band p { color: var(--white); }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.split-copy { padding: 70px max(32px, calc((100vw - 1180px) / 2)); }
.split-image {
    position: relative;
    overflow: visible;
    background: var(--primary-red);
}
.split-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-story-section { background: linear-gradient(180deg, var(--paper) 0%, #f7f2ee 100%); }
.about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(380px, 1.05fr);
    gap: 58px;
    align-items: center;
}
.about-story-copy p { max-width: 68ch; }
.about-image-stack {
    position: relative;
    min-height: 620px;
}
.about-image-card {
    margin: 0;
    border: 1px solid rgba(125,35,35,.16);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
}
.about-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-image-card.primary {
    position: absolute;
    inset: 0 6% 118px 0;
}
.about-image-card.secondary {
    position: absolute;
    width: 48%;
    height: 250px;
    right: 0;
    bottom: 0;
    border: 8px solid var(--paper);
}
.about-stat-card {
    position: absolute;
    left: 34px;
    bottom: 42px;
    display: grid;
    gap: 4px;
    min-width: 180px;
    padding: 22px 24px;
    border-radius: 8px;
    color: var(--white);
    background: var(--primary-red);
    box-shadow: 0 18px 42px rgba(125,35,35,.28);
}
.about-stat-card strong {
    font-family: var(--font-primary);
    font-size: 2.35rem;
    line-height: 1;
}
.about-stat-card span {
    font-weight: 700;
}
.milestone-section {
    background:
        linear-gradient(90deg, rgba(125,35,35,.06), transparent 34%),
        var(--paper);
}
.timeline { display: grid; gap: 14px; margin-top: 28px; }
.milestone {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}
.milestone strong { color: var(--primary-red); font-family: var(--font-primary); }
.premium-timeline {
    position: relative;
    gap: 0;
    margin-top: 42px;
    padding-left: 34px;
}
.premium-timeline::before {
    content: "";
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 10px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-red), rgba(125,35,35,.22));
}
.premium-timeline .milestone {
    position: relative;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    margin: 0 0 16px;
    padding: 22px 26px;
    border: 1px solid rgba(125,35,35,.12);
    border-radius: 8px;
    background: rgba(255,255,255,.82);
    box-shadow: 0 12px 34px rgba(27,26,25,.06);
    backdrop-filter: blur(10px);
    transition: opacity .55s ease, transform .55s ease, box-shadow .28s ease, border-color .28s ease;
}
.premium-timeline .milestone::before {
    content: "";
    position: absolute;
    left: -33px;
    top: 50%;
    width: 18px;
    height: 18px;
    border: 4px solid var(--paper);
    border-radius: 50%;
    background: var(--primary-red);
    box-shadow: 0 0 0 5px rgba(211,33,28,.15);
    transform: translateY(-50%);
}
.premium-timeline .milestone:hover {
    transform: translateX(6px);
    border-color: rgba(211,33,28,.28);
    box-shadow: 0 18px 48px rgba(27,26,25,.10);
}
.premium-timeline .milestone strong {
    color: var(--dark-red);
    font-size: 1.35rem;
    letter-spacing: .4px;
}
.premium-timeline .milestone span {
    color: var(--ink);
    font-size: 1.03rem;
    font-weight: 500;
}
.premium-timeline .milestone:nth-child(2n) { background: rgba(239,238,236,.72); }
.premium-timeline .milestone:nth-child(1) { transition-delay: .02s; }
.premium-timeline .milestone:nth-child(2) { transition-delay: .05s; }
.premium-timeline .milestone:nth-child(3) { transition-delay: .08s; }
.premium-timeline .milestone:nth-child(4) { transition-delay: .11s; }
.premium-timeline .milestone:nth-child(5) { transition-delay: .14s; }
.premium-timeline .milestone:nth-child(6) { transition-delay: .17s; }

.content-block { margin-top: 32px; }
.content-block + .content-block { margin-top: 46px; }
.content-block ul { padding-left: 1.2rem; }
.note {
    background: #fff5f4;
    border-left: 4px solid var(--primary-red);
    padding: 18px 20px;
    color: var(--muted);
    border-radius: 4px;
}
.card-follow-note { margin-top: 32px; }
.hours-follow-note { margin-top: 32px; }
.hours-table { width: 100%; border-collapse: collapse; color: var(--muted); }
.hours-table td { padding: 10px 0; border-bottom: 1px solid var(--line); }
.hours-table td:last-child { text-align: right; color: var(--ink); font-weight: 700; }
.cafe-hours-section { background: var(--paper); }
.cafe-hours-section > .container > p { max-width: 58ch; }
.cafe-hours-panel {
    margin-top: 28px;
    padding: 34px;
    border: 1px solid rgba(125,35,35,.14);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}
.premium-hours-table {
    border-collapse: separate;
    border-spacing: 0 10px;
}
.premium-hours-table td {
    padding: 15px 18px;
    border: 0;
    background: var(--warm);
}
.premium-hours-table td:first-child {
    border-radius: 8px 0 0 8px;
    color: var(--ink);
    font-family: var(--font-primary);
    font-weight: 700;
}
.premium-hours-table td:last-child {
    border-radius: 0 8px 8px 0;
    color: var(--dark-red);
}
.premium-hours-table tr:nth-last-child(-n+3) td {
    color: var(--muted);
    background: #f8f3f0;
}

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 42px; align-items: start; }
.info-list { display: grid; gap: 18px; }
.info-item { display: flex; gap: 14px; }
.info-item i { color: var(--primary-red); margin-top: 5px; width: 20px; text-align: center; }
form { display: grid; gap: 16px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: grid; gap: 7px; color: var(--ink); font-weight: 700; }
input, select, textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 13px 14px;
    font: inherit;
    background: var(--white);
    color: var(--ink);
}
textarea { min-height: 150px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 2px solid rgba(211,33,28,.18); border-color: var(--primary-red); }

.site-footer { background: var(--ink); color: rgba(255,255,255,.75); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(4, 1fr); gap: 34px; }
.site-footer h3 { color: var(--primary-red); font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; }
.site-footer p, .site-footer a, .site-footer li { color: rgba(255,255,255,.75); }
.site-footer a:hover { color: var(--white); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.site-footer .footer-heading-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 18px;
    border: 1px solid rgba(255,255,255,.38);
    border-radius: 999px;
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1;
}
.site-footer .footer-heading-cta:hover {
    border-color: var(--primary-red);
    background: var(--primary-red);
    color: var(--white);
}
.footer-logo { width: 210px; margin-bottom: 18px; }
.copyright { border-top: 1px solid rgba(255,255,255,.16); margin-top: 44px; padding-top: 24px; text-align: center; }
.copyright p { margin: 0 auto; max-width: none; }

.fade-in { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.fade-in.visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .container-nav-d-links { display: none; }
    .menu_tablet { display: flex; align-items: center; justify-content: center; }
    .mobile-menu-backdrop { display: block; }
    .container-menu-devices { display: block; }
    .card-grid, .card-grid.two-up, .card-grid.four-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .brand-intro { grid-template-columns: 1fr; }
    .customer-logo-row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .about-story-grid { grid-template-columns: 1fr; }
    .about-image-stack { min-height: 520px; }
    .home-feature, .home-feature.reverse { grid-template-columns: 1fr; }
    .home-feature.reverse .home-feature-copy, .home-feature.reverse .home-feature-media { order: initial; }
    .home-banner { padding: 54px; }
    .quality-cta-layout { grid-template-columns: 1fr; }
    .quality-cta-copy { padding: 48px; }
    .intro-grid, .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    .section { padding: 70px 0; }
    .container { width: min(100% - 30px, 1180px); }
    .brand img { width: 160px; }
    .hero.home { min-height: 64vh; padding-top: 112px; }
    .hero:not(.home) { padding: 132px 0 70px; }
    .button-row .btn { width: 100%; }
    .card-grid, .card-grid.two-up, .card-grid.four-up, .field-grid, .split-layout { grid-template-columns: 1fr; }
    .aligned-list-cards .card p { min-height: 0; }
    .brand-intro { gap: 26px; }
    .brand-intro-logo { min-height: 210px; padding: 26px; }
    .customer-logo-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
    .about-story-grid { gap: 34px; }
    .about-image-stack { min-height: auto; display: grid; gap: 16px; }
    .about-image-card.primary, .about-image-card.secondary, .about-stat-card {
        position: relative;
        inset: auto;
        width: auto;
        height: auto;
        border-width: 1px;
    }
    .about-image-card.primary img, .about-image-card.secondary img { height: 260px; }
    .premium-timeline { padding-left: 24px; }
    .premium-timeline::before { left: 8px; }
    .premium-timeline .milestone { grid-template-columns: 1fr; gap: 6px; padding: 20px; }
    .premium-timeline .milestone::before { left: -24px; }
    .home-feature { gap: 28px; }
    .home-feature-media img { height: 280px; }
    .home-banner { min-height: 390px; padding: 34px 24px; }
    .quality-cta-copy { padding: 34px 24px; }
    .quality-cta-image img { min-height: 280px; }
    .cafe-hours-panel { padding: 20px; }
    .premium-hours-table td { display: block; text-align: left; }
    .premium-hours-table td:first-child { border-radius: 8px 8px 0 0; padding-bottom: 4px; }
    .premium-hours-table td:last-child { border-radius: 0 0 8px 8px; padding-top: 4px; text-align: left; }
    .split-copy { padding: 58px 22px; }
    .milestone { grid-template-columns: 1fr; gap: 3px; }
    .footer-grid { grid-template-columns: 1fr; }
}
