:root {
  --ink: #082f47;
  --ink-soft: #426475;
  --lake: #0798a8;
  --lake-dark: #075a79;
  --gold: #bd9650;
  --gold-soft: #ead8b2;
  --sand: #f5f1e8;
  --paper: #fffefa;
  --white: #ffffff;
  --line: rgba(23, 52, 60, 0.14);
  --shadow: 0 18px 55px rgba(20, 51, 58, 0.12);
  --radius: 22px;
  --serif: "Bodoni 72", Didot, Baskerville, Constantia, Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, Candara, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

figure { margin: 0; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  letter-spacing: .008em;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

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

a { color: inherit; }

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.25);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(15px);
}

.nav-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: .055em;
  white-space: nowrap;
}

.brand-mark {
  display: none;
}

.brand::after {
  content: "";
  width: 34px;
  height: 1px;
  margin-left: 3px;
  background: var(--gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 720;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--lake-dark);
  background: rgba(7, 152, 168, .1);
}

.menu-toggle {
  position: relative;
  width: 46px;
  height: 46px;
  display: none;
  flex: 0 0 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--sand);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  display: block;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle span:nth-child(1) { transform: translate(-50%, calc(-50% - 7px)); }
.menu-toggle span:nth-child(3) { transform: translate(-50%, calc(-50% + 7px)); }

.hero {
  min-height: min(780px, calc(100vh - 78px));
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero.compact { min-height: 540px; }

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,35,57,.9) 0%, rgba(4,54,76,.63) 43%, rgba(3,82,99,.16) 76%), linear-gradient(0deg, rgba(4,35,57,.6), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0;
}

.hero-content > * { max-width: 760px; }

.eyebrow {
  margin: 0 0 15px;
  color: var(--gold);
  font-size: .9rem;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero .eyebrow { color: #efd39a; }

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

h1 {
  max-width: 840px;
  font-size: clamp(3.4rem, 7.6vw, 7.5rem);
  letter-spacing: -.025em;
}

.compact h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  letter-spacing: -.018em;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.6rem, 2.8vw, 2.45rem);
  letter-spacing: -.01em;
}

.hero-lead {
  margin: 26px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.4;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow { width: min(820px, calc(100% - 40px)); }

.section { padding: clamp(72px, 10vw, 130px) 0; }

.section.tint { background: var(--sand); }

.section.dark {
  color: var(--white);
  background: var(--ink);
}

.intro-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(310px, .98fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: center;
}

.split.reverse > :first-child { order: 2; }

.lead {
  font-family: var(--serif);
  font-size: clamp(1.28rem, 2.15vw, 1.72rem);
  line-height: 1.48;
}

.prose p { margin: 0 0 1.15em; }
.prose p:last-child { margin-bottom: 0; }

.welcome-lines {
  margin-top: 34px;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.6;
}

.media-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-card.short { min-height: 400px; }

.media-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-grid,
.card-grid,
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature,
.info-card,
.tip-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-number {
  display: block;
  margin-bottom: 44px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.7rem;
  line-height: 1;
}

.feature p,
.info-card p,
.tip-card p { margin: 0; }

.page-intro {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0 40px;
  text-align: center;
}

.page-intro h2 { font-size: clamp(2.2rem, 4vw, 3.7rem); }

.apartment {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(36px, 7vw, 90px);
  align-items: start;
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
}

.apartment:nth-child(even) .apartment-media { order: 2; }

.apartment-media {
  position: sticky;
  top: 110px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.apartment-copy { padding-top: 22px; }

.equipment {
  margin: 30px 0 0;
  padding: 24px;
  border-left: 3px solid var(--lake);
  background: var(--sand);
}

.equipment strong {
  display: block;
  margin-bottom: 8px;
  font-size: .78rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.landing-apartment .ideal {
  display: inline-flex;
  margin: -5px 0 24px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--lake-dark);
  background: rgba(7,152,168,.1);
  font-weight: 800;
}

.photo-strip {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
}

.photo-strip img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

.quote-band {
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  background: linear-gradient(115deg, var(--lake-dark), #087e93);
}

.quote-band p {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  line-height: 1.2;
}

.tip-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.tip-card .icon { display: none; }

.tip-card h3 { font-size: 1.55rem; }

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

.day-plan {
  padding: clamp(42px, 6vw, 72px);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
}

.day-plan h2 { max-width: 720px; }

.notice {
  margin-top: 34px;
  padding: 26px 30px;
  border-radius: 16px;
  border: 1px solid var(--gold-soft);
  background: #fbf5e9;
  color: #604c2d;
}

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

.route-card {
  padding: clamp(30px, 5vw, 54px);
  border-radius: var(--radius);
  background: var(--sand);
}

.route-icon { display: none; }

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 13px 20px;
  border-radius: 999px;
  color: var(--white);
  background: var(--lake-dark);
  text-decoration: none;
  font-weight: 800;
}

.map-link:hover { background: var(--lake); }

.map-section {
  padding: 0 0 clamp(72px, 10vw, 130px);
}

.map-section-first {
  padding-top: clamp(58px, 7vw, 92px);
  background: var(--paper);
}

.map-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 32px;
}

.map-heading .eyebrow { margin-bottom: 9px; }

.map-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.map-frame {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius);
  background: var(--sand);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.footer {
  padding: 54px 0;
  color: rgba(255,255,255,.76);
  background: #05283d;
}

.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

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

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
}

.footer-nav a {
  text-decoration: none;
  font-size: .88rem;
}

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

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

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

  .site-nav {
    position: fixed;
    inset: 78px 0 auto;
    display: grid;
    gap: 4px;
    padding: 24px 20px 34px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
    transform: translateY(-125%);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
  }

  .nav-open .site-nav {
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .site-nav a {
    padding: 13px 16px;
    border-radius: 12px;
    font-size: 1rem;
  }

  .nav-open .menu-toggle span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
  .nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .menu-toggle span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

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

@media (max-width: 780px) {
  body { font-size: 16px; }
  .nav-shell { width: min(100% - 28px, 1180px); min-height: 70px; }
  .site-nav { top: 70px; }
  .hero { min-height: 650px; }
  .hero.compact { min-height: 480px; }
  .hero-content { width: min(100% - 32px, 1180px); padding: 64px 0; }
  h1 { font-size: clamp(2.8rem, 14vw, 4.5rem); }
  .container, .narrow, .page-intro { width: min(100% - 32px, 1120px); }
  .section { padding: 72px 0; }

  .intro-grid,
  .split,
  .apartment,
  .route-grid { grid-template-columns: 1fr; }

  .split.reverse > :first-child,
  .apartment:nth-child(even) .apartment-media { order: initial; }

  .media-card { min-height: 390px; }
  .apartment { padding: 65px 0; }
  .apartment-media { position: relative; top: auto; aspect-ratio: 4 / 3; }
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip img { height: 330px; }
  .map-heading { display: block; }
  .map-frame { min-height: 420px; }
  .tips-grid.two { grid-template-columns: 1fr; }

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

  .footer-nav { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .brand { font-size: 1.2rem; }
  .feature-grid,
  .card-grid,
  .tips-grid { grid-template-columns: 1fr; }
  .feature-number { margin-bottom: 24px; }
  .hero::after { background: linear-gradient(0deg, rgba(4,35,57,.94), rgba(4,56,78,.18) 75%); }
  .hero-lead { font-size: 1.25rem; }
  .day-plan { padding: 34px 26px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* One-page landing page */
.landing-page {
  background:
    radial-gradient(circle at 8% 12%, rgba(7, 152, 168, .06), transparent 24rem),
    var(--paper);
}

.landing-page section[id] { scroll-margin-top: 78px; }

.landing-header .nav-shell { min-height: 82px; }

.landing-header .site-nav a {
  padding: 9px 8px;
  font-size: .9rem;
}

.landing-header .site-nav .nav-cta {
  margin-left: 4px;
  padding: 10px 13px;
  border: 1px solid var(--gold);
  border-radius: 0;
  letter-spacing: .06em;
}

.landing-header .site-nav .nav-cta-primary {
  color: var(--ink);
  background: #e2c88f;
}

.landing-header .site-nav .nav-cta-secondary {
  color: var(--lake-dark);
  background: transparent;
}

.landing-header .site-nav .nav-cta:hover {
  color: var(--white);
  background: var(--lake-dark);
}

.landing-hero {
  width: 100%;
  height: min(800px, 80vh);
  min-height: 0;
  max-height: 80vh;
  align-items: center;
}

.landing-hero::after {
  background:
    linear-gradient(90deg, rgba(3, 29, 50, .94) 0%, rgba(3, 48, 71, .69) 42%, rgba(3, 91, 106, .17) 77%),
    linear-gradient(0deg, rgba(3, 29, 50, .55), transparent 58%);
}

.landing-hero .hero-content { padding: 110px 0 130px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.landing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 23px;
  border: 1px solid var(--gold);
  color: var(--white);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .08em;
}

.landing-button.primary {
  color: var(--ink);
  background: #e2c88f;
}

.landing-button.secondary { background: rgba(4, 41, 61, .38); }

.landing-button:hover { background: var(--white); color: var(--ink); }

.content-jump-bar {
  display: grid;
  place-items: center;
  min-height: clamp(60px, 9vh, 82px);
  border-bottom: 1px solid rgba(189, 150, 80, .28);
  background: var(--paper);
}

.content-jump {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 24px;
  border: 1px solid rgba(189, 150, 80, .78);
  color: var(--lake-dark);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.content-jump:hover {
  color: var(--white);
  background: var(--lake-dark);
  transform: translateY(2px);
}

.landing-intro { position: relative; }

.landing-intro::before {
  content: "216";
  position: absolute;
  top: 30px;
  right: 4vw;
  color: rgba(189, 150, 80, .07);
  font: 400 clamp(8rem, 20vw, 19rem)/1 var(--serif);
  pointer-events: none;
}

.landing-image {
  position: relative;
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(189, 150, 80, .72);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.landing-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.landing-image.portrait img { aspect-ratio: 4 / 5; }

.apartment-section {
  position: relative;
  overflow: clip;
  isolation: isolate;
  background: linear-gradient(180deg, #eef7f7 0%, #f7fbfa 42%, var(--paper) 100%);
}

.landing-section-head {
  width: min(850px, 100%);
  margin: 0 auto 20px;
  text-align: center;
}

.landing-section-head > p:not(.eyebrow) { max-width: 760px; margin-left: auto; margin-right: auto; }

.apartment-jump-nav {
  position: sticky;
  z-index: 24;
  top: 82px;
  width: fit-content;
  max-width: 100%;
  margin: 38px auto 0;
  padding: 7px;
  display: flex;
  gap: 7px;
  border: 1px solid rgba(189, 150, 80, .62);
  background: rgba(255, 254, 250, .9);
  box-shadow: 0 14px 36px rgba(5, 51, 70, .12);
  backdrop-filter: blur(12px);
}

.apartment-jump-nav a {
  min-height: 42px;
  padding: 10px 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--lake-dark);
  text-decoration: none;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .22s ease, background .22s ease;
}

.apartment-jump-nav a:hover,
.apartment-jump-nav a.is-active {
  color: var(--white);
  background: var(--lake-dark);
}

.landing-apartment {
  position: relative;
  scroll-margin-top: 158px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
  gap: clamp(48px, 7vw, 94px);
  align-items: center;
  padding: clamp(82px, 10vw, 130px) 0;
  border-bottom: 1px solid rgba(189, 150, 80, .32);
}

.landing-apartment::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  right: clamp(-230px, -13vw, -95px);
  width: clamp(300px, 36vw, 540px);
  aspect-ratio: 916 / 1717;
  background: url("images/zypressen-zeichnung.png") center / contain no-repeat;
  opacity: .085;
  filter: brightness(0) saturate(100%) invert(35%) sepia(30%) saturate(1010%) hue-rotate(135deg) brightness(88%) contrast(88%);
  transform: translateY(-50%);
  pointer-events: none;
}

.landing-apartment.reverse::before {
  right: auto;
  left: clamp(-230px, -13vw, -95px);
  transform: translateY(-50%) scaleX(-1);
}

.landing-apartment.motif-wheel::before {
  width: clamp(380px, 45vw, 680px);
  aspect-ratio: 1;
  background-image: url("images/steuerrad-zeichnung.png");
  opacity: .055;
}

.landing-apartment.motif-drops::before {
  width: clamp(280px, 31vw, 470px);
  aspect-ratio: 2 / 3;
  background-image: url("images/wassertropfen-zeichnung.png");
  opacity: .075;
}

.landing-apartment > * {
  position: relative;
  z-index: 1;
}

.landing-apartment:last-child { border-bottom: 0; padding-bottom: 10px; }

.landing-apartment.reverse .apartment-slider { order: 2; }

.apartment-slider {
  position: relative;
  padding: 8px;
  border: 1px solid rgba(189, 150, 80, .8);
  background: var(--paper);
  box-shadow: 0 24px 65px rgba(5, 51, 70, .16);
}

.slider-viewport {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ink);
}

.slider-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .55s ease;
}

.slider-slide.is-active {
  opacity: 1;
  visibility: visible;
}

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

.slider-controls {
  min-height: 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 7px 8px 0;
}

.slider-controls button {
  appearance: none;
  width: max-content;
  padding: 8px 2px;
  border: 0;
  border-bottom: 1px solid transparent;
  color: var(--lake-dark);
  background: transparent;
  font: 750 .72rem/1 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
}

.slider-controls button:hover { border-color: var(--gold); color: var(--ink); }
.slider-controls button:last-child { justify-self: end; }

.slider-count {
  margin: 0;
  color: var(--gold);
  font: 400 1rem/1 var(--serif);
  letter-spacing: .08em;
}

.landing-apartment .apartment-copy { padding-top: 0; }

.landing-apartment .apartment-copy h3 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.apartment-index,
.feature-label {
  margin: 0 0 18px !important;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.amenity-panel {
  background: rgba(255, 254, 250, .75);
}

.amenity-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.amenity-list li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  color: var(--ink-soft);
  font-size: .84rem;
  line-height: 1.35;
}

.amenity-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(189, 150, 80, .7);
  border-radius: 50%;
  color: var(--lake-dark);
  background: var(--paper);
  font: 400 1rem/1 Constantia, Georgia, serif;
}

.amenity-icon.text-icon {
  font-family: var(--sans);
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .03em;
}

.whole-house {
  overflow: hidden;
  background: var(--sand);
}

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

.house-gallery .landing-image { padding: 5px; box-shadow: none; }
.house-gallery .landing-image.wide { grid-column: 1 / -1; }
.house-gallery .landing-image img { aspect-ratio: 1 / 1; }
.house-gallery .landing-image.wide img { aspect-ratio: 16 / 9; }

.dog-section { background: #fbfaf5; }

.experience-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 47, 71, .97), rgba(4, 104, 119, .94)),
    url("images/woerthersee-drohne.jpg") center / cover;
}

.experience-section .eyebrow,
.experience-section .feature-label { color: #e5c98e; }

.landing-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 58px;
}

.landing-feature {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100%;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(224, 193, 126, .65);
  background: rgba(3, 40, 59, .34);
  backdrop-filter: blur(8px);
}

.landing-feature::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -13%;
  bottom: -18%;
  width: 88%;
  height: 82%;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: contain;
  filter: brightness(0) saturate(100%) invert(84%) sepia(30%) saturate(614%) hue-rotate(2deg) brightness(102%) contrast(88%);
  opacity: .15;
  pointer-events: none;
}

.landing-feature.feature-swim::before {
  background-image: url("images/aktivitaet-baden-zeichnung.png");
}

.landing-feature.feature-promenade::before {
  right: -6%;
  bottom: -13%;
  width: 98%;
  height: 86%;
  background-image: url("images/aktivitaet-promenade-zeichnung.png");
  opacity: .13;
}

.landing-feature h3 { min-height: 2.15em; color: var(--white); font-size: 1.65rem; }
.landing-feature > p:last-child { margin-bottom: 0; color: rgba(255,255,255,.8); }

.landing-feature.feature-linked {
  display: flex;
  flex-direction: column;
}

.landing-feature.feature-linked::before {
  right: -10%;
  bottom: -15%;
  width: 90%;
  height: 76%;
  border: 0;
  border-radius: 0;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: contain;
  filter: none;
  opacity: .13;
}

.landing-feature.feature-water-ski::before {
  background-image: url("images/wasserski-zeichnung.png");
}

.landing-feature.feature-ship::before {
  right: -8%;
  bottom: -10%;
  width: 96%;
  height: 78%;
  background-image: url("images/woerthersee-schiff-zeichnung.png");
  opacity: .12;
}

.feature-link {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 24px;
  color: #f2d99e;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-decoration: underline;
  text-decoration-color: rgba(242, 217, 158, .55);
  text-underline-offset: 6px;
  text-transform: uppercase;
}

.feature-link:hover { color: var(--white); }

.restaurant-tips {
  margin-top: clamp(70px, 9vw, 118px);
  padding-top: clamp(52px, 7vw, 82px);
  border-top: 1px solid rgba(224, 193, 126, .55);
}

.restaurant-tips-head {
  width: min(880px, 100%);
  margin: 0 auto;
  text-align: center;
}

.restaurant-tips-head h3 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.restaurant-tips-head .lead {
  margin: 0;
  color: rgba(255, 255, 255, .82);
}

.restaurant-accordion {
  width: min(940px, 100%);
  margin: 48px auto 0;
  border-top: 1px solid rgba(224, 193, 126, .55);
}

.restaurant-accordion details {
  border-bottom: 1px solid rgba(224, 193, 126, .42);
  background: rgba(3, 40, 59, .3);
}

.restaurant-accordion summary {
  min-height: 72px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.3;
  list-style: none;
  cursor: pointer;
}

.restaurant-accordion summary::-webkit-details-marker { display: none; }

.restaurant-accordion summary::after {
  content: "Mehr";
  flex: 0 0 auto;
  color: #e5c98e;
  font: 800 .66rem/1 var(--sans);
  letter-spacing: .13em;
  text-transform: uppercase;
}

.restaurant-accordion details[open] summary {
  color: #f0d59b;
  background: rgba(255, 255, 255, .04);
}

.restaurant-accordion details[open] summary::after { content: "Weniger"; }

.restaurant-answer {
  padding: 0 22px 24px;
  color: rgba(255, 255, 255, .78);
}

.restaurant-answer p { max-width: 810px; margin: 0; }

.restaurant-address {
  margin-top: 14px;
  color: #e5c98e;
  font-style: normal;
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .035em;
}

.restaurant-note {
  width: min(940px, 100%);
  margin: 34px auto 0;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid rgba(224, 193, 126, .62);
  background: rgba(255, 254, 250, .07);
}

.restaurant-note > p:not(.feature-label) {
  margin: 0 0 1em;
  color: rgba(255, 255, 255, .82);
}

.restaurant-note > p:last-child { margin-bottom: 0; }

.arrival-section { background: linear-gradient(180deg, var(--paper), #edf8f7); }

.contact-section {
  position: relative;
  overflow: hidden;
  background: #f7f1e5;
}

.contact-section::before,
.contact-section::after {
  content: "";
  position: absolute;
  width: 360px;
  aspect-ratio: 1;
  border: 1px solid rgba(189, 150, 80, .22);
  border-radius: 50%;
  pointer-events: none;
}

.contact-section::before { top: -230px; left: -170px; }
.contact-section::after { right: -190px; bottom: -250px; }

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: min(920px, 100%);
  margin: 52px auto 0;
}

.contact-cta {
  display: grid;
  gap: 12px;
  min-height: 220px;
  align-content: center;
  padding: clamp(32px, 5vw, 54px);
  border: 1px solid var(--gold);
  color: var(--ink);
  background: rgba(255, 254, 250, .72);
  text-align: center;
  text-decoration: none;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.contact-cta span,
.contact-cta small {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.contact-cta span { color: var(--gold); }

.contact-cta strong {
  font: 400 clamp(1.5rem, 3vw, 2.4rem)/1.2 var(--serif);
}

.contact-cta small {
  width: max-content;
  margin: 6px auto 0;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--gold);
}

.contact-cta:hover {
  color: var(--white);
  background: var(--lake-dark);
  transform: translateY(-3px);
}

.arrival-head {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 46px;
}

.arrival-head h2 { margin-bottom: 16px; }
.arrival-head .lead { margin: 0; }

.arrival-title-group {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 3vw, 38px);
  align-items: center;
}

.arrival-landmark {
  --arrival-image-size: clamp(160px, 15vw, 215px);
  width: var(--arrival-image-size);
  margin: 0;
  text-align: center;
}

.arrival-landmark img {
  display: block;
  width: var(--arrival-image-size);
  height: var(--arrival-image-size);
  max-width: none;
  border: 3px solid var(--gold);
  border-radius: 50%;
  object-fit: cover;
  object-position: 40% center;
  box-shadow: 0 18px 42px rgba(1, 42, 58, .18);
}

.arrival-landmark figcaption {
  margin-top: 11px;
  color: var(--lake-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.arrival-address {
  margin: 0;
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1.65;
}

.arrival-address a {
  color: var(--lake-dark);
  text-decoration-color: rgba(189, 150, 80, .72);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.arrival-address a:hover { color: var(--gold-dark); }

.landing-map { min-height: 540px; border-radius: 0; }

.arrival-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 8vw, 100px);
  margin-top: 66px;
}

.arrival-notes > div { padding-top: 28px; border-top: 1px solid var(--gold); }

.landing-footer { border-top: 1px solid rgba(189, 150, 80, .45); }

.footer-legal {
  width: min(1120px, calc(100% - 40px));
  margin: 46px auto 0;
  padding-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  border-top: 1px solid rgba(189, 150, 80, .32);
  color: rgba(255,255,255,.72);
  font-size: .88rem;
  line-height: 1.75;
}

.footer-booking-actions {
  width: min(1120px, calc(100% - 40px));
  margin: 42px auto 0;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.footer-booking-button {
  min-width: 160px;
  padding: 12px 20px;
  border: 1px solid var(--gold);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-booking-button.primary {
  color: var(--ink);
  background: #e2c88f;
}

.footer-booking-button:hover {
  color: var(--ink);
  background: var(--white);
}

.footer-legal a { color: inherit; text-decoration: none; }
.footer-legal a:hover { color: var(--white); }
.footer-legal address { font-style: normal; }

.legal-page .legal-hero {
  height: min(520px, 55vh);
  min-height: 380px;
  align-items: end;
}

.legal-page .legal-hero .hero-content { padding: 76px 0; }

.legal-section {
  background: linear-gradient(180deg, #eef7f7 0%, var(--paper) 100%);
}

.legal-card {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(38px, 7vw, 76px);
  border: 1px solid rgba(189, 150, 80, .62);
  background: rgba(255, 254, 250, .92);
  box-shadow: var(--shadow);
}

.legal-card h2 {
  margin-bottom: 30px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.15;
}

.legal-address {
  margin: 0;
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.8;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid rgba(189, 150, 80, .42);
}

.legal-grid p { margin: 0; }
.legal-grid a { color: var(--lake-dark); text-decoration: none; }
.legal-grid a:hover { color: var(--gold); }

.footer-label {
  margin: 0 0 8px;
  color: #dfc183;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.scroll-top {
  position: fixed;
  z-index: 95;
  right: clamp(16px, 3vw, 42px);
  bottom: clamp(16px, 3vw, 36px);
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--gold);
  color: var(--white);
  background: rgba(5, 40, 61, .92);
  box-shadow: 0 12px 32px rgba(3, 29, 50, .24);
  font: 800 .72rem/1 var(--sans);
  letter-spacing: .13em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease, color .25s ease, background .25s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.scroll-top:hover,
.scroll-top:focus-visible {
  color: var(--ink);
  background: #e2c88f;
}

@media (max-width: 1180px) {
  .landing-header .site-nav a {
    padding: 13px 16px;
    font-size: 1.05rem;
  }

  .landing-header .site-nav { top: 82px; }

  .landing-header .site-nav .nav-cta {
    margin: 4px 0 0;
    text-align: center;
  }

  .landing-apartment { grid-template-columns: 1fr; }
  .landing-apartment.reverse .apartment-slider { order: initial; }
  .landing-feature h3 { min-height: 0; }
}

@media (max-width: 780px) {
  .landing-page section[id] { scroll-margin-top: 70px; }
  .landing-header .site-nav { top: 82px; }
  .landing-hero {
    height: 80vh;
    min-height: 0;
    max-height: 680px;
  }
  .landing-hero .hero-content { padding: 36px 0 40px; }
  .hero-actions { display: grid; max-width: 390px; margin-top: 20px; gap: 7px; }
  .landing-button { width: 100%; min-height: 44px; padding: 9px 16px; }
  .apartment-jump-nav {
    top: 82px;
    width: calc(100vw - 32px);
    margin-top: 30px;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .apartment-jump-nav::-webkit-scrollbar { display: none; }
  .apartment-jump-nav a { flex: 0 0 auto; padding-inline: 14px; }
  .landing-apartment { scroll-margin-top: 154px; }
  .landing-apartment { padding: 76px 0; }
  .landing-apartment::before {
    right: -245px;
    width: 430px;
    opacity: .055;
  }
  .landing-apartment.reverse::before {
    right: auto;
    left: -245px;
  }
  .landing-apartment.motif-wheel::before {
    width: 420px;
    opacity: .04;
  }
  .landing-apartment.motif-drops::before {
    width: 350px;
    opacity: .05;
  }
  .landing-feature-grid { grid-template-columns: 1fr; }
  .arrival-head,
  .arrival-notes { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid,
  .footer-legal,
  .legal-grid { grid-template-columns: 1fr; }
  .footer-legal { gap: 28px; }
  .footer-booking-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .landing-map { min-height: 430px; }
}

@media (max-width: 560px) {
  .landing-hero h1 { font-size: clamp(3rem, 14vw, 4.6rem); }
  .slider-viewport { aspect-ratio: 4 / 3.4; }
  .slider-controls { gap: 10px; }
  .amenity-list { grid-template-columns: 1fr; }
  .house-gallery { grid-template-columns: 1fr; }
  .house-gallery .landing-image.wide { grid-column: auto; }
  .house-gallery .landing-image img,
  .house-gallery .landing-image.wide img { aspect-ratio: 4 / 3; }
  .arrival-title-group { grid-template-columns: 1fr; }
  .arrival-landmark { --arrival-image-size: 180px; }
  .landing-feature { padding: 28px 24px; }
}
