:root {
  --ink: #17324d;
  --ink-deep: #10283c;
  --ink-soft: #335168;
  --paper: #f6f2e8;
  --paper-strong: #eee7d9;
  --white: #fffdf9;
  --leaf: #5d7258;
  --leaf-dark: #465b43;
  --copper: #b76d45;
  --brass: #b69a67;
  --text: #2c3336;
  --muted: #697075;
  --line: #d9d3c7;
  --line-dark: rgba(23, 50, 77, 0.18);
  --shadow: 0 24px 70px rgba(23, 50, 77, 0.10);
  --shell: min(1180px, calc(100vw - 48px));
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
select {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(3.25rem, 5.2vw, 5.35rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  line-height: 1.15;
}

p {
  margin-bottom: 22px;
}

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

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

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

.section {
  padding-block: clamp(78px, 9vw, 126px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

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

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-140%);
}

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

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 34px rgba(23, 50, 77, 0.07);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 88px;
  gap: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 50px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 24px 24px 7px 7px;
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1;
}

.brand-copy {
  display: grid;
  line-height: 1.12;
}

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

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.site-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 680;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--copper);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.header-phone {
  display: grid;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: right;
  text-decoration: none;
}

.header-phone span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.64rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.nav-toggle > span:not(.sr-only) {
  position: absolute;
  width: 20px;
  height: 1px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.nav-toggle > span:nth-child(2) {
  transform: translateY(-4px);
}

.nav-toggle > span:nth-child(3) {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
  transform: rotate(45deg);
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(58px, 7vw, 100px) clamp(72px, 8vw, 112px);
  background:
    linear-gradient(90deg, rgba(246, 242, 232, 0.95), rgba(255, 253, 249, 0.35)),
    repeating-linear-gradient(112deg, transparent 0 88px, rgba(93, 114, 88, 0.04) 89px 90px);
}

.hero::before {
  position: absolute;
  top: 8%;
  left: -10%;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(183, 109, 69, 0.26);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.55fr);
  align-items: center;
  gap: clamp(44px, 5vw, 80px);
}

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

.hero-lead {
  max-width: 700px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(1.11rem, 1.5vw, 1.28rem);
  line-height: 1.65;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.button-primary:hover {
  background: var(--ink-deep);
  border-color: var(--ink-deep);
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--line-dark);
}

.button-secondary:hover {
  background: var(--white);
  border-color: var(--copper);
}

.button-light {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

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

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin: 36px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 650;
  list-style: none;
}

.hero-assurances li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-assurances li::before {
  width: 5px;
  height: 5px;
  background: var(--copper);
  border-radius: 50%;
  content: "";
}

.hero-media {
  position: relative;
  width: 100%;
  max-width: 410px;
  margin: 0;
  padding: 0 0 20px 20px;
  justify-self: end;
}

.hero-media::before {
  position: absolute;
  z-index: 0;
  right: 28px;
  bottom: 0;
  left: 0;
  height: 82%;
  background: var(--paper-strong);
  content: "";
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 540px;
  aspect-ratio: 0.78;
  object-fit: cover;
  object-position: 52% center;
  border-radius: 190px 190px 8px 8px;
  box-shadow: var(--shadow);
}

.hero-arch {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: -14px;
  width: 86%;
  aspect-ratio: 1;
  border: 1px solid rgba(183, 109, 69, 0.7);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  pointer-events: none;
}

.hero-media figcaption {
  position: absolute;
  z-index: 3;
  right: -12px;
  bottom: 42px;
  display: grid;
  width: min(238px, 72%);
  padding: 15px 17px;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.96);
  border-left: 3px solid var(--copper);
  box-shadow: 0 15px 40px rgba(23, 50, 77, 0.14);
  line-height: 1.35;
}

.hero-media figcaption span {
  margin-bottom: 6px;
  color: var(--copper);
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-media figcaption strong {
  font-family: var(--serif);
  font-size: 0.98rem;
  font-weight: 600;
}

.trust-line {
  color: var(--paper);
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-line-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.trust-line span {
  position: relative;
  font-family: var(--serif);
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.trust-line span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: clamp(-38px, -2.5vw, -20px);
  width: 3px;
  height: 3px;
  background: var(--copper);
  border-radius: 50%;
  content: "";
}

.section-intro {
  margin-bottom: clamp(42px, 6vw, 76px);
}

.compact-intro {
  max-width: 760px;
}

.wide-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 90px;
}

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

.wide-intro > p {
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.audience-section {
  background: var(--white);
}

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

.audience-card {
  position: relative;
  min-height: 580px;
  padding: clamp(36px, 5vw, 66px);
  overflow: hidden;
  border: 1px solid var(--line);
}

.audience-card-seller {
  background: var(--paper);
}

.audience-card-buyer {
  background: #f4f7f3;
}

.audience-card::after {
  position: absolute;
  right: -110px;
  bottom: -220px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(183, 109, 69, 0.28);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.chapter-number {
  display: block;
  margin-bottom: 76px;
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.audience-kicker {
  margin-bottom: 16px;
  color: var(--leaf-dark);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audience-card h3 {
  max-width: 520px;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
}

.audience-card > p:not(.audience-kicker) {
  max-width: 560px;
  color: var(--ink-soft);
}

.question-list {
  display: grid;
  gap: 8px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.question-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.question-list li::before {
  width: 18px;
  height: 1px;
  margin-top: 0.82em;
  flex: 0 0 auto;
  background: var(--copper);
  content: "";
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 780;
  text-decoration-color: var(--copper);
  text-decoration-thickness: 1px;
  text-underline-offset: 7px;
}

.text-link span {
  transition: transform 180ms ease;
}

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

.opportunities-section {
  background: var(--paper);
}

.opportunity-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 70px;
}

.opportunity-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding-block: 34px;
  border-top: 1px solid var(--line);
}

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

.opportunity-list article > span {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 0.95rem;
}

.opportunity-list h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
}

.opportunity-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.image-story {
  overflow: hidden;
  background: var(--white);
}

.image-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(58px, 7vw, 100px);
}

.image-stack {
  position: relative;
  width: 100%;
  max-width: 500px;
  min-height: 520px;
}

.image-stack figure {
  margin: 0;
}

.image-large {
  position: absolute;
  inset: 0 20% 40px 0;
}

.image-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  height: 52%;
  padding: 9px 0 0 9px;
  background: var(--white);
}

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

.image-story-copy .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  line-height: 1.48;
}

.image-story-copy > p:not(.eyebrow, .lead) {
  color: var(--ink-soft);
}

.quiet-note {
  position: relative;
  margin-top: 44px;
  padding: 30px 32px 26px 50px;
  background: var(--paper);
  border-left: 2px solid var(--copper);
}

.quiet-note > span {
  position: absolute;
  top: 7px;
  left: 18px;
  color: var(--brass);
  font-family: var(--serif);
  font-size: 3.5rem;
  line-height: 1;
}

.quiet-note p {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.48;
}

.europe-section {
  background: #eef2ed;
}

.europe-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: clamp(58px, 7vw, 96px);
}

.europe-image {
  width: 100%;
  max-width: 460px;
  margin: 0;
}

.europe-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 140px 140px 6px 6px;
}

.europe-image figcaption {
  max-width: 430px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.78rem;
}

.europe-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.country-list {
  display: grid;
  margin-top: 40px;
  border-top: 1px solid rgba(23, 50, 77, 0.16);
}

.country-list article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 22px;
  padding-block: 20px;
  border-bottom: 1px solid rgba(23, 50, 77, 0.16);
}

.country-list article > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--paper);
  background: var(--leaf);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.country-list h3 {
  margin-bottom: 4px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 780;
  letter-spacing: 0;
}

.country-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.87rem;
}

.process-section {
  background: var(--white);
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 29px;
  right: 16%;
  left: 16%;
  height: 1px;
  background: var(--line);
  content: "";
}

.process-list li {
  position: relative;
  text-align: center;
}

.process-list li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 60px;
  height: 60px;
  margin: 0 auto 28px;
  place-items: center;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--brass);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.12rem;
}

.process-list h3 {
  margin-bottom: 10px;
  font-family: var(--sans);
  font-size: 1.08rem;
  font-weight: 780;
  letter-spacing: 0;
}

.process-list p {
  max-width: 310px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.discretion-section {
  padding-block: clamp(44px, 6vw, 84px);
  color: var(--white);
  background: var(--ink);
}

.discretion-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(380px, 0.9fr);
  align-items: stretch;
  min-height: 420px;
}

.discretion-image {
  min-height: 400px;
  background:
    linear-gradient(90deg, transparent 65%, var(--ink) 100%),
    url("../img/historischer-weinkeller.jpg") center 54% / cover no-repeat;
}

.discretion-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(38px, 5vw, 70px);
}

.discretion-copy h2 {
  color: var(--white);
}

.discretion-copy > p:not(.eyebrow) {
  color: rgba(255, 253, 249, 0.77);
}

.discretion-copy .button {
  margin-top: 14px;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(290px, 0.65fr) minmax(0, 1.1fr);
  gap: clamp(70px, 9vw, 150px);
}

.faq-intro {
  position: sticky;
  top: 132px;
  align-self: start;
}

.faq-intro > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 26px 56px 26px 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-weight: 550;
  line-height: 1.3;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 18px;
  height: 1px;
  background: var(--copper);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 760px;
  padding: 0 56px 26px 0;
  color: var(--ink-soft);
}

.contact-section {
  padding-block: clamp(80px, 9vw, 124px);
  color: rgba(255, 253, 249, 0.82);
  background:
    radial-gradient(circle at 12% 15%, rgba(183, 109, 69, 0.17), transparent 32%),
    var(--ink-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(420px, 0.9fr);
  gap: clamp(70px, 10vw, 150px);
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 620px;
}

.contact-person {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 20px;
  max-width: 470px;
  margin: 42px 0 38px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-person img {
  width: 74px;
  height: 88px;
  object-fit: cover;
  border-radius: 34px 34px 7px 7px;
}

.contact-person div {
  display: grid;
}

.contact-person strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 560;
}

.contact-person span {
  margin-bottom: 8px;
  color: rgba(255, 253, 249, 0.6);
  font-size: 0.78rem;
}

.contact-person a {
  width: fit-content;
  color: var(--white);
  font-size: 0.9rem;
  text-underline-offset: 5px;
}

.contact-assurances {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-assurances li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.86rem;
}

.contact-assurances li::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--copper);
  border-radius: 50%;
  content: "";
}

.contact-form {
  padding: clamp(34px, 5vw, 56px);
  color: var(--text);
  background: var(--white);
  box-shadow: 0 32px 90px rgba(4, 20, 33, 0.25);
}

.form-heading {
  margin-bottom: 34px;
}

.form-heading h3 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

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

.field label {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 760;
}

.field label > span {
  color: var(--muted);
  font-weight: 520;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--text);
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: 0;
}

.field textarea {
  min-height: 126px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8a8e8f;
  opacity: 1;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--white);
  border-color: var(--copper);
  outline: 2px solid rgba(183, 109, 69, 0.2);
  outline-offset: 0;
}

.field [aria-invalid="true"] {
  border-color: #a5362d;
}

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

.field-error {
  min-height: 18px;
  margin-top: 5px;
  color: #963229;
  font-size: 0.72rem;
  line-height: 1.35;
}

.checkbox-field label {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 12px;
  margin: 0;
  color: var(--ink-soft);
  font-weight: 520;
  line-height: 1.5;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 3px 0 0;
  accent-color: var(--ink);
}

.checkbox-field a {
  color: var(--ink);
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--leaf-dark);
  font-size: 0.82rem;
  font-weight: 680;
  text-align: center;
}

.form-status.is-error {
  color: #963229;
}

.form-note {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.site-footer {
  padding-block: 70px 28px;
  color: rgba(255, 253, 249, 0.72);
  background: #0b202f;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr 0.6fr;
  gap: 60px;
}

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

.brand-footer .brand-mark {
  color: var(--ink);
  background: var(--paper);
}

.brand-footer .brand-copy small {
  color: rgba(255, 253, 249, 0.56);
}

.footer-brand p {
  max-width: 440px;
  margin: 22px 0 0;
  font-size: 0.88rem;
}

.footer-nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 9px;
  font-size: 0.84rem;
}

.footer-nav strong,
.footer-contact strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-contact a {
  width: fit-content;
  color: rgba(255, 253, 249, 0.76);
  text-decoration-color: rgba(255, 253, 249, 0.22);
  text-underline-offset: 4px;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 64px;
  padding-top: 24px;
  color: rgba(255, 253, 249, 0.48);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
}

.mobile-actions {
  display: none;
}

.legal-main {
  min-height: 70vh;
  background: var(--paper);
}

.legal-hero {
  padding-block: 82px 52px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.legal-hero .shell,
.legal-content .shell {
  max-width: 820px;
}

.legal-hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 5rem);
}

.legal-content {
  padding-block: 70px 100px;
}

.legal-content h2 {
  margin-top: 48px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

.legal-note {
  margin-top: 46px;
  padding: 24px 28px;
  background: var(--white);
  border-left: 3px solid var(--copper);
}

@media (max-width: 1100px) {
  .header-inner {
    gap: 24px;
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 0.8rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.5fr);
    gap: 46px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr 0.9fr;
  }

  .footer-grid > :last-child {
    grid-column: 2;
  }
}

@media (max-width: 960px) {
  :root {
    --shell: min(100% - 36px, 760px);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 78px;
  }

  .header-phone {
    display: none;
  }

  .js .nav-toggle {
    position: relative;
    z-index: 1002;
    display: grid;
  }

  .site-nav {
    grid-column: 1 / -1;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px 28px;
    padding-bottom: 20px;
  }

  .js .site-nav {
    position: fixed;
    z-index: 1001;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 110px 10vw 70px;
    color: var(--white);
    background: var(--ink-deep);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .js .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .js .site-nav a {
    color: var(--white);
    font-family: var(--serif);
    font-size: clamp(1.8rem, 7vw, 3rem);
    font-weight: 520;
  }

  .nav-open .site-header {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .nav-open .brand {
    position: relative;
    z-index: 1002;
    color: var(--white);
  }

  .nav-open .brand-mark {
    color: var(--ink);
    background: var(--paper);
  }

  .nav-open .brand-copy small {
    color: rgba(255, 255, 255, 0.6);
  }

  .nav-open .nav-toggle {
    border-color: rgba(255, 255, 255, 0.32);
  }

  .nav-open .nav-toggle > span:not(.sr-only) {
    background: var(--white);
  }

  .hero-grid,
  .image-story-grid,
  .europe-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-grid {
    gap: 58px;
  }

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

  .hero-media {
    width: min(100%, 460px);
    max-width: 460px;
    padding-left: 18px;
    justify-self: center;
  }

  .hero-media img {
    max-height: 360px;
    aspect-ratio: 4 / 3;
    object-position: center 57%;
    border-radius: 140px 140px 8px 8px;
  }

  .hero-media figcaption {
    right: -4px;
  }

  .trust-line-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding-block: 20px;
  }

  .trust-line span:not(:last-child)::after {
    display: none;
  }

  .wide-intro {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .image-story-grid {
    gap: 64px;
  }

  .image-stack {
    max-width: 520px;
    min-height: 500px;
    margin-inline: auto;
  }

  .europe-grid {
    gap: 62px;
  }

  .europe-image {
    max-width: 470px;
    margin-inline: auto;
  }

  .europe-image img {
    aspect-ratio: 4 / 3;
    border-radius: 140px 140px 6px 6px;
  }

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

  .discretion-image {
    min-height: 340px;
    background:
      linear-gradient(0deg, var(--ink) 0%, transparent 22%),
      url("../img/historischer-weinkeller.jpg") center 52% / cover no-repeat;
  }

  .discretion-copy {
    padding: 30px 40px 70px;
  }

  .faq-intro {
    position: static;
  }

  .contact-grid {
    gap: 60px;
  }

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

  .footer-grid > :last-child {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100% - 28px, 600px);
  }

  body {
    padding-bottom: 66px;
    font-size: 16px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    font-size: 0.58rem;
  }

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

  h1 {
    font-size: clamp(2.75rem, 13.7vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.25rem, 10.8vw, 3.4rem);
  }

  .section {
    padding-block: 76px;
  }

  .hero {
    padding-block: 46px 76px;
  }

  .hero::before {
    top: 6%;
    left: -65%;
    width: 140vw;
    height: 140vw;
  }

  .hero-lead {
    font-size: 1.04rem;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-assurances {
    display: grid;
  }

  .hero-media {
    width: min(100%, 420px);
    padding: 0 0 18px 12px;
  }

  .hero-media img {
    max-height: 320px;
    aspect-ratio: 4 / 3;
    border-radius: 110px 110px 6px 6px;
  }

  .hero-arch {
    top: 8px;
    right: -6px;
  }

  .hero-media figcaption {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 18px);
    margin: -26px 0 0 auto;
  }

  .trust-line span {
    font-size: 0.9rem;
  }

  .audience-grid,
  .opportunity-list,
  .process-list {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: 0;
    padding: 34px 26px 42px;
  }

  .chapter-number {
    margin-bottom: 46px;
  }

  .audience-card h3 {
    font-size: clamp(2rem, 9.4vw, 2.7rem);
  }

  .opportunity-list {
    gap: 0;
  }

  .opportunity-list article {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .opportunity-list article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .opportunity-list article:last-child {
    border-bottom: 1px solid var(--line);
  }

  .image-stack {
    max-width: 450px;
    min-height: 420px;
  }

  .image-large {
    right: 16%;
    bottom: 48px;
  }

  .image-small {
    width: 41%;
    height: 49%;
  }

  .quiet-note {
    padding: 30px 22px 24px 40px;
  }

  .process-list {
    gap: 32px;
  }

  .process-list::before {
    top: 10%;
    bottom: 10%;
    left: 29px;
    width: 1px;
    height: auto;
  }

  .process-list li {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    text-align: left;
  }

  .process-list li > span {
    margin: 0;
  }

  .process-list p {
    max-width: none;
    margin: 0;
  }

  .discretion-section {
    padding-top: 24px;
  }

  .discretion-image {
    min-height: 280px;
  }

  .discretion-copy {
    padding: 24px 14px 58px;
  }

  .faq-list summary {
    padding-right: 44px;
  }

  .faq-list details p {
    padding-right: 20px;
  }

  .contact-person {
    grid-template-columns: 66px 1fr;
    gap: 16px;
    padding: 15px;
  }

  .contact-person img {
    width: 66px;
    height: 79px;
  }

  .contact-person strong {
    font-size: 1.25rem;
  }

  .contact-form {
    width: calc(100% + 8px);
    margin-left: -4px;
    padding: 32px 22px;
  }

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

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

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

  .mobile-actions {
    position: fixed;
    z-index: 990;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    min-height: 66px;
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 34px rgba(23, 50, 77, 0.12);
  }

  .mobile-actions a {
    display: grid;
    min-height: 66px;
    place-items: center;
    padding: 10px 8px;
    color: var(--ink);
    font-size: 0.8rem;
    font-weight: 780;
    text-align: center;
    text-decoration: none;
  }

  .mobile-actions a:first-child {
    color: var(--white);
    background: var(--ink);
  }
}

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

  .hero-media figcaption {
    padding: 15px 16px;
  }

  .image-stack {
    min-height: 360px;
  }

  .contact-person {
    grid-template-columns: 62px 1fr;
  }

  .contact-person img {
    width: 62px;
    height: 74px;
  }
}

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

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