:root {
  --teal: #193741;
  --deep-teal: #102a32;
  --teal-soft: #234954;
  --gold: #eac486;
  --linen: #ebe7e1;
  --cream: #f6f3ee;
  --white: #ffffff;
  --stone: #8c9ba0;
  --ink: #193741;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", "Avenir LT Pro", Arial, sans-serif;
  --shell: min(1280px, calc(100vw - 96px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

.section-shell {
  margin-inline: auto;
  width: var(--shell);
}

.eyebrow {
  margin: 0 0 18px;
  color: inherit;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.site-loader {
  align-items: center;
  background: var(--teal);
  color: var(--gold);
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  opacity: 1;
  position: fixed;
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
  visibility: visible;
  z-index: 100;
}

.is-loaded .site-loader {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  font-family: var(--serif);
  font-size: clamp(54px, 8vw, 92px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.loader-rule {
  background: var(--gold);
  display: block;
  height: 1px;
  margin: 28px 0 20px;
  opacity: 0.65;
  transform: scaleX(0);
  animation: loader-rule 1.1s 0.15s var(--ease) forwards;
  width: 92px;
}

.site-loader .eyebrow {
  margin: 0;
}

.site-header {
  align-items: center;
  color: var(--white);
  display: flex;
  height: 96px;
  justify-content: space-between;
  left: 0;
  padding: 0 48px;
  position: fixed;
  right: 0;
  top: 0;
  transition: background-color 0.5s ease, height 0.5s var(--ease);
  z-index: 20;
}

.site-header.is-scrolled,
.site-header--solid {
  background: rgba(25, 55, 65, 0.97);
  height: 76px;
}

.brand-block {
  align-items: center;
  background: var(--teal);
  color: var(--gold);
  display: flex;
  flex-direction: column;
  height: 144px;
  justify-content: center;
  left: 50%;
  min-width: 192px;
  padding: 18px 24px 20px;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  transition: height 0.5s var(--ease), min-width 0.5s var(--ease);
}

.is-scrolled .brand-block,
.site-header--solid .brand-block {
  height: 106px;
  min-width: 170px;
}

.brand-block strong {
  font-family: var(--serif);
  font-size: 43px;
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.82;
}

.brand-block span {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.28em;
  margin-top: 14px;
  text-transform: uppercase;
}

.menu-trigger {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  gap: 15px;
  padding: 12px 0;
}

.menu-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 28px;
}

.menu-lines i {
  background: currentColor;
  display: block;
  height: 1px;
  transform-origin: left center;
  transition: transform 0.35s var(--ease);
  width: 100%;
}

.menu-trigger:hover .menu-lines i:nth-child(2) {
  transform: scaleX(0.62);
}

.menu-label,
.header-link {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hover-shift {
  display: inline-flex;
  flex-direction: column;
  height: 1.6em;
  overflow: hidden;
}

.hover-shift span {
  line-height: 1.6;
  transition: transform 0.4s var(--ease);
}

.hover-shift:hover span {
  transform: translateY(-100%);
}

.menu-overlay {
  background: var(--teal);
  color: var(--white);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transform: translateY(-24px);
  transition: opacity 0.5s ease, transform 0.7s var(--ease), visibility 0.5s;
  visibility: hidden;
  z-index: 50;
}

.menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.menu-overlay__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  margin-left: 15vw;
}

.menu-close {
  background: transparent;
  border: 0;
  cursor: pointer;
  height: 44px;
  position: absolute;
  right: 48px;
  top: 34px;
  width: 44px;
}

.menu-close span {
  background: var(--white);
  height: 1px;
  left: 4px;
  position: absolute;
  top: 21px;
  transform: rotate(45deg);
  width: 36px;
}

.menu-close span + span {
  transform: rotate(-45deg);
}

.overlay-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.overlay-nav a {
  align-items: center;
  display: flex;
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.98;
  transition: color 0.35s ease, transform 0.45s var(--ease);
}

.overlay-nav a:hover {
  color: var(--gold);
  transform: translateX(18px);
}

.overlay-nav span {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  margin-right: 24px;
}

.menu-catalog {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin-top: 48px;
  padding-top: 20px;
  text-transform: uppercase;
  width: min(430px, 70vw);
}

.menu-catalog i {
  color: var(--gold);
  float: right;
  font-size: 17px;
  font-style: normal;
}

.hero {
  align-items: center;
  color: var(--white);
  display: flex;
  height: 100svh;
  justify-content: center;
  min-height: 680px;
  overflow: hidden;
  position: relative;
}

.hero__image {
  height: 112%;
  inset: -6%;
  max-width: none;
  object-fit: cover;
  position: absolute;
  transform: scale(1.04);
  width: 112%;
}

.hero__shade {
  background: linear-gradient(180deg, rgba(9, 24, 28, 0.28), rgba(9, 24, 28, 0.35));
  inset: 0;
  position: absolute;
}

.hero__content {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero h1,
.catalog-hero h1 {
  font-size: clamp(72px, 9vw, 134px);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.82;
  margin: 0 0 42px;
}

.hero__badge,
.collection__orb {
  align-items: center;
  background: var(--teal);
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  flex-direction: column;
  height: 150px;
  justify-content: center;
  left: 4vw;
  line-height: 1.25;
  padding: 20px;
  position: absolute;
  text-align: center;
  top: 20vh;
  transform: rotate(-10deg);
  width: 150px;
  z-index: 2;
}

.hero__badge span,
.collection__orb span {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}

.hero__badge strong {
  font-size: 9px;
  letter-spacing: 0.18em;
  margin: 6px 0 2px;
  text-transform: uppercase;
}

.hero__badge em {
  font-family: var(--serif);
  font-size: 23px;
  font-style: normal;
  font-weight: 600;
}

.outline-button {
  border: 1px solid currentColor;
  border-radius: 80px;
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  padding: 18px 28px;
  text-transform: uppercase;
  transition: background-color 0.45s ease, color 0.45s ease, transform 0.2s ease;
}

.outline-button:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.outline-button--light:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--teal);
}

.scroll-cue {
  align-items: center;
  bottom: 32px;
  display: flex;
  gap: 16px;
  left: 48px;
  position: absolute;
  z-index: 1;
}

.scroll-cue__icon {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  display: flex;
  font-size: 20px;
  height: 46px;
  justify-content: center;
  transform: rotate(45deg);
  width: 46px;
}

.scroll-cue__icon::first-letter {
  display: inline-block;
  transform: rotate(-45deg);
}

.scroll-cue small {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.intro,
.wines-preview,
.craft {
  padding-bottom: 140px;
  padding-top: 140px;
}

.section-label {
  align-items: center;
  border-bottom: 1px solid rgba(25, 55, 65, 0.22);
  display: flex;
  gap: 18px;
  margin-bottom: 68px;
  padding-bottom: 18px;
}

.section-label span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.section-label p {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin: 0;
  text-transform: uppercase;
}

.intro__grid {
  display: grid;
  gap: 9vw;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.8fr);
}

.intro__copy {
  max-width: 600px;
}

.intro__copy p,
.craft__copy > p {
  color: #34545c;
  margin-bottom: 20px;
}

.text-link {
  color: var(--teal);
  display: inline-flex;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-top: 14px;
  text-transform: uppercase;
}

.stats {
  border-top: 1px solid rgba(25, 55, 65, 0.22);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 88px;
}

.stats article {
  border-right: 1px solid rgba(25, 55, 65, 0.22);
  display: flex;
  flex-direction: column;
  padding: 32px 36px 0 0;
}

.stats article + article {
  padding-left: 36px;
}

.stats article:last-child {
  border-right: 0;
}

.stats strong {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
}

.stats small {
  font-size: 42px;
}

.stats span {
  color: #527079;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-top: 6px;
  text-transform: uppercase;
}

.collection {
  background: var(--teal);
  color: var(--white);
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  min-height: 690px;
  overflow: hidden;
  position: relative;
}

.collection__image {
  min-height: 600px;
  overflow: hidden;
}

.collection__image img,
.craft__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
  width: 100%;
}

.collection:hover .collection__image img,
.craft:hover .craft__image img {
  transform: scale(1.045);
}

.collection__content {
  align-self: center;
  max-width: 610px;
  padding: 82px 7vw;
}

.collection__content p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 30px;
}

.collection__orb {
  background: var(--gold);
  color: var(--teal);
  height: 170px;
  left: calc(56% - 85px);
  top: 12%;
  transform: rotate(8deg);
  width: 170px;
}

.collection__orb strong {
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
}

.section-title-row {
  align-items: flex-end;
  display: flex;
  gap: 36px;
  justify-content: space-between;
  margin-bottom: 52px;
}

.section-title-row h2 {
  margin-bottom: 0;
}

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

.preview-card {
  background: var(--linen);
  min-height: 580px;
  overflow: hidden;
  position: relative;
}

.preview-card__image {
  align-items: flex-end;
  display: flex;
  height: 390px;
  justify-content: center;
  overflow: hidden;
  padding-top: 30px;
}

.preview-card img {
  height: 92%;
  object-fit: contain;
  transition: transform 0.7s var(--ease);
}

.preview-card:hover img {
  transform: translateY(-12px) scale(1.06);
}

.preview-card__body {
  background: rgba(235, 231, 225, 0.96);
  bottom: 0;
  left: 0;
  padding: 28px 30px;
  position: absolute;
  right: 0;
  transition: padding-bottom 0.45s var(--ease);
}

.preview-card:hover .preview-card__body {
  padding-bottom: 40px;
}

.preview-card p,
.preview-card span {
  color: #61777d;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.preview-card h3 {
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 4px 0 16px;
}

.preview-card span {
  color: var(--teal);
}

.preview-card i {
  color: var(--gold);
  float: right;
  font-size: 15px;
  font-style: normal;
}

.craft {
  align-items: center;
  display: grid;
  gap: 8vw;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.85fr);
}

.craft__image {
  height: 680px;
  overflow: hidden;
}

.craft__copy {
  max-width: 570px;
}

.craft__note {
  align-items: center;
  border-top: 1px solid rgba(25, 55, 65, 0.22);
  display: flex;
  gap: 20px;
  margin-top: 38px;
  padding-top: 22px;
}

.craft__note span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 600;
}

.craft__note p {
  color: #527079;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin: 0;
  max-width: 210px;
  text-transform: uppercase;
}

.awards {
  background: var(--teal);
  color: var(--white);
  padding: 126px 0;
}

.awards .section-shell {
  display: grid;
  gap: 9vw;
  grid-template-columns: 0.9fr 1.1fr;
}

.awards__heading h2 {
  max-width: 620px;
}

.awards__list article {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  gap: 22px;
  grid-template-columns: 32px 1fr auto;
  padding: 22px 0;
  transition: padding 0.45s var(--ease);
}

.awards__list article:hover {
  padding-left: 12px;
  padding-right: 12px;
}

.awards__list article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.awards__list span,
.awards__list em,
.awards__list p {
  color: var(--gold);
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin: 0;
  text-transform: uppercase;
}

.awards__list strong {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

.experience {
  align-items: center;
  color: var(--white);
  display: flex;
  height: 780px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.experience > img {
  height: 116%;
  inset: -8%;
  max-width: none;
  object-fit: cover;
  position: absolute;
  width: 116%;
}

.experience__shade {
  background: rgba(6, 19, 22, 0.28);
  inset: 0;
  position: absolute;
}

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

.site-footer {
  background: var(--deep-teal);
  color: var(--white);
  padding: 86px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 56px;
  grid-template-columns: 1.45fr 0.8fr 1fr 0.65fr;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
}

.footer-brand > a {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.footer-brand p,
.footer-grid a,
.footer-grid address {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.07em;
  line-height: 1.9;
  margin: 18px 0 0;
}

.footer-grid a {
  margin: 0;
  transition: color 0.3s ease;
}

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

.footer-title {
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.48);
  display: flex;
  font-size: 9px;
  justify-content: space-between;
  letter-spacing: 0.16em;
  margin-top: 62px;
  padding-top: 22px;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

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

.image-reveal {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.1s var(--ease);
}

.image-reveal.is-visible {
  clip-path: inset(0 0 0 0);
}

/* Catalog */
.catalog-hero {
  background: var(--teal);
  color: var(--white);
  min-height: 610px;
  overflow: hidden;
  padding-top: 205px;
  position: relative;
}

.catalog-hero__texture {
  background:
    radial-gradient(circle at 20% 10%, rgba(234, 196, 134, 0.08), transparent 34%),
    repeating-linear-gradient(120deg, transparent 0 80px, rgba(255, 255, 255, 0.025) 80px 81px);
  inset: 0;
  position: absolute;
}

.catalog-hero__inner {
  position: relative;
}

.catalog-hero h1 {
  margin-bottom: 24px;
}

.catalog-hero__inner > p:last-child {
  color: rgba(255, 255, 255, 0.72);
  max-width: 590px;
}

.catalog-hero__stamp {
  align-items: center;
  background: var(--gold);
  border-radius: 50%;
  bottom: 42px;
  color: var(--teal);
  display: flex;
  flex-direction: column;
  font-family: var(--serif);
  font-size: 21px;
  height: 152px;
  justify-content: center;
  line-height: 0.95;
  position: absolute;
  right: 8vw;
  text-align: center;
  transform: rotate(9deg);
  width: 152px;
}

.catalog-hero__stamp strong {
  font-size: 28px;
  margin-top: 5px;
}

.catalog-main {
  padding-bottom: 140px;
  padding-top: 120px;
}

.catalog-intro {
  align-items: end;
  display: grid;
  gap: 8vw;
  grid-template-columns: 1fr 0.9fr;
}

.catalog-intro h2 {
  margin-bottom: 0;
}

.catalog-intro > p {
  color: #527079;
  margin: 0;
}

.catalog-filters {
  border-bottom: 1px solid rgba(25, 55, 65, 0.24);
  display: flex;
  gap: 32px;
  margin: 72px 0 54px;
  overflow-x: auto;
}

.filter-button {
  background: transparent;
  border: 0;
  cursor: pointer;
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  padding: 0 0 15px;
  position: relative;
  text-transform: uppercase;
}

.filter-button::after {
  background: var(--teal);
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s var(--ease);
  width: 100%;
}

.filter-button:hover::after,
.filter-button.is-active::after {
  transform: scaleX(1);
}

.catalog-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.wine-card {
  background: var(--linen);
  min-height: 610px;
  padding: 0 28px 26px;
  transition: opacity 0.45s ease, transform 0.55s var(--ease), background 0.45s ease;
}

.wine-card:hover {
  background: #e2ddd5;
  transform: translateY(-8px);
}

.wine-card.is-filtered-out {
  display: none;
}

.wine-card__visual {
  align-items: center;
  display: flex;
  height: 410px;
  justify-content: center;
  overflow: hidden;
  padding: 30px 20px 0;
}

.wine-card__visual img {
  height: 94%;
  max-width: 75%;
  object-fit: contain;
  transition: transform 0.65s var(--ease);
}

.wine-card:hover img {
  transform: translateY(-12px) scale(1.04);
}

.wine-card__visual--rose img {
  filter: sepia(0.22) saturate(0.82) hue-rotate(324deg) brightness(1.12);
}

.wine-card__meta {
  align-items: center;
  border-top: 1px solid rgba(25, 55, 65, 0.22);
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
}

.wine-card__meta span,
.wine-card__meta small {
  color: #527079;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wine-card__meta small {
  color: var(--gold);
}

.wine-card h3 {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 13px 0 10px;
}

.wine-card p {
  color: #527079;
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 0;
}

.catalog-cta {
  background: var(--teal);
  color: var(--white);
  padding: 112px 0;
}

.catalog-cta h2 {
  margin-bottom: 32px;
}

@keyframes loader-rule {
  to {
    transform: scaleX(1);
  }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 52px, 820px);
  }

  .site-header {
    padding-inline: 26px;
  }

  .brand-block {
    height: 112px;
    min-width: 156px;
  }

  .brand-block strong {
    font-size: 36px;
  }

  .hero__badge {
    height: 124px;
    top: 19vh;
    width: 124px;
  }

  .hero__badge span {
    font-size: 15px;
  }

  .intro__grid,
  .craft,
  .awards .section-shell,
  .catalog-intro {
    gap: 46px;
    grid-template-columns: 1fr;
  }

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

  .collection__image {
    min-height: 540px;
  }

  .collection__content {
    max-width: 100%;
    padding: 76px 7vw;
  }

  .collection__orb {
    left: auto;
    right: 8vw;
    top: 47%;
  }

  .preview-grid,
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .craft__image {
    height: 570px;
  }

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

@media (max-width: 640px) {
  :root {
    --shell: calc(100vw - 36px);
  }

  body {
    font-size: 14px;
  }

  h2 {
    font-size: 48px;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header--solid {
    height: 68px;
    padding-inline: 18px;
  }

  .brand-block,
  .is-scrolled .brand-block,
  .site-header--solid .brand-block {
    height: 89px;
    min-width: 134px;
    padding: 14px 12px;
  }

  .brand-block strong {
    font-size: 31px;
  }

  .brand-block span {
    font-size: 6px;
    margin-top: 10px;
  }

  .menu-label {
    display: none;
  }

  .header-link {
    font-size: 9px;
  }

  .menu-close {
    right: 18px;
    top: 17px;
  }

  .menu-overlay__inner {
    margin-left: 26px;
  }

  .overlay-nav a {
    font-size: 48px;
  }

  .hero {
    min-height: 620px;
  }

  .hero h1,
  .catalog-hero h1 {
    font-size: clamp(65px, 18vw, 94px);
  }

  .hero__badge {
    height: 104px;
    left: 18px;
    top: 132px;
    width: 104px;
  }

  .hero__badge span {
    font-size: 13px;
  }

  .hero__badge strong {
    font-size: 7px;
  }

  .hero__badge em {
    font-size: 19px;
  }

  .scroll-cue {
    bottom: 24px;
    left: 22px;
  }

  .intro,
  .wines-preview,
  .craft {
    padding-bottom: 88px;
    padding-top: 88px;
  }

  .section-label {
    margin-bottom: 48px;
  }

  .intro__grid,
  .craft {
    gap: 20px;
  }

  .stats {
    grid-template-columns: 1fr;
    margin-top: 56px;
  }

  .stats article,
  .stats article + article {
    border-bottom: 1px solid rgba(25, 55, 65, 0.22);
    border-right: 0;
    padding: 22px 0;
  }

  .stats strong {
    font-size: 62px;
  }

  .collection__image {
    min-height: 380px;
  }

  .collection__content {
    padding: 64px 22px;
  }

  .collection__orb {
    height: 116px;
    right: 18px;
    top: 330px;
    width: 116px;
  }

  .collection__orb span {
    font-size: 14px;
  }

  .collection__orb strong {
    font-size: 29px;
  }

  .section-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .preview-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .preview-card {
    min-height: 520px;
  }

  .craft__image {
    height: 390px;
  }

  .awards {
    padding: 86px 0;
  }

  .awards__list em {
    display: none;
  }

  .experience {
    height: 610px;
  }

  .footer-grid {
    gap: 34px;
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .catalog-hero {
    min-height: 570px;
    padding-top: 185px;
  }

  .catalog-hero__stamp {
    bottom: 26px;
    height: 116px;
    right: 18px;
    width: 116px;
  }

  .catalog-main {
    padding-bottom: 90px;
    padding-top: 84px;
  }

  .catalog-filters {
    gap: 22px;
    margin-top: 48px;
  }

  .wine-card {
    min-height: 565px;
  }

  .wine-card__visual {
    height: 390px;
  }
}
