:root {
  --forest: #173c2d;
  --forest-light: #245740;
  --cream: #f4efe4;
  --paper: #fffdf8;
  --sand: #dfd1b8;
  --terracotta: #c26b43;
  --ink: #252821;
  --muted: #697068;
  --line: rgba(23, 60, 45, .16);
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shadow: 0 24px 60px rgba(35, 45, 37, .14);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
body.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(16, 46, 34, .34);
  backdrop-filter: blur(2px);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 110px 0; }
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 100;
  padding: 10px 16px; background: var(--paper); color: var(--forest);
  transform: translateY(-150%); border-radius: 8px; font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute; inset: 0 0 auto; z-index: 20;
  padding: 22px 0;
}
.site-header.scrolled {
  position: fixed; padding: 12px 0; background: rgba(255, 253, 248, .94);
  border-bottom: 1px solid var(--line); backdrop-filter: blur(16px);
  animation: header-in .35s ease both;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 1.08rem; font-weight: 500; letter-spacing: -.04em; }
.brand strong { display: block; font-family: var(--serif); font-size: 1.25rem; line-height: .9; }
.brand-mark { display: grid; place-items: center; width: 48px; height: 48px; background: var(--forest); border-radius: 50% 50% 44% 56% / 58% 42% 58% 42%; rotate: -3deg; box-shadow: inset 0 0 0 1px rgba(255,255,255,.12); }
.brand-mark svg { width: 37px; fill: none; stroke: var(--cream); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.brand-mark .logo-leaf { fill: var(--terracotta); stroke: var(--terracotta); }
.brand-mark .logo-steam { stroke-width: 2; }
.main-nav { display: flex; align-items: center; gap: 32px; font-size: .86rem; font-weight: 700; }
.main-nav > a:not(.button) { position: relative; padding: 8px 0; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; bottom: 2px; left: 0; width: 0; height: 1px; background: var(--forest); transition: width .2s ease; }
.main-nav > a:not(.button):hover::after { width: 100%; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: var(--paper); border-radius: 50%; cursor: pointer; }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--forest); transition: transform .2s ease, opacity .2s ease; }

.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 50px;
  padding: 13px 24px; border: 1px solid var(--forest); border-radius: 999px;
  background: var(--forest); color: white; font-size: .86rem; font-weight: 700;
  cursor: pointer; transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--forest-light); box-shadow: 0 12px 24px rgba(23, 60, 45, .18); }
.button-small { min-height: 42px; padding: 9px 19px; }
.button-light { background: var(--cream); border-color: var(--cream); color: var(--forest); }
.button-light:hover { background: white; }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-size: .88rem; font-weight: 700; }
.text-link span { font-size: 1.2rem; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 4px; }

.hero {
  position: relative; min-height: 760px; padding: 145px 0 80px;
  background: var(--cream); overflow: hidden; isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; left: -15%; bottom: -38%; z-index: -1;
  width: 60%; aspect-ratio: 1; border: 1px solid rgba(23,60,45,.12); border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(23,60,45,.02), 0 0 0 100px rgba(23,60,45,.02);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(3px); opacity: .55; z-index: -1; }
.hero-orb-one { width: 180px; height: 180px; right: -60px; top: 22%; background: #c7d2bb; }
.hero-orb-two { width: 55px; height: 55px; left: 43%; bottom: 10%; background: var(--terracotta); }
.hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 70px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--forest); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 1px; background: currentColor; }
.eyebrow.light { color: #d8e5db; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); }
h1 { margin-bottom: 24px; color: var(--forest); font-size: clamp(4.2rem, 7.5vw, 7rem); font-weight: 600; line-height: .94; letter-spacing: -.065em; }
h1 em { color: var(--terracotta); font-weight: 500; }
.hero-text { max-width: 540px; margin-bottom: 30px; color: #596359; font-size: 1.04rem; }
.hero-actions { display: flex; align-items: center; gap: 24px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 46px; color: var(--forest); font-size: .69rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero-trust span::before { content: "•"; margin-right: 8px; color: var(--terracotta); }
.hero-visual { position: relative; padding: 10px 25px 35px 15px; }
.image-frame { position: relative; overflow: hidden; aspect-ratio: 4 / 5; border-radius: 48% 48% 20px 20px; box-shadow: var(--shadow); }
.image-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(23, 60, 45, .26)); }
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.floating-note {
  position: absolute; right: -20px; bottom: 75px; z-index: 2;
  display: flex; align-items: center; gap: 11px; padding: 14px 18px;
  background: var(--paper); border-radius: 14px; box-shadow: 0 18px 40px rgba(33, 43, 35, .19);
}
.floating-note .note-icon { color: var(--terracotta); }
.floating-note strong, .floating-note small { display: block; }
.floating-note strong { font-family: var(--serif); font-size: .9rem; }
.floating-note small { color: var(--muted); font-size: .66rem; }
.bean-stamp {
  position: absolute; top: 20px; left: -30px; z-index: 2;
  display: grid; place-items: center; width: 96px; height: 96px;
  background: var(--terracotta); color: white; border-radius: 50%; rotate: -12deg;
  font-size: .57rem; letter-spacing: .14em; line-height: 1.1; text-transform: uppercase;
}
.bean-stamp strong { font: 600 1.65rem/1 var(--serif); }

.marquee { overflow: hidden; background: var(--forest); color: #e3eadd; padding: 18px 0; }
.marquee-track { display: flex; width: max-content; align-items: center; gap: 28px; animation: marquee 24s linear infinite; }
.marquee span { font-family: var(--serif); font-size: 1rem; }
.marquee b { color: var(--terracotta); font-size: .65rem; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 40px; }
.section-heading h2, .story h2, .visit h2 { margin-bottom: 0; color: var(--forest); font-size: clamp(2.8rem, 5vw, 4.7rem); font-weight: 600; line-height: 1; letter-spacing: -.05em; }
.section-heading > p { max-width: 430px; margin: 0; color: var(--muted); }
.filters { display: flex; gap: 8px; margin-bottom: 32px; padding-bottom: 2px; overflow-x: auto; scrollbar-width: none; }
.filters::-webkit-scrollbar { display: none; }
.filter-button { min-height: 42px; padding: 9px 18px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--forest); font-size: .78rem; font-weight: 700; cursor: pointer; white-space: nowrap; transition: .2s ease; }
.filter-button:hover, .filter-button.active { border-color: var(--forest); background: var(--forest); color: white; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 24px; }
.product-card { display: flex; flex-direction: column; transition: opacity .25s ease, transform .25s ease; }
.product-card.hidden { display: none; }
.product-image { position: relative; overflow: hidden; aspect-ratio: 1 / .86; margin-bottom: 18px; border-radius: 18px; background: var(--cream); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.product-card:hover .product-image img { transform: scale(1.045); }
.product-tag { position: absolute; top: 12px; left: 12px; padding: 6px 10px; border-radius: 99px; background: var(--terracotta); color: white; font-size: .62rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.product-tag-green { background: var(--forest); }
.product-info { display: flex; align-items: start; justify-content: space-between; gap: 15px; }
.product-info h3 { margin-bottom: 3px; color: var(--forest); font-size: 1.35rem; line-height: 1.2; }
.product-info strong { color: var(--terracotta); font-family: var(--serif); white-space: nowrap; }
.product-type { margin-bottom: 3px; color: var(--muted); font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.product-card > p { margin: 4px 0 0; color: var(--muted); font-size: .78rem; }
.order-button { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 44px; margin-top: 16px; padding: 9px 15px; border: 1px solid var(--line); border-radius: 10px; background: transparent; color: var(--forest); font-size: .72rem; font-weight: 700; cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.order-button span { font-size: 1rem; transition: transform .2s ease; }
.order-button:hover { border-color: var(--forest); background: var(--forest); color: white; }
.order-button:hover span { transform: translateX(3px); }

.story { background: var(--forest); color: #d8e5db; overflow: hidden; }
.story-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 100px; }
.story-images { position: relative; min-height: 570px; }
.story-main { width: 78%; height: 510px; object-fit: cover; border-radius: 180px 180px 18px 18px; }
.story-small { position: absolute; right: 0; bottom: 0; width: 42%; aspect-ratio: .84; object-fit: cover; border: 8px solid var(--forest); border-radius: 100px 100px 14px 14px; }
.story-label { position: absolute; top: 48px; right: 0; width: 118px; height: 118px; display: grid; place-items: center; padding: 15px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: #f1d8c8; font-family: var(--serif); font-size: .86rem; line-height: 1.25; text-align: center; rotate: 8deg; }
.story h2 { color: white; margin-bottom: 28px; }
.story-copy > p:not(.eyebrow) { color: #b9c9bd; font-size: .92rem; }
.story-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 38px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.15); }
.story-stats strong, .story-stats span { display: block; }
.story-stats strong { color: #efc2a9; font: 600 2rem/1 var(--serif); }
.story-stats span { margin-top: 8px; color: #b9c9bd; font-size: .63rem; letter-spacing: .06em; text-transform: uppercase; }

.experience { background: var(--cream); }
.centered { display: block; max-width: 620px; margin: 0 auto 55px; text-align: center; }
.centered .eyebrow { justify-content: center; }
.centered > p:last-child { margin: 18px auto 0; }
.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.38); }
.experience-card { padding: 42px; text-align: center; }
.experience-card + .experience-card { border-left: 1px solid var(--line); }
.line-icon { display: grid; place-items: center; width: 56px; height: 56px; margin: 0 auto 22px; background: #e3dac8; color: var(--forest); border-radius: 50%; }
.line-icon svg { width: 27px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.experience-card h3 { margin-bottom: 10px; color: var(--forest); font-size: 1.25rem; }
.experience-card p { margin: 0; color: var(--muted); font-size: .78rem; }

.visit { padding: 35px 0 110px; background: var(--cream); }
.visit-card { display: grid; grid-template-columns: .95fr 1.05fr; overflow: hidden; min-height: 500px; padding: 0; background: var(--terracotta); border-radius: 28px; box-shadow: var(--shadow); }
.visit-copy { padding: 65px; color: white; }
.visit h2 { color: white; margin-bottom: 18px; }
.visit-copy > p:not(.eyebrow) { max-width: 470px; color: #f4dcd0; }
.visit-details { display: grid; gap: 16px; margin: 32px 0; padding: 25px 0; border-block: 1px solid rgba(255,255,255,.22); }
.visit-details span, .visit-details strong { display: block; }
.visit-details span { color: #f3c6b2; font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.visit-details strong { margin-top: 2px; font-size: .82rem; }
.visit-image img { width: 100%; height: 100%; object-fit: cover; }

.footer { padding: 55px 0; background: #102e22; color: #d3ded5; }
.footer-grid { display: grid; grid-template-columns: 1.8fr .7fr .7fr 1fr; gap: 40px; }
.brand-footer .brand-mark { background: #d8e5db; }
.brand-footer .brand-mark svg { stroke: var(--forest); }
.footer p { margin: 15px 0 0; color: #91a397; font-size: .72rem; }
.footer-links { display: grid; align-content: start; gap: 8px; font-size: .74rem; }
.footer-links strong { margin-bottom: 5px; color: white; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-links a { color: #aab9ae; transition: color .2s ease; }
.footer-links a:hover { color: white; }
.footer-note { text-align: right; }
.footer-note span { display: inline-block; padding: 7px 11px; border: 1px solid rgba(255,255,255,.2); border-radius: 99px; color: #d6b4a1; font: .75rem var(--serif); }

.order-modal { width: min(920px, calc(100% - 30px)); max-height: min(700px, calc(100vh - 30px)); padding: 0; border: 0; border-radius: 24px; background: var(--paper); color: var(--ink); box-shadow: 0 30px 90px rgba(12, 30, 22, .35); overflow: hidden; }
.order-modal[open] { display: grid; grid-template-columns: .92fr 1.08fr; animation: modal-in .25s ease both; }
.order-modal::backdrop { background: rgba(10, 29, 21, .7); backdrop-filter: blur(5px); }
.modal-close { position: absolute; top: 14px; right: 14px; z-index: 2; display: grid; place-items: center; width: 42px; height: 42px; padding: 0; border: 0; border-radius: 50%; background: var(--paper); color: var(--forest); box-shadow: 0 6px 20px rgba(0,0,0,.12); cursor: pointer; }
.modal-close svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.modal-product { position: relative; min-height: 540px; padding: 310px 35px 35px; background: var(--forest); color: white; overflow: hidden; }
.modal-product::after { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(180deg, transparent 35%, rgba(13,42,29,.95) 69%); }
.modal-product img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.modal-product > *:not(img) { position: relative; z-index: 1; }
.modal-kicker { display: block; margin-bottom: 6px; color: #efc2a9; font-size: .64rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.modal-product h2 { margin-bottom: 8px; font-size: 2.3rem; line-height: 1; }
.modal-product p { margin-bottom: 12px; color: #d3ded5; font-size: .75rem; }
.modal-product strong { color: #efc2a9; font: 600 1.3rem var(--serif); }
.order-form { display: grid; align-content: center; gap: 22px; padding: 45px; }
.field-group { display: grid; gap: 7px; }
.field-group label, .field-label { color: var(--forest); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.field-group label span { color: var(--muted); font-size: .58rem; font-weight: 500; }
.field-group input, .field-group textarea { width: 100%; border: 1px solid var(--line); border-radius: 11px; background: var(--paper); color: var(--ink); font: .82rem var(--sans); outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.field-group input { min-height: 48px; padding: 0 14px; }
.field-group textarea { padding: 12px 14px; resize: vertical; }
.field-group input:focus, .field-group textarea:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(23,60,45,.12); }
.quantity-row { display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.quantity-control { display: grid; grid-template-columns: 40px 45px 40px; align-items: center; margin-top: 7px; border: 1px solid var(--line); border-radius: 11px; overflow: hidden; }
.quantity-control button { height: 42px; border: 0; background: var(--cream); color: var(--forest); font-size: 1.2rem; cursor: pointer; }
.quantity-control output { text-align: center; font-weight: 700; }
.total-box { text-align: right; }
.total-box span, .total-box strong { display: block; }
.total-box span { color: var(--muted); font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.total-box strong { color: var(--terracotta); font: 600 1.65rem var(--serif); }
.whatsapp-button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 12px 20px; border: 0; border-radius: 999px; background: #197b45; color: white; font-size: .78rem; font-weight: 700; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.whatsapp-button:hover { background: #126538; transform: translateY(-2px); }
.whatsapp-button svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.modal-help { margin: -10px 0 0; color: var(--muted); font-size: .63rem; text-align: center; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes header-in { from { transform: translateY(-100%); } to { transform: translateY(0); } }
@keyframes modal-in { from { opacity: 0; transform: translateY(15px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }

@media (max-width: 980px) {
  .section { padding: 85px 0; }
  .hero { min-height: auto; padding-top: 130px; }
  .hero-grid { gap: 30px; }
  h1 { font-size: clamp(3.8rem, 7vw, 5.8rem); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { gap: 50px; }
  .story-images { min-height: 480px; }
  .story-main { height: 430px; }
  .story-stats { grid-template-columns: 1fr; }
  .story-stats div { display: flex; align-items: center; gap: 10px; }
  .story-stats span { margin: 0; }
  .experience-card { padding: 30px 24px; }
  .visit-copy { padding: 45px; }
  .footer-grid { grid-template-columns: 1.5fr .8fr .8fr; }
  .footer-note { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; text-align: left; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 30px, 580px); }
  .section { padding: 72px 0; }
  .site-header {
    position: fixed;
    top: 0;
    z-index: 60;
    padding: 10px 0;
    background: rgba(244, 239, 228, .94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
  }
  .site-header.scrolled {
    padding: 10px 0;
    animation: none;
  }
  .nav-wrap { gap: 12px; }
  .brand { min-width: 0; font-size: .96rem; letter-spacing: -.03em; }
  .brand strong { font-size: 1.08rem; }
  .brand-mark { width: 42px; height: 42px; flex: 0 0 42px; }
  .brand-mark svg { width: 32px; }
  .menu-toggle {
    position: relative;
    z-index: 70;
    display: inline-flex;
    flex: 0 0 46px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    box-shadow: 0 10px 26px rgba(23, 60, 45, .12);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    top: 76px;
    left: 15px;
    right: 15px;
    bottom: auto;
    z-index: 65;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 253, 248, .98);
    box-shadow: 0 22px 55px rgba(16, 46, 34, .2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px) scale(.98);
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
    font: 700 .95rem var(--sans);
  }
  .main-nav.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0) scale(1); }
  .main-nav > a:not(.button) {
    width: 100%;
    padding: 13px 14px;
    border-radius: 14px;
    color: var(--forest);
  }
  .main-nav > a:not(.button)::after { display: none; }
  .main-nav > a:not(.button):hover,
  .main-nav > a:not(.button):focus-visible { background: rgba(23, 60, 45, .08); }
  .main-nav .button { width: 100%; margin-top: 4px; font-family: var(--sans); font-size: .88rem; }
  .hero { padding: 122px 0 55px; }
  .hero-grid, .story-grid, .visit-card { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .eyebrow { justify-content: center; }
  h1 { font-size: clamp(2.75rem, 12vw, 4rem); letter-spacing: -.065em; }
  .hero-text { margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { max-width: 520px; margin: 25px auto 0; padding: 10px 18px 30px; }
  .bean-stamp { left: -5px; width: 82px; height: 82px; }
  .floating-note { right: 0; bottom: 50px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 18px; }
  .story-grid { display: flex; flex-direction: column-reverse; }
  .story-images { width: 100%; min-height: 460px; }
  .story-main { height: 420px; }
  .story-copy { text-align: center; }
  .story-stats { grid-template-columns: repeat(3, 1fr); }
  .story-stats div { display: block; }
  .story-stats span { margin-top: 8px; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-card + .experience-card { border-left: 0; border-top: 1px solid var(--line); }
  .visit { padding-bottom: 72px; }
  .visit-copy { padding: 40px 30px; }
  .visit-image { height: 330px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child, .footer-note { grid-column: 1 / -1; }
  .order-modal[open] { display: block; overflow-y: auto; }
  .modal-product { min-height: 310px; padding: 175px 25px 25px; }
  .order-form { padding: 30px 25px; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 24px, 580px); }
  .main-nav { left: 12px; right: 12px; top: 72px; }
  .brand span:last-child { line-height: 1; }
  .hero-actions { flex-direction: column; gap: 17px; }
  .hero-trust { display: grid; grid-template-columns: 1fr 1fr; text-align: left; }
  .floating-note { position: relative; right: auto; bottom: auto; margin: -24px 15px 0; }
  .bean-stamp { top: -3px; }
  .product-grid { grid-template-columns: 1fr; gap: 30px; }
  .product-image { aspect-ratio: 1 / .78; }
  .story-images { min-height: 385px; }
  .story-main { height: 350px; }
  .story-label { top: 24px; width: 95px; height: 95px; font-size: .7rem; }
  .story-stats { gap: 8px; }
  .story-stats strong { font-size: 1.55rem; }
  .story-stats span { font-size: .52rem; }
  .visit-copy { padding: 36px 24px; }
  .footer-grid { gap: 32px 20px; }
}

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