:root {
  --wine: #532b36;
  --wine-deep: #341923;
  --wine-soft: #805663;
  --cream: #f4efe6;
  --paper: #fffdf8;
  --ink: #211d1a;
  --muted: #6f6861;
  --blue: #b8c9cf;
  --blue-deep: #48636d;
  --gold: #b4935f;
  --line: rgba(33, 29, 26, 0.18);
  --shadow: 0 28px 70px rgba(52, 25, 35, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  --page: min(100% - 40px, 1320px);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #fff;
  background: var(--wine-deep);
  transform: translateY(-150%);
}

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

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 86px;
  padding: 12px max(20px, calc((100vw - 1320px) / 2));
  color: var(--wine-deep);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  justify-self: start;
  text-decoration: none;
  letter-spacing: 0.08em;
}

.brand-place {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.1;
}

.brand-note {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.main-nav a {
  position: relative;
  text-decoration: none;
}

.main-nav a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.nav-contact {
  padding: 9px 17px;
  color: #fff;
  background: var(--wine);
  border-radius: 999px;
}

.awz-mark {
  display: grid;
  min-width: 66px;
  padding-left: 22px;
  text-align: right;
  border-left: 1px solid var(--line);
  line-height: 1;
}
.awz-mark img { display: block; width: 84px; height: auto; }

.awz-mark strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
}

.awz-mark span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  color: var(--wine-deep);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  position: absolute;
  width: 19px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, top 180ms ease;
}

.menu-lines {
  transform: translate(-50%, -50%);
}

.menu-lines::before {
  top: -6px;
  left: 0;
}

.menu-lines::after {
  top: 6px;
  left: 0;
}

.menu-button[aria-expanded="true"] .menu-lines {
  background: transparent;
}

.menu-button[aria-expanded="true"] .menu-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--wine-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(310px, 0.76fr) minmax(480px, 1.34fr);
  align-items: center;
  width: var(--page);
  min-height: calc(100svh - 86px);
  margin: 0 auto;
  padding: clamp(60px, 7vw, 112px) 0 clamp(70px, 8vw, 120px);
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 6%;
  right: 30%;
  width: 210px;
  height: 210px;
  content: "";
  border: 1px solid rgba(180, 147, 95, 0.55);
  border-radius: 50%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 38px clamp(24px, 4vw, 70px) 38px 0;
}

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

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

h1 {
  max-width: 720px;
  font-size: clamp(3.4rem, 5.4vw, 5.3rem);
}

h2 {
  font-size: clamp(2.5rem, 4.7vw, 5.2rem);
}

.hero-lead {
  max-width: 600px;
  margin: 32px 0 0;
  color: var(--wine);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.35;
}

.hero-detail {
  max-width: 550px;
  margin: 22px 0 0;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 23px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--wine);
  box-shadow: 0 13px 30px rgba(83, 43, 54, 0.22);
}

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

.text-link {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.text-link span {
  display: inline-block;
  margin-left: 6px;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.hero-figure,
.search-figure {
  position: relative;
  margin: 0;
}

.hero-figure {
  z-index: 1;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.image-frame {
  overflow: hidden;
  background: var(--cream);
}

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

.image-frame-hero {
  position: relative;
  width: calc(100% + max(20px, (100vw - 1320px) / 2));
  margin-right: calc(-1 * max(20px, (100vw - 1320px) / 2));
  box-shadow: var(--shadow);
}

.image-frame-hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

figcaption {
  align-self: flex-end;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-align: right;
}

.hero-index {
  position: absolute;
  bottom: 20px;
  left: 0;
  margin: 0;
  color: var(--blue-deep);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.location-section {
  padding: clamp(80px, 10vw, 150px) max(20px, calc((100vw - 1320px) / 2));
  background: var(--cream);
}

.section-intro {
  display: grid;
  grid-template-columns: 90px minmax(0, 860px);
  align-items: start;
  gap: 28px;
}

.section-number {
  margin: 5px 0 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.section-intro h2 {
  max-width: 850px;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 5vw, 80px);
  margin: clamp(55px, 7vw, 95px) 0 0 118px;
}

.location-grid article {
  padding-top: 4px;
}

.detail-line {
  display: block;
  width: 44px;
  height: 1px;
  margin-bottom: 26px;
  background: var(--gold);
}

.location-grid h3 {
  margin: 0;
  color: var(--wine-deep);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.3vw, 2.35rem);
  font-weight: 400;
}

.location-grid p {
  margin: 17px 0 0;
  color: var(--muted);
}

.owner-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: clamp(55px, 9vw, 150px);
  padding: clamp(85px, 11vw, 165px) max(42px, calc((100vw - 1180px) / 2));
  color: #fff;
  background: var(--wine);
  overflow: hidden;
}

.owner-section::after {
  position: absolute;
  right: -150px;
  bottom: -280px;
  width: 620px;
  height: 620px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.owner-heading,
.owner-content {
  position: relative;
  z-index: 1;
}

.owner-heading .eyebrow,
.owner-heading .section-number {
  color: #d7c1a1;
}

.owner-heading h2 {
  max-width: 770px;
  color: #fffaf1;
}

.owner-content {
  align-self: end;
  max-width: 480px;
  padding-bottom: 6px;
}

.owner-content p {
  color: rgba(255, 255, 255, 0.78);
}

.owner-content .owner-lead {
  margin-top: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  line-height: 1.42;
}

.button-light {
  margin-top: 22px;
  color: var(--wine-deep);
  background: #fffaf1;
}

.vertical-note {
  position: absolute;
  right: 20px;
  top: 50%;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.search-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.75fr);
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
  padding: clamp(85px, 11vw, 165px) 0;
}

.search-figure::before {
  position: absolute;
  z-index: -1;
  top: -34px;
  left: -34px;
  width: 52%;
  height: 72%;
  content: "";
  background: var(--blue);
}

.image-frame-room {
  box-shadow: var(--shadow);
}

.search-copy {
  padding-right: 20px;
}

.search-copy h2 {
  max-width: 560px;
}

.search-copy > p:not(.section-number):not(.eyebrow) {
  max-width: 540px;
  margin: 28px 0 0;
  color: var(--muted);
}

.wish-list {
  display: grid;
  gap: 0;
  margin: 30px 0 32px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.wish-list li {
  position: relative;
  padding: 13px 12px 13px 26px;
  color: var(--wine);
  border-bottom: 1px solid var(--line);
}

.wish-list li::before {
  position: absolute;
  top: 21px;
  left: 3px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.text-link-dark {
  color: var(--wine);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(560px, 1fr);
  gap: clamp(50px, 8vw, 130px);
  padding: clamp(85px, 10vw, 150px) max(20px, calc((100vw - 1240px) / 2));
  background: linear-gradient(120deg, #dbe4e5 0%, #edf0ec 48%, #e8dfd5 100%);
}

.contact-copy h2 {
  max-width: 500px;
}

.contact-copy > p:not(.section-number):not(.eyebrow) {
  max-width: 480px;
  margin: 27px 0 0;
  color: var(--muted);
}

.personal-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 52px;
  padding: 24px 0 0 28px;
  border-top: 1px solid rgba(72, 99, 109, 0.35);
  border-left: 3px solid var(--wine);
  font-style: normal;
}

.contact-label {
  margin-bottom: 15px;
  color: var(--blue-deep);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.personal-contact strong {
  color: var(--wine-deep);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.personal-contact > span:not(.contact-label) {
  margin-bottom: 10px;
  color: var(--muted);
}

.personal-contact a {
  font-weight: 750;
}

.contact-form {
  padding: clamp(25px, 4vw, 54px);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 24px 70px rgba(52, 25, 35, 0.12);
}

.contact-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-form legend {
  margin-bottom: 14px;
  color: var(--wine-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.radio-row label {
  position: relative;
  cursor: pointer;
}

.radio-row input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.radio-row span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  color: var(--wine);
  font-size: 0.8rem;
  font-weight: 750;
  line-height: 1.25;
  border: 1px solid rgba(83, 43, 54, 0.3);
}

.radio-row input:checked + span {
  color: #fff;
  background: var(--wine);
  border-color: var(--wine);
}

.radio-row input:focus-visible + span {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 18px;
  margin-top: 34px;
}

.field-grid label {
  display: grid;
  gap: 7px;
}

.field-grid label > span {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.05em;
}

.field-wide {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(33, 29, 26, 0.34);
  border-radius: 0;
}

input {
  min-height: 48px;
  padding: 7px 2px;
}

textarea {
  min-height: 128px;
  padding: 12px 2px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-bottom-color: var(--wine);
  outline: 0;
  box-shadow: 0 2px 0 var(--wine);
}

textarea::placeholder {
  color: #968e87;
}

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

.privacy-check {
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 11px;
  align-items: start;
  margin-top: 25px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.privacy-check input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--wine);
}

.submit-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.button-submit {
  flex: 0 0 auto;
  color: #fff;
  background: var(--wine);
}

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

.form-status {
  margin: 0;
  color: var(--wine);
  font-size: 0.78rem;
  line-height: 1.45;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-height: 88px;
  padding: 22px max(20px, calc((100vw - 1320px) / 2));
  color: rgba(255, 255, 255, 0.7);
  background: var(--wine-deep);
  font-size: 0.72rem;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.site-footer a {
  color: #fff;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .awz-mark {
    display: grid;
  }

  .main-nav {
    justify-self: end;
  }

  .hero {
    grid-template-columns: minmax(290px, 0.84fr) minmax(430px, 1.16fr);
  }

  h1 {
    font-size: clamp(3.1rem, 5.6vw, 4.5rem);
  }

  .owner-section {
    gap: 60px;
  }

  .contact-section {
    grid-template-columns: minmax(250px, 0.55fr) minmax(480px, 1fr);
    gap: 48px;
  }
}

@media (max-width: 820px) {
  :root {
    --page: min(100% - 32px, 720px);
  }

  html {
    scroll-padding-top: 78px;
  }

  .site-header {
    min-height: 74px;
    padding: 10px 16px;
  }

  .menu-button {
    position: relative;
    display: block;
    justify-self: end;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 35px rgba(52, 25, 35, 0.12);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 5px;
  }

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

  .nav-contact {
    margin-top: 8px;
    padding: 11px 16px !important;
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 56px 0 78px;
  }

  .hero::before {
    top: 32px;
    right: 0;
    width: 140px;
    height: 140px;
  }

  .hero-copy {
    padding: 0 0 44px;
  }

  h1 {
    max-width: 680px;
    font-size: clamp(3.4rem, 12vw, 6rem);
  }

  .image-frame-hero {
    width: 100%;
    margin-right: 0;
  }

  .hero-index {
    display: none;
  }

  .section-intro {
    grid-template-columns: 56px 1fr;
    gap: 18px;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-left: 74px;
  }

  .owner-section,
  .search-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .owner-section {
    gap: 50px;
    padding-right: 38px;
    padding-left: 38px;
  }

  .owner-content {
    max-width: 610px;
  }

  .vertical-note {
    display: none;
  }

  .search-section {
    gap: 70px;
  }

  .search-figure {
    max-width: 680px;
  }

  .search-copy {
    max-width: 650px;
    padding-right: 0;
  }

  .contact-section {
    gap: 58px;
  }

  .personal-contact {
    max-width: 430px;
  }
}

@media (max-width: 560px) {
  :root {
    --page: calc(100% - 28px);
  }

  body {
    font-size: 16px;
  }

  .brand-place {
    font-size: 1.05rem;
  }

  .brand-note {
    font-size: 0.56rem;
  }

  .hero {
    padding-top: 43px;
  }

  h1 {
    font-size: clamp(3.15rem, 16vw, 5rem);
  }

  h2 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

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

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

  .button {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
    padding: 4px 0;
  }

  .location-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .section-intro {
    grid-template-columns: 1fr;
  }

  .location-grid {
    margin-left: 0;
  }

  .owner-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .search-section {
    width: calc(100% - 28px);
  }

  .search-figure::before {
    top: -16px;
    left: -14px;
  }

  .contact-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .contact-copy {
    padding: 0 6px;
  }

  .personal-contact {
    margin-top: 38px;
    padding-left: 20px;
  }

  .contact-form {
    padding: 25px 18px;
  }

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

  .radio-row span {
    width: 100%;
  }

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

  .field-wide {
    grid-column: auto;
  }

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

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

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

/* AWZ: Symbolbild-Kennzeichnung im Bild, rechts unten */
figure>div:has(>.image-caption){position:relative}.image-caption{position:absolute;z-index:5;right:10px;bottom:10px;display:block;width:max-content;max-width:calc(100% - 20px);margin:0;padding:4px 8px;color:#fff;background:rgba(17,34,44,.82);font-size:11px;line-height:1.2;letter-spacing:0;text-align:right}
