:root {
  --bg: #faf8f5;
  --bg-muted: #f0ebe4;
  --bg-dark: #1c1a18;
  --text: #2a2622;
  --text-soft: #5c554c;
  --accent: #8b6f4e;
  --accent-light: #c4a882;
  --line: rgba(42, 38, 34, 0.1);
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(28, 26, 24, 0.08);
  --shadow-soft: 0 8px 30px rgba(28, 26, 24, 0.06);
  --radius: 2px;
  --radius-lg: 4px;
  --max-width: 1200px;
  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans: "Source Sans 3", ui-sans-serif, system-ui, sans-serif;
  --header-height: 4.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

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

code {
  font-size: 0.88em;
  color: var(--accent);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-height);
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  transition: background 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(250, 248, 245, 0.96);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.site-header:not(.is-scrolled) {
  color: var(--white);
}

.site-header:not(.is-scrolled) .main-nav a {
  color: rgba(255, 255, 255, 0.88);
}

.site-header:not(.is-scrolled) .main-nav a:hover,
.site-header:not(.is-scrolled) .main-nav a:focus-visible {
  color: var(--white);
}

.site-header:not(.is-scrolled) .nav-cta {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.site-header:not(.is-scrolled) .nav-toggle {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.logo {
  text-decoration: none;
}

.logo-mark {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.main-nav a {
  padding: 0.5rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-soft);
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.55rem 1.1rem !important;
  border: 1px solid var(--line);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.55rem 0.9rem;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

/* Header controls: language switcher + menu toggle */
.header-controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.lang-switcher {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: transparent;
}

.lang-btn {
  border: 0;
  border-left: 1px solid var(--line);
  padding: 0.4rem 0.6rem;
  background: transparent;
  color: var(--text-soft);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-btn:first-child {
  border-left: 0;
}

.lang-btn:hover,
.lang-btn:focus-visible {
  color: var(--text);
}

.lang-btn.is-active {
  background: var(--accent);
  color: var(--white);
}

/* Über dem Hero (Header noch transparent): helle Variante */
.site-header:not(.is-scrolled) .lang-switcher {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(28, 26, 24, 0.3);
  backdrop-filter: blur(4px);
}

.site-header:not(.is-scrolled) .lang-btn {
  border-left-color: rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.85);
}

.site-header:not(.is-scrolled) .lang-btn:hover,
.site-header:not(.is-scrolled) .lang-btn:focus-visible {
  color: var(--white);
}

.site-header:not(.is-scrolled) .lang-btn.is-active {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

/* Honeypot-Feld (Spamschutz): visuell und für Screenreader versteckt */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Ladezustand der Absende-Buttons */
.button.is-loading {
  opacity: 0.7;
  cursor: progress;
}

@media (max-width: 768px) {
  .header-controls {
    gap: 0.45rem;
  }

  .logo-mark {
    font-size: 1.05rem;
    letter-spacing: 0.04em;
  }

  .lang-btn {
    padding: 0.35rem 0.45rem;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 26, 24, 0.15) 0%, rgba(28, 26, 24, 0.55) 55%, rgba(28, 26, 24, 0.82) 100%),
    linear-gradient(135deg, #3d4a52 0%, #6b7d86 35%, #9aaeb8 70%, #c8d4da 100%);
}

.hero-media--photo {
  background: var(--bg-dark);
}

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

.hero-media-expand {
  position: absolute;
  inset: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.hero-media-expand:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: -4px;
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 30% 20%, rgba(196, 168, 130, 0.12), transparent 50%);
}

.hero-media--photo .hero-media-overlay {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(196, 168, 130, 0.12), transparent 50%),
    linear-gradient(180deg, rgba(28, 26, 24, 0.15) 0%, rgba(28, 26, 24, 0.55) 55%, rgba(28, 26, 24, 0.82) 100%);
}

.hero-media-hint {
  position: absolute;
  bottom: 1.5rem;
  right: clamp(1rem, 4vw, 3rem);
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.65;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max-width), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: calc(var(--header-height) + 4rem) 0 5rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-light);
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1.05;
  font-weight: 400;
}

.hero-lead {
  margin: 0.5rem 0 1.25rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 400;
  opacity: 0.95;
}

.hero-text {
  max-width: 540px;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.75;
  opacity: 0.88;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.75rem;
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.button.primary:hover,
.button.primary:focus-visible {
  background: #6f573c;
}

.button.secondary {
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--line);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.button.ghost {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

/* Sections */
.section {
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 4vw, 3rem);
}

.section-muted {
  background: var(--bg-muted);
}

.section-has-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.section-has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--section-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.4s ease, transform 8s ease;
  pointer-events: none;
}

.section-has-bg.is-bg-loaded::before {
  opacity: 0.08;
  transform: scale(1);
}

.section-has-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(250, 248, 245, 0.94) 0%,
    rgba(250, 248, 245, 0.88) 100%
  );
  pointer-events: none;
}

.section-has-bg.section-muted::after {
  background: linear-gradient(
    180deg,
    rgba(240, 235, 228, 0.95) 0%,
    rgba(240, 235, 228, 0.9) 100%
  );
}

.section-has-bg > * {
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) and (prefers-reduced-motion: no-preference) {
  .section-has-bg::before {
    background-attachment: fixed;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-has-bg::before {
    transition: opacity 0.3s ease;
    transform: none;
  }
}

.section-narrow {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-intro h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.lead {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  line-height: 1.5;
  color: var(--text-soft);
}

.section-heading {
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-heading.centered {
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 2.85rem);
}

.section-heading p {
  margin: 0;
  color: var(--text-soft);
}

/* Quick facts */
.quick-facts {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact-card {
  padding: 2rem 1rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.fact-card:last-child {
  border-right: 0;
}

.fact-value {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
}

.fact-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* Highlights */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.highlight-card {
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
}

.highlight-icon {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: 0.2em;
}

.highlight-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
}

.highlight-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-soft);
}

/* Amenities */
.amenity-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.amenity-block h3 {
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  font-size: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.amenity-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.amenity-block li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.1rem;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.amenity-block li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent-light);
}

[data-todo] {
  font-style: italic;
}

/* Gallery */
.section-gallery {
  padding-bottom: clamp(3rem, 8vw, 5.5rem);
}

.gallery-shell {
  max-width: var(--max-width);
  margin: 0 auto;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 0.65rem;
  max-width: var(--max-width);
  margin: 0 auto clamp(1.75rem, 4vw, 2.5rem);
  padding: 0 1rem;
}

.gallery-filter {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  background: transparent;
  border: 1px solid var(--line);
  padding: 0.5rem 0.95rem;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.gallery-filter:hover,
.gallery-filter:focus-visible {
  color: var(--text);
  border-color: var(--accent);
}

.gallery-filter.is-active {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

.gallery-filter-count {
  font-weight: 400;
  opacity: 0.85;
}

.gallery-category {
  margin-bottom: clamp(2.5rem, 6vw, 3.75rem);
}

.gallery-category:last-child {
  margin-bottom: 0;
}

.gallery-category[hidden] {
  display: none;
}

.gallery-category-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 500;
  text-align: center;
  margin: 0 0 1.25rem;
  color: var(--text);
}

.gallery-subsection-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 500;
  text-align: center;
  margin: 0 0 0.85rem;
  color: var(--text-soft);
}

.gallery-subsection-heading:not(:first-of-type) {
  margin-top: clamp(1.75rem, 4vw, 2.25rem);
}

.gallery-empty {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
  padding: 2rem 1rem;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.gallery-empty code {
  font-size: 0.85em;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  gap: 0.5rem;
}

@media (min-width: 1024px) {
  .gallery-mosaic {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-auto-rows: 190px;
  }
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  color: var(--white);
  background: var(--bg-dark);
}

.gallery-tile-trigger {
  position: absolute;
  inset: 0;
  z-index: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-tile-trigger:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: -3px;
}

.gallery-tile-trigger:hover img,
.gallery-tile-trigger:focus-visible img {
  transform: scale(1.03);
}

.gallery-tile img {
  transition: transform 0.45s ease;
}

.gallery-tile--wide {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-tile--tall {
  grid-row: span 2;
}

.placeholder-tile[data-placeholder="hero"] {
  background:
    linear-gradient(180deg, transparent 30%, rgba(28, 26, 24, 0.75)),
    linear-gradient(135deg, #2c3539, #5a6d75 50%, #8fa5ad);
}

.placeholder-tile[data-placeholder="living"] {
  background:
    linear-gradient(180deg, transparent 30%, rgba(28, 26, 24, 0.75)),
    linear-gradient(135deg, #4a4038, #8b7355 55%, #c9b89a);
}

.placeholder-tile[data-placeholder="bedroom"] {
  background:
    linear-gradient(180deg, transparent 30%, rgba(28, 26, 24, 0.75)),
    linear-gradient(135deg, #3a3632, #6b6358 55%, #a39888);
}

.placeholder-tile[data-placeholder="kitchen"] {
  background:
    linear-gradient(180deg, transparent 30%, rgba(28, 26, 24, 0.75)),
    linear-gradient(135deg, #3d4540, #6d7a70 55%, #a8b5a8);
}

.placeholder-tile[data-placeholder="nature"] {
  background:
    linear-gradient(180deg, transparent 30%, rgba(28, 26, 24, 0.75)),
    linear-gradient(135deg, #1e2d38, #3d5a6e 50%, #6b8fa8);
}

.placeholder-tile[data-placeholder="aurora"] {
  background:
    linear-gradient(180deg, transparent 30%, rgba(28, 26, 24, 0.75)),
    linear-gradient(135deg, #0f1a22, #1e3d4a 40%, #3d7a6e 70%, #6bc4a8);
}

.gallery-tile img,
.gallery-tile video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floor plans */
.section-plans {
  padding-bottom: clamp(3rem, 8vw, 5.5rem);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: var(--max-width);
  margin: 0 auto;
}

.plan-card {
  margin: 0;
  text-align: center;
}

.plan-card-trigger {
  display: block;
  width: 100%;
  padding: clamp(1rem, 2.5vw, 1.75rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  cursor: zoom-in;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.plan-card-trigger:hover,
.plan-card-trigger:focus-visible {
  border-color: var(--accent-light);
  box-shadow: var(--shadow-soft);
}

.plan-card-trigger:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 3px;
}

.plan-card-trigger img {
  width: 100%;
  height: auto;
  display: block;
}

.plan-card figcaption {
  margin: 1.15rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 500;
  color: var(--text);
}

.plans-supplement {
  margin: 2.5rem auto 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-soft);
  text-align: center;
}

.plans-supplement a,
.plans-supplement .plan-link {
  color: var(--accent);
}

.plans-note {
  margin: 1.5rem auto 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-soft);
}

.plans-note a,
.plans-note .plan-link {
  color: var(--accent);
}

.plan-link {
  display: inline;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  cursor: pointer;
}

.plan-link:hover,
.plan-link:focus-visible {
  color: #6f573c;
}

.plan-link--pdf {
  text-decoration: underline;
}

.upload-panel {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.upload-panel label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto 3rem;
}

.price-card {
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
}

.price-card--featured {
  background: var(--bg-dark);
  color: var(--white);
  border-color: var(--bg-dark);
}

.price-card--featured p {
  color: rgba(255, 255, 255, 0.75);
}

.price-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.price {
  margin: 0.5rem 0 1rem;
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 500;
}

.price-note {
  margin: -0.35rem 0 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.price-card--featured .price-note {
  color: rgba(255, 255, 255, 0.72);
}

.policy-notes {
  text-align: left;
}

.policy-title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
}

.policy-notes ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.policy-notes li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 0.95rem;
}

.policy-notes strong {
  color: var(--text);
  font-weight: 600;
}

/* Reviews */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.review-grid blockquote {
  margin: 0;
  padding: 2rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.review-grid blockquote p:last-of-type {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--text);
}

cite {
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* Location */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
}

.split h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
}

.split > div > p {
  color: var(--text-soft);
}

.distance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.distance-grid article {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.distance-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.1;
}

.distance-map-link {
  color: inherit;
  text-decoration: none;
}

.distance-map-link:hover strong,
.distance-map-link:focus-visible strong {
  color: var(--accent);
}

.distance-grid span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.location-address {
  margin: 1.25rem 0;
  font-size: 0.95rem;
  color: var(--text);
}

.map-embed-wrap {
  min-height: 380px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-muted);
}

.map-embed {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

/* Anreise / Mietwagen */
.section-anreise {
  background: var(--bg);
}

.arrival-recommend {
  margin-bottom: 2.5rem;
  padding: 2rem 2.25rem;
  text-align: center;
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--bg-dark);
}

.arrival-recommend-label {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
}

.arrival-recommend p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  line-height: 1.55;
}

.arrival-recommend strong {
  color: var(--white);
  font-weight: 500;
}

.arrival-intro {
  text-align: left;
  margin-bottom: 3rem;
}

.arrival-intro p {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

.arrival-intro p:last-child {
  margin-bottom: 0;
}

.provider-strip {
  max-width: var(--max-width);
  margin: 0 auto 3rem;
  padding: 1.75rem 2rem;
  text-align: center;
  background: var(--bg-muted);
  border: 1px solid var(--line);
}

.provider-strip-title {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.provider-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.provider-list li {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--text);
}

.car-rental-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto 3rem;
}

.car-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
}

.car-card--featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-soft);
}

.car-card-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-muted);
}

.car-card-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.car-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.75rem 1.5rem 1.5rem;
}

.car-category {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.car-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  line-height: 1.25;
}

.car-card-body > p {
  margin: 0 0 1.25rem;
  flex: 1;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.car-prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 1.25rem;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
}

.car-prices dt {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.car-prices dd {
  margin: 0.2rem 0 0;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
}

.car-card-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
  transition: color 0.2s ease;
}

.car-card-link:hover,
.car-card-link:focus-visible {
  color: #6f573c;
}

.arrival-tips {
  text-align: left;
  margin-bottom: 2rem;
}

.arrival-tips h3 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
}

.arrival-tips ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.arrival-tips li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--text-soft);
}

.arrival-tips li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent-light);
}

.arrival-tips strong {
  color: var(--text);
  font-weight: 600;
}

.arrival-disclaimer {
  margin: 0 auto;
  font-size: 0.85rem;
  line-height: 1.65;
  text-align: center;
  color: var(--text-soft);
}

/* Forms */
.panel {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--white);
  border: 1px solid var(--line);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
}

textarea {
  resize: vertical;
}

.form-hint,
.form-status {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.contact-split .contact-form h3 {
  margin: 0 0 1.25rem;
  font-size: 1.35rem;
}

.contact-form label + label {
  margin-top: 1rem;
}

.contact-list {
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  padding: 0.5rem 0;
  color: var(--text-soft);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.contact-form .button,
.booking-form .button {
  margin-top: 1.25rem;
  width: 100%;
}

/* Footer */
.site-footer {
  padding: 3rem clamp(1.25rem, 4vw, 3rem) 2rem;
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.75);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  margin: 0 0 0.35rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--white);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
}

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

.footer-copy {
  max-width: var(--max-width);
  margin: 0 auto;
  font-size: 0.85rem;
  text-align: center;
  opacity: 0.5;
}

/* Upload preview cards in gallery */
.gallery-tile.media-upload {
  background: var(--bg-dark);
}

.gallery-tile-caption {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 2.5rem 1.25rem 1.25rem;
  background: linear-gradient(180deg, transparent 0%, rgba(28, 26, 24, 0.72) 42%, rgb(28, 26, 24) 72%);
  pointer-events: none;
}

.tile-badge {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
}

.gallery-tile.media-upload h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.95rem;
}

/* Lightbox */
body.lightbox-open {
  overflow: hidden;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 16, 14, 0.92);
  backdrop-filter: blur(6px);
  cursor: zoom-out;
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(96vw, 1200px);
  max-height: 92vh;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 3rem);
}

.lightbox-figure {
  margin: 0;
  max-width: 100%;
  max-height: calc(92vh - 5rem);
  display: grid;
  gap: 0.85rem;
  justify-items: center;
}

.lightbox-image {
  display: block;
  max-width: 100%;
  max-height: calc(92vh - 7rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.lightbox-caption {
  margin: 0;
  max-width: 56ch;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  line-height: 1.45;
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
}

.lightbox-caption[hidden] {
  display: none;
}

.lightbox-counter {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.lightbox-counter[hidden] {
  display: none;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(28, 26, 24, 0.55);
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
}

.lightbox-close {
  top: 0.75rem;
  right: 0.75rem;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.65rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 3.25rem;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav[hidden] {
  display: none;
}

.lightbox-prev {
  left: 0.5rem;
}

.lightbox-next {
  right: 0.5rem;
}

@media (max-width: 768px) {
  .lightbox-panel {
    width: 100%;
    padding-top: 3.5rem;
  }

  .lightbox-nav {
    width: 2.35rem;
    height: 2.75rem;
    font-size: 1.65rem;
  }

  .lightbox-prev {
    left: 0.25rem;
  }

  .lightbox-next {
    right: 0.25rem;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .quick-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fact-card:nth-child(3) {
    border-right: 0;
  }

  .fact-card:nth-child(4),
  .fact-card:nth-child(5),
  .fact-card:nth-child(6) {
    border-top: 1px solid var(--line);
  }

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

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

  .gallery-tile--wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .site-header:not(.is-scrolled) .main-nav a {
    color: var(--text-soft);
  }

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

  .fact-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact-card:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .highlights-grid,
  .pricing-grid,
  .review-grid,
  .car-rental-grid,
  .amenity-columns {
    grid-template-columns: 1fr;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

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

  .gallery-tile--wide,
  .gallery-tile--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

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

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

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .fact-card,
  .fact-card:nth-child(odd) {
    border-right: 0;
  }
}
