:root {
  --ink: #191c18;
  --ink-soft: #565b53;
  --forest: #202a21;
  --forest-deep: #111712;
  --forest-light: #53604f;
  --paper: #fbf8f1;
  --cream: #f1eadf;
  --cream-dark: #e4dacb;
  --gold: #d4ad62;
  --gold-dark: #9a7131;
  --wine: #6d2530;
  --line: rgba(25, 28, 24, 0.15);
  --line-light: rgba(255, 255, 255, 0.16);
  --serif: "Iowan Old Style", "Baskerville", "Palatino Linotype",
    "Book Antiqua", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --shell: 1340px;
  --header-height: 86px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  background: var(--forest-deep);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: var(--gold);
  color: var(--forest-deep);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

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

.section {
  position: relative;
  padding-block: clamp(96px, 10vw, 160px);
}

.section--dark {
  background: var(--forest-deep);
  color: #fff;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h2 {
  margin-bottom: 32px;
  font-size: clamp(2.15rem, 4.7vw, 5.5rem);
}

h3 {
  line-height: 1.2;
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.38rem, 2vw, 1.85rem);
  line-height: 1.42;
}

.section--dark .lead {
  color: rgba(255, 255, 255, 0.92);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
  color: var(--gold-dark);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-label::before {
  width: 46px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section--dark .section-label,
.contact .section-label {
  color: var(--gold);
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 0.35s var(--ease);
}

.icon--diagonal {
  transform: rotate(-45deg);
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 23px 14px 25px;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.085em;
  line-height: 1.2;
  text-transform: uppercase;
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease,
    transform 0.35s var(--ease);
}

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

.button:hover .icon {
  transform: translateX(4px);
}

.button:hover .icon--diagonal {
  transform: rotate(-45deg) translateX(4px);
}

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

.button--gold:hover {
  background: #e1bd75;
}

.button--glass {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  backdrop-filter: blur(12px);
}

.button--glass:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.13);
}

.button--dark {
  background: var(--forest);
  color: #fff;
}

.button--dark:hover {
  background: var(--wine);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.text-link:hover .icon {
  transform: translateX(5px);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: #fff;
  color: #000;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: none;
}

/* Header */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: #fff;
  transition:
    background-color 0.4s ease,
    color 0.4s ease,
    box-shadow 0.4s ease;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  content: "";
  transition: background-color 0.4s ease;
}

.site-header.is-scrolled,
.site-header--solid {
  background: rgba(251, 248, 241, 0.96);
  box-shadow: 0 12px 45px rgba(19, 26, 19, 0.08);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled::after,
.site-header--solid::after {
  background: var(--line);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}

.brand-mark {
  width: 51px;
  height: 51px;
  filter: invert(1);
  transition: filter 0.4s ease;
}

.site-header.is-scrolled .brand-mark,
.site-header--solid .brand-mark {
  filter: none;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.2;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.23rem;
  font-weight: 600;
  letter-spacing: 0.005em;
}

.brand-copy small {
  opacity: 0.72;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-panel {
  display: flex;
  align-items: center;
  gap: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(17px, 1.7vw, 29px);
  margin-right: clamp(10px, 1.6vw, 24px);
}

.main-nav a {
  position: relative;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-shop {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.site-header.is-scrolled .header-shop,
.site-header--solid .header-shop {
  border-color: var(--ink);
}

.header-shop:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--forest-deep);
}

.header-shop .icon {
  width: 15px;
  height: 15px;
}

.header-facebook {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.52);
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s var(--ease);
}

.site-header.is-scrolled .header-facebook,
.site-header--solid .header-facebook {
  border-color: var(--ink);
}

.header-facebook:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--forest-deep);
  transform: translateY(-2px);
}

.header-facebook svg {
  width: 17px;
  height: 17px;
}

.header-facebook span {
  display: none;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 1px;
  background: currentColor;
  transition:
    transform 0.35s var(--ease),
    opacity 0.25s ease;
}

/* Hero */

.hero {
  min-height: max(760px, 100svh);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest-deep);
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  animation: hero-drift 18s ease-in-out alternate infinite;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 14, 10, 0.86) 0%, rgba(9, 14, 10, 0.55) 47%, rgba(9, 14, 10, 0.12) 78%),
    linear-gradient(0deg, rgba(8, 12, 9, 0.7) 0%, transparent 40%, rgba(8, 12, 9, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 70px;
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 90px;
}

.hero-copy {
  max-width: 830px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-kicker::before {
  width: 44px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 36px;
  font-size: clamp(3.4rem, 6.2vw, 6.4rem);
}

.hero h1 em {
  display: block;
  color: var(--gold);
  font-weight: 400;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.07rem, 1.5vw, 1.35rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  width: 210px;
  flex: 0 0 auto;
  padding: 30px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(21, 30, 21, 0.32);
  backdrop-filter: blur(10px);
}

.hero-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  font-family: var(--serif);
  font-size: 3.25rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-note p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  line-height: 1.5;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 32px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 1px;
  height: 34px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.scroll-cue i::after {
  position: absolute;
  top: -100%;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  content: "";
  animation: scroll-line 2s ease-in-out infinite;
}

/* Story */

.story {
  overflow: hidden;
  background:
    radial-gradient(circle at 2% 5%, rgba(212, 173, 98, 0.13), transparent 28%),
    var(--paper);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(70px, 8vw, 130px);
}

.story-copy {
  position: relative;
  z-index: 2;
}

.story-copy h2 {
  max-width: 670px;
}

.story-copy p:not(.section-label) {
  max-width: 650px;
  color: var(--ink-soft);
}

.story-copy .lead {
  color: var(--ink);
}

.story-copy .text-link {
  margin-top: 22px;
}

.story-visual {
  min-height: 760px;
  position: relative;
}

.story-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--cream);
}

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

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

.story-photo--main {
  inset: 0 0 105px 9%;
}

.story-photo--detail {
  width: 49%;
  height: 300px;
  bottom: 0;
  left: -5%;
  border: 12px solid var(--paper);
}

.story-photo--detail img {
  object-position: center 62%;
}

.story-seal {
  width: 155px;
  height: 155px;
  position: absolute;
  right: -26px;
  bottom: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(251, 248, 241, 0.94);
  box-shadow: 0 20px 60px rgba(24, 28, 24, 0.15);
}

.story-seal img {
  width: 123px;
  height: 123px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(85px, 9vw, 135px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  min-width: 0;
  position: relative;
  padding: 38px 26px 37px;
}

.stat:not(:last-child)::after {
  width: 1px;
  position: absolute;
  top: 22px;
  right: 0;
  bottom: 22px;
  background: var(--line);
  content: "";
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: clamp(2.15rem, 3.2vw, 3.3rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat span {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Production */

.production {
  overflow: hidden;
}

.production::before {
  width: 560px;
  height: 560px;
  position: absolute;
  top: -260px;
  right: -140px;
  border: 1px solid rgba(212, 173, 98, 0.18);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 70px rgba(212, 173, 98, 0.025),
    0 0 0 140px rgba(212, 173, 98, 0.018);
}

.production-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: clamp(60px, 9vw, 150px);
  margin-bottom: 72px;
}

.production-intro h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.production-copy {
  padding-bottom: 10px;
  color: rgba(255, 255, 255, 0.65);
}

.process-stage {
  min-height: 730px;
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  overflow: hidden;
  background: #090d0a;
}

.process-stage > img,
.process-stage-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.process-stage > img {
  object-fit: cover;
}

.process-stage-overlay {
  background:
    linear-gradient(90deg, rgba(5, 8, 6, 0.08) 0%, rgba(5, 8, 6, 0.32) 43%, rgba(5, 8, 6, 0.94) 100%),
    linear-gradient(0deg, rgba(5, 8, 6, 0.42), transparent 48%);
}

.process-list {
  width: min(50%, 640px);
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  padding: 65px clamp(34px, 5vw, 76px);
  background: rgba(9, 14, 10, 0.64);
  backdrop-filter: blur(6px);
}

.process-list article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 25px;
  padding-block: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.process-list article:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.process-list article > span {
  padding-top: 4px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.process-list h3 {
  margin: 0 0 7px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 400;
}

.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  line-height: 1.6;
}

.production-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.production-gallery figure {
  height: 245px;
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #0a0d0a;
}

.production-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition:
    opacity 0.5s ease,
    transform 0.8s var(--ease);
}

.production-gallery figure:hover img {
  opacity: 1;
  transform: scale(1.045);
}

.production-gallery figcaption {
  position: absolute;
  right: 20px;
  bottom: 16px;
  left: 20px;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Wines */

.wines {
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--cream) 0%, var(--cream) 39%, var(--paper) 39%),
    var(--paper);
}

.wines-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  align-items: center;
  gap: clamp(80px, 10vw, 160px);
}

.wines-visual {
  min-height: 810px;
  position: relative;
}

.wines-photo {
  height: 100%;
  position: absolute;
  inset: 0 0 0 8%;
  margin: 0;
  overflow: hidden;
  background: #d8cdbd;
}

.wines-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transition: transform 1.1s var(--ease);
}

.wines-photo:hover img {
  transform: scale(1.035);
}

.wines-quote {
  position: absolute;
  right: -33px;
  bottom: 45px;
  padding: 29px 34px;
  background: var(--wine);
  color: #fff;
  box-shadow: 0 24px 60px rgba(59, 21, 27, 0.22);
}

.wines-quote span,
.wines-quote strong {
  display: block;
}

.wines-quote span {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wines-quote strong {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
}

.wines-copy {
  max-width: 790px;
}

.wines-copy > p:not(.section-label) {
  max-width: 700px;
  color: var(--ink-soft);
}

.wines-copy > .lead {
  color: var(--ink);
}

.variety-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  margin: 46px 0 48px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.variety-groups h3 {
  margin: 0 0 18px;
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.variety-groups ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.variety-groups li {
  padding: 7px 11px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
  color: #454a43;
  font-size: 0.72rem;
  line-height: 1.25;
}

/* Stellplatz */

.stellplatz {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(109, 37, 48, 0.07), transparent 30%),
    var(--cream);
}

.stellplatz-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
  align-items: end;
  gap: clamp(60px, 9vw, 150px);
  margin-bottom: 70px;
}

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

.stellplatz-intro > div:last-child p {
  color: var(--ink-soft);
}

.stellplatz-intro .lead {
  color: var(--ink);
}

.stellplatz-mosaic {
  height: 610px;
  display: grid;
  grid-template-columns: 1.55fr 0.7fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.stellplatz-mosaic figure {
  margin: 0;
  overflow: hidden;
  background: #d9d0c4;
}

.stellplatz-mosaic-main {
  grid-row: 1 / 3;
}

.stellplatz-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.stellplatz-mosaic figure:hover img {
  transform: scale(1.035);
}

.stellplatz-mosaic-main img {
  object-position: center 62%;
}

.stellplatz-details {
  margin-top: 10px;
}

.amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--paper);
}

.amenities article {
  min-height: 180px;
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.amenities article:not(:last-child)::after {
  width: 1px;
  position: absolute;
  top: 28px;
  right: 0;
  bottom: 28px;
  background: var(--line);
  content: "";
}

.amenities svg {
  width: 31px;
  height: 31px;
  margin-bottom: 19px;
  color: var(--gold-dark);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.amenities strong {
  margin-bottom: 3px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.amenities span {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.price-panel {
  margin-top: 10px;
  padding: clamp(36px, 5vw, 68px);
  background: var(--forest);
  color: #fff;
}

.price-panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 38px;
}

.price-panel-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.15rem);
  font-weight: 400;
}

.payment-chip {
  padding: 10px 14px;
  border: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-rows {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.price-rows > div {
  position: relative;
  padding: 30px 26px;
}

.price-rows > div:not(:last-child)::after {
  width: 1px;
  position: absolute;
  top: 25px;
  right: 0;
  bottom: 25px;
  background: var(--line-light);
  content: "";
}

.price-rows span,
.price-rows small,
.price-rows strong {
  display: block;
}

.price-rows span {
  margin-bottom: 1px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-rows small {
  min-height: 28px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.66rem;
}

.price-rows strong {
  margin-top: 17px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  font-weight: 400;
}

.price-rows strong small {
  min-height: 0;
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--sans);
  font-size: 0.48em;
  font-weight: 600;
  letter-spacing: 0.045em;
}

.payment-note {
  max-width: 1050px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  line-height: 1.68;
}

.arrival-note {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(180px, 0.72fr) minmax(320px, 1.55fr);
  align-items: center;
  gap: 32px;
  padding-top: 33px;
}

.arrival-note p {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0;
}

.arrival-note p strong {
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.arrival-note p span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.73rem;
}

.arrival-note .arrival-welcome {
  min-height: 58px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding-left: 28px;
  border-left: 1px solid var(--line-light);
}

.arrival-note .arrival-welcome strong {
  color: var(--gold);
}

.arrival-note .arrival-welcome span {
  color: rgba(255, 255, 255, 0.72);
}

/* Contact */

.contact {
  padding-block: clamp(100px, 11vw, 170px);
  overflow: hidden;
}

.contact-heading {
  max-width: var(--shell);
}

.contact-heading h2 {
  max-width: 940px;
  margin-bottom: 28px;
}

.contact-heading > p:not(.section-label) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.62);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(430px, 0.9fr) minmax(560px, 1.1fr);
  align-items: stretch;
  gap: clamp(45px, 6vw, 92px);
  margin-top: clamp(55px, 7vw, 92px);
}

.contact-list ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 19px;
  min-height: 82px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-light);
}

.contact-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 173, 98, 0.38);
  border-radius: 50%;
  color: var(--gold);
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.contact-icon--facebook svg {
  stroke: none;
}

.contact-list li > div {
  min-width: 0;
}

.contact-list li > div > span {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-list strong {
  display: block;
  overflow-wrap: anywhere;
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
  font-weight: 400;
  line-height: 1.3;
}

.contact-list small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
}

.contact-list a {
  transition: color 0.25s ease;
}

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

.contact-map {
  min-height: 630px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line-light);
  background: #192019;
}

.contact-map-illustration {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  padding: clamp(35px, 5vw, 72px);
  background:
    radial-gradient(circle at 54% 46%, rgba(212, 173, 98, 0.15), transparent 18%),
    radial-gradient(circle at 50% 50%, transparent 0 34%, rgba(212, 173, 98, 0.06) 34.2% 34.5%, transparent 34.7%),
    #192019;
}

.contact-map-illustration img {
  width: min(100%, 680px);
  max-height: 440px;
  object-fit: contain;
}

.contact-map-footer {
  min-height: 114px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 25px 29px;
  background: var(--paper);
  color: var(--ink);
}

.contact-map-footer span {
  display: block;
  margin-bottom: 3px;
  color: var(--gold-dark);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-map-footer strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.38rem;
  font-weight: 400;
}

.contact-map-footer a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-map-footer a .icon {
  width: 15px;
  height: 15px;
}

/* Publicity */

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

.publicity-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.6fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 64px;
}

.publicity-heading h2 {
  margin-bottom: 0;
}

.publicity-heading > p {
  max-width: 520px;
  color: var(--ink-soft);
}

.publicity-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 20px;
}

.publicity-grid > article {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(260px, 1.08fr);
  background: var(--cream);
}

.publicity-grid > article:last-child {
  grid-template-columns: 1fr;
}

.publicity-poster {
  min-height: 420px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 28px;
  background: #eee;
}

.publicity-poster--eu {
  background: #edf1f5;
}

.publicity-poster--region {
  min-height: 320px;
  background: #1f33ff;
}

.publicity-poster img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: contain;
  box-shadow: 0 18px 40px rgba(10, 20, 25, 0.13);
  transition: transform 0.7s var(--ease);
}

.publicity-poster:hover img {
  transform: scale(1.02);
}

.publicity-poster > span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  background: rgba(15, 22, 17, 0.86);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.publicity-poster > span .icon {
  width: 14px;
  height: 14px;
}

.publicity-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(35px, 5vw, 68px);
}

.publicity-copy > span {
  margin-bottom: 18px;
  color: var(--gold-dark);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.publicity-copy h3 {
  margin: 0 0 23px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.5vw, 2.7rem);
  font-weight: 400;
}

.publicity-copy p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* Footer */

.site-footer {
  background: #0b100c;
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(290px, 1.5fr) repeat(3, 0.75fr);
  gap: 50px;
  padding-block: 78px;
}

.footer-identity {
  display: flex;
  align-items: center;
  gap: 23px;
}

.footer-identity img {
  width: 76px;
  height: 76px;
  filter: invert(1);
}

.footer-identity strong,
.footer-identity span {
  display: block;
}

.footer-identity strong {
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.footer-identity span {
  max-width: 230px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.73rem;
  line-height: 1.5;
}

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

.footer-column h2 {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column p,
.footer-column a {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  line-height: 1.85;
}

.footer-column a {
  transition: color 0.25s ease;
}

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

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.64rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-bottom strong {
  color: rgba(255, 255, 255, 0.8);
  font-size: inherit;
}

.footer-bottom i {
  margin-inline: 7px;
  font-style: normal;
}

/* Legal page */

.legal-page {
  background: var(--paper);
}

.legal-hero {
  padding: calc(var(--header-height) + 100px) 0 85px;
  background:
    radial-gradient(circle at 80% 20%, rgba(212, 173, 98, 0.13), transparent 30%),
    var(--cream);
}

.legal-hero h1 {
  max-width: 950px;
  margin: 0 0 24px;
  font-size: clamp(3.3rem, 7vw, 7rem);
}

.legal-hero > .shell > p:last-child {
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.legal-content {
  max-width: 980px;
  padding-top: 95px;
  padding-bottom: 130px;
}

.legal-content section {
  padding: 0 0 44px 140px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 44px;
}

.legal-content section h2 {
  position: relative;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  font-weight: 400;
  line-height: 1.2;
}

.legal-content section h2::before {
  width: 98px;
  height: 1px;
  position: absolute;
  top: 0.72em;
  left: -140px;
  background: var(--gold);
  content: "";
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.82;
}

.legal-content ul {
  padding-left: 22px;
}

.legal-content li + li {
  margin-top: 10px;
}

.legal-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin: 65px 0 45px 140px;
  padding: 35px 38px;
  background: var(--forest);
  color: #fff;
}

.legal-contact span,
.legal-contact strong {
  display: block;
}

.legal-contact span {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-contact strong {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
}

.legal-contact p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.legal-contact > a {
  color: var(--gold);
  font-size: 0.82rem;
}

.legal-back {
  margin-left: 140px;
}

.error-page {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: calc(var(--header-height) + 85px) 0 95px;
  background:
    radial-gradient(circle at 75% 30%, rgba(212, 173, 98, 0.14), transparent 26%),
    var(--cream);
}

.error-page > .shell {
  max-width: 850px;
}

.error-page h1 {
  max-width: 800px;
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 8vw, 7rem);
}

.error-page p:not(.section-label) {
  margin-bottom: 38px;
  color: var(--ink-soft);
}

/* Reveal */

body.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
}

body.has-js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-drift {
  from {
    transform: scale(1.015);
  }
  to {
    transform: scale(1.07);
  }
}

@keyframes scroll-line {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(200%);
  }
}

/* Responsive */

@media (max-width: 1180px) {
  .shell {
    width: min(calc(100% - 48px), var(--shell));
  }

  .main-nav {
    gap: 20px;
  }

  .hero-content {
    align-items: center;
  }

  .hero-note {
    align-self: flex-end;
    margin-bottom: 60px;
  }

  .story-grid {
    gap: 70px;
  }

  .story-visual {
    min-height: 670px;
  }

  .production-intro,
  .stellplatz-intro {
    grid-template-columns: 1fr 0.58fr;
    gap: 65px;
  }

  .wines-grid {
    gap: 85px;
  }

  .wines-visual {
    min-height: 700px;
  }

  .contact-grid {
    grid-template-columns: minmax(380px, 0.9fr) minmax(480px, 1.1fr);
    gap: 48px;
  }

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

  .publicity-grid > article:last-child {
    grid-template-columns: minmax(260px, 0.92fr) minmax(260px, 1.08fr);
  }
}

@media (max-width: 1060px) {
  .brand-copy {
    display: none;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 74px;
  }

  body {
    font-size: 16px;
  }

  .menu-toggle {
    z-index: 3;
    display: flex;
  }

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

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

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

  .menu-panel {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    padding: 100px max(32px, 8vw) 60px;
    background: var(--forest-deep);
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition:
      opacity 0.35s ease,
      transform 0.45s var(--ease);
  }

  .menu-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    margin-right: 0;
  }

  .main-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-family: var(--serif);
    font-size: clamp(1.75rem, 6vw, 3.2rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .main-nav a::after {
    display: none;
  }

  .header-shop {
    border-color: rgba(255, 255, 255, 0.45) !important;
  }

  .header-facebook {
    width: auto;
    height: 48px;
    gap: 10px;
    padding: 0 16px;
    border-color: rgba(255, 255, 255, 0.45) !important;
  }

  .header-facebook span {
    display: inline;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .site-header.is-scrolled .menu-toggle[aria-expanded="true"],
  .site-header--solid .menu-toggle[aria-expanded="true"] {
    color: #fff;
  }

  .hero {
    min-height: max(720px, 100svh);
  }

  .hero-content {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 38px;
    padding-bottom: 78px;
  }

  .hero-note {
    display: none;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(9, 14, 10, 0.82), rgba(9, 14, 10, 0.25)),
      linear-gradient(0deg, rgba(8, 12, 9, 0.72), transparent 52%);
  }

  .story-grid,
  .wines-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .story-copy {
    max-width: 760px;
  }

  .story-visual {
    min-height: 720px;
  }

  .story-photo--main {
    left: 8%;
  }

  .story-photo--detail {
    width: 47%;
    left: 0;
  }

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

  .stat:nth-child(2)::after {
    display: none;
  }

  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .production-intro,
  .stellplatz-intro {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
  }

  .production-intro > div:last-child,
  .stellplatz-intro > div:last-child {
    max-width: 720px;
  }

  .process-stage {
    min-height: 780px;
  }

  .process-stage-overlay {
    background:
      linear-gradient(0deg, rgba(5, 8, 6, 0.95) 0%, rgba(5, 8, 6, 0.35) 90%),
      linear-gradient(90deg, rgba(5, 8, 6, 0.2), rgba(5, 8, 6, 0.2));
  }

  .process-list {
    width: 100%;
    align-self: flex-end;
    padding-top: 40px;
    padding-bottom: 40px;
    background: rgba(9, 14, 10, 0.72);
  }

  .production-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .production-gallery figure {
    height: 230px;
  }

  .wines {
    background: linear-gradient(
      180deg,
      var(--cream) 0%,
      var(--cream) 39%,
      var(--paper) 39%
    );
  }

  .wines-visual {
    min-height: 760px;
  }

  .wines-photo {
    right: 8%;
  }

  .wines-quote {
    right: 0;
  }

  .wines-copy {
    max-width: 820px;
  }

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

  .amenities article:nth-child(2)::after {
    display: none;
  }

  .amenities article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .price-rows > div:nth-child(2)::after {
    display: none;
  }

  .price-rows > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }

  .arrival-note {
    grid-template-columns: 1fr 1fr;
  }

  .arrival-note .arrival-welcome {
    grid-column: 1 / -1;
    min-height: auto;
    padding: 22px 0 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .contact-grid {
    gap: 52px;
  }

  .contact-map {
    min-height: 620px;
  }

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

  .footer-main {
    grid-template-columns: 1.5fr 1fr;
  }

  .footer-bottom {
    min-height: 110px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding-block: 22px;
  }
}

@media (max-width: 700px) {
  .shell {
    width: calc(100% - 38px);
  }

  .section {
    padding-block: 90px;
  }

  h2 {
    margin-bottom: 26px;
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .lead {
    font-size: 1.3rem;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .hero {
    min-height: max(690px, 100svh);
  }

  .hero-image {
    object-position: 57% center;
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 65px;
  }

  .hero-kicker {
    margin-bottom: 23px;
    font-size: 0.64rem;
  }

  .hero h1 {
    margin-bottom: 25px;
    font-size: clamp(3.4rem, 17vw, 5.4rem);
  }

  .hero-lead {
    margin-bottom: 30px;
    font-size: 0.98rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .story-grid {
    gap: 65px;
  }

  .story-visual {
    min-height: 500px;
  }

  .story-photo--main {
    inset: 0 0 70px 6%;
  }

  .story-photo--detail {
    width: 55%;
    height: 205px;
    border-width: 8px;
  }

  .story-seal {
    width: 104px;
    height: 104px;
    right: -8px;
    bottom: 21px;
  }

  .story-seal img {
    width: 84px;
    height: 84px;
  }

  .stats {
    margin-top: 75px;
  }

  .stat {
    padding: 28px 13px;
  }

  .stat strong {
    font-size: 1.78rem;
  }

  .stat span {
    font-size: 0.59rem;
  }

  .production-intro {
    margin-bottom: 45px;
  }

  .process-stage {
    width: 100%;
    min-height: 840px;
  }

  .process-stage > img {
    object-position: 34% center;
  }

  .process-list {
    padding-inline: 20px;
  }

  .process-list article {
    grid-template-columns: 36px 1fr;
    gap: 15px;
    padding-block: 19px;
  }

  .process-list p {
    font-size: 0.78rem;
  }

  .production-gallery {
    grid-template-columns: 1fr;
  }

  .production-gallery figure {
    height: 210px;
  }

  .wines-grid {
    gap: 70px;
  }

  .wines-visual {
    min-height: 580px;
  }

  .wines-photo {
    right: 5%;
    left: 5%;
  }

  .wines-quote {
    right: -1px;
    bottom: 25px;
    padding: 22px 24px;
  }

  .wines-quote strong {
    font-size: 1.35rem;
  }

  .variety-groups {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .wines-copy .button {
    width: 100%;
  }

  .stellplatz-intro {
    margin-bottom: 45px;
  }

  .stellplatz-mosaic {
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 370px 180px;
  }

  .stellplatz-mosaic-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .amenities article {
    min-height: 160px;
    padding: 24px 20px;
  }

  .amenities svg {
    width: 27px;
    height: 27px;
  }

  .price-panel {
    padding: 35px 20px;
  }

  .price-panel-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

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

  .price-rows > div {
    padding: 24px 6px;
    border-bottom: 1px solid var(--line-light) !important;
  }

  .price-rows > div::after {
    display: none;
  }

  .price-rows > div:last-child {
    border-bottom: 0 !important;
  }

  .price-rows small {
    min-height: 0;
  }

  .price-rows strong {
    margin-top: 9px;
  }

  .arrival-note {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .arrival-note .arrival-welcome {
    grid-column: auto;
    margin-top: 15px;
  }

  .arrival-note p {
    flex-direction: column;
    gap: 1px;
  }

  .contact-heading h2 {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }

  .contact-grid {
    margin-top: 48px;
  }

  .contact-list li {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    min-height: 78px;
  }

  .contact-icon {
    width: 34px;
    height: 34px;
  }

  .contact-list strong {
    font-size: 1.03rem;
  }

  .contact-map {
    min-height: 520px;
  }

  .contact-map-illustration {
    min-height: 390px;
    padding: 28px 18px;
  }

  .contact-map-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 24px;
  }

  .publicity-grid > article,
  .publicity-grid > article:last-child {
    grid-template-columns: 1fr;
  }

  .publicity-poster {
    min-height: 330px;
    padding: 18px;
  }

  .publicity-poster--region {
    min-height: 260px;
  }

  .publicity-copy {
    padding: 32px 25px 40px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 62px;
  }

  .footer-identity {
    margin-bottom: 10px;
  }

  .legal-hero {
    padding-top: calc(var(--header-height) + 75px);
    padding-bottom: 64px;
  }

  .legal-content {
    padding-top: 70px;
    padding-bottom: 95px;
  }

  .legal-content section {
    padding-left: 0;
  }

  .legal-content section h2::before {
    display: none;
  }

  .legal-contact {
    align-items: flex-start;
    flex-direction: column;
    margin-left: 0;
    padding: 28px;
  }

  .legal-back {
    margin-left: 0;
  }
}

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

  body.has-js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
