:root {
  --cream: #f5f0e4;
  --cream-soft: #fbf8f0;
  --green: #82965e;
  --green-deep: #2f412b;
  --wood: #9a6a3a;
  --coffee: #70452f;
  --brass: #a7854d;
  --sage: #a8b58b;
  --olive: #cbd1ad;
  --ink: #263124;
  --muted: #5f6758;
  --line: rgba(47, 65, 43, 0.22);
  --header-height: 104px;
  --container: min(1240px, calc(100% - 48px));
  --serif: "Iowan Old Style", Baskerville, Georgia, "Times New Roman", serif;
  --sans: Manrope, Arial, Helvetica, sans-serif;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
button, a { -webkit-tap-highlight-color: transparent; }
button, input, select { font: inherit; }
:focus-visible { outline: 3px solid var(--brass); outline-offset: 4px; }

.skip-link {
  position: fixed; left: 20px; top: 12px; z-index: 1000;
  padding: 11px 18px; background: var(--green-deep); color: #fff;
  transform: translateY(-160%); transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(47,65,43,.12);
  background: rgba(245,240,228,.96);
  backdrop-filter: blur(10px);
}
.header-inner {
  width: var(--container); height: 100%; margin-inline: auto;
  display: flex; align-items: center; gap: clamp(18px, 2vw, 32px);
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; text-decoration: none; }
.brand img { width: 92px; height: 92px; padding: 3px; border-radius: 50%; background: var(--cream); object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: clamp(6px, .65vw, 12px); margin-left: auto; }
.site-nav a {
  min-height: 44px; padding: 10px clamp(10px, .85vw, 15px); display: inline-flex; align-items: center;
  font-size: .82rem; font-weight: 650; letter-spacing: .02em; text-decoration: none;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover, .site-nav a[aria-current="true"] { color: var(--green-deep); border-color: var(--green); }
.language-switch { position: relative; margin-left: clamp(2px, .6vw, 10px); }
.language-switch summary {
  min-width: 48px; min-height: 44px; display: grid; place-items: center;
  cursor: pointer; list-style: none; border: 1px solid var(--line); font-size: .78rem; font-weight: 750;
}
.language-switch summary::-webkit-details-marker { display: none; }
.language-list {
  position: absolute; right: 0; top: calc(100% + 8px); width: 96px; padding: 6px;
  background: var(--cream-soft); border: 1px solid var(--line); box-shadow: 0 14px 34px rgba(47,65,43,.12);
}
.language-list a { display: flex; min-height: 42px; align-items: center; justify-content: center; text-decoration: none; }
.language-list a:hover, .language-list a[aria-current="page"] { background: var(--olive); font-weight: 800; }
.language-switch-mobile { display: none; }
.menu-toggle {
  display: none; width: 48px; height: 48px; padding: 0; border: 1px solid var(--line); background: transparent;
  position: relative; place-items: center; cursor: pointer;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: ""; display: block; position: absolute; left: 50%; top: 50%; width: 22px; height: 2px;
  background: var(--green-deep); transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle::before { transform: translate(-50%, -8px); }
.menu-toggle span { transform: translate(-50%, -50%); }
.menu-toggle::after { transform: translate(-50%, 6px); }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translate(-50%, -50%) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translate(-50%, -50%) rotate(-45deg); }

.hero {
  width: var(--container); min-height: clamp(660px, calc(100svh - var(--header-height)), 820px); margin-inline: auto;
  display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: stretch;
  padding-top: 24px; position: relative;
}
.hero-copy {
  min-width: 0; padding: clamp(48px, 6vw, 88px) clamp(28px, 5vw, 78px) clamp(48px, 6vw, 88px) 0;
  display: flex; flex-direction: column; justify-content: center; align-self: stretch; z-index: 2;
}
.hero h1, .display-heading {
  margin: 0; font-family: var(--serif); font-weight: 500; letter-spacing: -.035em; line-height: .96;
}
.hero h1 { max-width: 700px; font-size: clamp(3.5rem, 5vw, 5.5rem); color: var(--green-deep); }
.orbit-rule { display: flex; align-items: center; gap: 13px; width: 190px; margin: 26px 0 22px; color: var(--brass); }
.orbit-rule::before, .orbit-rule::after { content: ""; height: 1px; flex: 1; background: currentColor; }
.orbit-rule i { width: 6px; height: 6px; display: block; border-radius: 50%; background: currentColor; }
.hero-copy p { max-width: 570px; margin: 0; font-size: clamp(1rem, 1.3vw, 1.16rem); line-height: 1.58; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button {
  min-height: 48px; padding: 12px 23px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--green); text-decoration: none; font-weight: 750; font-size: .9rem;
}
.button.primary { background: var(--green-deep); color: #fff; border-color: var(--green-deep); }
.button.primary:hover { background: var(--green-deep); border-color: var(--green-deep); }
.button.secondary:hover { background: var(--olive); }
.hero-media { position: relative; min-height: 0; overflow: hidden; }
.hero-media::before {
  content: ""; position: absolute; z-index: 1; inset: 0 auto 0 0; width: 26%;
  background: linear-gradient(90deg, var(--cream) 0%, rgba(245,240,228,.65) 46%, transparent 100%);
  pointer-events: none;
}
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 48%; }

.section { position: relative; padding: clamp(88px, 10vw, 150px) 0; }
.section-inner { width: var(--container); margin-inline: auto; }
.section-number { display: block; margin-bottom: 14px; color: var(--coffee); font-size: .76rem; font-weight: 800; letter-spacing: .16em; }
.section h2 { margin: 0; font-family: var(--serif); color: var(--green-deep); font-size: clamp(3rem, 5vw, 5.4rem); font-weight: 500; line-height: 1; letter-spacing: -.03em; }
.section-lead { max-width: 700px; margin: 26px 0 0; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.2rem); }

.story { padding-top: 72px; background: var(--cream-soft); }
.story-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(50px, 8vw, 130px); align-items: center; }
.story-copy p { max-width: 620px; margin: 27px 0 0; color: var(--muted); }
.story-media { position: relative; padding: 0 0 40px 54px; }
.story-media::before {
  content: ""; position: absolute; left: 0; bottom: 0; width: 70%; height: 82%; border: 1px solid var(--brass);
}
.story-media img { position: relative; width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: 54% center; }

.gallery { background: #5b6e43; color: #fff; overflow: hidden; }
.gallery::after, .journey::after {
  content: ""; position: absolute; width: 420px; height: 420px; border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%; right: -280px; top: -180px; box-shadow: 0 0 0 54px rgba(255,255,255,.08);
}
.gallery h2, .gallery .section-lead { color: #fff; }
.gallery .section-number { color: #fff; }
.origins .section-number { color: var(--olive); }
.gallery-grid { margin-top: 52px; display: grid; grid-template-columns: .9fr 1.2fr .9fr; grid-template-rows: 420px 220px; gap: 16px; }
.gallery-item { position: relative; overflow: hidden; border: 0; padding: 0; background: transparent; cursor: zoom-in; }
.gallery-item:nth-child(1) { grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 3; grid-row: 1 / 3; }
.gallery-item:nth-child(4) { grid-column: 2; grid-row: 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:nth-child(1) img { object-position: 48% center; }
.gallery-item:nth-child(3) img { object-position: 42% center; }
.gallery-item:hover img { transform: scale(1.025); }
.gallery-item span {
  position: absolute; inset: auto 0 0; padding: 34px 16px 14px; color: #fff; text-align: left;
  font-size: .78rem; font-weight: 750; background: linear-gradient(transparent, rgba(22,31,20,.72));
}

.journey { overflow: hidden; background: var(--cream); }
.journey::after { border-color: rgba(167,133,77,.28); box-shadow: 0 0 0 54px rgba(167,133,77,.07); right: -230px; top: 110px; }
.journey-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px, 11vw, 170px); align-items: end; }
.journey-copy p { max-width: 600px; margin: 28px 0 0; color: var(--muted); }
.origin-names { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.origin-names li { padding: 18px 0; display: flex; gap: 18px; align-items: center; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.65rem; }
.origin-names small { color: var(--coffee); font: 700 .72rem/1 var(--sans); letter-spacing: .12em; }

.origins { background: var(--green-deep); color: var(--cream); }
.origins h2, .origins .section-lead { color: var(--cream); }
.origin-list { margin-top: 74px; position: relative; }
.origin-list::before { content: ""; position: absolute; top: 0; bottom: 0; left: 34px; width: 1px; background: rgba(245,240,228,.25); }
.origin-station { position: relative; display: grid; grid-template-columns: 70px minmax(150px,.65fr) minmax(0,1.35fr) minmax(150px,.55fr); gap: clamp(22px,4vw,70px); padding: 0 0 72px; }
.origin-station:last-child { padding-bottom: 0; }
.origin-index { position: relative; z-index: 1; width: 70px; height: 70px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: #fff; font-family: var(--serif); font-size: 1.5rem; }
.origin-station:nth-child(even) .origin-index { background: var(--coffee); }
.origin-heading { min-width: 0; }
.origin-station h3 { margin: 2px 0 0; font-family: var(--serif); font-size: clamp(2.2rem, 3vw, 3.4rem); font-weight: 500; line-height: 1; }
.origin-station .origin-product { margin: 14px 0 0; color: var(--olive); font: 800 .74rem/1.35 var(--sans); letter-spacing: .11em; text-transform: uppercase; }
.origin-station .origin-meta { margin: 9px 0 0; color: rgba(245,240,228,.62); font: 650 .72rem/1.55 var(--sans); letter-spacing: .035em; }
.origin-station p { margin: 0; color: rgba(245,240,228,.78); }
.flavor-notes { align-self: start; padding-left: 22px; border-left: 1px solid rgba(245,240,228,.22); color: var(--olive); font-family: var(--serif); font-size: 1.2rem; line-height: 1.55; }
.origin-disclaimer { margin: 64px 0 0 70px; padding-top: 22px; border-top: 1px solid rgba(245,240,228,.2); color: rgba(245,240,228,.72); font-size: .9rem; }

.menu-section { background: var(--cream-soft); }
.menu-heading-row { display: grid; grid-template-columns: minmax(0,1fr) minmax(280px,360px); gap: clamp(42px,7vw,100px); align-items: center; }
.menu-downloads { width: min(100%, 360px); flex: 0 0 auto; }
.menu-downloads .button { width: 100%; margin: 0; text-align: center; white-space: normal; }
.menu-qr-card {
  margin-bottom: 16px; padding: 18px; display: grid; place-items: center; gap: 12px;
  border: 1px solid rgba(47,65,43,.24); border-radius: 24px; background: var(--cream);
  box-shadow: 0 18px 42px rgba(47,65,43,.12);
}
.menu-qr-card img { width: min(100%, 230px); height: auto; display: block; }
.menu-qr-card span {
  color: var(--green-deep); font-size: .78rem; font-weight: 800;
  letter-spacing: .04em; text-align: center;
}
.menu-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 70px 84px; margin-top: 65px; }
.menu-group { break-inside: avoid; }
.menu-group h3 { margin: 0 0 18px; padding-bottom: 12px; border-bottom: 1px solid var(--green); font-family: var(--serif); color: var(--green-deep); font-size: 2.05rem; font-weight: 550; }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-item { display: grid; grid-template-columns: minmax(0,1fr) auto auto; gap: 14px; align-items: baseline; min-height: 45px; padding: 9px 0; border-bottom: 1px dotted rgba(47,65,43,.28); }
.product-name { min-width: 0; font-weight: 700; }
.measure { color: var(--muted); white-space: nowrap; font-size: .9rem; }
.price { min-width: 88px; text-align: right; color: var(--coffee); font-weight: 800; white-space: nowrap; }
.shot { display: inline-flex; gap: 2px; margin-left: 7px; vertical-align: middle; }
.bean { width: 10px; height: 15px; display: inline-block; border: 1.5px solid currentColor; border-radius: 60% 40% 55% 45%; transform: rotate(22deg); position: relative; color: var(--coffee); }
.bean::after { content: ""; position: absolute; left: 4px; top: 1px; bottom: 1px; width: 1px; background: currentColor; transform: rotate(8deg); }
.menu-note { max-width: 890px; margin: 54px 0 0; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }

.beans-section { overflow: hidden; background: var(--olive); }
.beans-section::before, .beans-section::after {
  content: ""; position: absolute; border: 1px solid rgba(47,65,43,.16); border-radius: 50%; pointer-events: none;
}
.beans-section::before { width: 510px; height: 510px; left: -230px; top: -250px; }
.beans-section::after { width: 320px; height: 320px; right: -190px; bottom: -160px; }
.beans-grid { display: grid; grid-template-columns: minmax(280px,.72fr) minmax(0,1.28fr); gap: clamp(52px,9vw,140px); align-items: center; }
.beans-mark { min-height: 540px; display: grid; place-items: center; position: relative; }
.beans-mark::before { content: ""; position: absolute; width: 82%; aspect-ratio: 1; border: 1px solid rgba(47,65,43,.22); border-radius: 50%; box-shadow: 0 0 0 42px rgba(245,240,228,.2); }
.beans-mark img { position: relative; width: min(74%, 330px); max-height: 450px; object-fit: contain; }
.beans-copy p { max-width: 640px; margin: 28px 0 0; color: var(--green-deep); font-size: 1.08rem; }
.beans-copy .availability-note { margin-top: 18px; font-size: .9rem; font-weight: 750; color: var(--green-deep); }
.beans-copy .button { margin-top: 30px; }

.takeaway { padding: 0; display: grid; grid-template-columns: .9fr 1.1fr; background: var(--cream); }
.takeaway-copy { min-width: 0; padding: clamp(80px, 10vw, 155px) max(24px, calc((100vw - 1240px)/2)) clamp(80px,10vw,155px) max(24px, calc((100vw - 1240px)/2)); padding-right: clamp(40px, 7vw, 110px); align-self: center; }
.takeaway-copy h2 { margin: 0; font-family: var(--serif); color: var(--green-deep); font-size: clamp(3.5rem, 5vw, 5.8rem); font-weight: 500; line-height: .98; }
.takeaway-copy p { max-width: 560px; margin: 28px 0 0; color: var(--muted); }
.takeaway-media { min-width: 0; min-height: 640px; }
.takeaway-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.visit { background: var(--olive); }
.visit-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(60px,9vw,140px); align-items: center; }
.visit-media { min-height: 560px; }
.visit-media img { width: 100%; height: 100%; object-fit: cover; object-position: 47% center; }
.visit-copy address { margin-top: 40px; font-style: normal; font-size: 1.08rem; }
.visit-copy address strong { display: block; margin-bottom: 8px; font-family: var(--serif); font-size: 2rem; font-weight: 550; }
.visit-copy address a { display: inline-block; margin-top: 20px; font-weight: 750; }
.contact-channels { margin-top: 44px; padding-top: 32px; border-top: 1px solid rgba(47,65,43,.2); }
.contact-channels h3 { margin: 0; font-family: var(--serif); color: var(--green-deep); font-size: 1.75rem; font-weight: 550; line-height: 1.1; }
.contact-channels > p { margin: 12px 0 0; color: var(--green-deep); font-size: .9rem; }
.social-links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
.social-link { min-height: 54px; padding: 10px 12px; display: grid; grid-template-columns: 24px 1fr auto; gap: 9px; align-items: center; border: 1px solid rgba(47,65,43,.24); color: var(--green-deep); text-decoration: none; font-weight: 750; font-size: .84rem; }
.social-link svg { width: 22px; height: 22px; fill: currentColor; }
.social-link small { color: var(--coffee); font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; }
.social-link:not(.is-pending) { background: rgba(245,240,228,.3); transition: background-color .18s ease, border-color .18s ease, transform .18s ease; }
.social-link:not(.is-pending):hover { background: var(--cream); border-color: var(--green-deep); transform: translateY(-2px); }
.social-link.is-pending { cursor: default; background: rgba(245,240,228,.34); }

.site-footer { padding: 76px 0 30px; background: var(--green-deep); color: var(--cream); }
.footer-inner { width: var(--container); margin-inline: auto; }
.footer-main { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: start; }
.footer-brand img { width: 196px; height: 196px; padding: 8px; border-radius: 50%; background: var(--cream); object-fit: contain; }
.footer-tagline { max-width: 500px; margin: 23px 0 0; font-family: var(--serif); font-size: clamp(1.75rem,3vw,2.6rem); line-height: 1.1; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 34px; }
.footer-nav a { min-height: 44px; display: inline-flex; align-items: center; color: rgba(245,240,228,.8); text-decoration: none; }
.footer-nav a:hover { color: #fff; text-decoration: underline; }
.legal { margin-top: 62px; padding-top: 25px; border-top: 1px solid rgba(245,240,228,.18); color: var(--olive); font-size: .79rem; }
.legal p { margin: 4px 0; }
.legal a { color: inherit; }
.footer-bottom { margin-top: 24px; display: flex; justify-content: space-between; gap: 28px; color: var(--olive); font-size: .78rem; }

.lightbox { width: min(1100px, calc(100% - 28px)); max-height: calc(100svh - 28px); padding: 0; border: 0; background: var(--green-deep); color: #fff; }
.lightbox::backdrop { background: rgba(21,27,20,.86); }
.lightbox figure { margin: 0; }
.lightbox img { width: 100%; max-height: calc(100svh - 110px); object-fit: contain; }
.lightbox figcaption { padding: 14px 68px 18px 18px; }
.lightbox-close { position: absolute; right: 10px; top: 10px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.6); background: var(--green-deep); color: #fff; cursor: pointer; font-size: 1.5rem; }

.error-page {
  width: min(680px, calc(100% - 36px)); min-height: 100svh; margin-inline: auto; padding: 72px 0;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
}
.error-page img { width: 150px; height: 150px; margin-bottom: 34px; padding: 6px; border-radius: 50%; background: var(--cream); object-fit: contain; }
.error-page h1 { margin: 0; font: 500 clamp(3rem, 8vw, 5.5rem)/.98 var(--serif); color: var(--green-deep); }
.error-page p:not(.section-number) { max-width: 560px; margin: 24px 0 30px; color: var(--muted); }

@media (max-width: 1160px) {
  :root { --header-height: 86px; --container: min(100% - 36px, 940px); }
  .menu-toggle { display: grid; margin-left: auto; }
  .site-nav {
    position: fixed; inset: var(--header-height) 0 auto; max-height: calc(100svh - var(--header-height)); overflow-y: auto;
    display: none; padding: 24px 18px 34px; background: var(--cream-soft); border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: grid; }
  .site-nav a { width: min(100%, 940px); margin-inline: auto; justify-content: center; font-size: 1rem; }
  .language-switch-desktop { display: none; }
  .language-switch-mobile {
    display: block; width: min(100%, 940px); margin: 18px auto 0; padding-top: 22px;
    border-top: 1px solid var(--line);
  }
  .language-switch-label {
    display: block; margin-bottom: 12px; color: var(--muted);
    font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-align: center; text-transform: uppercase;
  }
  .mobile-language-list { display: grid; grid-template-columns: repeat(7, minmax(48px, 1fr)); gap: 8px; }
  .site-nav .mobile-language-list a {
    width: 100%; min-height: 48px; margin: 0; padding: 8px;
    border: 1px solid var(--line); font-size: .84rem; font-weight: 750; text-decoration: none;
  }
  .site-nav .mobile-language-list a:hover,
  .site-nav .mobile-language-list a:focus-visible,
  .site-nav .mobile-language-list a[aria-current="page"] { background: var(--olive); border-color: var(--green); }
  .brand img { width: 76px; height: 76px; }
  .hero { height: auto; min-height: auto; grid-template-columns: 1fr; padding-top: 0; }
  .hero-copy { padding: 80px 0 56px; }
  .hero h1 { max-width: 780px; }
  .hero-media { height: 520px; min-height: 0; }
  .hero-media::before { width: 100%; height: 28%; inset: 0 0 auto; background: linear-gradient(var(--cream), transparent); }
  .story-grid, .journey-grid, .visit-grid, .beans-grid { gap: 55px; }
  .gallery-grid { grid-template-rows: 360px 190px; }
  .origin-station { grid-template-columns: 70px minmax(120px,.6fr) minmax(0,1.4fr); }
  .flavor-notes { grid-column: 3; margin-top: -40px; }
  .menu-layout { gap: 60px 50px; }
}

@media (max-width: 760px) {
  :root { --container: calc(100% - 28px); }
  .section { padding: 82px 0; }
  .hero-copy { padding-top: 62px; }
  .hero h1 { font-size: clamp(3.4rem, 16vw, 5.4rem); }
  .hero-media { width: calc(100% + 28px); height: 440px; min-height: 0; margin-left: -14px; }
  .mobile-language-list { grid-template-columns: repeat(4, minmax(48px, 1fr)); }
  .story-grid, .journey-grid, .visit-grid, .footer-main { grid-template-columns: 1fr; }
  .story-media { padding: 0 0 26px 26px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(2, 300px); }
  .gallery-item:nth-child(n) { grid-column: auto; grid-row: auto; }
  .origin-station { grid-template-columns: 58px 1fr; gap: 20px; padding-bottom: 55px; }
  .origin-list::before { left: 29px; }
  .origin-index { width: 58px; height: 58px; }
  .origin-heading { grid-column: 2; }
  .origin-station p, .flavor-notes { grid-column: 2; }
  .origin-station > p { margin-top: 0; }
  .flavor-notes { margin-top: 0; padding: 12px 0 0; border-left: 0; border-top: 1px solid rgba(245,240,228,.2); }
  .origin-disclaimer { margin-left: 0; }
  .menu-heading-row { display: block; }
  .menu-downloads { width: 100%; margin-top: 28px; }
  .menu-qr-card { width: min(100%, 360px); margin-inline: auto; }
  .menu-layout { grid-template-columns: 1fr; gap: 48px; margin-top: 50px; }
  .beans-grid { grid-template-columns: 1fr; }
  .beans-mark { min-height: 360px; }
  .beans-mark img { width: min(58%, 280px); max-height: 330px; }
  .takeaway { grid-template-columns: 1fr; }
  .takeaway-copy { padding: 82px 14px; }
  .takeaway-media { min-height: 480px; }
  .visit-media { min-height: 440px; }
  .footer-nav { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
}

@media (max-width: 430px) {
  .header-inner { gap: 10px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-media { height: 390px; min-height: 0; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 300px); }
  .social-links { grid-template-columns: 1fr; }
  .menu-item { grid-template-columns: minmax(0,1fr) auto; gap: 4px 12px; }
  .measure { grid-column: 1; font-size: .82rem; }
  .price { grid-column: 2; grid-row: 1 / 3; align-self: center; min-width: 82px; }
  .product-name { line-height: 1.35; }
  .footer-tagline { font-size: 2rem; }
}

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

@media print {
  .site-header, .skip-link, .lightbox { display: none !important; }
}
