:root {
  --color-white: #ffffff;
  --color-burgundy: #611217;
  --color-mist: #e0e0ea;
  --color-plum: #742553;
  --color-ink: #1c171b;
  --color-muted: rgba(28, 23, 27, 0.68);
  --color-background: var(--color-white);
  --color-surface: #ffffff;
  --color-accent: var(--color-burgundy);
  --color-accent-dark: #430c10;
  --color-line: rgba(97, 18, 23, 0.16);
  --shadow-soft: 0 24px 70px rgba(97, 18, 23, 0.14);
  --header-height: 124px;
  --compact-header-height: 82px;
  --site-header-offset: calc(var(--compact-header-height) + 20px);
  --scroll-fade-height: 96px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-ink);
  background: var(--color-background);
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: var(--site-header-offset);
  background: var(--color-burgundy);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--color-background);
}

body::before {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  z-index: 15;
  height: var(--scroll-fade-height);
  pointer-events: none;
  content: "";
  background: linear-gradient(to bottom, var(--color-white), rgba(255, 255, 255, 0));
  transition: top 240ms ease, height 240ms ease;
}

body.has-compact-header::before {
  top: var(--compact-header-height);
  height: 72px;
}

a {
  color: inherit;
}

.button-icon {
  display: block;
  width: 22px;
  height: 22px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: var(--header-height);
  isolation: isolate;
  background: var(--color-burgundy);
  box-shadow: 0 8px 24px rgba(28, 23, 27, 0.08);
  transform: translateZ(0);
  transition: min-height 240ms ease;
}

.site-header.is-compact {
  min-height: var(--compact-header-height);
}

.site-header.is-anchor-positioning,
.site-header.is-anchor-positioning .brand-zone,
.site-header.is-anchor-positioning .nav-zone,
.site-header.is-anchor-positioning .brand-logo,
.site-header.is-anchor-positioning .brand-logo img {
  transition: none;
}

.brand-zone,
.nav-zone {
  display: flex;
  align-items: center;
  min-height: var(--header-height);
  transition: min-height 240ms ease, flex-basis 240ms ease, padding 240ms ease;
}

.brand-zone {
  flex: 0 0 clamp(280px, 29vw, 390px);
  justify-content: center;
  padding: 8px 10px;
  background: var(--color-mist);
}

.nav-zone {
  flex: 1;
  justify-content: flex-end;
  padding: 16px max(16px, calc((100vw - 1120px) / 2)) 16px 30px;
  background: var(--color-burgundy);
}

.brand-logo {
  position: relative;
  display: block;
  width: min(100%, 370px);
  height: 104px;
  text-decoration: none;
  transition: width 240ms ease, height 240ms ease;
}

.brand-logo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity 180ms ease, transform 240ms ease;
}

.brand-logo-compact {
  opacity: 0;
  transform: scale(0.86);
}

.site-header.is-compact .brand-zone,
.site-header.is-compact .nav-zone {
  min-height: var(--compact-header-height);
}

.site-header.is-compact .brand-zone {
  flex-basis: 250px;
}

.site-header.is-compact .brand-logo {
  width: 210px;
  height: 68px;
}

.site-header.is-compact .brand-logo-default {
  opacity: 0;
  transform: scale(0.88);
}

.site-header.is-compact .brand-logo-compact {
  opacity: 1;
  transform: scale(1);
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: clamp(14px, 1.65vw, 24px);
  color: var(--color-white);
  font-size: clamp(0.84rem, 0.95vw, 0.95rem);
  font-weight: 600;
}

.nav-links a {
  text-decoration: none;
}

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

.nav-menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  min-height: calc(100vh - var(--header-height));
  margin: 0 auto;
  padding: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.hero-visual {
  position: absolute;
  top: -4vh;
  right: calc((100vw - min(1120px, calc(100vw - 32px))) / -2 - 9vw);
  bottom: 0;
  z-index: 1;
  width: min(52vw, 820px);
  overflow: hidden;
  opacity: 0.94;
  pointer-events: none;
}

.hero-visual.is-empty {
  display: none;
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0) 62%, var(--color-white) 100%),
    linear-gradient(to right, var(--color-white) 0%, rgba(255, 255, 255, 0.72) 18%, rgba(255, 255, 255, 0.1) 58%, rgba(255, 255, 255, 0) 100%);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-plum);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 980px;
  margin: 0;
  color: var(--color-burgundy);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  color: var(--color-burgundy);
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.event-date {
  margin: 22px 0 0;
  color: var(--color-plum);
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
}

.about-section,
.guest-section,
.winemakers-section,
.favourites-section,
.gallery-preview-section,
.event-info,
.social-section,
.sponsors-section {
  padding: 78px max(16px, calc((100% - 1120px) / 2));
  background: var(--color-white);
}

.about-section {
  position: relative;
  padding-bottom: 0;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  margin: clamp(46px, 6vw, 72px) 0;
}

.about-content {
  min-width: 0;
}

.about-image {
  width: min(100%, 390px);
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-mist);
}

.about-image img {
  display: block;
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center;
  transform: translateY(var(--about-image-shift, -6%));
  transition: transform 80ms linear;
  will-change: transform;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 clamp(46px, 6vw, 72px);
  padding: 0;
  background: var(--color-white);
}

.about-stats-viewport {
  min-width: 0;
}

.about-stat {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 190px;
  padding: 0 clamp(18px, 3vw, 34px);
  text-align: center;
}

.about-stat + .about-stat {
  border-left: 2px solid var(--color-mist);
}

.about-stat dt,
.about-stat dd {
  margin: 0;
}

.about-stat dt {
  display: grid;
  justify-items: center;
  gap: 14px;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.7vw, 1.3rem);
  font-weight: 800;
  line-height: 1.18;
}

.about-stat dt svg {
  width: 34px;
  height: 34px;
  color: var(--color-plum);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.about-stat dd {
  order: -1;
  margin-bottom: 18px;
  color: var(--color-burgundy);
  font-size: clamp(3rem, 6.8vw, 5.4rem);
  font-weight: 850;
  line-height: 0.95;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.about-story {
  --about-story-visual-size: clamp(260px, 34vw, 390px);

  display: grid;
  grid-template-columns: var(--about-story-visual-size) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
  margin: 0 0 clamp(58px, 8vw, 96px);
}

.about-story-media {
  position: sticky;
  top: calc(var(--compact-header-height) + 34px);
  align-self: start;
}

.about-story-visual {
  position: relative;
  width: var(--about-story-visual-size);
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-mist);
}

.about-story-visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 420ms ease,
    transform 720ms ease;
}

.about-story-visual img.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.about-story-copy {
  min-width: 0;
}

.about-story-copy p {
  display: flex;
  align-items: center;
  min-height: var(--about-story-visual-size);
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(1.15rem, 2.15vw, 1.45rem);
  line-height: 1.68;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 520ms ease,
    transform 620ms ease;
}

.about-story-copy p + p {
  margin-top: clamp(34px, 6vw, 72px);
}

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

.section-lane {
  width: 100%;
  height: 2px;
  margin-bottom: 46px;
  border-radius: 0;
  background: var(--color-mist);
}

.about-section .section-lane {
  margin-bottom: 0;
}

.section-heading {
  max-width: 720px;
}

.section-copy {
  max-width: 900px;
  margin: 28px 0 0;
  color: var(--color-muted);
  font-size: clamp(1.12rem, 2vw, 1.34rem);
  line-height: 1.75;
}

.guest-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(42px, 6vw, 76px);
  align-items: center;
}

.guest-content {
  min-width: 0;
}

.guest-copy {
  max-width: 650px;
  margin-top: 28px;
  color: var(--color-muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

.guest-copy p {
  margin: 0;
}

.guest-copy p:first-child {
  color: var(--color-ink);
  font-size: clamp(1.14rem, 1.8vw, 1.3rem);
  font-weight: 700;
  line-height: 1.55;
}

.guest-copy p + p {
  margin-top: 20px;
}

.guest-read-more,
.guest-page-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid var(--color-burgundy);
  border-radius: 999px;
  color: var(--color-burgundy);
  background: var(--color-white);
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.guest-read-more {
  margin-top: 30px;
}

.guest-read-more:hover,
.guest-read-more:focus-visible,
.guest-page-back-link:hover,
.guest-page-back-link:focus-visible {
  outline: 0;
  color: var(--color-white);
  background: var(--color-burgundy);
}

.guest-read-more:focus-visible,
.guest-page-back-link:focus-visible {
  outline: 2px solid var(--color-plum);
  outline-offset: 5px;
}

.guest-image {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: var(--color-mist);
  box-shadow: var(--shadow-soft);
}

.guest-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guest-bottom-lane {
  margin-top: 54px;
  margin-bottom: 0;
}

.favourites-inner {
  min-width: 0;
}

.favourites-inner h2 {
  max-width: 720px;
}

.favourites-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px);
  margin-top: 42px;
}

.favourite-card {
  --favourite-bottle-width: 100%;
  --favourite-details-opacity: 1;
  --favourite-details-shift: 0px;
  min-width: 0;
}

.favourite-image-link {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 10px;
  background: transparent;
}

.favourites-section.has-scroll-animation .favourite-image-link {
  left: 50%;
  width: var(--favourite-bottle-width);
  margin-inline: 0;
  transform: translateX(-50%);
}

.favourite-image-link img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  scale: 1;
  transition: filter 220ms ease, scale 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.favourite-card:first-child .favourite-image-link img {
  transform: translateY(2.7%) scale(1.021);
}

.favourite-card:nth-child(2) .favourite-image-link img {
  transform: translateY(-1.6%) scale(0.932);
}

.favourite-image-link:hover img,
.favourite-image-link:focus-visible img {
  filter: brightness(1.04);
  scale: 1.035;
}

.favourite-image-link:focus-visible {
  outline: 3px solid var(--color-plum);
  outline-offset: 3px;
}

.favourite-details {
  width: min(100%, 380px);
  margin: 0 auto;
  padding: 24px 12px 0;
  color: var(--color-ink);
  opacity: var(--favourite-details-opacity);
  text-align: center;
  transform: translateY(var(--favourite-details-shift));
}

.favourite-details h3 {
  margin: 0;
  color: var(--color-burgundy);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

.favourite-vintage {
  margin: 4px 0 0;
  color: var(--color-plum);
  font-size: 1.04rem;
  font-weight: 700;
}

.favourite-producer {
  margin: 20px 0 0;
  font-size: 1.06rem;
  font-weight: 800;
}

.favourite-details address {
  margin-top: 7px;
  color: var(--color-muted);
  font-style: normal;
  line-height: 1.55;
}

.favourite-website {
  display: inline-block;
  margin-top: 18px;
  color: var(--color-plum);
  font-weight: 750;
  text-underline-offset: 4px;
}

.favourites-archive {
  display: flex;
  justify-content: center;
  margin-top: 72px;
}

.favourites-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid var(--color-burgundy);
  border-radius: 999px;
  color: var(--color-burgundy);
  background: var(--color-white);
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.favourites-link:hover,
.favourites-link:focus-visible {
  color: var(--color-white);
  background: var(--color-burgundy);
}

.favourites-link:focus-visible {
  outline: 2px solid var(--color-plum);
  outline-offset: 5px;
}

.winemakers-intro {
  max-width: 820px;
  margin: 28px 0 0;
  color: var(--color-muted);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.7;
}

.charter-trigger {
  position: relative;
  display: inline;
  padding: 0;
  border: 0;
  color: var(--color-burgundy);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.charter-trigger.is-static {
  color: var(--color-muted);
  cursor: default;
  font-weight: inherit;
  text-decoration-color: transparent;
  pointer-events: none;
}

.charter-trigger.is-static .charter-tooltip {
  display: none;
}

.charter-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  z-index: 4;
  width: max-content;
  max-width: 230px;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--color-white);
  background: var(--color-burgundy);
  box-shadow: 0 12px 24px rgba(97, 18, 23, 0.18);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.charter-tooltip::after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--color-burgundy);
  transform: translate(-50%, -5px) rotate(45deg);
}

.charter-trigger:hover .charter-tooltip,
.charter-trigger:focus-visible .charter-tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
}

.charter-panel {
  position: relative;
  display: grid;
  grid-template-rows: 0fr;
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 34px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  background: rgba(224, 224, 234, 0.36);
  opacity: 0;
  transform: translateY(-14px);
  transform-origin: top;
  transition:
    grid-template-rows 520ms cubic-bezier(0.22, 1, 0.36, 1),
    margin 520ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 520ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms ease,
    opacity 320ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.charter-panel[hidden] {
  display: none;
}

.charter-panel.is-open {
  grid-template-rows: 1fr;
  margin-top: 54px;
  padding-top: 34px;
  padding-bottom: 34px;
  border-color: var(--color-line);
  opacity: 1;
  transform: translateY(0);
}

.charter-panel-inner {
  position: relative;
  min-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 240ms ease 180ms, transform 320ms ease 160ms;
}

.charter-panel.is-open .charter-panel-inner {
  opacity: 1;
  transform: translateY(0);
}

.charter-panel:not(.is-open) .charter-panel-inner {
  transition-delay: 0ms;
}

.charter-hide {
  position: absolute;
  top: 24px;
  right: 24px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(97, 18, 23, 0.2);
  border-radius: 8px;
  color: var(--color-burgundy);
  background: var(--color-white);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
}

.charter-hide:hover,
.charter-hide:focus-visible {
  border-color: var(--color-burgundy);
}

.charter-panel h3 {
  margin: 0;
  padding-right: 160px;
  color: var(--color-burgundy);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.08;
}

.charter-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.charter-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  min-height: 82px;
  color: var(--color-ink);
  font-size: clamp(1rem, 1.5vw, 1.13rem);
  font-weight: 650;
  line-height: 1.48;
}

.charter-icon {
  width: 28px;
  height: 28px;
  margin-top: 0.1em;
  color: var(--color-plum);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.winemakers-list-shell {
  margin-top: 24px;
}

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

.winemaker-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 156px;
  padding: 22px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: rgba(224, 224, 234, 0.3);
  cursor: pointer;
  transition:
    opacity 240ms ease,
    border-color 260ms ease,
    color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease,
    transform 240ms ease;
}

.winemaker-card:hover,
.winemaker-card:focus-visible {
  outline: 0;
  border-color: rgba(97, 18, 23, 0.36);
  background: rgba(224, 224, 234, 0.46);
  box-shadow: 0 18px 34px rgba(97, 18, 23, 0.1);
  transform: translateY(-2px);
}

.winemaker-card h3 {
  margin: 0;
  color: var(--color-burgundy);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.22;
}

.winemaker-card.is-active {
  border-color: var(--color-burgundy);
  color: var(--color-white);
  background: var(--color-burgundy);
  box-shadow: 0 20px 42px rgba(97, 18, 23, 0.16);
}

.winemaker-card.is-active h3,
.winemaker-card.is-active .winemaker-canton {
  color: var(--color-white);
}

.winemaker-card h3,
.winemaker-card .winemaker-canton {
  transition: color 260ms ease;
}

.winemaker-card.is-active:hover,
.winemaker-card.is-active:focus-visible {
  background: var(--color-accent-dark);
}

.winemaker-card[hidden] {
  display: none;
}

.winemaker-card.is-revealing {
  animation: winemaker-card-reveal 420ms ease both;
}

.winemaker-card.is-hiding {
  animation: winemaker-card-hide 240ms ease both;
  pointer-events: none;
}

.winemaker-canton,
.modal-canton {
  display: inline-flex;
  align-items: center;
}

.winemaker-canton {
  gap: 9px;
  margin: 18px 0 0;
  color: var(--color-ink);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1;
}

.canton-flag,
.modal-canton img {
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.canton-flag {
  width: 26px;
  height: 26px;
}

.winemakers-toolbar {
  display: flex;
  justify-content: flex-start;
  margin-top: 38px;
}

.filter-menu {
  position: relative;
  z-index: 6;
}

.filter-menu::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  height: 10px;
  content: "";
}

.filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--color-burgundy);
  border-radius: 8px;
  color: var(--color-burgundy);
  background: var(--color-white);
  cursor: pointer;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 850;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.filter-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.3;
}

.filter-menu.is-active .filter-toggle {
  color: var(--color-white);
  background: var(--color-burgundy);
}

.filter-menu.is-hovering .filter-toggle,
.filter-toggle:focus-visible {
  border-color: var(--color-mist);
  color: var(--color-ink);
  background: var(--color-mist);
  outline: 0;
}

.filter-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 220px;
  padding: 8px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 22px 56px rgba(28, 23, 27, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.filter-menu.is-hovering .filter-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.filter-menu.is-closing .filter-panel {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.filter-category {
  position: relative;
}

.filter-category::after {
  position: absolute;
  top: -8px;
  left: 100%;
  width: 10px;
  height: calc(100% + 16px);
  content: "";
}

.filter-category-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  color: var(--color-burgundy);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 850;
}

.filter-category-button::after {
  width: 8px;
  height: 8px;
  content: "";
  border-color: currentColor;
  border-style: solid;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}

.filter-category.is-hovering .filter-category-button {
  color: var(--color-ink);
  background: var(--color-mist);
}

.filter-submenu {
  position: absolute;
  top: -8px;
  left: calc(100% + 10px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 230px;
  max-height: min(420px, calc(100vh - 220px));
  padding: 8px;
  overflow-y: auto;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 22px 56px rgba(28, 23, 27, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
  scrollbar-color: var(--color-burgundy) rgba(224, 224, 234, 0.66);
  scrollbar-width: thin;
}

.filter-category.is-hovering .filter-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.filter-menu.is-closing .filter-submenu {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-8px);
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 0 11px;
  border: 0;
  border-radius: 8px;
  color: var(--color-burgundy);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 760;
  text-align: left;
}

.filter-option img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.filter-option:hover,
.filter-option:focus-visible {
  outline: 0;
  color: var(--color-ink);
  border-color: var(--color-mist);
  background: var(--color-mist);
}

.filter-option.is-selected {
  outline: 0;
  color: var(--color-white);
  border-color: var(--color-burgundy);
  background: var(--color-burgundy);
}

.show-more-winemakers {
  position: relative;
  display: block;
  margin: 34px auto 0;
  padding: 0;
  border: 0;
  color: var(--color-plum);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 1rem;
  font-weight: 850;
  text-decoration: none;
  transition: color 180ms ease;
}

.show-more-winemakers::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--color-mist);
  transition: background 180ms ease;
}

.show-more-winemakers.is-revealing {
  animation: winemaker-card-reveal 260ms ease both;
}

.show-more-winemakers.is-hiding {
  animation: winemaker-card-hide 220ms ease both;
  pointer-events: none;
}

.show-more-winemakers:hover,
.show-more-winemakers:focus-visible {
  outline: 0;
  color: var(--color-plum);
}

.show-more-winemakers:hover::after,
.show-more-winemakers:focus-visible::after {
  background: var(--color-burgundy);
}

.show-more-winemakers[hidden] {
  display: none;
}

.gallery-preview-intro {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--color-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.gallery-preview-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(170px, 0.72fr);
  gap: 16px;
  margin-top: 36px;
}

.gallery-preview-card,
.gallery-preview-more {
  min-height: 250px;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-preview-card {
  position: relative;
  display: block;
  background: var(--color-mist);
}

.gallery-preview-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(67, 12, 16, 0.22), transparent 46%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.gallery-preview-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-preview-card:hover::after,
.gallery-preview-card:focus-visible::after {
  opacity: 1;
}

.gallery-preview-card:hover img,
.gallery-preview-card:focus-visible img {
  transform: scale(1.045);
}

.gallery-preview-card:focus-visible,
.gallery-preview-more:focus-visible {
  outline: 3px solid var(--color-plum);
  outline-offset: 3px;
}

.gallery-preview-more {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 24px;
  padding: 28px;
  color: var(--color-white);
  text-decoration: none;
  background:
    radial-gradient(circle at 84% 14%, rgba(224, 224, 234, 0.2), transparent 32%),
    linear-gradient(145deg, var(--color-plum), var(--color-burgundy));
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.gallery-preview-more > span {
  max-width: 180px;
  font-size: 1.12rem;
  font-weight: 650;
  line-height: 1.4;
}

.gallery-preview-more strong {
  font-size: 1rem;
}

.gallery-preview-more:hover,
.gallery-preview-more:focus-visible {
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(28, 23, 27, 0.34);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.modal-backdrop.is-opening {
  animation: modal-backdrop-in 180ms ease both;
}

.modal-backdrop.is-closing {
  animation: modal-backdrop-out 200ms ease both;
}

.modal-backdrop[hidden] {
  display: none;
}

.winemaker-modal-shell {
  display: contents;
}

.modal-nav {
  position: fixed;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  color: var(--color-white);
  background: var(--color-burgundy);
  box-shadow: 0 16px 34px rgba(28, 23, 27, 0.18);
  cursor: pointer;
  font: inherit;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.modal-nav:hover,
.modal-nav:focus-visible {
  outline: 0;
  background: var(--color-accent-dark);
  transform: translateY(-50%) scale(1.04);
}

.modal-nav-previous {
  left: max(18px, calc((100vw - 1180px) / 2));
}

.modal-nav-next {
  right: max(18px, calc((100vw - 1180px) / 2));
}

.winemaker-modal {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(320px, 1fr);
  width: min(1040px, 100%);
  height: min(640px, calc(100vh - 56px));
  max-height: calc(100vh - 56px);
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 34px 90px rgba(28, 23, 27, 0.32);
}

.modal-backdrop.is-opening .winemaker-modal {
  animation: modal-in 220ms ease both;
}

.modal-backdrop.is-closing .winemaker-modal {
  animation: modal-out 200ms ease both;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: var(--color-white);
  background: var(--color-burgundy);
  cursor: pointer;
  font: inherit;
}

.modal-close:hover,
.modal-close:focus-visible {
  outline: 0;
  background: var(--color-accent-dark);
}

.modal-image {
  margin: 0;
  background: var(--color-mist);
}

.modal-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: clamp(34px, 5vw, 58px);
}

.modal-kicker {
  margin: 0 0 14px;
  color: var(--color-plum);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.modal-content h3 {
  margin: 0;
  color: var(--color-burgundy);
  font-size: clamp(1.95rem, 3.8vw, 3.65rem);
  line-height: 1.02;
}

.modal-content h3.is-long-title {
  font-size: clamp(1.65rem, 3vw, 2.75rem);
}

.modal-description {
  max-width: 520px;
  max-height: 178px;
  margin: 24px 0 0;
  padding-right: 12px;
  overflow-y: auto;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.72;
  scrollbar-color: var(--color-burgundy) rgba(224, 224, 234, 0.66);
  scrollbar-width: thin;
}

.modal-description::-webkit-scrollbar {
  width: 8px;
}

.modal-description::-webkit-scrollbar-track {
  background: rgba(224, 224, 234, 0.66);
  border-radius: 999px;
}

.modal-description::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--color-burgundy);
}

.modal-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--color-line);
}

.modal-canton {
  gap: 10px;
  color: var(--color-ink);
  font-size: 1rem;
  font-weight: 850;
}

.modal-canton img {
  width: 32px;
  height: 32px;
}

.modal-wine-type {
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--color-white);
  background: var(--color-burgundy);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
}

@keyframes modal-backdrop-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes modal-backdrop-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }

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

@keyframes modal-out {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  to {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }
}

@keyframes about-stats-marquee {
  from {
    transform: translateX(0);
  }

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

@keyframes winemaker-card-reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes winemaker-card-hide {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .winemaker-card.is-revealing,
  .modal-backdrop.is-opening,
  .modal-backdrop.is-closing,
  .modal-backdrop.is-opening .winemaker-modal,
  .modal-backdrop.is-closing .winemaker-modal {
    animation: none;
  }

  .about-image img {
    transform: translateY(-6%);
    transition: none;
  }

  .about-story-copy p {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .archive-wine-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .archive-bottle,
  .archive-timeline-line span,
  .archive-timeline-link {
    transition: none;
  }

  .favourites-section.has-scroll-animation .favourite-image-link {
    width: 100%;
  }

  .favourites-section.has-scroll-animation .favourite-details {
    opacity: 1;
    transform: none;
  }
}

.visit-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(440px, 1.28fr);
  gap: clamp(42px, 7vw, 88px);
  align-items: stretch;
  margin-top: 42px;
}

.visit-details {
  align-self: center;
}

.visit-detail + .visit-detail {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid var(--color-mist);
}

.visit-detail h3 {
  margin: 0 0 12px;
  color: var(--color-plum);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  line-height: 1.25;
}

.visit-detail p,
.visit-detail address {
  margin: 0;
  color: var(--color-ink);
  font-size: 1.06rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.62;
}

.visit-detail p + p {
  margin-top: 3px;
}

.visit-map {
  min-height: 500px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--color-mist);
  box-shadow: var(--shadow-soft);
}

.visit-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.event-bottom-lane {
  margin-top: 46px;
  margin-bottom: 0;
}

.social-section {
  padding-top: 22px;
  padding-bottom: 96px;
}

.sponsors-section {
  padding-top: 0;
  padding-bottom: 96px;
}

.sponsors-list {
  margin-top: 42px;
}

.sponsor-tier {
  padding: 8px 0 38px;
}

.sponsor-tier + .sponsor-tier {
  padding-top: 38px;
  border-top: 2px solid var(--color-mist);
}

.sponsor-visual {
  width: min(100%, 900px);
  min-width: 0;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--color-line);
  border-radius: 10px;
  background: var(--color-white);
}

.sponsor-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.social-heading {
  display: block;
}

.social-heading h2 {
  white-space: nowrap;
}

.social-heading > p {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 1.04rem;
  line-height: 1.6;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 34px);
  margin-top: 42px;
}

.social-feed {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 12px;
  background: rgba(224, 224, 234, 0.28);
}

.social-feed-header {
  min-height: 82px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-line);
  background: var(--color-white);
}

.social-account-link {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  color: inherit;
  text-decoration: none;
}

.social-account-link h3 {
  transition: color 180ms ease;
}

.social-account-link:hover h3,
.social-account-link:focus-visible h3 {
  color: var(--color-plum);
}

.social-account-link:focus-visible {
  outline: 2px solid var(--color-plum);
  outline-offset: 4px;
  border-radius: 6px;
}

.social-feed-header h3,
.social-feed-header p {
  margin: 0;
}

.social-feed-header h3 {
  margin-top: 2px;
  color: var(--color-ink);
  font-size: 1.04rem;
}

.social-platform-name {
  display: block;
  color: var(--color-plum);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.social-platform-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border-radius: 12px;
}

.social-platform-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-carousel-viewport {
  overflow: hidden;
}

.social-carousel-track {
  display: flex;
  transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.social-slide {
  display: grid;
  flex: 0 0 100%;
  min-width: 0;
  height: 620px;
  place-items: start center;
  overflow: hidden;
  background: #f7f7fa;
}

.instagram-post,
.facebook-timeline iframe {
  display: block;
  width: 100%;
  height: 620px;
  border: 0;
  background: var(--color-white);
}

.social-more-card {
  display: flex;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  padding: 42px;
  color: var(--color-white);
  text-align: center;
  text-decoration: none;
  background:
    radial-gradient(circle at 82% 18%, rgba(224, 224, 234, 0.18), transparent 30%),
    linear-gradient(145deg, var(--color-plum), var(--color-burgundy));
}

.social-more-card strong {
  max-width: 320px;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1.08;
}

.social-more-card > span:last-child {
  font-weight: 650;
}

.social-more-logo {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.social-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 72px;
  padding: 12px 20px;
  border-top: 1px solid var(--color-line);
  background: var(--color-white);
}

.social-arrow {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: var(--color-white);
  background: var(--color-burgundy);
  cursor: pointer;
  font: inherit;
  font-size: 1.45rem;
  line-height: 1;
  transition: background 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.social-arrow:hover:not(:disabled),
.social-arrow:focus-visible:not(:disabled) {
  outline: 0;
  background: var(--color-accent-dark);
  transform: scale(1.06);
}

.social-arrow:disabled {
  opacity: 0.28;
  cursor: default;
}

.social-carousel-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  margin: 0;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  pointer-events: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.social-carousel-status.is-link {
  color: var(--color-white);
  background: var(--color-burgundy);
  pointer-events: auto;
}

.social-carousel-status.is-link:hover,
.social-carousel-status.is-link:focus-visible {
  outline: 0;
  background: var(--color-accent-dark);
  transform: scale(1.04);
}

.facebook-timeline {
  height: 620px;
  overflow: hidden;
  background: #f7f7fa;
}

.social-dynamic-feed[hidden] {
  display: none;
}

.social-post-card {
  position: relative;
  display: flex;
  align-self: stretch;
  flex-direction: column;
  width: 100%;
  color: var(--color-ink);
  text-decoration: none;
  background: var(--color-white);
}

.social-post-image {
  display: block;
  width: 100%;
  min-height: 360px;
  flex: 1 1 auto;
  object-fit: cover;
  background: var(--color-mist);
}

.social-post-copy {
  min-height: 154px;
  padding: 24px;
}

.social-post-copy p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--color-ink);
  font-size: 0.98rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.social-post-copy span {
  display: inline-block;
  margin-top: 14px;
  color: var(--color-plum);
  font-size: 0.78rem;
  font-weight: 800;
}

.instagram-manual-card .social-post-image,
.facebook-manual-card .social-post-image {
  width: 100%;
  height: 492px;
  min-height: 0;
  flex: 0 0 auto;
  object-fit: contain;
  background: #9f0f69;
}

.instagram-manual-card .social-post-copy,
.facebook-manual-card .social-post-copy {
  min-height: 128px;
  padding: 20px 24px;
}

.facebook-manual-card .social-post-image {
  background: #eef3fb;
}

.social-profile-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 72px;
  padding: 14px 20px;
  color: var(--color-burgundy);
  font-weight: 800;
  text-decoration: none;
  border-top: 1px solid var(--color-line);
  background: var(--color-white);
}

.social-profile-link:hover,
.social-profile-link:focus-visible {
  color: var(--color-plum);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 36px;
  color: var(--color-muted);
  border-top: 1px solid var(--color-line);
}

.site-footer p {
  margin: 0;
}

.footer-organizer {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  color: var(--color-mist);
  text-decoration: none;
}

.footer-organizer span {
  color: var(--color-burgundy);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.footer-organizer img {
  display: block;
  width: min(230px, 34vw);
  height: auto;
}

.gallery-page-main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0 104px;
}

.archive-page-main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0 104px;
}

.guest-page-main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0 104px;
}

.guest-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1.14fr);
  gap: clamp(42px, 7vw, 88px);
  align-items: center;
}

.guest-page-intro {
  min-width: 0;
}

.guest-page-kicker {
  margin: 0 0 18px;
  color: var(--color-plum);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.03em;
}

.guest-page-intro h1 {
  max-width: 680px;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

.guest-page-lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--color-muted);
  font-size: clamp(1.1rem, 1.8vw, 1.28rem);
  line-height: 1.72;
}

.guest-page-image {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: var(--color-mist);
  box-shadow: var(--shadow-soft);
}

.guest-page-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guest-page-divider {
  margin: 82px 0 72px;
}

.guest-page-story {
  width: min(820px, 100%);
  margin: 0 auto;
}

.guest-page-story section + section {
  margin-top: 54px;
}

.guest-page-story h2 {
  margin: 0;
  color: var(--color-burgundy);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.18;
}

.guest-page-story p {
  margin: 20px 0 0;
  color: var(--color-muted);
  font-size: 1.06rem;
  line-height: 1.82;
}

.guest-page-highlight {
  padding: clamp(28px, 5vw, 46px);
  border-left: 4px solid var(--color-burgundy);
  background: rgba(224, 224, 234, 0.34);
}

.guest-page-actions {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

.archive-page-content {
  max-width: 850px;
}

.archive-page-content h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

.archive-page-content p {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--color-muted);
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
  line-height: 1.7;
}

.archive-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 34px;
  padding: 12px 20px;
  border: 1px solid var(--color-burgundy);
  border-radius: 999px;
  color: var(--color-burgundy);
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.archive-back-link:hover,
.archive-back-link:focus-visible {
  outline: 0;
  color: var(--color-white);
  background: var(--color-burgundy);
}

.archive-layout {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: start;
  margin-top: 78px;
}

.archive-timeline {
  --archive-active-header-height: var(--header-height);
  --archive-timeline-height: min(580px, calc(100vh - var(--archive-active-header-height) - 40px));
  --archive-timeline-axis: -22px;
  position: sticky;
  top: max(calc(var(--header-height) + 20px), calc(50vh - 228px));
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: 20px;
  width: 148px;
  height: var(--archive-timeline-height);
  transform: translateX(calc(0px - max(0px, calc((100vw - 1120px) / 2 - 32px))));
  transition: top 240ms ease;
}

body.has-compact-header .archive-timeline {
  --archive-active-header-height: var(--compact-header-height);
  top: max(calc(var(--compact-header-height) + 20px), calc(50vh - 249px));
}

.archive-timeline-line {
  position: relative;
  width: 2px;
  height: calc(100% - 38px);
  margin: 19px auto;
  overflow: hidden;
  border-radius: 999px;
  background: var(--color-mist);
}

.archive-timeline-line span {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 0;
  border-radius: inherit;
  background: var(--color-burgundy);
  transition: height 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.archive-timeline-nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 0;
  height: 100%;
}

.archive-timeline-link {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.archive-timeline-link::before {
  position: absolute;
  top: 50%;
  left: var(--archive-timeline-axis);
  width: 8px;
  height: 8px;
  border: 2px solid var(--color-white);
  border-radius: 999px;
  content: "";
  background: var(--color-mist);
  box-shadow: 0 0 0 1px var(--color-mist);
  transform: translate(-50%, -50%);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.archive-timeline-link:hover,
.archive-timeline-link:focus-visible {
  outline: 0;
  color: var(--color-burgundy);
  background: rgba(224, 224, 234, 0.48);
}

.archive-timeline-link.is-active {
  color: var(--color-white);
  background: var(--color-burgundy);
}

.archive-timeline-link.is-active::before {
  background: var(--color-burgundy);
  box-shadow: 0 0 0 3px rgba(97, 18, 23, 0.18);
  transform: translate(-50%, -50%) scale(1.2);
}

.archive-year {
  min-height: 72vh;
  padding: 0 0 90px;
  scroll-margin-top: calc(var(--compact-header-height) + 34px);
}

.archive-year + .archive-year {
  padding-top: 56px;
  border-top: 2px solid var(--color-mist);
}

.archive-year-heading {
  margin-bottom: 30px;
  color: var(--color-burgundy);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.archive-wines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.archive-wine-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 12px;
  background: rgba(224, 224, 234, 0.2);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease;
}

.archive-wine-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.archive-wine-card:hover {
  box-shadow: var(--shadow-soft);
}

.archive-bottle-frame {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--color-white);
}

.archive-bottle {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  scale: 1;
  transition: scale 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.archive-bottle-red {
  transform: scale(0.88);
}

.archive-bottle-white {
  transform: translateY(0.5%) scale(0.9);
}

.archive-wine-card:hover .archive-bottle {
  scale: 1.035;
}

.archive-wine-type {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--color-burgundy);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(28, 23, 27, 0.1);
  font-size: 0.75rem;
  font-weight: 800;
}

.archive-wine-content {
  min-height: 250px;
  padding: 24px;
}

.archive-wine-vintage {
  margin: 0 0 7px;
  color: var(--color-plum);
  font-size: 0.82rem;
  font-weight: 800;
}

.archive-wine-content h3 {
  margin: 0;
  color: var(--color-burgundy);
  font-size: clamp(1.28rem, 2vw, 1.62rem);
  line-height: 1.18;
}

.archive-wine-producer {
  margin: 22px 0 0;
  color: var(--color-ink);
  font-weight: 800;
  line-height: 1.45;
}

.archive-wine-content address {
  margin-top: 7px;
  color: var(--color-muted);
  font-style: normal;
  line-height: 1.55;
}

.gallery-page-heading {
  max-width: 760px;
}

.gallery-page-heading h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

.gallery-page-heading p {
  margin: 24px 0 0;
  color: var(--color-muted);
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
  line-height: 1.7;
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.gallery-grid-item {
  position: relative;
  min-height: 290px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  background: var(--color-mist);
  cursor: zoom-in;
}

.gallery-grid-item:nth-child(5n + 2),
.gallery-grid-item:nth-child(5n + 4) {
  min-height: 350px;
}

.gallery-grid-item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), filter 220ms ease;
}

.gallery-grid-item::after {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  content: "";
  background:
    linear-gradient(var(--color-burgundy), var(--color-burgundy)) center / 14px 2px no-repeat,
    linear-gradient(var(--color-burgundy), var(--color-burgundy)) center / 2px 14px no-repeat,
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 24px rgba(28, 23, 27, 0.18);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-grid-item:hover img,
.gallery-grid-item:focus-visible img {
  filter: brightness(0.9);
  transform: scale(1.035);
}

.gallery-grid-item:hover::after,
.gallery-grid-item:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-grid-item:focus-visible {
  outline: 3px solid var(--color-plum);
  outline-offset: 3px;
}

body.has-open-gallery {
  overflow: hidden;
}

.gallery-reader[hidden] {
  display: none;
}

.gallery-reader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  grid-template-rows: 76px minmax(0, 1fr) 62px;
  gap: 14px;
  padding: 18px;
  color: var(--color-white);
  opacity: 0;
  transition: opacity 180ms ease;
}

.gallery-reader.is-open {
  opacity: 1;
}

.gallery-reader-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  padding: 0;
  border: 0;
  background: rgba(28, 23, 27, 0.94);
  cursor: zoom-out;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.gallery-reader-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-column: 1 / -1;
  padding-left: 10px;
}

.gallery-reader-toolbar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  font-weight: 750;
}

.gallery-reader-stage {
  display: contents;
}

.gallery-reader-close,
.gallery-reader-arrow {
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font: inherit;
  transition: background 180ms ease, transform 180ms ease;
}

.gallery-reader-close {
  width: 46px;
  height: 46px;
}

.gallery-reader-arrow {
  align-self: center;
  grid-row: 2;
  width: 58px;
  height: 58px;
}

.gallery-reader-arrow .button-icon {
  width: 26px;
  height: 26px;
}

.gallery-reader-arrow-next {
  grid-column: 3;
}

.gallery-reader-arrow-previous {
  grid-column: 1;
}

.gallery-reader-close:hover,
.gallery-reader-close:focus-visible,
.gallery-reader-arrow:hover,
.gallery-reader-arrow:focus-visible {
  outline: 0;
  background: var(--color-burgundy);
  transform: scale(1.06);
}

.gallery-reader-figure {
  display: grid;
  align-items: start;
  justify-items: center;
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  min-height: 0;
  margin: 0;
}

.gallery-reader-image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  border-radius: 6px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.gallery-reader-caption {
  grid-column: 2;
  grid-row: 3;
  align-self: center;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
}

@media (max-width: 780px) {
  :root {
    --header-height: 132px;
  }

  .brand-zone,
  .nav-zone {
    min-height: var(--header-height);
  }

  .site-header.is-compact .brand-zone,
  .site-header.is-compact .nav-zone {
    min-height: var(--compact-header-height);
  }

  .brand-zone {
    flex: 0 0 34vw;
    min-width: 230px;
    padding: 8px 14px 8px 0;
  }

  .nav-zone {
    padding: 12px 16px 12px 18px;
  }

  .brand-logo {
    min-height: auto;
    width: min(100%, 300px);
    height: 104px;
  }

  .site-header.is-compact .brand-logo {
    width: min(100%, 190px);
    height: 62px;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .hero {
    min-height: calc(100vh - var(--header-height));
    padding: 0;
  }

  h1 {
    font-size: clamp(2.6rem, 14vw, 4.8rem);
  }

  .hero-visual {
    right: -16vw;
    width: min(48vw, 360px);
    opacity: 0.45;
  }

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

  .guest-layout {
    grid-template-columns: 1fr;
  }

  .guest-page-hero {
    grid-template-columns: 1fr;
  }

  .visit-layout {
    grid-template-columns: 1fr;
  }

  .visit-map {
    min-height: 420px;
  }

  .guest-image {
    width: min(100%, 620px);
  }

  .guest-page-image {
    width: min(100%, 620px);
  }

  .favourites-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

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

  .gallery-preview-more {
    min-height: 220px;
  }

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

  .archive-layout {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 56px;
  }

  .archive-timeline {
    position: sticky;
    top: var(--compact-header-height);
    z-index: 12;
    display: block;
    width: auto;
    height: auto;
    max-height: none;
    margin: 0 -16px;
    padding: 12px 16px;
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 24px rgba(28, 23, 27, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    scrollbar-width: thin;
    transform: none;
  }

  body.has-compact-header .archive-timeline {
    top: var(--compact-header-height);
  }

  .archive-timeline-line {
    display: none;
  }

  .archive-timeline-nav {
    align-items: center;
    flex-direction: row;
    gap: 7px;
    width: max-content;
  }

  .archive-timeline-link {
    flex: 0 0 auto;
  }

  .archive-timeline-link::before {
    display: none;
  }

  .archive-timeline-link.is-active {
    transform: none;
  }

  .archive-years {
    margin-top: 48px;
  }

  .archive-year {
    min-height: 64vh;
    scroll-margin-top: calc(var(--compact-header-height) + 76px);
  }

  .gallery-reader {
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    padding: 12px;
  }

  .gallery-reader-arrow {
    width: 46px;
    height: 46px;
  }

  .about-image {
    width: min(100%, 420px);
  }

  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 0;
  }

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

  .about-story-media {
    position: relative;
    top: auto;
  }

  .about-story-visual {
    width: min(100%, 420px);
  }

  .about-story-copy p {
    min-height: auto;
  }

  .about-stat {
    min-height: 160px;
  }

  .about-stat:nth-child(odd) {
    border-left: 0;
  }

  .charter-list {
    grid-template-columns: 1fr;
  }

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

  .winemaker-modal {
    grid-template-columns: 1fr;
    height: min(760px, calc(100vh - 36px));
    max-height: calc(100vh - 36px);
    overflow-y: auto;
  }

  .modal-image {
    min-height: 260px;
  }

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

  .modal-nav {
    width: 42px;
    height: 42px;
  }

  .filter-panel {
    width: min(280px, calc(100vw - 32px));
  }

  .filter-submenu {
    top: calc(100% + 8px);
    left: 0;
    width: min(280px, calc(100vw - 32px));
    max-height: 320px;
    transform: translateY(8px);
  }

  .filter-category::after {
    top: 100%;
    left: 0;
    width: 100%;
    height: 8px;
  }

  .filter-category.is-hovering .filter-submenu {
    transform: translateY(0);
  }

  .filter-menu.is-closing .filter-submenu {
    transform: translateY(8px);
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 190px;
  }

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

  .site-header.is-compact .brand-zone {
    flex-basis: auto;
    min-height: auto;
  }

  .site-header.is-compact .nav-zone {
    min-height: auto;
  }

  .brand-zone,
  .nav-zone {
    width: 100%;
    min-height: auto;
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand-zone {
    flex-basis: auto;
    padding-top: 14px;
    padding-bottom: 12px;
  }

  .nav-zone {
    justify-content: flex-start;
    padding-top: 10px;
    padding-bottom: 16px;
  }

  .nav-links {
    gap: 10px 14px;
    font-size: 0.82rem;
  }

  .brand-logo {
    width: min(100%, 310px);
    height: 92px;
  }

  .site-header.is-compact .brand-logo {
    width: min(100%, 190px);
    height: 62px;
  }

  .hero {
    min-height: calc(100vh - var(--header-height));
    padding: 0;
  }

  .hero-visual {
    display: none;
  }

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

  .about-stat {
    min-height: auto;
    padding: 28px 0;
  }

  .about-stat + .about-stat {
    border-top: 2px solid var(--color-mist);
    border-left: 0;
  }

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

  .gallery-preview-row,
  .gallery-page-grid {
    grid-template-columns: 1fr;
  }

  .archive-wines {
    grid-template-columns: 1fr;
  }

  .archive-year {
    min-height: auto;
  }

  .archive-wine-content {
    min-height: auto;
  }

  .gallery-preview-card,
  .gallery-preview-card img,
  .gallery-grid-item,
  .gallery-grid-item:nth-child(5n + 2),
  .gallery-grid-item:nth-child(5n + 4) {
    min-height: 260px;
  }

  .gallery-reader {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 64px minmax(0, 1fr) 54px 54px;
  }

  .gallery-reader-toolbar {
    grid-column: 1 / -1;
  }

  .gallery-reader-figure {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .gallery-reader-caption {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .gallery-reader-arrow {
    align-self: center;
    justify-self: center;
    grid-row: 4;
  }

  .gallery-reader-arrow-previous {
    grid-column: 1;
  }

  .gallery-reader-arrow-next {
    grid-column: 2;
  }

  .winemaker-card {
    height: 148px;
  }

  .social-slide,
  .instagram-post,
  .facebook-timeline,
  .facebook-timeline iframe {
    height: 560px;
  }

  .instagram-manual-card .social-post-image,
  .facebook-manual-card .social-post-image {
    height: 432px;
  }

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

  .footer-organizer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .footer-organizer img {
    width: min(230px, 72vw);
  }

  .modal-backdrop {
    padding: 14px;
  }

  .modal-content {
    padding: 28px 24px;
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: 82px;
    --compact-header-height: 82px;
  }

  .site-header,
  .site-header.is-compact {
    align-items: stretch;
    flex-direction: row;
    min-height: var(--compact-header-height);
  }

  .site-header .brand-zone,
  .site-header.is-compact .brand-zone {
    flex: 1 1 auto;
    justify-content: flex-start;
    width: auto;
    min-width: 0;
    min-height: var(--compact-header-height);
    padding: 8px 16px;
  }

  .site-header .nav-zone,
  .site-header.is-compact .nav-zone {
    position: relative;
    flex: 0 0 var(--compact-header-height);
    justify-content: center;
    width: auto;
    min-height: var(--compact-header-height);
    padding: 0;
  }

  .brand-logo,
  .site-header.is-compact .brand-logo {
    width: min(170px, calc(100vw - 114px));
    height: 62px;
  }

  .brand-logo-default,
  .site-header.is-compact .brand-logo-default {
    opacity: 0;
    transform: scale(0.88);
  }

  .brand-logo-compact,
  .site-header.is-compact .brand-logo-compact {
    opacity: 1;
    transform: scale(1);
  }

  .nav-menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    place-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    color: var(--color-white);
    background: transparent;
    cursor: pointer;
  }

  .nav-menu-toggle:hover,
  .nav-menu-toggle:focus-visible {
    outline: 0;
    background: var(--color-accent-dark);
  }

  .nav-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

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

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

  .nav-links {
    position: absolute;
    top: calc(100% - 1px);
    right: 0;
    z-index: 1;
    align-items: stretch;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    width: 100vw;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-top: 0;
    border-radius: 0 0 12px 12px;
    background: var(--color-burgundy);
    box-shadow: 0 22px 50px rgba(28, 23, 27, 0.22);
    font-size: 0.95rem;
    clip-path: inset(0 0 100% 0);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition:
      opacity 220ms ease,
      clip-path 280ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 260ms;
  }

  .site-header.is-menu-open .nav-links {
    clip-path: inset(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
  }

  .nav-links a {
    display: block;
    padding: 13px 14px;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(-6px);
    transition:
      color 180ms ease,
      background 180ms ease,
      opacity 180ms ease,
      transform 220ms ease;
  }

  .site-header.is-menu-open .nav-links a {
    opacity: 1;
    transform: translateY(0);
  }

  .site-header.is-menu-open .nav-links a:nth-child(2) {
    transition-delay: 25ms;
  }

  .site-header.is-menu-open .nav-links a:nth-child(3) {
    transition-delay: 50ms;
  }

  .site-header.is-menu-open .nav-links a:nth-child(4) {
    transition-delay: 75ms;
  }

  .site-header.is-menu-open .nav-links a:nth-child(5) {
    transition-delay: 100ms;
  }

  .site-header.is-menu-open .nav-links a:nth-child(6) {
    transition-delay: 125ms;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible,
  .nav-links a[aria-current="page"] {
    color: var(--color-ink);
    background: var(--color-mist);
    outline: 0;
  }

  .site-footer {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .footer-organizer {
    align-items: center;
    flex-direction: column;
    gap: 4px;
  }

  .footer-organizer img {
    width: min(230px, 72vw);
    height: 68px;
    object-fit: cover;
    object-position: center;
  }

  .modal-backdrop {
    padding: 14px;
  }

  .winemaker-modal-shell {
    position: relative;
    display: block;
    width: min(560px, 100%);
    height: min(760px, calc(100dvh - 28px));
    max-height: calc(100dvh - 28px);
  }

  .winemaker-modal {
    width: 100%;
    height: 100%;
    max-height: 100%;
  }

  .modal-content {
    padding-bottom: 98px;
  }

  .modal-nav {
    position: absolute;
    top: auto;
    bottom: 16px;
    width: 52px;
    height: 52px;
    transform: none;
  }

  .modal-nav:hover,
  .modal-nav:focus-visible {
    transform: scale(1.04);
  }

  .modal-nav-previous {
    right: 80px;
    left: auto;
  }

  .modal-nav-next {
    right: 16px;
  }

  .modal-nav .button-icon {
    width: 26px;
    height: 26px;
  }

  .favourite-image-link {
    max-width: 320px;
  }

  .about-image {
    width: 100%;
    max-width: none;
    aspect-ratio: 4 / 3;
    margin-inline: auto;
  }

  .about-stats-viewport {
    width: calc(100% + 32px);
    margin: 0 -16px clamp(52px, 10vw, 76px);
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
      to right,
      transparent,
      #000 10%,
      #000 90%,
      transparent
    );
    mask-image: linear-gradient(
      to right,
      transparent,
      #000 10%,
      #000 90%,
      transparent
    );
  }

  .about-stats {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    width: max-content;
    margin: 0;
    animation: about-stats-marquee 22s linear infinite;
    will-change: transform;
  }

  .about-stat {
    align-content: center;
    flex: 0 0 220px;
    width: 220px;
    min-height: 190px;
    padding: 16px 24px;
    border-left: 2px solid var(--color-mist);
  }

  .about-stat + .about-stat {
    border-left: 2px solid var(--color-mist);
  }

  .about-story {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-story-media,
  .about-story-visual,
  .about-story-copy {
    display: contents;
  }

  .about-story-visual img,
  .about-story-visual img.is-active {
    position: relative;
    inset: auto;
    z-index: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    margin-inline: auto;
    border-radius: 8px;
    opacity: 1;
    object-fit: cover;
    transform: none;
    transition: none;
  }

  .about-story-visual img:nth-child(1) {
    grid-row: 1;
  }

  .about-story-visual img:nth-child(2) {
    grid-row: 3;
  }

  .about-story-visual img:nth-child(3) {
    grid-row: 5;
  }

  .about-story-copy p,
  .about-story-copy p.is-visible,
  .about-story-copy p + p {
    display: block;
    min-height: 0;
    margin: 22px 0 80px;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .about-story-copy p:nth-child(1) {
    grid-row: 2;
  }

  .about-story-copy p:nth-child(2) {
    grid-row: 4;
  }

  .about-story-copy p:nth-child(3) {
    grid-row: 6;
    margin-bottom: 0;
  }

  .gallery-reader {
    inset: var(--compact-header-height) 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 16px;
  }

  .gallery-reader-toolbar {
    position: absolute;
    top: 12px;
    right: 16px;
    left: 16px;
    z-index: 2;
    padding: 0;
  }

  .gallery-reader-stage {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(0, auto) auto 72px;
    gap: 10px 16px;
    width: 100%;
    touch-action: pan-y;
  }

  .gallery-reader-figure {
    display: grid;
    align-items: center;
    justify-items: center;
    grid-column: 1 / -1;
    grid-row: 1;
    max-height: calc(100dvh - var(--compact-header-height) - 240px);
  }

  .gallery-reader-image {
    max-height: calc(100dvh - var(--compact-header-height) - 240px);
  }

  .gallery-reader-caption {
    grid-column: 1 / -1;
    grid-row: 2;
    min-height: 20px;
  }

  .gallery-reader-arrow {
    align-self: center;
    justify-self: center;
    grid-row: 3;
    width: 64px;
    height: 64px;
  }

  .gallery-reader-arrow .button-icon {
    width: 30px;
    height: 30px;
  }

  .gallery-reader-arrow-previous {
    grid-column: 1;
  }

  .gallery-reader-arrow-next {
    grid-column: 2;
  }
}

@media (max-width: 780px) and (prefers-reduced-motion: reduce) {
  .nav-links,
  .nav-links a,
  .nav-menu-toggle span {
    transition: none;
  }

  .about-stats-viewport {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .about-stats {
    animation: none;
    will-change: auto;
  }

  .about-stat[data-stat-clone] {
    display: none;
  }
}
