@font-face {
  font-family: "Century725BT";
  src: url("fonts/century725bt-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #17120f;
  --ink-2: #261b17;
  --paper: #f5efe3;
  --paper-2: #e7dac4;
  --cream: #fff8e9;
  --gold: #caa24f;
  --gold-2: #e6c675;
  --wine: #6f1832;
  --leaf: #5c6a3b;
  --mist: rgba(255, 248, 233, 0.76);
  --line: rgba(255, 248, 233, 0.18);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  --serif: "Century725BT", Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Montserrat, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 30;
  transform: translateY(-160%);
  padding: 0.65rem 0.85rem;
  background: var(--cream);
  color: var(--ink);
  border-radius: 3px;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: linear-gradient(180deg, rgba(23, 18, 15, 0.9), rgba(23, 18, 15, 0.52));
  color: var(--cream);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(23, 18, 15, 0.96);
  box-shadow: 0 1px 0 rgba(255, 248, 233, 0.12);
}

.brand img {
  width: clamp(132px, 14vw, 190px);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.4));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.5vw, 1.45rem);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  color: rgba(255, 248, 233, 0.82);
}

.site-nav a span {
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 1.05em;
  font-weight: 400;
  letter-spacing: 0;
}

.language-switcher {
  display: inline-flex;
  gap: 0.2rem;
  padding: 0.2rem;
  border: 1px solid rgba(255, 248, 233, 0.28);
  border-radius: 3px;
}

.language-switcher button {
  min-height: 34px;
  padding: 0.3rem 0.55rem;
  border: 0;
  border-radius: 2px;
  background: transparent;
  color: rgba(255, 248, 233, 0.76);
  cursor: pointer;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 800;
}

.language-switcher button[aria-pressed="true"] {
  background: var(--gold);
  color: var(--ink);
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--cream);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 248, 233, 0.28);
  border-radius: 3px;
  background: rgba(255, 248, 233, 0.06);
  color: var(--cream);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.48fr);
  align-items: center;
  gap: clamp(1rem, 5vw, 5rem);
  padding: 7rem clamp(1.25rem, 6vw, 6rem) 2rem;
  overflow: hidden;
  background: url("images/background.png") center / cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 72% 44%, rgba(255, 248, 233, 0.2), transparent 25rem),
    linear-gradient(90deg, rgba(247, 242, 232, 0.94) 0%, rgba(247, 242, 232, 0.82) 50%, rgba(247, 242, 232, 0.42) 100%);
}

.hero__shade {
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(0deg, rgba(247, 242, 232, 0.86), transparent);
}

.hero__content,
.hero__seal,
.hero__stats {
  position: relative;
}

.hero__content {
  max-width: 960px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.02;
}

h1 {
  max-width: 900px;
  font-size: clamp(3rem, 5.5vw, 5.8rem);
  text-wrap: balance;
}

.hero__line {
  display: block;
}

.hero__line--primary {
  color: var(--ink);
}

.hero__line--accent {
  margin-top: 0.12em;
  color: var(--wine);
}

html[lang="zh-Hans"] h1 {
  max-width: 860px;
  font-size: clamp(3rem, 5.7vw, 5.6rem);
  line-height: 1.08;
}

h2 {
  font-size: clamp(2.7rem, 6vw, 6rem);
  text-wrap: balance;
}

h3 {
  font-size: clamp(1.55rem, 2.6vw, 2.5rem);
}

p {
  margin: 1rem 0 0;
}

.hero__lead {
  max-width: min(690px, 100%);
  color: var(--ink-2);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.button--gold {
  background: var(--gold);
  color: var(--ink);
}

.button--ghost {
  border-color: rgba(255, 248, 233, 0.36);
  color: var(--cream);
}

.button--wine {
  min-width: 190px;
  border-color: var(--wine);
  border-radius: 0;
  background: var(--wine);
  color: var(--cream);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button--wine:hover,
.button--wine:focus-visible {
  background: transparent;
  color: var(--wine);
  transform: translateY(-2px);
}

.hero__seal {
  justify-self: center;
}

.hero__seal img {
  width: min(350px, 32vw);
  opacity: 1;
  filter: contrast(1.35) brightness(0.72) drop-shadow(0 24px 38px rgba(23, 18, 15, 0.22));
}

.hero__stats {
  grid-column: 1 / -1;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 920px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero__stats div {
  padding: 1.05rem clamp(0.8rem, 2vw, 1.4rem);
  border-right: 1px solid var(--line);
}

.hero__stats div:last-child {
  border-right: 0;
}

.hero__stats strong {
  display: block;
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.hero__stats span {
  display: block;
  margin-top: 0.3rem;
  color: rgba(255, 248, 233, 0.7);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 6vw, 6rem);
}

.reveal {
  transform: translateY(24px);
  opacity: 0.01;
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.manifesto {
  display: grid;
  place-items: center;
  min-height: 62vh;
  text-align: center;
  background:
    linear-gradient(rgba(247, 242, 232, 0.9), rgba(247, 242, 232, 0.96)),
    url("images/grapes-bg-2.jpg") center / cover;
  color: var(--ink);
}

.manifesto__content {
  width: min(1050px, 100%);
}

.manifesto h2 {
  max-width: 1050px;
}

.manifesto p:not(.eyebrow) {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: var(--ink-2);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.image-band {
  min-height: clamp(180px, 26vw, 360px);
  background: url("images/grapes.jpg") center / cover fixed;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--paper);
  color: var(--ink);
}

.pillars article {
  min-height: 390px;
  display: grid;
  align-content: end;
  padding: clamp(1.2rem, 3vw, 3rem);
  border-right: 1px solid rgba(23, 18, 15, 0.14);
  background:
    linear-gradient(180deg, rgba(245, 239, 227, 0.86), rgba(245, 239, 227, 0.98)),
    url("images/white-bg.png") center / cover;
}

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

.pillars span {
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pillars h3 {
  margin-top: 0.6rem;
  font-size: clamp(2.5rem, 5vw, 5.3rem);
}

.pillars p {
  max-width: 420px;
  color: var(--ink-2);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(202, 162, 79, 0.35);
  border-bottom: 1px solid rgba(202, 162, 79, 0.35);
  background: var(--wine);
}

.signal-strip div {
  min-height: 150px;
  display: grid;
  align-content: center;
  padding: clamp(1rem, 2.5vw, 2rem);
  border-right: 1px solid rgba(202, 162, 79, 0.28);
}

.signal-strip div:last-child {
  border-right: 0;
}

.signal-strip span {
  color: rgba(255, 248, 233, 0.56);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signal-strip strong {
  margin-top: 0.35rem;
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  font-weight: 400;
  line-height: 1;
}

.story {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  background: linear-gradient(135deg, var(--paper), var(--paper-2));
  color: var(--ink);
}

.story__media {
  position: relative;
}

.story__media::before {
  position: absolute;
  inset: -1rem 1rem 1rem -1rem;
  content: "";
  border: 1px solid rgba(202, 162, 79, 0.55);
}

.story__media img {
  position: relative;
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.story__text,
.moldova__text,
.wines__intro,
.craft__intro {
  max-width: 780px;
}

.story__text p,
.estate__content p,
.craft p,
.wines__intro p,
.moldova__text p,
.hospitality p,
.contact p,
address {
  color: rgba(255, 248, 233, 0.74);
}

.story__text p {
  color: var(--ink-2);
}

.quote-band {
  min-height: 58vh;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(rgba(23, 18, 15, 0.68), rgba(23, 18, 15, 0.86)),
    url("images/barrels.jpg") center / cover fixed;
}

.quote-band blockquote {
  max-width: 980px;
  margin: 0;
}

.quote-band blockquote p {
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(2.7rem, 6vw, 6.2rem);
  line-height: 1.03;
}

.quote-band cite {
  display: block;
  margin-top: 1.3rem;
  color: var(--gold-2);
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.estate {
  min-height: 760px;
  display: grid;
  align-items: end;
  padding: clamp(4.5rem, 9vw, 9rem) clamp(1.25rem, 6vw, 6rem);
  background:
    linear-gradient(180deg, rgba(247, 242, 232, 0.08), rgba(247, 242, 232, 0.7)),
    url("images/vineyards.jpg") center / cover fixed;
}

.estate__content {
  max-width: 850px;
  padding: clamp(1.35rem, 3vw, 3rem);
  background: rgba(247, 242, 232, 0.88);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.estate__content p {
  color: var(--ink-2);
}

.craft {
  background:
    linear-gradient(90deg, rgba(247, 242, 232, 0.94), rgba(247, 242, 232, 0.82)),
    url("images/barrels.jpg") center / cover;
  color: var(--ink);
}

.craft__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(2rem, 5vw, 4rem);
  background: rgba(255, 248, 233, 0.2);
}

.craft article {
  min-height: 280px;
  padding: clamp(1.25rem, 2.5vw, 2.25rem);
  background: rgba(255, 248, 233, 0.9);
}

.craft p {
  color: var(--ink-2);
}

.craft article span {
  display: block;
  margin-bottom: 3rem;
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 2.4rem;
}

.wines {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(245, 239, 227, 0.95), rgba(231, 218, 196, 0.98)),
    url("images/tablecloth-bg.png") center / cover;
  color: var(--ink);
}

.land-to-glass {
  background:
    linear-gradient(180deg, var(--paper-2), var(--paper) 62%, var(--paper-2));
  color: var(--ink);
}

.land-to-glass__intro {
  max-width: 900px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.journey {
  display: grid;
  gap: 1rem;
}

.journey__item {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1fr);
  min-height: 330px;
  border: 1px solid rgba(23, 18, 15, 0.14);
  background: rgba(255, 248, 233, 0.72);
  overflow: hidden;
}

.journey__item:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.8fr);
}

.journey__item:nth-child(even) img {
  order: 2;
}

.journey__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey__item div {
  display: grid;
  align-content: center;
  padding: clamp(1.3rem, 3vw, 3rem);
}

.journey__item span {
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.journey__item p {
  max-width: 650px;
  color: var(--ink-2);
}

.wines .eyebrow {
  color: var(--wine);
}

.wines__intro {
  margin: 0 auto;
  text-align: center;
}

.wines__intro p {
  margin-right: auto;
  margin-left: auto;
  color: var(--ink-2);
}

.bottle-stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.8rem, 2vw, 2rem);
  max-width: 1120px;
  margin: clamp(2rem, 5vw, 5rem) auto 0;
  align-items: end;
}

.bottle-stage::before {
  position: absolute;
  right: 2%;
  bottom: 5%;
  left: 2%;
  height: 26%;
  content: "";
  background: radial-gradient(ellipse, rgba(23, 18, 15, 0.32), transparent 68%);
  filter: blur(10px);
}

.bottle-stage figure {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: end;
  justify-items: center;
  margin: 0;
}

.bottle-stage figure:nth-child(2),
.bottle-stage figure:nth-child(3) {
  transform: translateY(-24px);
}

.bottle-stage img {
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.28));
  transition: transform 180ms ease;
}

.bottle-stage img:hover {
  transform: translateY(-12px) scale(1.02);
}

.photo-bottle-stage {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  max-width: 1180px;
}

.photo-bottle-stage::before {
  display: none;
}

.photo-bottle-stage .wine-photo-card,
.photo-bottle-stage .wine-photo-card:nth-child(2),
.photo-bottle-stage .wine-photo-card:nth-child(3) {
  position: relative;
  min-height: 0;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background: var(--ink);
  box-shadow: 0 24px 60px rgba(23, 18, 15, 0.25);
  transform: none;
}

.photo-bottle-stage .wine-photo-card {
  grid-column: span 2;
}

.photo-bottle-stage .wine-photo-card:nth-child(4),
.photo-bottle-stage .wine-photo-card:nth-child(5) {
  grid-column: span 3;
}

.photo-bottle-stage .wine-photo-card::after {
  position: absolute;
  inset: 42% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(16, 12, 10, 0.9));
  pointer-events: none;
}

.wine-photo-link {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  color: inherit;
  cursor: zoom-in;
}

.photo-bottle-stage .wine-photo-card img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  filter: none;
  transition: transform 220ms ease, filter 220ms ease;
}

.wine-photo-link:hover img,
.wine-photo-link:focus-visible img {
  transform: scale(1.025);
  filter: brightness(1.05);
}

.photo-bottle-stage figcaption {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(1rem, 2.4vw, 1.6rem);
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.2;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}

.image-lightbox {
  width: min(94vw, 1500px);
  max-width: none;
  height: min(94vh, 1100px);
  max-height: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--cream);
  overflow: visible;
}

.image-lightbox::backdrop {
  background: rgba(12, 9, 8, 0.94);
  backdrop-filter: blur(8px);
}

.image-lightbox figure {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0.8rem;
  margin: 0;
}

.image-lightbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.image-lightbox figcaption {
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.image-lightbox__close {
  position: fixed;
  z-index: 2;
  top: 1rem;
  right: 1.25rem;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 248, 233, 0.4);
  border-radius: 50%;
  background: rgba(23, 18, 15, 0.72);
  color: var(--cream);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.moldova {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.74fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(247, 242, 232, 0.96), rgba(231, 218, 196, 0.9)),
    url("images/grapes-bg-2.jpg") center / cover;
  color: var(--ink);
}

.moldova__text p {
  color: var(--ink-2);
}

.experience {
  background:
    linear-gradient(90deg, rgba(245, 239, 227, 0.96), rgba(231, 218, 196, 0.94)),
    url("images/white-bg.png") center / cover;
  color: var(--ink);
}

.experience .eyebrow {
  color: var(--wine);
}

.experience__copy {
  max-width: 1020px;
}

.experience__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(2rem, 5vw, 4rem);
  background: rgba(23, 18, 15, 0.16);
}

.experience__cards article {
  min-height: 290px;
  padding: clamp(1.25rem, 2.5vw, 2.25rem);
  background: rgba(255, 248, 233, 0.82);
}

.experience__cards p {
  color: var(--ink-2);
}

.hospitality {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: end;
  background:
    linear-gradient(90deg, rgba(23, 18, 15, 0.9), rgba(23, 18, 15, 0.58)),
    url("images/grapes.jpg") center / cover;
}

.hospitality p {
  max-width: 650px;
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
}

.hospitality .button {
  justify-self: start;
  align-self: start;
  margin-top: 1rem;
}

.moldova__map img {
  width: 100%;
  filter: drop-shadow(0 22px 44px rgba(0, 0, 0, 0.38));
}

.contact {
  background:
    linear-gradient(rgba(247, 242, 232, 0.88), rgba(247, 242, 232, 0.96)),
    url("images/grapes.jpg") center / cover;
  color: var(--ink);
}

.contact__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact p,
.contact address {
  color: var(--ink-2);
}

.contact address a {
  color: var(--wine);
}

address {
  margin-top: 1.4rem;
  font-style: normal;
}

address a {
  color: var(--gold-2);
  font-weight: 800;
}

.legal {
  font-size: 0.92rem;
}

.site-footer {
  padding: 1rem clamp(1.25rem, 4vw, 4rem);
  background: #0e0b09;
  color: rgba(255, 248, 233, 0.58);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 0.5rem clamp(1rem, 4vw, 4rem) 1rem;
    background: rgba(23, 18, 15, 0.98);
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-header.is-open .site-nav {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.82rem 0;
  }

  .language-switcher {
    margin-left: auto;
  }

  .hero,
  .story,
  .moldova,
  .hospitality {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero__lead {
    width: calc(100vw - 2rem);
    max-width: calc(100vw - 2rem);
    font-size: 0.96rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

  .hero__content {
    width: 100%;
    max-width: calc(100vw - 2rem);
  }

  .hero__actions {
    margin-top: 1.25rem;
  }

  .button--wine {
    min-height: 46px;
  }

  .hero__seal {
    justify-self: start;
  }

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

  .hero__stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero__stats div:last-child {
    border-bottom: 0;
  }

  .estate {
    min-height: 620px;
    background-attachment: scroll;
  }

  .craft__grid,
  .bottle-stage,
  .experience__cards,
  .signal-strip,
  .pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey__item,
  .journey__item:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .journey__item:nth-child(even) img {
    order: 0;
  }

  .journey__item img {
    min-height: 260px;
  }

  .bottle-stage figure {
    min-height: 390px;
  }

  .bottle-stage img {
    max-height: 420px;
  }

  .photo-bottle-stage .wine-photo-card {
    grid-column: auto;
  }

  .photo-bottle-stage .wine-photo-card:nth-child(5) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    flex-wrap: wrap;
  }

  .brand img {
    width: 126px;
  }

  .menu-toggle {
    margin-left: auto;
  }

  .language-switcher {
    order: 4;
    width: 100%;
    justify-content: center;
  }

  .hero,
  .section,
  .estate {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .hero {
    min-height: 100svh;
    padding-top: 10rem;
    padding-bottom: 2.5rem;
    align-content: center;
    align-items: start;
    grid-auto-rows: max-content;
    gap: 1rem;
  }

  h1 {
    font-size: clamp(2.05rem, 9.4vw, 2.75rem);
    line-height: 1.02;
  }

  html[lang="zh-Hans"] h1 {
    font-size: clamp(1.9rem, 8.8vw, 2.5rem);
    line-height: 1.12;
  }

  .hero__seal {
    order: -1;
    justify-self: start;
  }

  .hero__seal img {
    width: 108px;
    opacity: 1;
  }

  .manifesto {
    min-height: 62vh;
  }

  .manifesto__content {
    width: 100%;
  }

  .image-band {
    background-attachment: scroll;
  }

  .manifesto h2 {
    font-size: clamp(2.25rem, 12vw, 3.3rem);
  }

  h2 {
    font-size: clamp(2.35rem, 14vw, 3.7rem);
  }

  .story__media img {
    min-height: 300px;
  }

  .craft__grid,
  .bottle-stage,
  .experience__cards,
  .signal-strip,
  .pillars {
    grid-template-columns: 1fr;
  }

  .photo-bottle-stage .wine-photo-card,
  .photo-bottle-stage .wine-photo-card:nth-child(2),
  .photo-bottle-stage .wine-photo-card:nth-child(3) {
    min-height: 0;
    grid-column: 1;
  }

  .pillars article {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 18, 15, 0.14);
  }

  .pillars article:last-child {
    border-bottom: 0;
  }

  .signal-strip div {
    min-height: 120px;
    border-right: 0;
    border-bottom: 1px solid rgba(202, 162, 79, 0.28);
  }

  .signal-strip div:last-child {
    border-bottom: 0;
  }

  .craft article {
    min-height: auto;
  }

  .craft article span {
    margin-bottom: 1.5rem;
  }

  .bottle-stage figure,
  .bottle-stage figure:nth-child(2),
  .bottle-stage figure:nth-child(3) {
    min-height: 320px;
    transform: none;
  }

  .bottle-stage img {
    max-height: 360px;
  }
}
