:root {
  --ink: #132d24;
  --ink-2: #264238;
  --leaf: #2f6b47;
  --leaf-deep: #15392b;
  --sage: #dfeadf;
  --sage-2: #eef4ed;
  --gold: #f0a83b;
  --gold-deep: #c87d16;
  --cream: #fbf7ee;
  --paper: #fffdf9;
  --white: #ffffff;
  --muted: #69756f;
  --line: rgba(19, 45, 36, 0.13);
  --shadow-sm: 0 12px 35px rgba(20, 45, 35, 0.09);
  --shadow-lg: 0 30px 80px rgba(15, 42, 31, 0.18);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 36px;
  --container: 1240px;
  --header-height: 132px;
  --parallax-y: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.drawer-open,
body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--leaf);
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

p,
h1,
h2,
h3,
dl,
dd,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.9rem, 7vw, 7.6rem);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2.55rem, 4.2vw, 4.6rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  letter-spacing: -0.025em;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(90px, 10vw, 150px) 0;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 14px;
  left: 14px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold-deep);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.25;
}

.eyebrow--light {
  color: #ffc76f;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  box-shadow: none;
  transform: none;
}

.button:focus-visible,
.icon-button:focus-visible,
.menu-button:focus-visible,
.filter-button:focus-visible,
.dialog-close:focus-visible,
.back-to-top:focus-visible {
  outline: 3px solid rgba(240, 168, 59, 0.45);
  outline-offset: 4px;
}

.button--gold {
  color: #251909;
  background: var(--gold);
  box-shadow: 0 14px 30px rgba(240, 168, 59, 0.24);
}

.button--gold:hover {
  background: #f8b74f;
  box-shadow: 0 18px 34px rgba(240, 168, 59, 0.32);
}

.button--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--leaf-deep);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: gap 0.2s ease, color 0.2s ease;
}

.text-link:hover {
  gap: 15px;
  color: var(--gold-deep);
}

.text-link--light {
  color: var(--white);
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(50px, 7vw, 82px);
}

.section-heading h2 {
  margin-bottom: 22px;
}

.section-heading > p:last-child {
  color: var(--muted);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 80px;
}

.section-heading--split h2 {
  margin-bottom: 0;
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  color: var(--white);
  transition: transform 0.3s ease;
}

.announcement {
  max-height: 42px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 35, 30, 0.22);
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.announcement__inner {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.announcement a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.announcement svg {
  width: 16px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.announcement p {
  opacity: 0.8;
}

.navbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar__inner {
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-header.is-scrolled .announcement {
  max-height: 0;
  opacity: 0;
}

.site-header.is-scrolled .navbar {
  color: var(--ink);
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 12px 32px rgba(11, 35, 26, 0.08);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.brand__mark {
  width: 50px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.brand__text {
  display: grid;
  text-align: center;
}

.brand__text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  line-height: 1;
}

.brand__text small {
  margin-top: 6px;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.52em;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 34px);
}

.nav-links a {
  position: relative;
  padding: 14px 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button,
.menu-button,
.dialog-close,
.back-to-top {
  display: inline-grid;
  place-items: center;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.icon-button {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.site-header.is-scrolled .icon-button {
  border-color: var(--line);
}

.icon-button svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.basket-count {
  position: absolute;
  top: -4px;
  right: -3px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: #2a1a08;
  background: var(--gold);
  border: 2px solid rgba(20, 55, 43, 0.9);
  border-radius: 50%;
  font-size: 0.64rem;
  font-weight: 900;
  line-height: 1;
}

.site-header.is-scrolled .basket-count {
  border-color: var(--paper);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  gap: 5px;
  align-content: center;
}

.menu-button span {
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: 999;
  top: 90px;
  right: 16px;
  left: 16px;
  display: grid;
  padding: 20px;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.98);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  border-radius: 20px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-14px) scale(0.98);
  transform-origin: top;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.mobile-nav a {
  padding: 13px 10px;
  border-bottom: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.site-header:not(.is-scrolled) .mobile-nav {
  top: 132px;
}

.hero {
  position: relative;
  display: grid;
  min-height: max(760px, 100svh);
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.parallax-media {
  position: absolute;
  z-index: -3;
  inset: -8%;
  width: 116%;
  height: 116%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y), 0) scale(1.04);
  will-change: transform;
}

.hero__media {
  object-position: 50% 55%;
  filter: saturate(1.02) contrast(1.02);
}

.hero__shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 22, 17, 0.84) 0%, rgba(7, 32, 24, 0.66) 38%, rgba(7, 29, 22, 0.22) 70%, rgba(5, 22, 17, 0.3) 100%),
    linear-gradient(180deg, rgba(7, 25, 20, 0.55) 0%, transparent 40%, rgba(5, 22, 17, 0.22) 100%);
}

.hero__grain {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.52fr);
  align-items: end;
  gap: clamp(50px, 8vw, 120px);
  padding-top: 160px;
  padding-bottom: 130px;
}

.hero__copy {
  max-width: 780px;
}

.hero h1 {
  margin-bottom: 26px;
}

.hero h1 em {
  color: #fff8e9;
  font-weight: 400;
}

.hero__lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.04rem, 1.6vw, 1.22rem);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.hero-card {
  position: relative;
  max-width: 365px;
  margin-left: auto;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(17, 56, 43, 0.42);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.22);
  border-radius: 24px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-card::before {
  position: absolute;
  top: -70px;
  right: -65px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  content: "";
}

.hero-card__kicker {
  color: #ffd38d;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card > strong {
  display: block;
  margin-top: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1.06;
}

.hero-card__rule {
  width: 100%;
  height: 1px;
  margin: 24px 0;
  background: rgba(255, 255, 255, 0.22);
}

.hero-card dl {
  display: grid;
  gap: 11px;
}

.hero-card dl > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.hero-card dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card dd {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 75px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: relative;
  width: 1px;
  height: 42px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.scroll-cue span::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  content: "";
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: translateY(0); }
  70%, 100% { transform: translateY(200%); }
}

.hero__cut {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: clamp(60px, 8vw, 110px);
  fill: var(--paper);
}

.heritage {
  background: var(--paper);
}

.heritage-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(320px, 1.2fr) minmax(250px, 1fr);
  grid-template-rows: repeat(2, minmax(170px, auto));
  align-items: center;
  gap: 32px clamp(28px, 4vw, 60px);
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 20px;
}

.feature-card:nth-of-type(1) { grid-column: 1; grid-row: 1; }
.feature-card:nth-of-type(2) { grid-column: 1; grid-row: 2; }
.feature-card:nth-of-type(3) { grid-column: 3; grid-row: 1; }
.feature-card:nth-of-type(4) { grid-column: 3; grid-row: 2; }

.feature-card--left {
  flex-direction: row-reverse;
  text-align: right;
}

.feature-card__icon {
  display: grid;
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  place-items: center;
  color: var(--white);
  background: var(--gold);
  box-shadow: 0 16px 34px rgba(240, 168, 59, 0.25);
  border-radius: 50%;
}

.feature-card__icon svg {
  width: 39px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.feature-card h3 {
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.93rem;
}

.heritage-visual {
  position: relative;
  grid-column: 2;
  grid-row: 1 / 3;
  min-height: 480px;
  padding: 28px;
  overflow: hidden;
  background: var(--sage-2);
  border-radius: 46% 54% 43% 57% / 55% 41% 59% 45%;
  box-shadow: var(--shadow-sm);
}

.heritage-visual__wash {
  position: absolute;
  inset: 10% 7%;
  background: rgba(240, 168, 59, 0.13);
  border-radius: 50%;
  filter: blur(18px);
}

.heritage-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
}

.heritage-visual:hover img {
  transform: scale(1.04);
}

.heritage-visual figcaption {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  padding: 14px 18px;
  color: var(--white);
  background: rgba(19, 45, 36, 0.78);
  border-radius: 16px;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  backdrop-filter: blur(10px);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  min-height: 770px;
  padding: 0;
  overflow: hidden;
  background: var(--cream);
}

.about__image {
  position: relative;
  min-height: 770px;
  overflow: hidden;
}

.about__image .parallax-media {
  inset: -9%;
  width: 118%;
  height: 118%;
}

.about__badge {
  position: absolute;
  right: 34px;
  bottom: 38px;
  display: grid;
  width: 190px;
  height: 190px;
  place-content: center;
  padding: 20px;
  color: var(--white);
  background: var(--leaf-deep);
  border: 7px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  text-align: center;
}

.about__badge strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 500;
}

.about__badge span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-transform: uppercase;
}

.about__copy {
  align-self: center;
  max-width: 650px;
  padding: clamp(70px, 8vw, 135px) clamp(40px, 7vw, 110px);
}

.about__copy h2 {
  margin-bottom: 26px;
}

.about__copy p:not(.eyebrow) {
  margin-bottom: 18px;
  color: var(--muted);
}

.about__copy .text-link {
  margin-top: 18px;
}

.values {
  overflow: hidden;
}

.values::before {
  position: absolute;
  top: 16%;
  left: -8%;
  width: 420px;
  height: 420px;
  background: var(--sage-2);
  border-radius: 50%;
  content: "";
  filter: blur(2px);
}

.values__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(470px, 1.14fr);
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.values__copy {
  position: relative;
  z-index: 1;
}

.values__copy h2 {
  margin-bottom: 28px;
}

.values__copy > p:not(.eyebrow) {
  color: var(--muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.stat {
  padding: 18px 8px 0;
  border-top: 1px solid var(--line);
}

.stat strong {
  display: block;
  color: var(--gold-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
}

.stat > span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-transform: uppercase;
}

.values__visual {
  position: relative;
  min-height: 620px;
  overflow: visible;
  border-radius: 26px 0 0 26px;
}

.values__visual > .parallax-media {
  z-index: 0;
  inset: -6%;
  width: 112%;
  height: 112%;
  border-radius: 30px;
}

.cup-card {
  position: absolute;
  z-index: 2;
  bottom: -42px;
  left: -90px;
  width: min(300px, 45%);
  padding: 13px;
  color: var(--white);
  background: var(--leaf-deep);
  box-shadow: var(--shadow-lg);
  border-radius: 22px;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cup-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 72%;
  border-radius: 14px;
}

.cup-card figcaption {
  padding: 14px 8px 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  line-height: 1.2;
}

.catalog {
  background: var(--cream);
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(19, 45, 36, 0.08);
  border-radius: 18px;
  box-shadow: 0 14px 45px rgba(19, 45, 36, 0.05);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.filter-button {
  min-height: 43px;
  padding: 10px 17px;
  border: 0;
  color: var(--muted);
  background: transparent;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--white);
  background: var(--leaf-deep);
}

.catalog-search {
  display: flex;
  width: min(290px, 100%);
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
}

.catalog-search svg {
  width: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--muted);
  stroke-linecap: round;
  stroke-width: 1.8;
}

.catalog-search input {
  width: 100%;
  min-height: 44px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.catalog-search input::placeholder {
  color: #929c97;
}

.catalog-count {
  min-height: 24px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.82rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  min-width: 0;
}

.product-card__surface {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(19, 45, 36, 0.08);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(24, 49, 39, 0.06);
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 0.25s ease, box-shadow 0.3s ease;
}

.product-card__surface:hover {
  box-shadow: 0 24px 58px rgba(24, 49, 39, 0.13);
}

.product-card__image {
  position: relative;
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  background: var(--card-tint, var(--sage-2));
}

.product-card__image::after {
  position: absolute;
  right: -20%;
  bottom: -35%;
  width: 75%;
  height: 75%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  content: "";
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.55s cubic-bezier(.2,.75,.2,1);
}

.product-card__surface:hover .product-card__image img {
  transform: translateY(-7px) scale(1.045) rotate(-1deg);
}

.product-card__badge {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 13px;
  padding: 7px 9px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(7px);
}

.product-card__quick {
  position: absolute;
  z-index: 3;
  right: 13px;
  bottom: 13px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  color: var(--white);
  background: var(--leaf-deep);
  border-radius: 50%;
  box-shadow: 0 12px 25px rgba(19, 45, 36, 0.22);
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}

.product-card__surface:hover .product-card__quick,
.product-card__quick:focus-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card__quick:hover {
  background: var(--gold-deep);
}

.product-card__quick svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.product-card__body {
  display: grid;
  min-height: 224px;
  align-content: start;
  padding: 21px;
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--gold-deep);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h3 {
  margin-top: 11px;
  font-size: 1.65rem;
}

.product-card__full-name {
  min-height: 44px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.4;
}

.product-card__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 15px;
}

.product-card__notes span {
  padding: 5px 8px;
  color: var(--ink-2);
  background: var(--sage-2);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
}

.product-card__add {
  width: 100%;
  min-height: 44px;
  margin-top: auto;
  padding: 10px 13px;
  border: 1px solid var(--line);
  color: var(--leaf-deep);
  background: transparent;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.product-card__add:hover {
  color: var(--white);
  background: var(--leaf-deep);
  border-color: var(--leaf-deep);
}

.empty-products {
  grid-column: 1 / -1;
  padding: 70px 24px;
  color: var(--muted);
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: 22px;
  text-align: center;
}

.journey {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.journey .parallax-media {
  object-position: 50% 53%;
}

.journey__overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 43, 30, 0.92), rgba(10, 43, 30, 0.62)), linear-gradient(180deg, transparent, rgba(7, 27, 20, 0.45));
}

.journey__inner {
  display: grid;
  min-height: 660px;
  grid-template-columns: minmax(300px, 0.75fr) minmax(500px, 1.25fr);
  align-items: center;
  gap: 90px;
  padding-top: 90px;
  padding-bottom: 90px;
}

.journey__heading h2 {
  max-width: 530px;
}

.journey__steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey__steps li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.journey__steps li:last-child {
  border-bottom: 0;
}

.journey__steps li > span {
  color: #ffc86f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  line-height: 1;
}

.journey__steps h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.journey__steps p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.journal {
  background: var(--paper);
}

.journal-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 20px;
}

.story-card {
  min-width: 0;
}

.story-card > a {
  display: grid;
  height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 0.25s ease, box-shadow 0.3s ease;
}

.story-card > a:hover {
  box-shadow: var(--shadow-lg);
}

.story-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(.2,.7,.2,1);
}

.story-card:not(.story-card--wide) img {
  height: 360px;
}

.story-card:nth-child(2) img {
  object-position: 50% 72%;
}

.story-card:hover img {
  transform: scale(1.035);
}

.story-card__body {
  display: grid;
  align-content: start;
  padding: 26px;
}

.story-card__body > span {
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-card h3 {
  margin-top: 11px;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.story-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.story-card__body strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--leaf-deep);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.story-card__body strong b {
  font-size: 1rem;
}

.contact {
  color: var(--white);
  background: var(--leaf-deep);
  overflow: hidden;
}

.contact::before,
.contact::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.contact::before {
  top: -240px;
  right: -220px;
  width: 650px;
  height: 650px;
}

.contact::after {
  bottom: -220px;
  left: -150px;
  width: 520px;
  height: 520px;
}

.contact__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(520px, 1.22fr);
  align-items: start;
  gap: clamp(60px, 8vw, 120px);
}

.contact__copy h2 {
  margin-bottom: 24px;
}

.contact__copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.65);
}

.contact-list {
  display: grid;
  gap: 0;
  margin-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-list > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-list dt {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-list dd {
  font-weight: 700;
}

.map-card {
  position: relative;
  display: grid;
  min-height: 170px;
  grid-template-columns: 76px 1fr;
  align-items: end;
  gap: 18px;
  margin-top: 28px;
  padding: 22px;
  overflow: hidden;
  color: var(--ink);
  background: #eef3eb;
  border-radius: 20px;
  isolation: isolate;
}

.map-card__roads {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.75;
  background:
    linear-gradient(28deg, transparent 43%, #d1ded6 44%, #d1ded6 47%, transparent 48%),
    linear-gradient(112deg, transparent 45%, #dbe5df 46%, #dbe5df 50%, transparent 51%),
    linear-gradient(160deg, transparent 39%, #d1ded6 40%, #d1ded6 43%, transparent 44%),
    repeating-linear-gradient(0deg, transparent 0 27px, rgba(164, 184, 173, 0.16) 28px 29px),
    repeating-linear-gradient(90deg, transparent 0 31px, rgba(164, 184, 173, 0.14) 32px 33px);
}

.map-card__pin {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  color: var(--white);
  background: var(--gold);
  box-shadow: 0 12px 30px rgba(200, 125, 22, 0.28);
  border-radius: 50%;
}

.map-card__pin svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.map-card > span:last-child {
  display: grid;
}

.map-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.map-card small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form {
  padding: clamp(28px, 4vw, 46px);
  color: var(--ink);
  background: var(--paper);
  border-radius: 28px;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.2);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  display: grid;
  margin-bottom: 18px;
}

.field > span {
  margin-bottom: 8px;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  border-radius: 12px;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input {
  min-height: 52px;
  padding: 0 15px;
}

.field textarea {
  min-height: 150px;
  padding: 13px 15px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 4px rgba(240, 168, 59, 0.13);
}

.field.is-invalid input,
.field.is-invalid textarea {
  border-color: #b64040;
}

.field-error {
  min-height: 18px;
  margin-top: 4px;
  color: #a83737;
  font-size: 0.72rem;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 20px;
}

.form-footer p {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #0c261d;
}

.footer__main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 45px;
  padding-top: 55px;
  padding-bottom: 44px;
}

.brand--footer {
  color: var(--white);
}

.footer__main > p {
  max-width: 430px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  line-height: 1.35;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 25px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  padding-bottom: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.back-to-top {
  position: fixed;
  z-index: 500;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.drawer-backdrop {
  position: fixed;
  z-index: 1998;
  inset: 0;
  background: rgba(5, 21, 16, 0.62);
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(3px);
}

.drawer-backdrop.is-visible {
  opacity: 1;
}

.inquiry-drawer {
  position: fixed;
  z-index: 1999;
  top: 0;
  right: 0;
  display: grid;
  width: min(460px, 100%);
  height: 100dvh;
  grid-template-rows: auto 1fr auto;
  color: var(--ink);
  background: var(--paper);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.2);
  transform: translateX(105%);
  transition: transform 0.35s cubic-bezier(.2,.75,.2,1);
}

.inquiry-drawer.is-open {
  transform: translateX(0);
}

.inquiry-drawer > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px;
  border-bottom: 1px solid var(--line);
}

.inquiry-drawer h2 {
  font-size: 2rem;
}

.inquiry-drawer .eyebrow {
  margin-bottom: 2px;
  font-size: 1rem;
}

.inquiry-drawer .icon-button {
  border-color: var(--line);
}

.inquiry-drawer__content {
  overflow-y: auto;
  padding: 20px 26px;
}

.inquiry-drawer > footer {
  padding: 22px 26px 26px;
  border-top: 1px solid var(--line);
}

.inquiry-drawer > footer p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.75rem;
}

.inquiry-empty {
  display: grid;
  min-height: 100%;
  place-content: center;
  color: var(--muted);
  text-align: center;
}

.inquiry-empty svg {
  width: 54px;
  margin: 0 auto 17px;
  fill: none;
  stroke: var(--gold-deep);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.inquiry-empty h3 {
  color: var(--ink);
  margin-bottom: 8px;
}

.inquiry-item {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.inquiry-item img {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 12px;
}

.inquiry-item h3 {
  font-size: 1.2rem;
}

.inquiry-item p {
  color: var(--muted);
  font-size: 0.72rem;
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.quantity-control button {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.quantity-control span {
  min-width: 18px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 900;
}

.remove-item {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  color: #8c3f3f;
  background: #faeded;
  border-radius: 50%;
  cursor: pointer;
}

.remove-item svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.product-dialog {
  width: min(980px, calc(100% - 30px));
  max-height: calc(100dvh - 30px);
  padding: 0;
  overflow: auto;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: 28px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.3);
}

.product-dialog::backdrop {
  background: rgba(5, 21, 16, 0.72);
  backdrop-filter: blur(5px);
}

.product-dialog[open] {
  animation: dialogIn 0.3s cubic-bezier(.2,.75,.2,1) both;
}

@keyframes dialogIn {
  from { opacity: 0; transform: translateY(22px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
  border-radius: 50%;
}

.dialog-close svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.product-dialog__grid {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(0, 0.9fr);
  min-height: 610px;
}

.dialog-gallery {
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 28px;
  background: var(--dialog-tint, var(--sage-2));
}

.dialog-gallery__main {
  display: grid;
  min-height: 460px;
  place-items: center;
}

.dialog-gallery__main img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: contain;
}

.dialog-thumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dialog-thumb {
  width: 68px;
  height: 68px;
  padding: 2px;
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 11px;
  cursor: pointer;
}

.dialog-thumb.is-active {
  border-color: var(--leaf-deep);
}

.dialog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
}

.dialog-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 72px);
}

.dialog-copy h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.dialog-subtitle {
  margin-top: 8px;
  color: var(--gold-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.dialog-copy > p:not(.eyebrow):not(.dialog-subtitle) {
  margin-top: 22px;
  color: var(--muted);
}

.taste-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.taste-notes span {
  padding: 8px 11px;
  color: var(--ink);
  background: var(--sage-2);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
}

.dialog-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 25px;
  margin: 28px 0;
  border-top: 1px solid var(--line);
}

.dialog-facts > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.dialog-facts dt {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dialog-facts dd {
  font-size: 0.78rem;
  font-weight: 800;
}

.toast-region {
  position: fixed;
  z-index: 3000;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: min(360px, calc(100% - 40px));
  gap: 10px;
}

.toast {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: var(--white);
  background: #173d2f;
  box-shadow: var(--shadow-lg);
  border-radius: 14px;
  animation: toastIn 0.25s ease both;
}

.toast__icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.toast p {
  font-size: 0.82rem;
  line-height: 1.45;
}

.toast.is-leaving {
  animation: toastOut 0.25s ease both;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes toastOut {
  to { opacity: 0; transform: translateY(10px); }
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s cubic-bezier(.2,.7,.2,1), transform 0.72s cubic-bezier(.2,.7,.2,1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .heritage-grid {
    gap: 28px;
  }

  .feature-card__icon {
    width: 66px;
    height: 66px;
  }

  .about {
    grid-template-columns: 1fr 1fr;
  }

  .about__copy {
    padding-right: 48px;
    padding-left: 48px;
  }

  .values__grid {
    gap: 75px;
  }

  .cup-card {
    left: -45px;
  }

  .journal-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-card--wide {
    grid-column: 1 / -1;
  }

  .story-card--wide > a {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .story-card--wide img {
    height: 100%;
    min-height: 340px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 90px;
  }

  .announcement {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .site-header:not(.is-scrolled) .mobile-nav,
  .mobile-nav {
    top: 82px;
  }

  .navbar__inner {
    min-height: 82px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    align-items: center;
    padding-top: 135px;
    padding-bottom: 130px;
  }

  .hero-card {
    display: none;
  }

  .hero__copy {
    max-width: 720px;
  }

  .hero__shade {
    background: linear-gradient(90deg, rgba(5, 27, 19, 0.86), rgba(6, 29, 21, 0.48)), linear-gradient(180deg, rgba(5, 25, 18, 0.4), rgba(5, 25, 18, 0.4));
  }

  .heritage-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .heritage-visual {
    grid-column: 1 / -1;
    grid-row: 1;
    width: min(620px, 100%);
    min-height: 430px;
    margin: 0 auto 22px;
  }

  .feature-card:nth-of-type(1),
  .feature-card:nth-of-type(2),
  .feature-card:nth-of-type(3),
  .feature-card:nth-of-type(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .feature-card--left {
    flex-direction: row;
    text-align: left;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about__image {
    min-height: 580px;
  }

  .about__copy {
    max-width: 760px;
    padding: 80px 40px 95px;
  }

  .values__grid {
    grid-template-columns: 1fr;
  }

  .values__copy {
    max-width: 700px;
  }

  .values__visual {
    min-height: 570px;
    margin-left: 60px;
  }

  .cup-card {
    left: -60px;
  }

  .journey__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .journey__heading {
    max-width: 650px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact__copy {
    max-width: 680px;
  }

  .footer__main {
    grid-template-columns: auto 1fr;
  }

  .footer__links {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .product-dialog__grid {
    grid-template-columns: 1fr;
  }

  .dialog-gallery__main {
    min-height: 370px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 82px 0;
  }

  h1 {
    font-size: clamp(3.35rem, 16vw, 5.4rem);
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.65rem);
  }

  .brand__mark {
    width: 42px;
  }

  .brand__text strong {
    font-size: 1rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero__media {
    object-position: 58% 50%;
  }

  .hero__inner {
    padding-top: 116px;
    padding-bottom: 118px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .scroll-cue {
    bottom: 64px;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .heritage-grid {
    grid-template-columns: 1fr;
  }

  .heritage-visual {
    min-height: 370px;
  }

  .feature-card {
    padding: 4px 0;
  }

  .feature-card__icon {
    width: 62px;
    height: 62px;
  }

  .feature-card__icon svg {
    width: 32px;
  }

  .about__image {
    min-height: 470px;
  }

  .about__badge {
    right: 20px;
    bottom: 20px;
    width: 146px;
    height: 146px;
    border-width: 5px;
  }

  .about__badge strong {
    font-size: 1.35rem;
  }

  .about__copy {
    padding: 70px 22px 80px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .stat {
    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: center;
  }

  .stat > span {
    margin-top: 0;
  }

  .values__visual {
    min-height: 460px;
    margin-left: 28px;
  }

  .cup-card {
    bottom: -35px;
    left: -28px;
    width: 210px;
  }

  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-button {
    width: 100%;
  }

  .catalog-search {
    width: 100%;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card__body {
    min-height: 215px;
    padding: 17px;
  }

  .product-card h3 {
    font-size: 1.42rem;
  }

  .product-card__quick {
    opacity: 1;
    transform: translateY(0);
  }

  .journey__inner {
    min-height: 0;
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .journey__steps li {
    grid-template-columns: 52px 1fr;
  }

  .journal-grid {
    grid-template-columns: 1fr;
  }

  .story-card--wide,
  .story-card--wide > a {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .story-card img,
  .story-card:not(.story-card--wide) img,
  .story-card--wide img {
    width: 100%;
    height: 300px;
    min-height: 0;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .footer__main {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer__links {
    grid-column: auto;
  }

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

  .product-dialog {
    width: calc(100% - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 20px;
  }

  .dialog-gallery {
    padding: 20px;
  }

  .dialog-gallery__main {
    min-height: 330px;
  }

  .dialog-copy {
    padding: 35px 24px 30px;
  }

  .dialog-facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .navbar__inner {
    min-height: 74px;
  }

  .site-header:not(.is-scrolled) .mobile-nav,
  .mobile-nav {
    top: 74px;
  }

  .brand__text {
    display: none;
  }

  .hero {
    min-height: 730px;
  }

  .hero__lead {
    font-size: 0.98rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card__image {
    aspect-ratio: 1.12 / 1;
  }

  .product-card__body {
    min-height: 0;
  }

  .product-card__full-name {
    min-height: 0;
  }

  .product-card__add {
    margin-top: 18px;
  }

  .filter-group {
    grid-template-columns: 1fr 1fr;
  }

  .values__visual {
    min-height: 390px;
  }

  .cup-card {
    width: 175px;
  }

  .cup-card figcaption {
    font-size: 1rem;
  }

  .journey__steps li {
    grid-template-columns: 45px 1fr;
    gap: 14px;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .map-card {
    grid-template-columns: 58px 1fr;
  }

  .map-card__pin {
    width: 54px;
    height: 54px;
  }

  .inquiry-item {
    grid-template-columns: 70px 1fr auto;
  }

  .inquiry-item img {
    width: 70px;
    height: 70px;
  }
}

@media (hover: none) {
  .product-card__quick {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .parallax-media {
    transform: none !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
