/* =========================================================
   Haus Sauvignon — Redesign 2026
   Single-page layout, refined typography, warm cream palette.
   ========================================================= */

:root {
  --bg:        #f7f3ec;
  --bg-elev:   #fbf8f2;
  --bg-warm:   #efe9da;
  --bg-deep:   #ece6da;
  --ink:       #2b261f;
  --ink-soft:  #5e564a;
  --ink-faint: #8a8276;
  --rule:      rgba(43, 38, 31, 0.14);
  --rule-soft: rgba(43, 38, 31, 0.08);
  --accent:    #8a5a3b;
  --accent-2:  #b48a5b;
  --on-accent: #fbf8f2;

  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans:  "Inter", "Helvetica Neue", system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 1px 2px rgba(43, 38, 31, 0.06);
  --shadow-md: 0 12px 32px -18px rgba(43, 38, 31, 0.25);
  --shadow-lg: 0 28px 64px -36px rgba(43, 38, 31, 0.35);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --maxw: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(72px, 10vw, 128px);
}

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

html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Anchor jumps land below the sticky header (72px) with breathing room. */
:where(section, [id]) { scroll-margin-top: 88px; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 200ms var(--ease);
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

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

::selection {
  background: var(--accent);
  color: var(--on-accent);
}

/* ── Layout ──────────────────────────────────────────────── */

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section-warm { background: var(--bg-warm); }
.section-elev { background: var(--bg-elev); }

/* ── Type ────────────────────────────────────────────────── */

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}

.h-serif {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.005em;
  margin: 0;
}

h1.h-serif { font-size: clamp(40px, 6vw, 76px); line-height: 1.02; }
h2.h-serif { font-size: clamp(34px, 4.4vw, 56px); line-height: 1.06; }
h3.h-serif { font-size: clamp(22px, 2.2vw, 30px); line-height: 1.15; }

.lead {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 60ch;
  text-wrap: pretty;
}

.ornament {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--accent-2);
  font-size: 14px;
}
.ornament::before,
.ornament::after {
  content: "";
  width: 56px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.ornament svg { width: 14px; height: 14px; }

/* Draw-in: inside .reveal, the ornament strokes/scales itself on entry. */
.reveal .ornament svg path { stroke-dasharray: 100; stroke-dashoffset: 100; }
.reveal .ornament svg circle {
  transform: scale(0);
  transform-origin: center;
  transform-box: fill-box;
}
.reveal .ornament::before,
.reveal .ornament::after { transform: scaleX(0); }
.reveal .ornament::before { transform-origin: right center; }
.reveal .ornament::after  { transform-origin: left center; }
.reveal.on .ornament svg path {
  animation: drawLine 900ms var(--ease) 200ms forwards;
}
.reveal.on .ornament svg circle {
  animation: popDot 400ms var(--ease) 900ms forwards;
}
.reveal.on .ornament::before {
  animation: drawRule 700ms var(--ease) 100ms forwards;
}
.reveal.on .ornament::after {
  animation: drawRule 700ms var(--ease) 100ms forwards;
}
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes popDot   { to { transform: scale(1); } }
@keyframes drawRule { to { transform: scaleX(1); } }

/* ── Buttons ─────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--ink);
  color: var(--on-accent);
  border-radius: 2px;
  transition: background 200ms var(--ease), transform 200ms var(--ease);
}
.btn:hover { background: var(--accent); }
.btn:active { transform: translateY(1px); }
.btn[data-state="sending"] {
  background: var(--accent);
  pointer-events: none;
  cursor: progress;
}
.btn[data-state="sending"] svg { display: none; }
.btn[data-state="sending"]::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  border-top-color: transparent;
  animation: btnSpin 700ms linear infinite;
}
@keyframes btnSpin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .btn[data-state="sending"]::after { animation: none; }
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--on-accent);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0 0 4px;
  border-bottom: 1px solid var(--ink);
}
.btn-link:hover { color: var(--accent); border-color: var(--accent); }

/* ── Header ──────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 300ms var(--ease), background 300ms var(--ease);
}
.site-header[data-scrolled="true"] {
  border-bottom-color: var(--rule);
  background: color-mix(in srgb, var(--bg) 95%, transparent);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  transition: opacity 200ms var(--ease);
}
.brand:hover { opacity: 0.85; }

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--accent);
  flex-shrink: 0;
}
.brand-mark svg { display: block; }

.brand-word {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
  text-align: left;
}
.brand-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.005em;
  color: var(--ink);
  white-space: nowrap;
}
.brand-tag {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-faint);
  white-space: nowrap;
}

.nav-links {
  position: relative;
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.6vw, 28px);
}
.nav-links a {
  position: relative;
  padding: 10px 4px;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }

.nav-indicator {
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  opacity: 0;
  pointer-events: none;
  transition:
    left 380ms var(--ease),
    width 380ms var(--ease),
    opacity 200ms var(--ease);
}
.nav-indicator.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .nav-indicator { transition: none; }
}

.lang {
  display: inline-flex;
  border: 1px solid var(--rule);
  padding: 2px;
  border-radius: 999px;
}
.lang a {
  padding: 6px 12px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  color: var(--ink-faint);
  font-weight: 500;
}
.lang a[aria-current="true"] {
  background: var(--ink);
  color: var(--on-accent);
}

.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
}
.menu-btn svg { width: 16px; height: 16px; }

/* ── Hero ────────────────────────────────────────────────── */

.hero {
  position: relative;
  height: calc(100vh - 72px);
  min-height: 600px;
  max-height: 880px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1400ms var(--ease);
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 14s ease-out forwards;
  transform-origin: center;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.05) 30%,
    rgba(0, 0, 0, 0.45) 100%
  );
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.hero-content {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fbf8f2;
  z-index: 2;
  padding-inline: var(--gutter);
}
.hero-content > div > * {
  opacity: 0;
  transform: translateY(14px);
  animation: heroIn 900ms var(--ease) forwards;
}
.hero-content .hero-eyebrow { animation-delay: 250ms; }
.hero-content .hero-title   { animation-delay: 420ms; }
.hero-content .hero-rule    { animation-delay: 720ms; }
.hero-content .hero-tag     { animation-delay: 880ms; }
@keyframes heroIn {
  to { opacity: 1; transform: none; }
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 500;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 11vw, 144px);
  line-height: 0.94;
  margin: 18px 0 22px;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
}
.hero-rule {
  width: 56px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
  margin: 0 auto 20px;
}
.hero-tag {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}
.hero-dots button {
  width: 28px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  transition: background 200ms var(--ease), width 200ms var(--ease);
}
.hero-dots button[aria-current="true"] {
  background: rgba(255, 255, 255, 0.95);
  width: 44px;
}

/* ── Booking strip ───────────────────────────────────────── */

.booking-wrap {
  position: relative;
  z-index: 30;
  margin-top: -56px;
  padding-inline: var(--gutter);
}
.booking {
  max-width: 980px;
  margin: 0 auto;
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: stretch;
  border-radius: 2px;
  overflow: hidden;
}
.booking-field {
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid var(--rule-soft);
  position: relative;
}
.booking-field:last-of-type { border-right: 0; }
.booking-field label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
}
.booking-field input,
.booking-field select {
  border: 0;
  outline: 0;
  background: transparent;
  font-family: var(--serif);
  font-size: 18px;
  padding: 2px 0;
  color: var(--ink);
  width: 100%;
}
.booking-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: opacity(0.4);
  cursor: pointer;
}
.booking-submit {
  background: var(--ink);
  color: var(--on-accent);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0 32px;
  transition: background 200ms var(--ease);
}
.booking-submit:hover { background: var(--accent); }

/* ── Welcome ─────────────────────────────────────────────── */

.welcome { text-align: center; }
.welcome .eyebrow { margin-bottom: 22px; display: inline-block; }
.welcome h2 { margin-bottom: 14px; }
.welcome .ornament {
  margin: 24px auto 32px;
  display: flex;
  justify-content: center;
}
.welcome p {
  max-width: 56ch;
  margin: 0 auto 16px;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
  text-wrap: pretty;
}
.welcome .signoff {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.4vw, 22px);
  color: var(--ink);
  margin-top: 6px;
}

.host {
  margin: 36px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.host img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.host-meta { text-align: left; }
.host-meta b {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
}
.host-meta span {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
}

/* ── Three feature tiles ─────────────────────────────────── */

.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 28px);
}
.tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  background: var(--bg-elev);
  box-shadow: var(--shadow-sm);
}
.tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--ease);
}
.tile:hover img { transform: scale(1.04); }
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0.65) 100%
  );
}
.tile-body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: clamp(20px, 2.4vw, 32px);
  color: #fbf8f2;
}
.tile-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2vw, 30px);
  letter-spacing: 0.04em;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.tile-body p {
  font-size: 14px;
  line-height: 1.45;
  max-width: 38ch;
  opacity: 0.92;
  margin: 0 0 14px;
}

/* ── Section header ──────────────────────────────────────── */

.section-head { text-align: center; }
.section-head .eyebrow { display: inline-block; margin-bottom: 18px; }
.section-head h2 { margin: 0 0 18px; }
.section-head .ornament { margin: 6px auto 0; display: inline-flex; }

/* ── Apartment rows ──────────────────────────────────────── */

.apt {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.apt.flip { grid-template-columns: 1fr 1.05fr; }
.apt.flip .apt-media { order: 2; }
.apt-media {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--bg-elev);
  border-radius: 2px;
  box-shadow: var(--shadow-md);
}
.apt-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--ease);
}
.apt-media:hover img { transform: scale(1.03); }
.apt-media .tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--bg);
  color: var(--ink);
  padding: 8px 12px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.apt-body .eyebrow { display: block; margin-bottom: 14px; }
.apt-body h2 { margin-bottom: 6px; }
.apt-body .sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.4vw, 22px);
  color: var(--ink-soft);
  margin: 0 0 24px;
}
.apt-body p {
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0 0 24px;
  max-width: 50ch;
}
.apt-feat {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 18px;
  margin: 24px 0 32px;
  max-width: 460px;
  padding: 0;
}
.apt-feat li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.apt-feat li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent-2);
  border-radius: 50%;
  flex-shrink: 0;
}
.apt-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.apt + .apt { margin-top: clamp(64px, 9vw, 120px); }

/* ── Reviews ─────────────────────────────────────────────── */

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 28px);
  margin-top: clamp(40px, 5vw, 64px);
}
.review {
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  padding: clamp(24px, 2.4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.review .stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.18em;
}
.review .who {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
}
.review .who b {
  color: var(--ink);
  font-weight: 600;
}
.review h4 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 1.5vw, 22px);
  margin: 0;
  color: var(--ink);
  line-height: 1.25;
}
.review blockquote {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.review .flag {
  width: 16px;
  height: 11px;
  display: inline-block;
  background-image: linear-gradient(
    180deg,
    #000 0 33.3%,
    #dd0000 33.3% 66.7%,
    #ffce00 66.7% 100%
  );
  border-radius: 1px;
  vertical-align: middle;
}

/* ── Location ────────────────────────────────────────────── */

.location-intro {
  max-width: 760px;
  margin: clamp(24px, 3vw, 40px) auto clamp(56px, 7vw, 96px);
  text-align: center;
}
.location-intro p {
  margin: 0 0 16px;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.7;
  color: var(--ink-soft);
}
.location-intro b { color: var(--ink); font-weight: 600; }

.location-cards {
  display: grid;
  gap: clamp(40px, 5vw, 80px);
}
.loc-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.loc-card.flip .loc-media { order: 2; }
.loc-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px;
  background: var(--bg-elev);
  box-shadow: var(--shadow-md);
}
.loc-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1100ms var(--ease), filter 600ms var(--ease);
}
.loc-card:hover .loc-media img { transform: scale(1.03); }
.loc-media img[src*="wein-kultur"] {
  filter: brightness(0.88) saturate(1.12) contrast(1.06);
}
.loc-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.loc-body h3 {
  font-size: clamp(28px, 3.2vw, 40px) !important;
  margin: 0 0 18px;
}
.loc-body p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 24px;
  max-width: 52ch;
}
.loc-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  padding: 0 0 4px;
  border-bottom: 1px solid var(--ink);
  transition: color 200ms var(--ease), border-color 200ms var(--ease);
}
.loc-cta:hover { color: var(--accent); border-color: var(--accent); }

/* ── Sauna ───────────────────────────────────────────────── */

.sauna-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  margin-top: clamp(32px, 4vw, 56px);
}
.sauna-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow-md);
}
.sauna-media img { width: 100%; height: 100%; object-fit: cover; }
.sauna-body .lead { margin-bottom: 28px; }
.sauna-facts { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--rule); }
.sauna-facts li {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 20px; padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}
.sauna-facts .k {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
}
.sauna-facts .v {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  text-align: right;
}

/* ── Gallery mosaic ──────────────────────────────────────── */

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 140px;
  gap: 12px;
  margin-top: clamp(32px, 4vw, 56px);
}
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--bg-elev);
  cursor: zoom-in;
}
.gal-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1000ms var(--ease);
}
.gal-item:hover img { transform: scale(1.04); }
.gal-sq   { grid-column: span 2; grid-row: span 2; }
.gal-tall { grid-column: span 2; grid-row: span 3; }
.gal-wide { grid-column: span 3; grid-row: span 2; }

/* ── Prices ──────────────────────────────────────────────── */

.prices-table-wrap {
  margin-top: clamp(32px, 4vw, 56px);
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: clamp(20px, 2.4vw, 32px);
  overflow-x: auto;
}
.prices-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.prices-table th,
.prices-table td {
  padding: 18px 16px;
  text-align: left;
  border-bottom: 1px solid var(--rule-soft);
}
.prices-table thead th {
  border-bottom: 1px solid var(--rule);
  vertical-align: bottom;
}
.th-corner {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
}
.th-season {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 4px;
  color: var(--ink);
}
.th-dates {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
}
.apt-th {
  text-align: left;
  vertical-align: middle;
  background: rgba(43, 38, 31, 0.04);
}
.apt-name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
}
.apt-cap {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 4px;
}
.prices-table td {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
}
.prices-table td .cur {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-faint);
  margin-left: 4px;
}
.prices-foot {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.prices-foot p { margin: 4px 0; font-size: 13px; color: var(--ink-soft); }

.included {
  margin-top: clamp(40px, 5vw, 56px);
  padding: 32px;
  border: 1px solid var(--rule);
  background: var(--bg-elev);
  border-radius: 2px;
}
.included h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 20px;
  font-weight: 600;
}
.included ul {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 32px;
}
.included li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14.5px; color: var(--ink);
}
.included li svg { color: var(--accent); flex-shrink: 0; }

.prices-cta { margin-top: clamp(40px, 5vw, 56px); text-align: center; }

/* ── Contact ─────────────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
  margin-top: clamp(32px, 4vw, 56px);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex; flex-direction: column; gap: 6px;
  padding: 14px 16px;
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  border-radius: 2px;
  transition: border-color 200ms var(--ease);
}
.field:focus-within { border-color: var(--accent); }
.field span {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
}
.field input, .field select, .field textarea {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  border: 0; outline: 0;
  background: transparent;
  padding: 0; width: 100%;
  resize: vertical;
}
.field-full { grid-column: 1 / -1; }

.contact-thanks {
  padding: 48px 32px;
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  border-radius: 2px;
  text-align: center;
}
.contact-thanks h3 { margin: 0 0 12px; font-size: 36px; }
.contact-thanks p { color: var(--ink-soft); margin: 0; }

.contact-details ul {
  list-style: none; margin: 0; padding: 0;
  border-top: 1px solid var(--rule);
}
.contact-details li {
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 20px;
  align-items: start;
}
.contact-details .dk {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
}
.contact-details .dv {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  display: flex; flex-direction: column;
  gap: 4px;
}

/* ── Anfahrt / Directions ─────────────────────────────── */

.drive-map-wrap {
  position: relative;
  margin-top: clamp(40px, 5vw, 64px);
  border: 1px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
  background: var(--bg-elev);
  box-shadow: var(--shadow-lg);
  line-height: 0;
  font-size: 0;
}
.wrap.drive-map-wrap {
  padding-inline: 0;
}
.drive-map-iframe {
  display: block;
  width: 100%;
  height: clamp(360px, 48vw, 520px);
  border: 0;
  filter: saturate(0.92) contrast(1.02);
  transition: filter 300ms var(--ease);
}
.drive-map-iframe:hover { filter: none; }

.address-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  border-radius: 2px;
}
.address-card .drive-pin {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--rule);
  color: var(--accent);
}
.address-card .address-lines p {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.4;
  color: var(--ink);
}

.address-overlay {
  position: absolute;
  left: clamp(20px, 3vw, 40px);
  bottom: clamp(20px, 3vw, 40px);
  background: color-mix(in srgb, var(--bg-elev) 96%, transparent);
  backdrop-filter: saturate(150%) blur(8px);
  -webkit-backdrop-filter: saturate(150%) blur(8px);
  box-shadow: var(--shadow-lg);
  max-width: 360px;
  z-index: 2;
}

.drive-below {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  margin-top: clamp(36px, 4.5vw, 64px);
}

.drive-textcol {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.drive-heading {
  font-size: clamp(24px, 2.4vw, 32px);
  margin: 0;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.2;
}
.drive-p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 56ch;
}

.drive-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.drive-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 20px;
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  border-radius: 2px;
  transition: border-color 200ms var(--ease), transform 200ms var(--ease);
}
.drive-card:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}
.drive-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 50%;
  color: var(--accent);
}
.drive-card-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.drive-card h4 {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-faint);
  margin: 2px 0 0;
}
.drive-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.drive-value {
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  align-self: flex-start;
  transition: color 200ms var(--ease);
}
.drive-value:hover { color: var(--accent); }

/* ── Footer ──────────────────────────────────────────────── */

.foot {
  background: var(--ink);
  color: #d6cfc1;
  padding-block: clamp(56px, 7vw, 88px) clamp(32px, 4vw, 48px);
}
.foot a { color: #fbf8f2; }
.foot a:hover { color: var(--accent-2); }
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
}
.foot h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #8a8276;
  margin: 0 0 16px;
  font-weight: 600;
}
.foot ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot li { font-size: 14px; }
.foot-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--accent-2);
  text-decoration: none;
  margin-bottom: 20px;
}
.foot-brand-mark svg { display: block; }
.foot-brand-word {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 36px);
  color: var(--bg-elev);
  letter-spacing: 0.005em;
  line-height: 1;
}
.foot-brand p {
  font-size: 13.5px;
  line-height: 1.65;
  max-width: 38ch;
  color: #b8b0a2;
}
.foot-contact p {
  font-size: 13.5px;
  margin: 0 0 6px;
  color: #d6cfc1;
}
.foot-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  padding: 20px 0 4px;
  margin-top: 24px;
}
.foot-partners img {
  height: 48px;
  width: auto;
  opacity: 0.6;
  filter: brightness(1.6) grayscale(1);
  transition: opacity 200ms var(--ease), filter 200ms var(--ease);
}
.foot-partners img:hover {
  opacity: 1;
  filter: brightness(1.2) grayscale(0);
}
.foot-bot {
  margin-top: 16px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a8276;
}
.foot-bot a { color: inherit; }
.foot-bot a:hover { color: #fbf8f2; }

/* ── Reveal-on-scroll ────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
.reveal.on { opacity: 1; transform: none; }
.reveal[data-reveal="lift"] { transform: translateY(28px); }
.reveal[data-reveal="lift"].on { transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-slide img { animation: none; }
  .hero-content > div > * { opacity: 1; transform: none; animation: none; }
  .reveal .ornament svg path { stroke-dashoffset: 0; }
  .reveal .ornament svg circle { transform: scale(1); }
  .reveal .ornament::before,
  .reveal .ornament::after { transform: scaleX(1); }
  html { scroll-behavior: auto; }
}

/* ── Mobile menu ─────────────────────────────────────────── */

.mobile-menu {
  display: none;
  position: fixed;
  inset: 72px 0 auto 0;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  padding: 24px var(--gutter);
  z-index: 55;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms var(--ease), transform 200ms var(--ease);
}
.mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.mobile-menu a {
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 960px) {
  .nav { grid-template-columns: 1fr auto auto; }
  .nav-links { display: none; }
  .menu-btn { display: inline-flex; }
  .mobile-menu { display: block; }
  .booking { grid-template-columns: 1fr 1fr; }
  .booking-field { border-right: 0; border-bottom: 1px solid var(--rule-soft); }
  .booking-field:nth-child(odd) { border-right: 1px solid var(--rule-soft); }
  .booking-submit { grid-column: 1 / -1; padding: 18px; }
  .tiles { grid-template-columns: 1fr; }
  .apt, .apt.flip { grid-template-columns: 1fr; gap: 32px; }
  .apt.flip .apt-media { order: 0; }
  .reviews { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .loc-card, .sauna-grid, .contact-grid { grid-template-columns: 1fr; }
  .loc-card.flip .loc-media { order: 0; }
  .gallery-mosaic { grid-template-columns: repeat(4, 1fr); }
  .included ul { grid-template-columns: 1fr 1fr; }
  .drive-below { grid-template-columns: 1fr; }
  .drive-map-iframe { height: clamp(320px, 60vw, 420px); }
  .address-overlay { left: 16px; right: 16px; bottom: 16px; max-width: none; }
}

@media (max-width: 560px) {
  .hero-title { font-size: 18vw; }
  .hero { min-height: 540px; }
  .booking-wrap { margin-top: -32px; }
  .foot-grid { grid-template-columns: 1fr; }
  .partners img { height: 36px; }
  .form-grid { grid-template-columns: 1fr; }
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 120px; }
  .gal-sq, .gal-tall, .gal-wide { grid-column: span 1; grid-row: span 2; }
  .contact-details li { grid-template-columns: 1fr; gap: 4px; }
  .included ul { grid-template-columns: 1fr; }
  .prices-table { min-width: 580px; }
}
