* {
  box-sizing: border-box;
}

:root {
  --agbs-light-grid-x: linear-gradient(90deg, rgba(138, 106, 79, 0.06) 1px, transparent 1px);
  --agbs-light-grid-y: linear-gradient(180deg, rgba(138, 106, 79, 0.05) 1px, transparent 1px);
  --agbs-light-grid-size: 82px 82px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Arial, Helvetica, sans-serif;
  color: #2a2018;
  background-color: #f6efe4;
  background-image: var(--agbs-light-grid-x), var(--agbs-light-grid-y);
  background-position: top center;
  background-size: var(--agbs-light-grid-size);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  height: auto;
}

@keyframes softPageEnter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

@keyframes heroTextEnter {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.site-header {
  animation: softPageEnter 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-content,
.page-hero-inner,
.coffee-invite-inner {
  animation: heroTextEnter 820ms 120ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.reveal-ready .reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    filter 760ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    box-shadow 260ms ease,
    border-color 180ms ease,
    background 180ms ease;
  will-change: opacity, transform;
}

.reveal-ready .reveal-image {
  filter: saturate(0.92) contrast(0.98);
  transform: translate3d(0, 26px, 0) scale(0.985);
}

.reveal-ready .reveal-card {
  transform: translate3d(0, 30px, 0) scale(0.985);
}

.reveal-ready .reveal-on-scroll.is-visible {
  opacity: 1;
  filter: none;
  transform: translate3d(0, 0, 0) scale(1);
}

.feature-image img,
.feature-image video,
.about-photo img,
.metrics-photo img,
.metrics-photo video,
.story-step-media img,
.story-closing-media img,
.quality-process-card img,
.quality-process-card video,
.logistics-process-card img,
.gallery-grid img {
  transition:
    transform 1000ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 420ms ease;
  will-change: transform;
}

.feature-image:hover img,
.feature-image:hover video,
.about-photo:hover img,
.metrics-photo:hover img,
.metrics-photo:hover video,
.story-step-media:hover img,
.story-closing-media:hover img,
.quality-process-card:hover img,
.quality-process-card:hover video,
.logistics-process-card:hover img,
.gallery-grid > *:hover img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.055);
}

.page-card,
.contact-panel,
.metrics-grid article,
.quality-process-card,
.logistics-process-card,
.coffee-market-card,
.state-price-card,
.partner-card {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.page-card:hover,
.contact-panel:hover,
.metrics-grid article:hover,
.quality-process-card:hover,
.logistics-process-card:hover,
.coffee-market-card:hover,
.state-price-card:hover,
.partner-card:hover {
  transform: translateY(-4px);
}

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

  .reveal-ready .reveal-on-scroll,
  .reveal-ready .reveal-image,
  .reveal-ready .reveal-card,
  .about-row,
  .about-photo {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    will-change: auto;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #101010;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background: var(--hero-image) center / cover no-repeat;
  transform: scale(1.02);
  transition: opacity 620ms ease, transform 1200ms ease;
  pointer-events: none;
  overflow: hidden;
}

.hero-media-fill {
  background-size: 100% 100%;
}

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

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 420ms ease;
}

.hero-media.is-active .hero-video {
  opacity: 1;
}

.hero-video.is-ready {
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(15, 18, 22, 0.34), rgba(15, 18, 22, 0.62)),
    rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

.hero.is-image-only::after {
  background: transparent;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 0 19.5vw;
  background: linear-gradient(180deg, rgba(42, 32, 24, 0.78) 0%, rgba(42, 32, 24, 0.46) 72%, rgba(42, 32, 24, 0.08) 100%);
  border-bottom: 1px solid rgba(241, 215, 173, 0.18);
  box-shadow: 0 18px 38px rgba(24, 16, 11, 0.2);
  backdrop-filter: blur(16px);
  transition: background 260ms ease, box-shadow 260ms ease, border-color 260ms ease, height 260ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  height: 132px;
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: rgba(138, 106, 79, 0.08);
  box-shadow: 0 10px 26px rgba(42, 32, 24, 0.08);
  backdrop-filter: blur(12px);
}

.market-widget {
  position: absolute;
  top: 24px;
  left: 4.5vw;
  display: flex;
  gap: 0;
  align-items: center;
  width: min(31vw, 270px);
  max-width: min(31vw, 270px);
  min-height: 64px;
  padding: 7px 10px;
  color: #2a2018;
  text-align: left;
  background: rgba(246, 239, 228, 0.98);
  border: 1px solid rgba(138, 106, 79, 0.26);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(42, 32, 24, 0.08);
  backdrop-filter: blur(10px);
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled .market-widget {
  color: #2a2018;
  background: rgba(246, 239, 228, 0.98);
  border-color: rgba(138, 106, 79, 0.26);
  box-shadow: 0 10px 22px rgba(42, 32, 24, 0.08);
}

.site-header.is-scrolled .market-widget strong {
  color: #2a2018;
}

.site-header.is-scrolled .market-label {
  color: #7d6046;
}

.site-header.is-scrolled .market-note {
  color: #6f533d;
}

.site-header:not(.is-scrolled) .market-widget {
  color: #fff7ec;
  background: linear-gradient(135deg, rgba(42, 32, 24, 0.76), rgba(61, 48, 37, 0.62));
  border-color: rgba(241, 215, 173, 0.42);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.site-header:not(.is-scrolled) .market-widget strong {
  color: #f1d7ad;
}

.site-header:not(.is-scrolled) .market-label {
  color: #f0d7b1;
}

.site-header:not(.is-scrolled) .market-note {
  color: #f6efe4;
}

.market-item {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 0 11px;
}

.market-item + .market-item {
  border-left: 1px solid rgba(241, 215, 173, 0.36);
}

.market-label,
.market-note {
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.market-label {
  color: #7d6046;
  font-size: 9.4px;
  letter-spacing: 0.07em;
  opacity: 0.82;
}

.market-widget strong {
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1;
  color: #2a2018;
  letter-spacing: 0;
  white-space: nowrap;
}

.market-note {
  color: #6f533d;
  font-size: 8.4px;
  letter-spacing: 0.04em;
  max-width: none;
  white-space: nowrap;
  opacity: 0.76;
}

.language-switch {
  position: absolute;
  top: 40px;
  left: clamp(348px, calc(4.5vw + 292px), 390px);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 9px;
  color: #2a2018;
  background: rgba(246, 239, 228, 0.9);
  border: 1px solid rgba(138, 106, 79, 0.22);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  opacity: 0.62;
}

.language-switch a.is-active {
  color: #7d6046;
  opacity: 1;
}

.language-switch span {
  width: 1px;
  height: 14px;
  background: rgba(138, 106, 79, 0.24);
}

.language-switch .flag {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(42, 32, 24, 0.2);
  flex: 0 0 auto;
}

.site-header.is-scrolled .language-switch {
  color: #2a2018;
  background: rgba(246, 239, 228, 0.9);
  border-color: rgba(138, 106, 79, 0.22);
}

.site-header.is-scrolled .language-switch a.is-active {
  color: #7d6046;
}

.site-header.is-scrolled .language-switch span {
  background: rgba(138, 106, 79, 0.24);
}

.site-header:not(.is-scrolled) .language-switch {
  color: #fff7ec;
  background: rgba(42, 32, 24, 0.34);
  border-color: rgba(241, 215, 173, 0.34);
}

.site-header:not(.is-scrolled) .language-switch a.is-active {
  color: #f1d7ad;
}

.site-header:not(.is-scrolled) .language-switch span {
  background: rgba(241, 215, 173, 0.34);
}

.brand {
  position: absolute;
  top: 16px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transform: translateX(-50%);
}

.brand-logo-wrap {
  position: relative;
  display: block;
  width: min(17vw, 205px);
  height: 70px;
  flex: 0 0 auto;
}

.brand-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: none;
  transition: filter 260ms ease, opacity 260ms ease;
}

.brand-logo-color {
  opacity: 1;
}

.brand-logo-white {
  opacity: 0;
}

.site-header:not(.is-scrolled) .brand-logo {
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.28));
}

.site-header:not(.is-scrolled) .brand-logo-white {
  opacity: 1;
}

.site-header:not(.is-scrolled) .brand-logo-color {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo {
  filter: none;
}

.site-header.is-scrolled .brand-logo-white {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-color {
  opacity: 1;
}

.brand-text,
.brand-mark {
  display: none;
}

.brand-mark {
  position: relative;
  width: 56px;
  height: 30px;
  display: none;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 26px;
  height: 26px;
  border: 3px solid #ffffff;
  border-radius: 50%;
}

.brand-mark::before {
  left: 0;
}

.brand-mark::after {
  right: 0;
}

.site-nav {
  position: absolute;
  top: 88px;
  left: 50%;
  right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(8px, 1vw, 18px);
  width: min(838px, calc(100% - 48px));
  font-size: clamp(10px, 0.68vw, 12px);
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%);
  transition: opacity 240ms ease, transform 240ms ease;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-item.has-dropdown::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 18px;
}

.site-header.is-scrolled .site-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 4px;
  border-radius: 999px;
  line-height: 1.15;
  text-align: center;
  opacity: 0.94;
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease, color 180ms ease;
}

.site-nav > .nav-link:nth-child(1) {
  width: 118px;
}

.site-nav > .nav-link:nth-child(2) {
  width: 92px;
}

.site-nav > .nav-link:nth-child(3) {
  width: 78px;
}

.site-nav > .nav-item {
  width: 50px;
}

.site-nav > .nav-link:nth-child(5) {
  width: 112px;
}

.site-nav > .nav-link:nth-child(6) {
  width: 64px;
}

.site-nav > .nav-link:nth-child(7) {
  width: 146px;
}

.site-nav > .nav-link,
.site-nav > .nav-item > .nav-link {
  justify-content: center;
}

.site-nav a:focus-visible,
.nav-dropdown a:focus-visible,
.menu-toggle:focus-visible,
.hero-button:focus-visible,
.hero-arrow:focus-visible,
.hero-dots button:focus-visible,
.page-action:focus-visible,
.coffee-market-links a:focus-visible,
.footer-column a:focus-visible,
.footer-social a:focus-visible {
  outline: 3px solid rgba(241, 215, 173, 0.9);
  outline-offset: 3px;
}

.site-header.is-scrolled .site-nav a {
  color: #2a2018;
}

.site-nav a {
  color: #2a2018;
}

.site-header:not(.is-scrolled) .site-nav a {
  color: #fff7ec;
  text-shadow: 0 2px 12px rgba(24, 16, 11, 0.78), 0 0 1px rgba(24, 16, 11, 0.64);
}

.site-nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.site-nav .nav-link.is-active {
  color: #2a2018;
  background: transparent;
  opacity: 1;
}

.site-nav .nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -4px;
  height: 2px;
  background: #8a6a4f;
  border-radius: 999px;
}

.site-header:not(.is-scrolled) .site-nav .nav-link.is-active::after {
  background: #f1d7ad;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 4;
  display: grid;
  min-width: 210px;
  gap: 4px;
  padding: 10px;
  background: rgba(255, 250, 242, 0.99);
  border: 1px solid rgba(138, 106, 79, 0.24);
  border-radius: 8px;
  box-shadow: 0 22px 46px rgba(42, 32, 24, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 42px;
  justify-content: start;
  padding: 8px 14px 8px 40px;
  color: #2a2018;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-shadow: none;
}

.nav-dropdown a::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 12px;
  height: 12px;
  background: #8a6a4f;
  border-radius: 50%;
  box-shadow: inset -4px 0 0 rgba(42, 32, 24, 0.18);
  transform: translateY(-50%);
}

.nav-dropdown a:hover,
.nav-dropdown a.is-active {
  color: #2a2018;
  background: #f1d7ad;
  transform: none;
}

.site-header:not(.is-scrolled) .nav-dropdown a,
.page .site-header:not(.is-scrolled) .nav-dropdown a {
  color: #2a2018;
  text-shadow: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(241, 215, 173, 0.42);
  border-radius: 999px;
  background: rgba(42, 32, 24, 0.24);
  padding: 8px;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: #ffffff;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

.site-header.is-scrolled .menu-toggle span {
  background: #2a2018;
}

.site-header.is-scrolled .menu-toggle,
.page .menu-toggle {
  background: rgba(246, 239, 228, 0.92);
  border-color: rgba(138, 106, 79, 0.24);
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 110px 24px 40px;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.46);
  transition: opacity 220ms ease, visibility 220ms ease;
}

.hero.is-image-only .hero-content {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.hero-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: #f1d7ad;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0 0 22px;
  min-height: 188px;
  font-size: clamp(42px, 4.25vw, 64px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-content p {
  margin: 0 auto 28px;
  max-width: 780px;
  min-height: 79px;
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.46;
  font-weight: 600;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 62px;
  padding: 0 30px;
  border-radius: 21px;
  background: #8a6a4f;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.hero-button:hover {
  background: #6f533d;
  transform: translateY(-2px);
}

.hero-arrow,
.hero-dots button {
  appearance: none;
  border: 0;
  cursor: pointer;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: clamp(46px, 4vw, 58px);
  height: clamp(46px, 4vw, 58px);
  color: #fff7ec;
  background: rgba(42, 32, 24, 0.38);
  border: 1px solid rgba(241, 215, 173, 0.42);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.hero-arrow:hover {
  background: rgba(138, 106, 79, 0.92);
  transform: translateY(-50%) scale(1.04);
}

.hero-arrow-prev {
  left: clamp(18px, 4vw, 64px);
}

.hero-arrow-next {
  right: clamp(18px, 4vw, 64px);
}

.hero-arrow span {
  display: block;
  margin-top: -2px;
  font-size: clamp(36px, 3vw, 46px);
  line-height: 1;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: clamp(24px, 4vw, 46px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  background: rgba(42, 32, 24, 0.34);
  border: 1px solid rgba(241, 215, 173, 0.32);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
}

.hero-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  background: rgba(255, 247, 236, 0.46);
  border-radius: 999px;
  transition: width 180ms ease, background 180ms ease;
}

.hero-dots button.is-active {
  width: 32px;
  background: #f1d7ad;
}

.section {
  padding: clamp(64px, 8vw, 112px) 24px;
  color: #2a2018;
  background-color: #f6efe4;
  background-image: var(--agbs-light-grid-x), var(--agbs-light-grid-y);
  background-position: top center;
  background-size: var(--agbs-light-grid-size);
}

.section:nth-of-type(odd) {
  background-color: #fffaf2;
}

.section-grid,
.section-heading,
.metrics-grid,
.services-list,
.gallery-grid,
.contact-card {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
}

.section-kicker {
  display: block;
  margin-bottom: 16px;
  color: #8a6a4f;
  font-size: clamp(12px, 0.95vw, 14px);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section h2 {
  margin: 0;
  color: #2a2018;
  font-size: clamp(42px, 5.3vw, 68px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.section h3 {
  margin: 0 0 12px;
  color: #32261d;
  font-size: 22px;
}

.section p {
  margin: 0;
  color: #65584c;
  font-size: clamp(17px, 1.2vw, 19px);
  line-height: 1.6;
}

.section-copy {
  display: grid;
  gap: 20px;
}

.about-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    var(--agbs-light-grid-x),
    var(--agbs-light-grid-y),
    linear-gradient(180deg, #fffaf2 0%, #f6efe4 100%);
  background-position: top center;
  background-size: var(--agbs-light-grid-size), var(--agbs-light-grid-size), auto;
  padding-top: clamp(44px, 5vw, 70px);
}

.about-heading,
.about-story {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.about-heading {
  max-width: 1120px;
  margin-bottom: clamp(24px, 3vw, 38px);
  padding-left: 0;
}

.about-beans {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.about-bean {
  position: absolute;
  top: calc((var(--bean-height) + 24px) * -1);
  left: var(--bean-x);
  width: var(--bean-width);
  height: var(--bean-height);
  opacity: 0;
  background-image: url("../img/artes/Estrutura/coffee-beans-falling.png?v=20260528-02");
  background-position: var(--bean-bg-x) var(--bean-bg-y);
  background-repeat: no-repeat;
  background-size: var(--bean-sheet-width) var(--bean-sheet-height);
  filter: drop-shadow(0 4px 4px rgba(59, 37, 23, 0.18));
  transform: translate3d(0, 0, 0) rotate(var(--bean-rotation)) scaleX(var(--bean-mirror));
  animation: about-bean-fall var(--bean-duration) linear var(--bean-delay) infinite;
  will-change: transform, opacity;
}

.about-beans:not(.is-ready) .about-bean {
  animation-play-state: paused;
  opacity: 0 !important;
}

@keyframes about-bean-fall {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(var(--bean-rotation)) scaleX(var(--bean-mirror));
  }

  8% {
    opacity: var(--bean-opacity);
  }

  48% {
    transform: translate3d(var(--bean-drift), calc(var(--fall-distance) * 0.48), 0) rotate(calc(var(--bean-rotation) + var(--bean-turn))) scaleX(var(--bean-mirror));
  }

  92% {
    opacity: var(--bean-opacity);
  }

  100% {
    opacity: 0;
    transform: translate3d(calc(var(--bean-drift) * -0.45), var(--fall-distance), 0) rotate(calc(var(--bean-rotation) + var(--bean-turn) + 80deg)) scaleX(var(--bean-mirror));
  }
}

.about-heading .section-kicker {
  margin-bottom: 16px;
}

.about-story {
  position: relative;
  display: grid;
  gap: clamp(28px, 4vw, 46px);
}

.about-story::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, rgba(138, 106, 79, 0), rgba(138, 106, 79, 0.34) 14%, rgba(138, 106, 79, 0.34) 86%, rgba(138, 106, 79, 0));
  transform: translateX(-50%);
  pointer-events: none;
}

.about-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
  width: min(1040px, 100%);
  justify-self: start;
  padding: clamp(18px, 2vw, 26px);
  background: linear-gradient(135deg, #6f533d 0%, #4f3a2c 100%);
  border: 1px solid rgba(241, 215, 173, 0.22);
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(42, 32, 24, 0.16);
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 680ms ease, transform 680ms ease, box-shadow 260ms ease;
  will-change: opacity, transform;
}

.about-row::before,
.about-row::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.about-row::before {
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 16px;
  height: 16px;
  background: #f1d7ad;
  border: 4px solid #fffaf2;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(138, 106, 79, 0.3), 0 10px 24px rgba(42, 32, 24, 0.18);
  transform: translate(-50%, -50%);
}

.about-row::after {
  top: 50%;
  left: 50%;
  z-index: 0;
  width: min(9vw, 92px);
  height: 2px;
  background: linear-gradient(90deg, rgba(138, 106, 79, 0.38), rgba(138, 106, 79, 0));
  transform: translateY(-50%);
}

.about-row:nth-child(even)::after {
  right: 50%;
  left: auto;
  background: linear-gradient(90deg, rgba(138, 106, 79, 0), rgba(138, 106, 79, 0.38));
}

.about-row:nth-child(even) {
  justify-self: end;
}

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

.about-row-reverse .about-text {
  order: 2;
}

.about-row-reverse .about-photo {
  order: 1;
}

.about-text {
  position: relative;
  z-index: 2;
  padding: 0;
  min-width: 0;
}

.about-text::before {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  margin-bottom: 16px;
  background: #f1d7ad;
}

.about-text span {
  display: block;
  margin-bottom: 10px;
  color: #f1d7ad;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-text p {
  color: #fff7ec;
  font-size: clamp(17px, 1.26vw, 20px);
  line-height: 1.55;
}

.about-photo {
  margin: 0;
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  min-height: clamp(230px, 27vw, 300px);
  overflow: hidden;
  border-radius: 6px;
  background: #d8c5ad;
  box-shadow: 0 18px 38px rgba(42, 32, 24, 0.2);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 760ms ease, transform 760ms ease, box-shadow 260ms ease;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 32, 24, 0) 58%, rgba(42, 32, 24, 0.18));
  pointer-events: none;
}

.about-photo.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(230px, 27vw, 300px);
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1100ms ease;
  will-change: transform;
}

.about-photo.is-visible img {
  transform: scale(1.02);
}

.about-photo:hover {
  box-shadow: 0 24px 50px rgba(42, 32, 24, 0.24);
}

.about-photo:hover img {
  transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
  .about-bean {
    display: none;
    animation: none;
  }

  .about-row,
  .about-photo,
  .about-photo img {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

.metrics-section {
  position: relative;
  background:
    linear-gradient(90deg, rgba(31, 23, 18, 0.9) 0%, rgba(31, 23, 18, 0.62) 44%, rgba(31, 23, 18, 0.72) 100%),
    url("../img/optimized/artes/Estrutura/agbs.webp?v=20260528-opt01") center / cover no-repeat;
  color: #ffffff;
}

.metrics-section h2,
.metrics-section .section-kicker {
  color: #f6efe4;
}

.metrics-section .section-heading {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  margin-bottom: clamp(30px, 4vw, 46px);
}

.metrics-section .section-heading h2 {
  grid-column: 2;
}

.metrics-photo {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 310px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(241, 215, 173, 0.2);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.22);
}

.metrics-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 23, 18, 0.06), rgba(31, 23, 18, 0.78)),
    linear-gradient(90deg, rgba(31, 23, 18, 0.18), transparent 58%);
  pointer-events: none;
}

.metrics-photo video,
.metrics-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  transform: scale(1.02);
}

.metrics-photo figcaption {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 1;
  color: #f6efe4;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: 38px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr 0.88fr;
  gap: 16px;
  background: transparent;
  border: 0;
}

.metrics-grid article {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.105), rgba(255, 250, 242, 0.035));
  border: 1px solid rgba(241, 215, 173, 0.2);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.12);
}

.metrics-grid article::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(241, 215, 173, 0.16);
  border-radius: 50%;
}

.metrics-grid article:first-child {
  grid-row: span 2;
  min-height: 456px;
  background:
    linear-gradient(145deg, rgba(199, 170, 130, 0.22), rgba(111, 83, 61, 0.1)),
    rgba(255, 250, 242, 0.055);
}

.metrics-grid article:nth-child(2) {
  grid-column: span 2;
}

.metrics-grid strong {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 24px;
  color: #f1d7ad;
  line-height: 1;
}

.metrics-grid b {
  font-size: clamp(44px, 5.3vw, 76px);
  line-height: 1;
}

.metrics-grid em {
  color: rgba(246, 239, 228, 0.72);
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.metrics-grid span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.metrics-grid p {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 18px 0 0;
  color: rgba(246, 239, 228, 0.66);
  font-size: 15px;
  line-height: 1.5;
}

.metrics-grid .metric-kicker {
  margin-top: 0;
  color: #f1d7ad;
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.78;
}

.metric-date {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  padding: 8px 12px;
  color: #2a2018;
  background: #f1d7ad;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 12px;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.services-list li,
.group-list article {
  position: relative;
  min-height: 72px;
  padding: 20px 24px 20px 54px;
  background: #fffaf2;
  border: 1px solid rgba(138, 106, 79, 0.18);
}

.services-list li {
  min-height: auto;
  overflow: hidden;
  padding: 18px 22px 18px 70px;
  background: rgba(246, 239, 228, 0.52);
  border: 1px solid rgba(138, 106, 79, 0.14);
  border-radius: 4px;
  color: #2a2018;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 800;
  line-height: 1.25;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.services-list li:hover {
  background: #fffaf2;
  border-color: rgba(138, 106, 79, 0.32);
  transform: translateX(3px);
}

.services-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: #8a6a4f;
  border-radius: 4px 0 0 4px;
}

.services-list li::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  width: 28px;
  height: 28px;
  background: url("../img/favicon/cafe/cafezin-marrom.png") center / contain no-repeat;
  transform: translateY(-50%);
}

.services-list li span {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 720px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
  gap: 18px;
  min-height: 360px;
}

.gallery-grid div {
  min-width: 0;
  min-height: 280px;
  background:
    linear-gradient(rgba(42, 32, 24, 0.12), rgba(42, 32, 24, 0.32)),
    linear-gradient(135deg, #c7aa82, #5f4a39);
}

.gallery-grid div:first-child {
  grid-row: span 2;
}

.coffee-market-section {
  background:
    var(--agbs-light-grid-x),
    var(--agbs-light-grid-y),
    linear-gradient(180deg, #fffaf2 0%, #f1e2cc 100%);
  background-position: top center;
  background-size: var(--agbs-light-grid-size), var(--agbs-light-grid-size), auto;
  border-top: 1px solid rgba(138, 106, 79, 0.16);
  border-bottom: 1px solid rgba(138, 106, 79, 0.16);
}

.coffee-market-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(340px, 1.18fr);
  gap: clamp(28px, 4.8vw, 64px);
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.coffee-market-copy {
  position: relative;
  padding-left: 0;
}

.coffee-market-copy::before {
  display: none;
}

.coffee-market-copy h2 {
  max-width: 560px;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1.06;
}

.coffee-market-copy h2 span {
  display: block;
  color: #8a6a4f;
}

.coffee-market-copy h2::after {
  content: "";
  display: block;
  width: 86px;
  height: 4px;
  margin-top: 18px;
  background: #8a6a4f;
  border-radius: 999px;
}

.coffee-market-copy p {
  max-width: 520px;
  margin-top: 18px;
  color: #5f5043;
  font-size: clamp(18px, 1.35vw, 21px);
}

.coffee-market-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  overflow: hidden;
  min-height: 360px;
  padding: clamp(26px, 3vw, 38px);
  color: #2a2018;
  background:
    linear-gradient(90deg, #6f533d 0 10px, transparent 10px),
    radial-gradient(circle at 92% 12%, rgba(111, 83, 61, 0.14), transparent 25%),
    linear-gradient(135deg, #fffaf2 0%, #f3dfbd 100%);
  border: 1px solid rgba(111, 83, 61, 0.28);
  border-radius: 8px;
  box-shadow: 0 26px 58px rgba(42, 32, 24, 0.16);
}

.coffee-market-card::after {
  content: "AGBS";
  position: absolute;
  right: -18px;
  bottom: -22px;
  color: rgba(111, 83, 61, 0.08);
  font-size: clamp(78px, 8vw, 126px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.coffee-market-source {
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 10px 18px;
  color: #fff7ec;
  background: #6f533d;
  border-radius: 999px;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.coffee-market-table-main {
  position: relative;
  z-index: 1;
  min-width: 0;
  overflow-x: auto;
}

.coffee-indicator-table {
  width: 100%;
  margin-top: 22px;
  border-collapse: collapse;
  color: #1f1712;
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.25;
}

.coffee-indicator-table thead {
  color: #6f533d;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.coffee-indicator-table th,
.coffee-indicator-table td {
  padding: 10px 12px;
  text-align: center;
  border-bottom: 1px solid rgba(111, 83, 61, 0.22);
  white-space: nowrap;
}

.coffee-indicator-table thead th {
  border-bottom: 6px solid rgba(111, 83, 61, 0.18);
}

.coffee-indicator-table tbody tr.is-current {
  color: #fff7ec;
  background: #6f533d;
  font-weight: 900;
}

.coffee-indicator-table tbody tr.is-current td:nth-child(2) {
  color: #f1d7ad;
}

.coffee-indicator-table .currency-real {
  color: #6f533d;
  font-weight: 900;
}

.coffee-indicator-table .currency-dollar {
  color: #1f5f78;
  font-weight: 900;
}

.coffee-indicator-table tbody tr.is-current .currency-real {
  color: #f1d7ad;
}

.coffee-indicator-table tbody tr.is-current .currency-dollar {
  color: #bfe8f6;
}

.coffee-indicator-table .variation-positive {
  color: #1f8f45;
  font-weight: 900;
}

.coffee-indicator-table .variation-negative {
  color: #b7322c;
  font-weight: 900;
}

.coffee-indicator-table tbody tr.is-current .variation-positive {
  color: #8ee6a4;
}

.coffee-indicator-table tbody tr.is-current .variation-negative {
  color: #ffb4aa;
}

.coffee-table-foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 6px solid rgba(111, 83, 61, 0.18);
  color: #4f3a2c;
  font-size: 12px;
  font-weight: 800;
}

.coffee-market-links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding-top: 12px;
  border-top: 1px solid rgba(111, 83, 61, 0.18);
}

.coffee-market-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #fff7ec;
  background: #6f533d;
  border: 1px solid #6f533d;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.coffee-market-links a:hover {
  color: #2a2018;
  background: #f1d7ad;
  border-color: #f1d7ad;
}

.state-prices {
  width: min(1120px, 100%);
  margin: clamp(38px, 5vw, 64px) auto 0;
  padding-top: clamp(28px, 4vw, 42px);
  border-top: 1px solid rgba(138, 106, 79, 0.18);
}

.state-prices-heading {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 22px;
}

.state-prices-heading h3 {
  margin: 0;
  color: #2a2018;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.state-prices-heading p,
.state-prices-source {
  margin: 0;
  color: #65584c;
  font-size: 15px;
  line-height: 1.5;
}

.state-price-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 4px 0 14px;
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.state-price-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: state-price-roll 54s linear infinite;
  will-change: transform;
}

.state-price-carousel:hover .state-price-track {
  animation-play-state: paused;
}

@keyframes state-price-roll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.state-price-card {
  position: relative;
  flex: 0 0 clamp(270px, 30vw, 360px);
  min-height: 138px;
  padding: 18px;
  overflow: hidden;
  background: rgba(255, 250, 242, 0.82);
  border: 1px solid rgba(138, 106, 79, 0.16);
  border-radius: 8px;
}

.state-price-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  margin-bottom: 14px;
  color: #fff7ec;
  background: #8a6a4f;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.state-price-card strong,
.state-price-card em,
.state-price-card small {
  display: block;
}

.state-price-card strong {
  color: #2a2018;
  font-size: 17px;
  line-height: 1.22;
}

.state-price-card em {
  margin-top: 8px;
  color: #6f533d;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.state-price-card small {
  margin-top: 8px;
  color: #65584c;
  font-size: 12px;
  line-height: 1.35;
}

.state-price-card.has-price {
  background: #fffaf2;
  border-color: rgba(138, 106, 79, 0.34);
  box-shadow: 0 16px 34px rgba(42, 32, 24, 0.1);
}

.state-price-card.has-price::after {
  content: "Arábica";
  position: absolute;
  top: 18px;
  right: 16px;
  color: #8a6a4f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.state-price-card.no-price {
  background: rgba(255, 250, 242, 0.46);
}

.state-price-card.no-price span {
  color: #6f533d;
  background: rgba(138, 106, 79, 0.16);
}

.state-price-card.no-price strong {
  color: #7f7468;
  font-size: 15px;
}

.state-prices-source {
  margin-top: 18px;
  padding-left: 14px;
  border-left: 3px solid rgba(138, 106, 79, 0.34);
}

.site-footer {
  position: relative;
  z-index: 30;
  isolation: isolate;
  clear: both;
  overflow-x: clip;
  overflow-y: visible;
  margin-top: 0;
  padding: clamp(56px, 7vw, 86px) 24px 30px;
  color: #f6efe4;
  background: #2a2018;
  border-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(210px, 0.9fr) minmax(190px, 0.7fr) minmax(130px, 0.52fr) minmax(140px, 0.52fr) minmax(220px, 1fr);
  column-gap: clamp(22px, 3vw, 48px);
  row-gap: 34px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-bottom: clamp(48px, 6vw, 76px);
  border-bottom: 0;
}

.footer-grid > * {
  min-width: 0;
}

.footer-brand img {
  display: block;
  width: min(250px, 68vw);
  height: auto;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  border-radius: 18px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.footer-brand-link:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

.footer-brand-link:focus-visible {
  outline: 3px solid rgba(241, 215, 173, 0.9);
  outline-offset: 6px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 12px;
  color: #f1d7ad;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-social-group h2 {
  margin: 0 0 16px;
  color: #f1d7ad;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.footer-social-group {
  justify-items: center;
  min-width: 210px;
}

.footer-column a,
.footer-column span {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.5;
}

.footer-column a:hover {
  color: #f1d7ad;
}

.footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  flex: 0 0 auto;
  max-width: 220px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #f6efe4;
  background: rgba(255, 250, 242, 0.04);
  border: 1px solid rgba(241, 215, 173, 0.48);
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.footer-social a:hover {
  color: #2a2018;
  background: #f1d7ad;
  border-color: #f1d7ad;
  transform: translateY(-1px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social a:first-child svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.footer-social a[href*="wa.me"] svg {
  width: 19px;
  height: 19px;
}

.footer-contact {
  width: 100%;
  max-width: 430px;
  min-width: 0;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.footer-contact-link,
.footer-address {
  display: inline-grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  max-width: 100%;
}

.footer-contact-link span,
.footer-address span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.footer-contact-link svg,
.footer-address svg {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  fill: none;
  stroke: #f1d7ad;
  stroke-width: 2;
}

.footer-bottom {
  width: min(760px, 100%);
  margin: 0 auto;
  padding-top: 26px;
  border-top: 1px solid rgba(241, 215, 173, 0.18);
  color: rgba(246, 239, 228, 0.84);
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}

.footer-bottom span {
  display: block;
}

.footer-bottom span + span {
  margin-top: 8px;
}

.footer-credit {
  color: rgba(246, 239, 228, 0.7);
  font-size: 10px;
}

.footer-legal-links {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  margin-top: 12px;
}

.footer-legal-links a {
  color: #f1d7ad;
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}

.footer-link-divider {
  color: rgba(241, 215, 173, 0.68);
  font-weight: 600;
}

.footer-legal-links a:hover {
  color: #fff7ec;
}

.legal-document {
  background:
    var(--agbs-light-grid-x),
    var(--agbs-light-grid-y),
    linear-gradient(180deg, #fffaf2 0%, #f6efe4 100%);
  background-size: var(--agbs-light-grid-size), var(--agbs-light-grid-size), auto;
}

.legal-shell {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 92px) 0;
}

.legal-card {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  padding: clamp(26px, 5vw, 54px);
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(138, 106, 79, 0.16);
  border-radius: clamp(20px, 3vw, 34px);
  box-shadow: 0 28px 70px rgba(42, 32, 24, 0.1);
}

.legal-card header {
  display: grid;
  gap: 14px;
  padding-bottom: clamp(20px, 3vw, 30px);
  border-bottom: 1px solid rgba(138, 106, 79, 0.16);
}

.legal-card h2 {
  margin: 0;
  color: #2a2018;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.legal-card .legal-updated,
.legal-card .legal-note {
  margin: 0;
  color: #6f533d;
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.6;
  font-weight: 700;
}

.legal-section {
  display: grid;
  gap: 10px;
}

.legal-section h3 {
  margin: 0;
  color: #2a2018;
  font-size: clamp(21px, 2.5vw, 28px);
  line-height: 1.16;
  font-weight: 900;
}

.legal-section p,
.legal-section li {
  color: #5b4634;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.72;
  font-weight: 650;
}

.legal-section p,
.legal-section ul {
  margin: 0;
}

.legal-section ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.legal-contact-box {
  padding: clamp(18px, 3vw, 26px);
  background: #2a2018;
  border-radius: 20px;
  color: #fff7ec;
}

.legal-contact-box p,
.legal-contact-box a {
  color: #fff7ec;
}

.legal-contact-box a {
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(241, 215, 173, 0.7);
  text-underline-offset: 4px;
}

@media (max-width: 1280px) {
  .site-header {
    padding: 0 7vw;
  }

  .market-widget {
    left: 24px;
  }

  .language-switch {
    left: 318px;
  }

  .brand-logo-wrap {
    width: min(17vw, 205px);
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 24px;
  }

  .market-widget {
    top: 94px;
    left: 24px;
    max-width: 282px;
  }

  .language-switch {
    display: none;
  }

  .brand {
    transform: translateX(-50%);
  }

  .menu-toggle {
    position: absolute;
    top: 32px;
    right: 24px;
    display: block;
  }

  .site-header .site-nav,
  .site-header.is-scrolled .site-nav,
  .page .site-nav,
  .page .site-header.is-scrolled .site-nav {
    position: fixed;
    top: 94px;
    left: 14px;
    right: 14px;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    max-height: calc(100vh - 112px);
    padding: 12px;
    overflow-y: auto;
    color: #2a2018;
    background: rgba(255, 250, 242, 0.98);
    border: 1px solid rgba(138, 106, 79, 0.2);
    border-radius: 8px;
    box-shadow: 0 24px 58px rgba(42, 32, 24, 0.22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-menu-open .site-nav,
  .site-header.is-menu-open.is-scrolled .site-nav,
  .page .site-header.is-menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a,
  .site-header.is-scrolled .site-nav a,
  .page .site-header .site-nav a {
    width: 100%;
    min-height: 48px;
    justify-content: flex-start;
    padding: 0 14px;
    color: #2a2018;
    border-radius: 6px;
    font-size: 13px;
    letter-spacing: 0.03em;
    text-shadow: none;
  }

  .site-nav .nav-link.is-active::after {
    display: none;
  }

  .nav-item {
    display: grid;
    gap: 6px;
  }

  .nav-item.has-dropdown::after {
    display: none;
  }

  .nav-dropdown {
    position: static;
    display: grid;
    gap: 6px;
    min-width: 0;
    padding: 8px 0 4px 12px;
    background: rgba(138, 106, 79, 0.06);
    border: 0;
    border-left: 2px solid rgba(138, 106, 79, 0.22);
    border-radius: 6px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown a {
    min-height: 42px;
    padding: 8px 12px 8px 34px;
    font-size: 12px;
    color: #2a2018;
    background: rgba(255, 250, 242, 0.78);
    text-shadow: none;
  }

  .nav-dropdown a::before {
    left: 12px;
    width: 9px;
    height: 9px;
  }
}

@media (max-width: 1080px) {
  .about-bean:nth-child(n + 13) {
    display: none;
  }

  .about-story::before {
    left: 28px;
  }

  .about-row,
  .about-row:nth-child(even) {
    width: min(760px, 100%);
    justify-self: center;
  }

  .about-row {
    grid-template-columns: 1fr;
    padding-left: clamp(22px, 5vw, 34px);
  }

  .about-row::before {
    left: 28px;
  }

  .about-row::after,
  .about-row:nth-child(even)::after {
    right: auto;
    left: 28px;
    width: 52px;
    background: linear-gradient(90deg, rgba(138, 106, 79, 0.42), rgba(138, 106, 79, 0));
  }

  .about-row-reverse .about-text,
  .about-row-reverse .about-photo {
    order: initial;
  }
}

@media (max-width: 860px) {
  .site-header {
    height: 136px;
    padding: 0 24px;
    justify-content: center;
  }

  .brand {
    font-size: 30px;
  }

  .brand-logo-wrap {
    width: min(48vw, 190px);
    height: 58px;
  }

  .brand {
    top: 8px;
  }

  .menu-toggle {
    top: 18px;
  }

  .site-header .site-nav,
  .site-header.is-scrolled .site-nav,
  .page .site-nav,
  .page .site-header.is-scrolled .site-nav {
    top: 136px;
    max-height: calc(100vh - 150px);
  }

  .market-widget {
    top: 78px;
    left: 14px;
    padding: 8px 9px;
    max-width: calc(100% - 28px);
  }

  .market-item {
    min-width: 0;
    padding: 0 10px;
  }

  .market-label {
    font-size: 8.8px;
  }

  .market-note {
    font-size: 8px;
  }

  .market-widget strong {
    font-size: 16px;
  }

  .hero-content {
    width: min(100%, 680px);
    padding: 154px 20px 42px;
  }

  .section-grid,
  .metrics-section .section-heading,
  .metrics-grid,
  .services-list,
  .gallery-grid,
  .coffee-market-panel,
  .footer-grid,
  .about-heading,
  .about-row {
    grid-template-columns: 1fr;
  }

  .metrics-grid article:first-child,
  .metrics-grid article:nth-child(2) {
    grid-row: auto;
    grid-column: auto;
    min-height: 220px;
  }

  .metrics-section .section-heading h2 {
    grid-column: auto;
  }

  .metrics-photo,
  .metrics-photo video,
  .metrics-photo img {
    min-height: 240px;
  }

  .about-heading {
    text-align: left;
    margin-bottom: 34px;
    padding-left: 18px;
  }

  .about-photo,
  .about-photo img {
    min-height: 260px;
  }

  .gallery-grid div:first-child {
    grid-row: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    gap: 30px;
    text-align: left;
  }

  .state-price-card {
    flex-basis: min(76vw, 340px);
  }
}

@media (max-width: 520px) {
  .about-beans {
    display: none;
  }

  .site-header {
    height: 132px;
    padding: 0 16px;
  }

  .site-header.is-scrolled,
  .page .site-header {
    height: 132px;
  }

  .brand-logo-wrap {
    width: min(54vw, 170px);
    height: 56px;
  }

  .menu-toggle {
    position: absolute;
    display: block;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    z-index: 120;
  }

  .site-header .site-nav,
  .site-header.is-scrolled .site-nav,
  .page .site-nav,
  .page .site-header.is-scrolled .site-nav {
    top: 132px;
    left: 10px;
    right: 10px;
    max-height: calc(100vh - 146px);
  }

  .market-widget {
    top: 76px;
    left: 10px;
    max-width: calc(100% - 20px);
    min-height: 56px;
    padding: 6px 7px;
  }

  .site-header.is-menu-open .market-widget {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
  }

  .market-item {
    padding: 0 8px;
  }

  .market-label {
    font-size: 7.8px;
  }

  .market-note {
    font-size: 7.4px;
  }

  .market-widget strong {
    font-size: 14px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    padding: 142px 18px 32px;
  }

  .hero-content h1 {
    font-size: clamp(32px, 10vw, 40px);
    line-height: 1.08;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-button {
    min-height: 56px;
    border-radius: 18px;
    font-size: 18px;
  }

  .hero-kicker {
    font-size: 11px;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
  }

  .hero-arrow-prev {
    left: 10px;
  }

  .hero-arrow-next {
    right: 10px;
  }

  .hero-dots {
    bottom: 18px;
    gap: 6px;
    padding: 8px 11px;
  }

  .hero-dots button {
    width: 10px;
    height: 10px;
  }

  .hero-dots button.is-active {
    width: 24px;
  }

  .state-price-carousel {
    mask-image: linear-gradient(90deg, transparent 0, #000 11%, #000 89%, transparent 100%);
  }

  .section,
  .content-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section h2,
  .page-hero h1 {
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .section-heading h2,
  .about-heading h2,
  .copy-stack h2,
  .coffee-market-copy h2,
  .state-prices-heading h3,
  .page-hero h1,
  .home-coffee-title h2,
  .partners-heading h2 {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.1;
  }

  .about-row {
    width: 100%;
    padding: 18px 16px 16px 22px;
  }

  .about-story::before,
  .about-row::before {
    left: 18px;
  }

  .about-row::after,
  .about-row:nth-child(even)::after {
    left: 18px;
    width: 34px;
  }

  .about-photo,
  .about-photo img,
  .feature-image,
  .feature-image img,
  .feature-image video {
    min-height: 220px;
  }

  .coffee-market-card {
    padding: 18px 14px;
  }

  .coffee-table-foot {
    flex-direction: column;
  }

  .footer-grid {
    padding-bottom: 38px;
  }

  .footer-contact-link,
  .footer-address {
    grid-template-columns: 20px 1fr;
  }
}

@media (max-width: 760px) {
  .about-beans,
  .about-bean {
    display: none !important;
  }

  .menu-toggle {
    position: fixed !important;
    top: max(12px, env(safe-area-inset-top)) !important;
    right: max(12px, env(safe-area-inset-right)) !important;
    z-index: 9999 !important;
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 46px !important;
    height: 46px !important;
    padding: 8px !important;
    background: rgba(255, 250, 242, 0.96) !important;
    border: 2px solid rgba(241, 215, 173, 0.96) !important;
    box-shadow: 0 10px 28px rgba(42, 32, 24, 0.24);
  }

  .menu-toggle span,
  .site-header:not(.is-scrolled) .menu-toggle span,
  .site-header.is-scrolled .menu-toggle span {
    width: 22px;
    height: 2px;
    margin: 3px 0;
    background: #2a2018 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .state-price-track {
    animation: none;
    overflow-x: auto;
    width: auto;
    padding-bottom: 10px;
  }
}

.page {
  background-color: #f6efe4;
  background-image: var(--agbs-light-grid-x), var(--agbs-light-grid-y);
  background-position: top center;
  background-size: var(--agbs-light-grid-size);
}

.page .site-header {
  position: fixed;
  height: 160px;
  background: linear-gradient(180deg, rgba(42, 32, 24, 0.78) 0%, rgba(42, 32, 24, 0.46) 72%, rgba(42, 32, 24, 0.08) 100%);
  border-bottom-color: rgba(241, 215, 173, 0.18);
  box-shadow: 0 18px 38px rgba(24, 16, 11, 0.2);
  backdrop-filter: blur(16px);
}

.page .site-header.is-scrolled {
  height: 132px;
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: rgba(138, 106, 79, 0.08);
  box-shadow: 0 10px 26px rgba(42, 32, 24, 0.08);
}

.page .site-header:not(.is-scrolled) .market-widget {
  color: #fff7ec;
  background: linear-gradient(135deg, rgba(42, 32, 24, 0.76), rgba(61, 48, 37, 0.62));
  border-color: rgba(241, 215, 173, 0.42);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.page .site-header.is-scrolled .market-widget {
  color: #2a2018;
  background: rgba(246, 239, 228, 0.98);
  border-color: rgba(138, 106, 79, 0.26);
  box-shadow: 0 10px 22px rgba(42, 32, 24, 0.08);
}

.page .site-header.is-scrolled .market-widget strong,
.page .site-header.is-scrolled .site-nav a {
  color: #2a2018;
}

.page .site-header:not(.is-scrolled) .market-widget strong {
  color: #f1d7ad;
}

.page .site-header.is-scrolled .market-label {
  color: #7d6046;
}

.page .site-header:not(.is-scrolled) .market-label {
  color: #f0d7b1;
}

.page .site-header.is-scrolled .market-note {
  color: #6f533d;
}

.page .site-header:not(.is-scrolled) .market-note {
  color: #f6efe4;
}

.page .site-header.is-scrolled .language-switch {
  color: #2a2018;
  background: rgba(246, 239, 228, 0.9);
  border-color: rgba(138, 106, 79, 0.22);
}

.page .site-header:not(.is-scrolled) .language-switch {
  color: #fff7ec;
  background: rgba(42, 32, 24, 0.34);
  border-color: rgba(241, 215, 173, 0.34);
}

.page .site-header.is-scrolled .language-switch a.is-active {
  color: #7d6046;
}

.page .site-header:not(.is-scrolled) .language-switch a.is-active {
  color: #f1d7ad;
}

.page .site-header.is-scrolled .language-switch span {
  background: rgba(138, 106, 79, 0.24);
}

.page .site-header:not(.is-scrolled) .language-switch span {
  background: rgba(241, 215, 173, 0.34);
}

.page .site-header:not(.is-scrolled) .brand-logo {
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.28));
}

.page .site-header:not(.is-scrolled) .brand-logo-white {
  opacity: 1;
}

.page .site-header:not(.is-scrolled) .brand-logo-color {
  opacity: 0;
}

.page .site-header.is-scrolled .brand-logo {
  filter: none;
}

.page .site-header.is-scrolled .brand-logo-white {
  opacity: 0;
}

.page .site-header.is-scrolled .brand-logo-color {
  opacity: 1;
}

.page .site-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%);
}

.page .site-header:not(.is-scrolled) .site-nav a {
  color: #fff7ec;
  text-shadow: 0 2px 12px rgba(24, 16, 11, 0.78), 0 0 1px rgba(24, 16, 11, 0.64);
}

.page .site-header.is-scrolled .site-nav a {
  color: #2a2018;
}

.page .site-header:not(.is-scrolled) .menu-toggle span {
  background: #ffffff;
}

.page .site-header.is-scrolled .menu-toggle span {
  background: #2a2018;
}

.page-main {
  padding-top: 0;
}

.page-hero {
  position: relative;
  min-height: max(449px, 52vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(110px, 14vw, 190px) 24px clamp(54px, 7vw, 86px);
  color: #ffffff;
  background: #2a2018;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 23, 18, 0.88), rgba(31, 23, 18, 0.42)),
    var(--page-hero-image);
  background-position: center;
  background-size: cover;
}

.page-hero-inner,
.content-wrap {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.page-hero .section-kicker,
.page-hero h1,
.page-hero p {
  color: #fff7ec;
}

.page-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(42px, 5.3vw, 68px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 690px;
  min-height: 58px;
  margin: 22px 0 0;
  color: rgba(255, 247, 236, 0.84);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  font-weight: 600;
}

.content-section {
  padding: clamp(66px, 8vw, 116px) 24px;
  background-color: #fffaf2;
  background-image: var(--agbs-light-grid-x), var(--agbs-light-grid-y);
  background-position: top center;
  background-size: var(--agbs-light-grid-size);
}

.content-section.alt {
  background-color: #f6efe4;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
}

.copy-stack {
  display: grid;
  gap: 20px;
}

.section-heading,
.about-heading,
.state-prices-heading,
.copy-stack,
.coffee-market-copy,
.page-hero-inner {
  text-align: left;
}

.section-heading h2,
.about-heading h2,
.copy-stack h2,
.coffee-market-copy h2,
.state-prices-heading h3 {
  max-width: 980px;
  margin: 0;
  color: #2a2018;
  font-size: clamp(42px, 5.3vw, 68px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.coffee-market-copy h2 span {
  display: inline;
  color: inherit;
}

.coffee-market-copy h2::after {
  display: none;
}

.metrics-section .section-heading h2 {
  color: #f6efe4;
}

.copy-stack p {
  color: #65584c;
  font-size: 19px;
  line-height: 1.65;
}

.feature-image {
  width: 100%;
  min-width: 0;
  min-height: clamp(240px, 34vw, 360px);
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 22px 50px rgba(42, 32, 24, 0.16);
}

.feature-image img,
.feature-image video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(240px, 34vw, 360px);
  object-fit: cover;
}

.page-cards,
.contact-panels {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-card {
  min-height: 220px;
  padding: 28px;
  background: #fffaf2;
  border: 1px solid rgba(138, 106, 79, 0.16);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(42, 32, 24, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.page-card:hover {
  border-color: rgba(138, 106, 79, 0.3);
  box-shadow: 0 22px 46px rgba(42, 32, 24, 0.1);
  transform: translateY(-2px);
}

.page-card h3 {
  margin: 0 0 14px;
  color: #2a2018;
  font-size: 24px;
}

.page-card p,
.page-card li {
  color: #65584c;
  font-size: 17px;
  line-height: 1.55;
}

.page-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.service-detail {
  scroll-margin-top: 120px;
}

.contact-panels {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-panel {
  padding: 28px;
  color: #fff7ec;
  background: linear-gradient(145deg, #6f533d 0%, #2a2018 82%);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(42, 32, 24, 0.13);
}

.contact-panel h3 {
  margin: 0 0 14px;
  color: #f1d7ad;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-panel a,
.contact-panel span {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.page-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 24px;
  padding: 0 20px;
  color: #ffffff;
  background: #8a6a4f;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.page-action:hover {
  background: #6f533d;
  transform: translateY(-1px);
}

@media (max-width: 860px) {
  .page .site-header {
    height: 136px;
  }

  .page-main {
    padding-top: 0;
  }

  .two-column,
  .page-cards,
  .contact-panels {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 48vh;
  }
}

@media (max-width: 980px) {
  .page .site-header .site-nav,
  .page .site-header.is-scrolled .site-nav {
    display: grid;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
  }

  .page .site-header.is-menu-open .site-nav,
  .page .site-header.is-menu-open.is-scrolled .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 520px) {
  .page .site-header,
  .page .site-header.is-scrolled {
    height: 132px;
  }

  .page-main {
    padding-top: 0;
  }
}

.metrics-section .section-heading h2 {
  max-width: 620px;
  color: #fff7ec;
  font-size: clamp(34px, 4.3vw, 56px);
  line-height: 1.12;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

@media (max-width: 860px) {
  .metrics-section .section-heading h2 {
    max-width: 100%;
    font-size: clamp(32px, 9vw, 42px);
  }
}

@media (max-width: 860px) {
  .site-header .market-widget,
  .page .site-header .market-widget {
    top: 78px;
    left: 12px;
    right: 88px;
    width: auto;
    max-width: none;
    min-height: 58px;
    padding: 7px 8px;
  }

  .site-header .language-switch,
  .site-header.is-scrolled .language-switch,
  .page .site-header .language-switch {
    top: 87px;
    left: auto;
    right: 12px;
    display: inline-flex;
    min-height: 36px;
    padding: 0 8px;
    gap: 6px;
    background: rgba(246, 239, 228, 0.94);
    border-color: rgba(138, 106, 79, 0.24);
  }

  .site-header.is-scrolled .language-switch,
  .page .site-header .language-switch {
    background: rgba(246, 239, 228, 0.94);
  }

  .market-item {
    flex: 1 1 0;
    padding: 0 8px;
  }

  .market-label {
    font-size: clamp(7px, 2.1vw, 8.6px);
  }

  .market-widget strong {
    font-size: clamp(13px, 4vw, 16px);
  }

  .market-note {
    font-size: clamp(6.4px, 1.8vw, 7.8px);
  }

  .language-switch .flag {
    width: 20px;
    height: 14px;
  }
}

@media (max-width: 520px) {
  .site-header .market-widget,
  .page .site-header .market-widget {
    top: 76px;
    left: 8px;
    right: 72px;
    min-height: 52px;
    padding: 6px 6px;
  }

  .site-header .language-switch,
  .site-header.is-scrolled .language-switch,
  .page .site-header .language-switch {
    top: 86px;
    right: 8px;
    min-height: 34px;
    padding: 0 7px;
    gap: 5px;
  }

  .market-item {
    padding: 0 6px;
  }

  .market-widget strong {
    font-size: clamp(12px, 3.9vw, 14px);
  }

  .language-switch .flag {
    width: 18px;
    height: 13px;
  }
}

@media (max-width: 370px) {
  .site-header .market-widget,
  .page .site-header .market-widget {
    right: 64px;
    min-height: 48px;
    padding: 5px;
  }

  .market-item {
    padding: 0 5px;
  }

  .market-label {
    font-size: 6.7px;
  }

  .market-widget strong {
    font-size: 11.5px;
  }

  .market-note {
    font-size: 6px;
  }

  .site-header .language-switch,
  .site-header.is-scrolled .language-switch,
  .page .site-header .language-switch {
    min-height: 32px;
    padding: 0 6px;
  }

  .language-switch .flag {
    width: 17px;
    height: 12px;
  }
}

.site-header:not(.is-scrolled) .nav-dropdown a,
.page .site-header:not(.is-scrolled) .nav-dropdown a,
.site-header.is-scrolled .nav-dropdown a,
.page .site-header.is-scrolled .nav-dropdown a {
  color: #2a2018;
  text-shadow: none;
}

/* Camada global de performance para publicação. */
img,
video {
  max-width: 100%;
  height: auto;
}

img[loading="lazy"] {
  content-visibility: auto;
}

.content-section,
.section,
.partners-section,
.coffee-products-section,
.metrics-section,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 760px;
}

.page-hero,
.hero,
.footer {
  contain: layout paint style;
}

.page-card,
.service-card,
.service-area-card,
.partner-card,
.quality-process-card,
.logistics-process-card,
.commercial-process-card,
.state-price-card,
.coffee-market-card,
.contact-panel,
.careers-form-card,
.footer-column {
  contain: content;
}

.hero-media,
.page-hero::before,
.page-hero::after {
  transform: translateZ(0);
}

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

  .about-bean,
  .structure-bean,
  .hero-video,
  .state-prices-track,
  .agro-news-track {
    animation: none !important;
  }
}

@media (prefers-reduced-data: reduce), (max-width: 520px) {
  .hero-media,
  .page-hero,
  .quality-hero-visual,
  .structure-hero-visual {
    filter: none !important;
  }
}

@supports not (content-visibility: auto) {
  .content-section,
  .section,
  .partners-section,
  .coffee-products-section,
  .metrics-section,
  .footer {
    contain: layout paint;
  }
}

/* Camada responsiva expansiva: celular pequeno, tablet, notebook e telas grandes. */
:root {
  --agbs-gutter: clamp(16px, 4vw, 56px);
  --agbs-content-max: 1320px;
  --agbs-readable-max: 760px;
}

body {
  overflow-x: clip;
}

.content-wrap,
.page-hero-inner,
.section-grid,
.section-heading,
.about-heading,
.about-row,
.metrics-section .section-heading,
.coffee-market-grid,
.footer-grid {
  width: min(var(--agbs-content-max), calc(100% - (var(--agbs-gutter) * 2)));
}

.section,
.content-section,
.partners-section,
.coffee-products-section,
.metrics-section,
.careers-application-section,
.footer {
  padding-right: var(--agbs-gutter);
  padding-left: var(--agbs-gutter);
}

.section-heading,
.page-hero-inner,
.hero-content,
.careers-application-copy,
.coffee-market-copy {
  text-wrap: balance;
}

p,
li,
.page-hero p,
.hero-content p {
  overflow-wrap: anywhere;
}

figure,
picture,
.feature-image,
.about-photo,
.metrics-photo,
.story-step-media,
.story-closing-media,
.service-card figure,
.service-area-card figure,
.quality-process-card figure,
.logistics-process-card figure,
.commercial-process-card figure,
.warehouse-gallery figure,
.sorter-gallery figure,
.careers-feature-photo {
  max-width: 100%;
  min-width: 0;
}

figure > img,
figure > video,
.feature-image img,
.feature-image video,
.about-photo img,
.metrics-photo img,
.metrics-photo video,
.service-card img,
.service-area-card img,
.quality-process-card img,
.quality-process-card video,
.logistics-process-card img,
.commercial-process-card img,
.warehouse-gallery img,
.sorter-gallery img,
.careers-feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-card,
.service-card,
.service-area-card,
.partner-card,
.quality-process-card,
.logistics-process-card,
.commercial-process-card,
.state-price-card,
.coffee-market-card,
.contact-panel,
.careers-form-card,
.careers-application,
.footer-column {
  min-width: 0;
}

.site-header {
  padding-right: clamp(16px, 5vw, 96px);
  padding-left: clamp(16px, 5vw, 96px);
}

.site-nav {
  width: min(900px, calc(100% - 48px));
  justify-content: center;
}

.hero-content {
  width: min(920px, calc(100% - (var(--agbs-gutter) * 2)));
}

.hero-content h1,
.page-hero h1,
.section h2,
.section-heading h2 {
  overflow-wrap: anywhere;
}

@media (min-width: 1440px) {
  :root {
    --agbs-content-max: 1360px;
    --agbs-gutter: clamp(42px, 5vw, 86px);
  }

  .hero-content {
    width: min(1080px, calc(100% - (var(--agbs-gutter) * 2)));
  }

  .hero-content h1 {
    font-size: clamp(64px, 4.7vw, 88px);
  }

  .page-hero h1,
  .section h2,
  .section-heading h2 {
    font-size: clamp(56px, 4.6vw, 82px);
  }
}

@media (min-width: 1920px) {
  :root {
    --agbs-content-max: 1480px;
  }

  .hero,
  .page-hero {
    min-height: min(980px, 100svh);
  }

  .footer-grid {
    width: min(1380px, calc(100% - (var(--agbs-gutter) * 2)));
  }
}

@media (max-width: 1180px) {
  :root {
    --agbs-gutter: clamp(18px, 4.4vw, 44px);
  }

  .site-header {
    padding-right: clamp(14px, 3vw, 34px);
    padding-left: clamp(14px, 3vw, 34px);
  }

  .site-nav {
    width: min(760px, calc(100% - 40px));
    gap: clamp(4px, 0.8vw, 10px);
  }

  .footer-grid {
    grid-template-columns: minmax(240px, 1fr) repeat(2, minmax(170px, 0.75fr)) minmax(260px, 1fr);
  }
}

@media (max-width: 980px) {
  :root {
    --agbs-gutter: clamp(16px, 5vw, 32px);
  }

  .hero,
  .page-hero {
    min-height: 100svh;
  }

  .page-hero {
    align-items: end;
    padding-top: clamp(168px, 28svh, 250px);
    padding-bottom: clamp(46px, 9vw, 74px);
  }

  .hero-content,
  .page-hero-inner {
    width: min(720px, calc(100% - (var(--agbs-gutter) * 2)));
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: clamp(36px, 8.5vw, 58px);
    line-height: 1.06;
  }

  .hero-content p,
  .page-hero p {
    max-width: 62ch;
    font-size: clamp(16px, 3.6vw, 20px);
  }

  .section,
  .content-section,
  .partners-section,
  .coffee-products-section,
  .metrics-section,
  .careers-application-section {
    padding-top: clamp(54px, 10vw, 82px);
    padding-bottom: clamp(54px, 10vw, 82px);
  }
}

@media (max-width: 640px) {
  :root {
    --agbs-gutter: clamp(14px, 4.8vw, 22px);
  }

    .hero-content,
    .page-hero-inner,
    .content-wrap,
  .section-grid,
  .section-heading,
  .about-heading,
  .about-row,
  .footer-grid {
    width: min(100%, calc(100% - (var(--agbs-gutter) * 2)));
  }

  .hero-content {
    align-items: flex-start;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: clamp(29px, 9.2vw, 38px);
    letter-spacing: 0;
  }

  .section h2,
  .section-heading h2,
  .metrics-section .section-heading h2,
  .careers-application-copy h2 {
    font-size: clamp(30px, 9.8vw, 42px);
    line-height: 1.08;
  }

  .hero-button,
  .button,
  button,
  input,
  select,
  textarea {
    max-width: 100%;
  }

  .footer-grid {
    text-align: left;
  }
}

@media (max-width: 390px) {
  :root {
    --agbs-gutter: 12px;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: clamp(28px, 10.8vw, 36px);
  }

  .hero-content p,
  .page-hero p,
  .section p {
    font-size: 15.5px;
  }

  .hero-button {
    min-width: 0;
    width: 100%;
  }

  .section,
  .content-section,
  .partners-section,
  .coffee-products-section,
  .metrics-section,
  .careers-application-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

@media (max-height: 560px) and (orientation: landscape) {
  .hero,
  .page-hero {
    min-height: 620px;
  }

  .hero-content,
  .page-hero-inner {
    padding-top: 130px;
    padding-bottom: 42px;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: clamp(34px, 6vw, 52px);
  }
}

/* Correções finais do mobile: menu sólido e conteúdo sempre dentro da tela. */
@media (max-width: 980px) {
  .site-header .site-nav,
  .site-header.is-scrolled .site-nav,
  .page .site-header .site-nav,
  .page .site-header.is-scrolled .site-nav,
  .page .site-nav {
    position: fixed;
    top: clamp(108px, 15svh, 138px);
    right: max(10px, env(safe-area-inset-right));
    left: max(10px, env(safe-area-inset-left));
    width: auto;
    max-width: none;
    max-height: calc(100svh - clamp(124px, 18svh, 154px));
    grid-template-columns: 1fr;
    gap: 7px;
    padding: clamp(12px, 3.5vw, 18px);
    overflow-x: hidden;
    overflow-y: auto;
    background: #fffaf2;
    border: 1px solid rgba(138, 106, 79, 0.2);
    border-radius: clamp(14px, 4vw, 22px);
    box-shadow: 0 24px 70px rgba(42, 32, 24, 0.26);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -10px, 0);
    z-index: 80;
  }

  .site-header.is-menu-open .site-nav,
  .site-header.is-menu-open.is-scrolled .site-nav,
  .page .site-header.is-menu-open .site-nav,
  .page .site-header.is-menu-open.is-scrolled .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .site-nav > .nav-link,
  .site-nav > .nav-item,
  .site-nav > .nav-item > .nav-link,
  .site-nav > .nav-link:nth-child(1),
  .site-nav > .nav-link:nth-child(2),
  .site-nav > .nav-link:nth-child(3),
  .site-nav > .nav-link:nth-child(5),
  .site-nav > .nav-link:nth-child(6),
  .site-nav > .nav-link:nth-child(7) {
    width: 100%;
    min-width: 0;
  }

  .site-nav a,
  .site-header.is-scrolled .site-nav a,
  .page .site-header .site-nav a,
  .page .site-header.is-scrolled .site-nav a {
    width: 100%;
    min-height: clamp(44px, 10vw, 52px);
    justify-content: flex-start;
    padding: 0 clamp(14px, 4vw, 18px);
    color: #2a2018;
    background: transparent;
    border-radius: 12px;
    font-size: clamp(12px, 3.4vw, 14px);
    line-height: 1.15;
    text-shadow: none;
    white-space: normal;
  }

  .site-nav .nav-link.is-active,
  .site-nav a:hover {
    background: rgba(202, 161, 107, 0.15);
    transform: none;
  }

  .nav-item {
    width: 100%;
    min-width: 0;
  }

  .nav-dropdown {
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 0;
    padding: 8px;
    background: rgba(246, 239, 228, 0.92);
    border: 1px solid rgba(202, 161, 107, 0.18);
    border-radius: 14px;
  }

  .nav-dropdown a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.62);
  }

  .nav-dropdown a::before {
    display: none;
  }

  .menu-toggle {
    z-index: 90;
  }
}

@media (max-width: 520px) {
  .site-header .site-nav,
  .site-header.is-scrolled .site-nav,
  .page .site-header .site-nav,
  .page .site-header.is-scrolled .site-nav,
  .page .site-nav {
    top: 128px;
    right: 8px;
    left: 8px;
    max-height: calc(100svh - 138px);
    padding: 12px;
  }

  .hero-content {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    padding-right: 0;
    padding-left: 0;
    overflow: hidden;
  }

  .hero-content h1 {
    min-height: 0;
    max-width: 100%;
    font-size: clamp(30px, 9.6vw, 38px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    overflow-wrap: anywhere;
  }

  .hero-content p {
    min-height: 0;
    max-width: 100%;
    font-size: clamp(15px, 4.2vw, 17px);
    overflow-wrap: anywhere;
  }

  .hero-arrow {
    top: auto;
    bottom: 84px;
    transform: none;
  }
}

/* Mobile: topo completo como no layout aprovado, com menu acessível. */
@media (max-width: 760px) {
  .about-beans,
  .about-bean {
    display: none !important;
  }

  .site-header,
  .site-header.is-scrolled,
  .page .site-header,
  .page .site-header.is-scrolled {
    position: fixed;
    height: 148px;
    padding: 0 10px;
    background: linear-gradient(180deg, rgba(42, 32, 24, 0.94) 0%, rgba(42, 32, 24, 0.82) 78%, rgba(42, 32, 24, 0.55) 100%);
    border-bottom: 1px solid rgba(241, 215, 173, 0.22);
    box-shadow: 0 14px 34px rgba(24, 16, 11, 0.2);
    backdrop-filter: blur(14px);
  }

  .site-header.is-scrolled,
  .page .site-header.is-scrolled {
    position: fixed;
    height: 88px;
    background: linear-gradient(180deg, rgba(42, 32, 24, 0.96) 0%, rgba(42, 32, 24, 0.88) 100%);
  }

  .site-header.is-scrolled .brand,
  .page .site-header.is-scrolled .brand {
    top: 8px;
  }

  .site-header.is-scrolled .brand-logo-wrap,
  .page .site-header.is-scrolled .brand-logo-wrap {
    width: min(42vw, 150px);
    height: 56px;
  }

  .site-header.is-scrolled .market-widget,
  .page .site-header.is-scrolled .market-widget,
  .site-header.is-scrolled .language-switch,
  .page .site-header.is-scrolled .language-switch {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
  }

  .site-header.is-scrolled .menu-toggle,
  .page .site-header.is-scrolled .menu-toggle {
    top: 20px !important;
  }

  .site-header .brand,
  .site-header.is-scrolled .brand,
  .page .site-header .brand {
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
  }

  .site-header .brand-logo-wrap,
  .site-header.is-scrolled .brand-logo-wrap,
  .page .site-header .brand-logo-wrap {
    width: min(45vw, 166px);
    height: 64px;
  }

  .site-header .brand-logo-white,
  .site-header.is-scrolled .brand-logo-white,
  .page .site-header .brand-logo-white {
    opacity: 1;
  }

  .site-header .brand-logo-color,
  .site-header.is-scrolled .brand-logo-color,
  .page .site-header .brand-logo-color {
    opacity: 0;
  }

  .menu-toggle,
  .site-header.is-scrolled .menu-toggle,
  .page .menu-toggle {
    position: absolute !important;
    top: 28px !important;
    right: 16px !important;
    z-index: 120 !important;
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px !important;
    height: 44px !important;
    padding: 8px !important;
    background: rgba(42, 32, 24, 0.32) !important;
    border: 1px solid rgba(241, 215, 173, 0.72) !important;
    border-radius: 999px;
  }

  .menu-toggle span,
  .site-header:not(.is-scrolled) .menu-toggle span,
  .site-header.is-scrolled .menu-toggle span,
  .page .menu-toggle span {
    width: 22px;
    height: 2px;
    margin: 3px 0;
    background: #fff7ec !important;
  }

  .market-widget,
  .site-header.is-scrolled .market-widget {
    display: flex;
    top: 92px;
    left: 8px;
    right: 74px;
    width: auto;
    max-width: none;
    min-height: 52px;
    padding: 6px 8px;
    color: #fff7ec;
    background: linear-gradient(135deg, rgba(42, 32, 24, 0.76), rgba(61, 48, 37, 0.62));
    border-color: rgba(241, 215, 173, 0.42);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .market-item {
    padding: 0 8px;
  }

  .market-label,
  .site-header.is-scrolled .market-label {
    color: #f0d7b1;
    font-size: 7.8px;
  }

  .market-note,
  .site-header.is-scrolled .market-note {
    color: #f6efe4;
    font-size: 7px;
  }

  .market-widget strong,
  .site-header.is-scrolled .market-widget strong {
    color: #f1d7ad;
    font-size: clamp(13px, 4vw, 16px);
  }

  .language-switch,
  .site-header.is-scrolled .language-switch {
    display: inline-flex;
    top: 101px;
    right: 8px;
    left: auto;
    min-height: 34px;
    padding: 0 7px;
    background: rgba(42, 32, 24, 0.34);
    border-color: rgba(241, 215, 173, 0.34);
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-header .site-nav,
  .page .site-header .site-nav,
  .page .site-nav {
    position: fixed;
    top: 156px;
    right: 8px;
    left: 8px;
    z-index: 110;
    max-height: calc(100svh - 166px);
  }

  .site-header.is-scrolled .site-nav,
  .page .site-header.is-scrolled .site-nav {
    top: 96px;
    max-height: calc(100svh - 106px);
  }
}

/* Rodape mobile: todo o conteudo precisa caber sem corte horizontal. */
@media (max-width: 760px) {
  .site-footer {
    overflow: visible;
    padding: 44px 18px 48px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 430px;
    gap: 28px;
    padding-bottom: 34px;
    text-align: center;
  }

  .footer-brand,
  .footer-column,
  .footer-social-group,
  .footer-contact {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    justify-items: center;
    align-items: center;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-brand img {
    width: min(280px, 82vw);
  }

  .footer-social {
    display: flex;
    width: min(260px, 100%);
    max-width: 100%;
    justify-content: center;
    gap: 12px;
  }

  .footer-social a {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
  }

  .footer-contact-link,
  .footer-address {
    grid-template-columns: 22px minmax(0, 1fr);
    width: 100%;
    max-width: 330px;
    justify-self: center;
    text-align: left;
  }

  .footer-contact-link span,
  .footer-address span {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .footer-bottom {
    width: 100%;
    max-width: 390px;
    padding-top: 24px;
  }

  .footer-legal-links {
    gap: 8px 14px;
    margin-top: 8px;
  }
}

/* Topo mobile final: fixo, compacto ao entrar e ao rolar. */
@media (max-width: 760px) {
  .site-header,
  .page .site-header {
    height: 132px !important;
  }

  .site-header .brand,
  .page .site-header .brand {
    top: 10px !important;
  }

  .site-header .brand-logo-wrap,
  .page .site-header .brand-logo-wrap {
    width: min(42vw, 154px) !important;
    height: 56px !important;
  }

  .site-header .menu-toggle,
  .page .site-header .menu-toggle {
    top: 18px !important;
    right: 16px !important;
  }

  .site-header .market-widget,
  .page .site-header .market-widget {
    top: 76px !important;
    left: 10px !important;
    right: 82px !important;
    min-height: 44px !important;
  }

  .site-header .language-switch,
  .page .site-header .language-switch {
    top: 82px !important;
    right: 10px !important;
  }

  .site-header.is-scrolled,
  .page .site-header.is-scrolled {
    height: 84px !important;
    background: linear-gradient(180deg, rgba(42, 32, 24, 0.98) 0%, rgba(42, 32, 24, 0.9) 100%) !important;
  }

  .site-header.is-scrolled .brand,
  .page .site-header.is-scrolled .brand {
    top: 8px !important;
  }

  .site-header.is-scrolled .brand-logo-wrap,
  .page .site-header.is-scrolled .brand-logo-wrap {
    width: min(42vw, 150px) !important;
    height: 56px !important;
  }

  .site-header.is-scrolled .market-widget,
  .page .site-header.is-scrolled .market-widget,
  .site-header.is-scrolled .language-switch,
  .page .site-header.is-scrolled .language-switch {
    display: none !important;
  }

  .site-header.is-scrolled .menu-toggle,
  .page .site-header.is-scrolled .menu-toggle {
    top: 20px !important;
  }

  .site-header .site-nav,
  .page .site-header .site-nav,
  .page .site-nav {
    top: 140px !important;
  }

  .site-header.is-scrolled .site-nav,
  .page .site-header.is-scrolled .site-nav {
    top: 92px !important;
  }
}
