/* =====================================================
   Rieserhof.at — v3 (light & friendly · new brand)
   Palette derived from Rieserhof_Logo_ausarbeitung.pdf
   ===================================================== */

:root {
  /* Brand */
  --wine:           #5A1E21;
  --wine-hover:     #6F2628;
  --wine-light:     #F4E9E5;
  --moss:           #3F4A39;
  --moss-soft:      #5C6B54;
  --night:          #2C2E33;
  --beige:          #DED4C3;
  --beige-soft:     #ECE4D5;
  --beige-light:    #F6F1E8;

  /* Neutrals */
  --paper:          #FBF8F2;
  --white:          #FFFFFF;
  --ink:            #1A1C20;
  --ink-mid:        #4F5048;
  --ink-light:      #898875;
  --border:         #E1D9C9;
  --border-soft:    #ECE5D6;

  /* Type */
  --fs-display: clamp(3rem, 8vw, 6rem);
  --fs-h1:      clamp(2rem, 4vw, 3rem);
  --fs-h2:      clamp(1.5rem, 3vw, 2.2rem);
  --fs-h3:      clamp(1.15rem, 1.6vw, 1.4rem);
  --fs-body:    1rem;
  --fs-small:   0.875rem;
  --fs-eyebrow: 0.72rem;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  color: var(--moss);
  letter-spacing: -0.005em;
}
h1 { font-size: var(--fs-display); }
h2 { font-size: var(--fs-h1); }
h3 { font-size: var(--fs-h3); }
p  { margin: 0; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }

section { padding: 64px 0; }
@media (min-width: 1024px) { section { padding: 96px 0; } }

.bg-paper       { background: var(--paper); }
.bg-white       { background: var(--white); }
.bg-beige-soft  { background: var(--beige-soft); }
.bg-beige-light { background: var(--beige-light); }
.bg-moss        { background: var(--moss); color: #f5f1e6; }
.bg-moss h1, .bg-moss h2, .bg-moss h3, .bg-moss h4 { color: #f5f1e6; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 0.9rem;
}
.bg-moss .eyebrow { color: var(--beige); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 180ms ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--wine);
  color: #fff;
  border-color: var(--wine);
}
.btn--primary:hover {
  background: var(--wine-hover);
  border-color: var(--wine-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(90,30,33,0.22);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn--ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}
.btn--outline {
  background: transparent;
  color: var(--wine);
  border-color: var(--wine);
}
.btn--outline:hover {
  background: var(--wine);
  color: #fff;
}
.btn--full { width: 100%; }
p.customForm {
  margin: 0;
  cursor: pointer;
}
p.customForm:hover {
  background: var(--wine-hover);
  border-color: var(--wine-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(90,30,33,0.22);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
  transition-delay: calc(var(--i, 0) * 70ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   TOP BAR · burger top-left, instagram top-right
   ============================================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 24px 18px;
  pointer-events: none;
}
.topbar__logo {
  display: block;
  pointer-events: auto;
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  transform-origin: top center;
  transition: transform 300ms ease;
  padding: 10px 18px 8px;
  border-radius: 18px;
  background: rgba(248, 243, 232, 0.55);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08), inset 0 0 0 1px rgba(255,255,255,0.4);
}
.topbar__logo:hover {
  /* kein Vergrößern beim Hover */
  transform: translateX(-50%);
}
.topbar__logo img {
  display: block;
  width: clamp(140px, 18vw, 200px);
  height: auto;
  aspect-ratio: 1581 / 1096;
  object-fit: contain;
}
@media (min-width: 768px) { .topbar { padding: 36px 36px 22px; } }
.topbar > * { pointer-events: auto; }

/* Topbar: always visible, fixed at top */

/* Hero scroll-down button */
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(222,213,194,0.8); }
  70%  { box-shadow: 0 0 0 22px rgba(222,213,194,0); }
  100% { box-shadow: 0 0 0 0 rgba(222,213,194,0); }
}
.hero-scroll-btn {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: rgba(222,213,194,0.75);
  color: #5A1F20;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25));
  animation: pulse-ring 2s ease-out infinite;
  transition: transform 240ms ease, background 240ms ease;
  z-index: 10;
}
.hero-scroll-btn svg { width: 28px; height: 28px; }
.hero-scroll-btn:hover {
  transform: translateX(-50%) scale(1.1);
  background: rgba(222,213,194,1);
}

/* Topbar right actions */
.topbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}
.topbar__action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: rgba(248, 243, 232, 0.55);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  border-radius: 50%;
  color: #5A1F20;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08), inset 0 0 0 1px rgba(255,255,255,0.4);
  transition: background 240ms ease, transform 240ms ease, box-shadow 240ms ease;
  text-decoration: none;
}
.topbar__action-btn svg {
  width: 26px;
  height: 26px;
}
.topbar__action-btn:hover {
  background: rgba(248, 243, 232, 0.82);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12), inset 0 0 0 1px rgba(255,255,255,0.6);
  transform: translateY(-1px);
}

/* Burger — wine-on-cream pill with animated lines */
.menu-btn {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  cursor: pointer;
  transition: transform 240ms ease;
}
.menu-btn:hover {
  transform: translateY(-1px);
}

.menu-btn__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: rgba(248, 243, 232, 0.55);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  border-radius: 999px;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08), inset 0 0 0 1px rgba(255,255,255,0.4);
  transition: background 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}
.menu-btn:hover .menu-btn__icon {
  background: rgba(248, 243, 232, 0.82);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12), inset 0 0 0 1px rgba(255,255,255,0.6);
  transform: rotate(-8deg);
}

.menu-btn__icon span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 32px;
  height: 3px;
  background: #5A1F20;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 320ms cubic-bezier(.7,.1,.3,1.2), background 240ms ease, width 240ms ease;
}
.menu-btn:hover .menu-btn__icon span { background: #5A1F20; }

.menu-btn__icon span:nth-child(1) { transform: translate(-50%, calc(-50% - 10px)); }
.menu-btn__icon span:nth-child(2) { transform: translate(-50%, -50%); width: 20px; }
.menu-btn__icon span:nth-child(3) { transform: translate(-50%, calc(-50% + 10px)); }

.menu-btn:hover .menu-btn__icon span:nth-child(1) { transform: translate(-50%, calc(-50% - 10px)) translateX(4px); width: 28px; }
.menu-btn:hover .menu-btn__icon span:nth-child(2) { width: 32px; }
.menu-btn:hover .menu-btn__icon span:nth-child(3) { transform: translate(-50%, calc(-50% + 10px)) translateX(-4px); width: 28px; }

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(28,34,16,0.10);
  color: var(--moss);
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}
.social-link:hover {
  background: var(--wine);
  color: #fff;
  transform: translateY(-1px);
}
.social-link svg { width: 20px; height: 20px; }

/* ============================================================
   FULL-SCREEN MENU OVERLAY (Scharrerhof-style)
   ============================================================ */
.menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(28,34,16,0.92);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 380ms ease, visibility 380ms ease;
}
.menu--open {
  opacity: 1;
  visibility: visible;
}
.menu .menu__panel {
  transform: translateY(22px);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}
.menu--open .menu__panel {
  transform: translateY(0);
}

.menu__close {
  position: fixed;
  top: 18px;
  left: 24px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  color: var(--wine);
  z-index: 210;
}
@media (min-width: 768px) { .menu__close { top: 22px; left: 36px; } }
.menu__close:hover { background: var(--beige-light); }
.menu__close svg { width: 18px; height: 18px; }

.menu__panel {
  margin: 90px auto 60px;
  max-width: 920px;
  background: var(--white);
  border-radius: 6px;
  padding: 24px 48px 64px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  position: relative;
}
@media (max-width: 767px) {
  .menu__panel { margin: 78px 16px 32px; padding: 16px 28px 40px; }
}


.menu__logo {
  display: block;
  width: 260px;
  height: auto;
  aspect-ratio: 1581 / 1096;
  object-fit: contain;
  margin: 0 auto -0.6rem;
}

.menu__title {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--wine);
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.menu__subtitle {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 2.5rem;
}

.menu__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 48px;
}
@media (min-width: 600px) { .menu__grid { grid-template-columns: 1fr 1fr; } }

.menu__link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--moss);
  position: relative;
  transition: color 180ms ease, gap 180ms ease, padding 180ms ease;
}
.menu__link::before {
  content: "→";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  flex-shrink: 0;
  color: var(--wine);
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 220ms ease;
}
.menu__link:hover {
  color: var(--wine);
  gap: 1rem;
}
.menu__link:hover::before {
  transform: translateX(4px);
}

.menu__num {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--wine);
  opacity: 0.6;
  min-width: 1.8rem;
}


.menu__footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--ink-mid);
}
.menu__footer a { color: var(--moss); transition: color 180ms ease; }
.menu__footer a:hover { color: var(--wine); }
.menu__socials { display: flex; gap: 0.75rem; }
.menu__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--beige-light);
  border-radius: 999px;
  color: var(--wine);
}
.menu__socials a:hover { background: var(--wine); color: #fff; }
.menu__socials svg { width: 16px; height: 16px; }

body.no-scroll { overflow: hidden; }

/* ============================================================
   HERO — compact, logo-forward, light & friendly
   ============================================================ */
.hero-v3 {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  background: #1a1a1a;
  isolation: isolate;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slider__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 900ms ease;
}
.hero-slider__slide.is-active {
  opacity: 1;
}
.hero-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 200ms ease, transform 200ms ease;
}
.hero-slider__nav:hover {
  background: rgba(0, 0, 0, 0.55);
}
.hero-slider__nav--prev { left: 20px; }
.hero-slider__nav--next { right: 20px; }
.hero-slider__nav svg { width: 22px; height: 22px; }
@media (min-width: 768px) {
  .hero-slider__nav { width: 56px; height: 56px; }
  .hero-slider__nav--prev { left: 32px; }
  .hero-slider__nav--next { right: 32px; }
}
.hero-v3__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 24px 40px;
  pointer-events: none;
}
.hero-v3__logo {
  width: clamp(220px, 26vw, 340px);
  height: clamp(220px, 26vw, 340px);
  object-fit: contain;
  background: rgba(0,0,0,0.52);
  border-radius: 50%;
  padding: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-v3__welcome {
  margin-top: 1.6rem;
  font-family: 'Parisienne', cursive;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  line-height: 1.05;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55), 0 1px 3px rgba(0,0,0,0.4);
}
.hero-v3__claim {
  margin-top: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6), 0 1px 2px rgba(0,0,0,0.4);
}
.hero-v3__pills {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.hero-v3__pill {
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border);
  color: var(--moss);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  backdrop-filter: blur(4px);
}
.hero-v3__cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Bottom strip with quick info */
.hero-v3__strip {
  background: rgba(255,255,255,0.9);
  border-top: 1px solid var(--border-soft);
  backdrop-filter: blur(8px);
  padding: 18px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--ink-mid);
}
@media (min-width: 768px) {
  .hero-v3__strip {
    grid-template-columns: repeat(4, 1fr);
    text-align: left;
    padding: 18px 40px;
  }
}
.hero-v3__strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
@media (min-width: 768px) { .hero-v3__strip-item { justify-content: flex-start; } }
.hero-v3__strip-item svg {
  width: 18px;
  height: 18px;
  color: var(--wine);
  flex-shrink: 0;
}
.hero-v3__strip-item strong {
  color: var(--moss);
  font-weight: 600;
  margin-right: 4px;
}

/* ============================================================
   SECTION TILES (the 8 rubrics, compact)
   ============================================================ */
.tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 600px)  { .tiles { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .tiles { grid-template-columns: repeat(4, 1fr); } }

.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
  isolation: isolate;
  background: var(--moss);
  color: #fff;
  transition: transform 280ms ease, box-shadow 280ms ease;
}
.tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(28,34,16,0.18);
}
.tile__img {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
  transition: transform 600ms ease;
}
.tile:hover .tile__img { transform: scale(1.05); }
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(28,34,16,0.85) 0%, rgba(28,34,16,0.25) 55%, transparent 100%);
}
.tile__body {
  padding: 1.2rem 1.25rem 1.4rem;
}
.tile__num {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.4rem;
}
.tile__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
}
.tile__arrow {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: var(--beige);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 220ms ease;
}
.tile:hover .tile__arrow { gap: 0.7rem; }

/* ============================================================
   STORY (compact welcome)
   ============================================================ */
.story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) { .story { grid-template-columns: 1fr 1fr; gap: 72px; } }
.story__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
}
.story__media img { width: 100%; height: 100%; object-fit: cover; }
.story__media::after {
  content: "";
  position: absolute;
  inset: auto -16px -16px auto;
  width: 60%;
  height: 60%;
  border: 1px solid var(--wine);
  border-radius: 6px;
  z-index: -1;
}
/* Familie-Sektion: quadratisches Bild, etwas höher als der Text */
#familie .story__media {
  aspect-ratio: 1029 / 1062;
  max-height: 520px;
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
}
.story h2 { text-wrap: balance; margin-bottom: 1rem; }
.story p {
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: 56ch;
}
.story__signature {
  display: block;
  margin-top: 1.5rem;
  font-family: 'Parisienne', cursive;
  font-size: 1.6rem;
  color: var(--wine);
}
.story__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.5rem;
}
.story__pill {
  background: var(--beige-light);
  border: 1px solid var(--border);
  color: var(--moss);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}

/* ============================================================
   APARTMENTS / SUB-PAGES — re-themed
   ============================================================ */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head h2 { text-wrap: balance; }

.apt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 1024px) { .apt-grid { grid-template-columns: repeat(3, 1fr); } }

.apt-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 280ms ease, box-shadow 280ms ease;
  display: flex;
  flex-direction: column;
}
.apt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(28,34,16,0.10);
}
.apt-card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  display: block;
}
.apt-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.apt-card:hover .apt-card__media img { transform: scale(1.05); }
.apt-card__pill {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--white);
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}
.apt-card__body { padding: 1.5rem 1.5rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.apt-card__body h3 { color: var(--moss); font-size: 1.45rem; font-family: 'Cormorant Garamond', serif; font-weight: 500; }
.apt-card__desc {
  margin-top: 0.5rem;
  color: var(--ink-mid);
  font-size: 0.94rem;
  line-height: 1.7;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.apt-card__price {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--wine);
  font-size: 1.05rem;
}
.apt-card__price small { font-weight: 500; color: var(--ink-light); font-size: 0.78rem; margin-left: 4px; }
.apt-card .btn { margin-top: 1.25rem; align-self: stretch; }

/* ============================================================
   PRICES (re-themed table)
   ============================================================ */
.price-table-wrap {
  overflow-x: auto;
  border-radius: 6px;
  border: 1px solid var(--border);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Inter', sans-serif;
  background: var(--white);
}
.price-table th, .price-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.95rem;
}
.price-table thead th {
  background: var(--moss);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
  text-transform: uppercase;
}
.price-table tbody tr { border-top: 1px solid var(--border-soft); }
.price-table tbody tr:nth-child(even) { background: var(--beige-light); }
.price-table td:first-child { font-weight: 600; color: var(--moss); }
.price-amount { color: var(--wine); font-weight: 600; font-size: 1.5rem; }

/* ---------- Apartment tabs (stacked selector layout) ---------- */
.apt-tabs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}
@media (min-width: 900px) {
  .apt-tabs { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 3.5rem; }
}

.apt-tabs__media {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 0;
}
.apt-tabs__gallery {
  display: none;
  flex: 1 1 auto;
  min-height: 320px;
}
.apt-tabs__gallery.is-active { display: flex; }
.apt-gallery__viewport {
  position: relative;
  flex: 1 1 auto;
  min-height: 320px;
  width: 100%;
  background: var(--ink-mid);
  border-radius: 4px;
  overflow: hidden;
}
.apt-gallery__track {
  position: absolute;
  inset: 0;
}
.apt-gallery__slide,
.apt-tabs__gallery .apt-gallery__slide.gallery__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  opacity: 0;
  transition: opacity 350ms ease;
}
/* Wageralm + Winter: align text and gallery to top, equal height */
/* Winter gallery: portrait 4/5 like kinder */
#winter .story__media { display: flex; }
#winter .story__media .apt-tabs__gallery { flex: 1 1 auto; min-height: 0; }
#winter .story__media .apt-gallery__viewport { min-height: 0; }

/* Wageralm gallery: portrait 4/5 like kinder */
#wageralm .story__media { display: flex; }
#wageralm .story__media .apt-tabs__gallery { flex: 1 1 auto; min-height: 0; }
#wageralm .story__media .apt-gallery__viewport { min-height: 0; }

/* Kinder + Hof galleries: fill portrait story__media (aspect-ratio 4/5 kept) */
#kinder .story__media, #familie .story__media { display: flex; }
#kinder .story__media .apt-tabs__gallery, #familie .story__media .apt-tabs__gallery { flex: 1 1 auto; min-height: 0; }
#kinder .story__media .apt-gallery__viewport, #familie .story__media .apt-gallery__viewport { min-height: 0; }

/* Panoramahof gallery: tall portrait */
#panoramahof .story__media { aspect-ratio: 2/3; display: flex; }
#panoramahof .story__media .apt-tabs__gallery { flex: 1 1 auto; min-height: 0; }
#panoramahof .story__media .apt-gallery__viewport { min-height: 0; }

/* Wageralm gallery: show portrait + landscape uncropped */
.apt-tabs__gallery[data-apt="wageralm"] .apt-gallery__slide,
.apt-tabs__gallery[data-apt="wageralm"] .apt-gallery__slide.gallery__img {
  object-fit: cover;
  cursor: zoom-in;
  border-radius: 0;
}
.apt-gallery__slide.is-active,
.apt-tabs__gallery .apt-gallery__slide.gallery__img.is-active {
  opacity: 1;
  z-index: 1;
}
.apt-tabs__gallery[data-apt="wageralm"] .apt-gallery__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.apt-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.85);
  color: var(--moss);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}
.apt-gallery__nav:hover {
  background: var(--wine);
  color: var(--white);
  border-color: var(--wine);
}
.apt-gallery__nav--prev { left: 12px; }
.apt-gallery__nav--next { right: 12px; }
.apt-gallery__counter {
  position: absolute;
  right: 12px;
  bottom: 10px;
  z-index: 3;
  background: rgba(45, 41, 38, 0.65);
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 100px;
  font-variant-numeric: tabular-nums;
}
.apt-tabs__avail {
  align-self: flex-start;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.apt-tabs__panel {
  display: flex;
  flex-direction: column;
}

.apt-tabs__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-soft);
}
.apt-tabs__nav li { margin: 0; }

.apt-tabs__tab {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.1rem 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-soft);
  cursor: pointer;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  color: var(--ink-mid);
  opacity: 0.55;
  transition: opacity 200ms ease, color 200ms ease;
}
.apt-tabs__tab:hover { opacity: 0.85; color: var(--moss); }
.apt-tabs__tab.is-active {
  opacity: 1;
  color: var(--moss);
}
.apt-tabs__num {
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 400;
  min-width: 2rem;
  color: var(--wine);
  opacity: 0.65;
  transition: font-size 200ms ease;
}
.apt-tabs__tab.is-active .apt-tabs__num { opacity: 1; }
.apt-tabs__name {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  transition: font-size 200ms ease;
}
.apt-tabs__tab.is-active .apt-tabs__name {
  font-size: 2.1rem;
  font-weight: 500;
}
.apt-tabs__tab.is-active .apt-tabs__num {
  font-size: 1.6rem;
}

.apt-tabs__content {
  margin-top: 2rem;
}
.apt-tabs__content[hidden] { display: none; }

.apt-tabs__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--moss);
  line-height: 1.05;
  margin: 0 0 0.35rem;
}
.apt-tabs__sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--ink-mid);
  margin: 0 0 1.75rem;
  line-height: 1.25;
}

.apt-tabs__highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 1rem;
}
.apt-tabs__hl-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--moss);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.apt-tabs__check { color: var(--wine); }
.apt-tabs__hl-lbl {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mid);
}

.apt-tabs__specs {
  margin: 0 0 1.5rem;
  padding: 0;
}
.apt-tabs__spec {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.95rem;
}
.apt-tabs__spec dt {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--ink-mid);
  margin: 0;
}
.apt-tabs__spec dd {
  margin: 0;
  color: var(--moss);
  font-weight: 500;
  text-align: right;
}

.apt-tabs__price {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  padding: 1.25rem 0 1.5rem;
}
.apt-tabs__season {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--ink-mid);
  margin-right: 0.5rem;
}
.apt-tabs__amt {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--wine);
  font-weight: 500;
}
.apt-tabs__price small {
  font-size: 0.8rem;
  color: var(--ink-mid);
  margin-left: 0.35rem;
}

.apt-tabs__cta {
  align-self: flex-start;
}

/* ---------- Info columns (3-col editorial block) ---------- */
.info-cols {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .info-cols { grid-template-columns: repeat(3, 1fr); gap: 2.25rem; } }
.info-col {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 1.75rem 1.6rem;
  box-shadow: 0 6px 24px rgba(60,40,20,0.05);
}
.info-col h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--moss);
  line-height: 1.25;
  margin-bottom: 0.9rem;
  text-wrap: balance;
}
.info-col p {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--ink-mid);
  margin-bottom: 0.85rem;
}
.info-col p:last-child { margin-bottom: 0; }
.info-col strong { color: var(--wine); font-weight: 600; }

.included {
  margin-top: 3rem;
  background: var(--white);
  padding: 2rem 2rem 2.25rem;
  border-radius: 6px;
  border: 1px solid var(--border);
}
.included h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  color: var(--moss);
}

/* Inline variant — sits inside a narrow column next to a story image */
.included--inline {
  margin-top: 1.75rem;
  padding: 1.25rem 1.4rem 1.4rem;
  border-radius: 8px;
}
.included--inline h3 {
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
}
.included--inline .included__list {
  grid-template-columns: 1fr;
  gap: 0.55rem 1.25rem;
  font-size: 0.94rem;
}
@media (min-width: 1100px) {
  .included--inline .included__list { grid-template-columns: 1fr 1fr; }
}
.included__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem 2rem;
}
@media (min-width: 768px) { .included__list { grid-template-columns: 1fr 1fr; } }
.included__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--ink-mid);
}
.check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--wine);
  margin-top: 2px;
}
.payment-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--ink-light);
  line-height: 1.7;
}

/* ============================================================
   SALZBURGERLAND CARD (re-themed)
   ============================================================ */
.salzburg {
  position: relative;
  background:
    linear-gradient(rgba(28,34,16,0.78), rgba(28,34,16,0.78)),
    url('assets/images/aussen-085.jpg') center/cover no-repeat;
  background-attachment: fixed;
  color: #fff;
}
@media (max-width: 1023px) { .salzburg { background-attachment: scroll; } }
.salzburg h2 {
  font-style: italic;
  color: #fff;
  text-wrap: balance;
}
.salzburg__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
@media (min-width: 1024px) {
  .salzburg__grid { grid-template-columns: 1.1fr 1fr; gap: 80px; }
}
.salzburg__lead {
  margin-top: 1.5rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  font-size: 1.02rem;
}
.salzburg__perks { display: flex; flex-direction: column; }
.salzburg__perks li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 1rem 0;
  font-size: 0.98rem;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.salzburg__perks li:last-child { border-bottom: 0; }
.salzburg__perks .check-icon { color: var(--beige); }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.testimonial__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  line-height: 0.6;
  color: var(--wine);
  display: block;
  margin-bottom: 0.5rem;
}
.testimonial blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  line-height: 1.55;
  color: var(--moss);
  margin: 0;
  text-wrap: balance;
}
.testimonial cite {
  display: block;
  margin-top: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--ink-mid);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials__viewport {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  max-width: 920px;
  margin: 0 auto;
}
.testimonials__track {
  position: relative;
  min-height: 320px;
}
.testimonial {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 1rem;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 500ms ease, transform 500ms ease;
}
.testimonial.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.testimonial__mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--wine);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.testimonial__quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.45;
  color: var(--moss);
  margin: 0 0 1.6rem;
  max-width: 60ch;
  font-weight: 400;
  text-wrap: balance;
}
.testimonial__author {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--wine);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.testimonial__sub {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mid);
}
.testimonials__nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  background: var(--white);
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.testimonials__nav:hover {
  background: var(--wine);
  color: var(--white);
  border-color: var(--wine);
}
.testimonials__nav:active { transform: scale(0.94); }
.testimonials__dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.testimonials__dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(90, 30, 33, 0.22);
  cursor: pointer;
  padding: 0;
  transition: background 200ms ease, transform 200ms ease;
}
.testimonials__dots button:hover {
  background: rgba(90, 30, 33, 0.45);
}
.testimonials__dots button.is-active {
  background: var(--wine);
  transform: scale(1.3);
}
@media (max-width: 600px) {
  .testimonials__viewport { gap: 0.5rem; }
  .testimonials__nav { width: 38px; height: 38px; }
  .testimonial { padding: 0.5rem 0; }
  .testimonials__track { min-height: 360px; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 1024px) {
  .contact__grid { grid-template-columns: 38fr 62fr; gap: 64px; }
}
.contact__side h2 { text-wrap: balance; margin-bottom: 1.25rem; }
.contact__side p { color: var(--ink-mid); line-height: 1.75; }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.contact-details > * {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-mid);
  font-size: 0.95rem;
  transition: color 160ms ease;
}
.contact-details a:hover { color: var(--wine); }
.contact-details svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--wine);
}
.contact__socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.contact__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--beige-light);
  color: var(--wine);
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}
.contact__socials a:hover { background: var(--wine); color: #fff; transform: translateY(-1px); }
.contact__socials svg { width: 18px; height: 18px; }

.contact__form {
  background: var(--white);
  border-radius: 6px;
  padding: 2.25rem;
  box-shadow: 0 2px 24px rgba(28,34,16,0.07);
  border: 1px solid var(--border);
}
@media (min-width: 768px) { .contact__form { padding: 2.5rem; } }

/* Map */
.contact__map {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 6px 24px rgba(60,40,20,0.05);
}
.contact__map iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
  filter: saturate(0.95);
}
@media (min-width: 768px) { .contact__map iframe { height: 460px; } }
.contact__map-link {
  display: inline-flex;
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: var(--wine);
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 9px 14px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: background 200ms ease, transform 200ms ease;
}
.contact__map-link:hover { background: var(--wine-hover); transform: translateY(-1px); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 768px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-row--full { grid-column: span 2; }
}
.form-row { display: flex; flex-direction: column; }
.form-row label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 0.4rem;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.form-row textarea { resize: vertical; min-height: 110px; font-family: 'Inter', sans-serif; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(90,30,33,0.14);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .faq__grid { grid-template-columns: 36fr 64fr; gap: 64px; }
}
.faq__head h2 { text-wrap: balance; margin-bottom: 1.25rem; }
.faq__head p { color: var(--ink-mid); line-height: 1.7; max-width: 320px; }
@media (min-width: 1024px) {
  .faq__head { position: sticky; top: 100px; }
}
.faq__list { border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 1.25rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--moss);
  text-align: left;
  transition: color 160ms ease;
}
.faq__question:hover { color: var(--wine); }
.faq__chevron {
  width: 20px;
  height: 20px;
  color: var(--wine);
  flex-shrink: 0;
  transition: transform 300ms ease;
}
.faq__item--open .faq__chevron { transform: rotate(180deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms ease;
}
.faq__answer-inner {
  padding-bottom: 1.25rem;
  color: var(--ink-mid);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 640px;
}
.faq__item--open .faq__answer { max-height: 600px; }

/* ============================================================
   LOGOS BAR
   ============================================================ */
.logos-bar {
  background: var(--moss);
  padding: 48px 24px;
}
.logos-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 60px;
  max-width: 900px;
  margin: 0 auto;
}
.logos-bar__inner img {
  height: 80px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  transition: opacity 240ms ease;
}
.logos-bar__inner img:hover {
  opacity: 0.85;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--moss);
  color: rgba(255,255,255,0.75);
  padding: 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

.footer__logo {
  width: 110px;
  height: auto;
}
.footer__tagline {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  max-width: 32ch;
  line-height: 1.6;
}
.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: 0.85rem;
}
.footer__list li { line-height: 2; font-size: 0.92rem; }
.footer__list a { transition: color 160ms ease; color: rgba(255,255,255,0.75); }
.footer__list a:hover { color: var(--beige); }

.footer address {
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.75);
}
.footer address a:hover { color: var(--beige); }

.footer__socials { display: flex; gap: 10px; margin-top: 1rem; }
.footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  transition: background 200ms ease, color 200ms ease;
}
.footer__socials a:hover { background: var(--wine); color: #fff; }
.footer__socials svg { width: 16px; height: 16px; }

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 1rem;
}
.footer__badges img {
  max-height: 56px;
  width: auto;
  object-fit: contain;
  opacity: 0.95;
  transition: opacity 200ms ease;
}
.footer__badges img:hover { opacity: 1; }

.footer__bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}
@media (min-width: 768px) { .footer__bottom { flex-direction: row; align-items: center; } }
.footer__bottom nav { display: flex; gap: 1.5rem; }
.footer__bottom a { transition: color 160ms ease; }
.footer__bottom a:hover { color: #fff; }

.footer__modal-btn {
  background: none;
  border: none;
  padding: 0;
  color: rgba(255,255,255,0.55);
  font: inherit;
  font-size: 0.8rem;
  cursor: pointer;
  transition: color 160ms ease;
}
.footer__modal-btn:hover { color: #fff; }

/* ---------- Legal modals (Impressum / Datenschutz) ---------- */
.legal-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.legal-modal.is-open {
  display: flex;
}
.legal-modal__panel {
  position: relative;
  background: #fff;
  color: #2a2a2a;
  border-radius: 10px;
  width: min(680px, 100%);
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.legal-modal__close {
  position: sticky;
  top: 0;
  float: right;
  margin: 16px 16px 0 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.07);
  color: #444;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms ease;
  z-index: 1;
}
.legal-modal__close:hover { background: rgba(0,0,0,0.14); }
.legal-modal__body {
  padding: 32px 40px 40px;
}
.legal-modal__body h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--moss);
  margin: 0 0 1.25rem;
}
.legal-modal__body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wine);
  margin: 1.6rem 0 0.45rem;
}
.legal-modal__body p { font-size: 0.9rem; line-height: 1.75; margin: 0 0 0.6rem; }
.legal-modal__body ul { padding-left: 1.2rem; margin: 0.5rem 0 0.6rem; }
.legal-modal__body li { font-size: 0.9rem; line-height: 1.75; margin-bottom: 0.35rem; }
.legal-modal__body a { color: var(--wine); text-decoration: underline; }
.legal-modal__body a:hover { color: var(--moss); }

/* Inline text link (e.g. SalzburgerLand Card) */
.text-link {
  color: var(--wine);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: color 200ms ease, opacity 200ms ease;
}
.text-link:hover {
  color: var(--moss);
  opacity: 0.85;
}

/* ============================================================
   APARTMENT DETAIL PAGES (existing structure, re-themed)
   ============================================================ */
.apt-hero {
  position: relative;
  height: 65vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.apt-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,34,16,0.85) 0%, rgba(28,34,16,0.2) 60%, transparent 100%);
}
.apt-hero__inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 24px;
}
.apt-hero__crumb {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
  transition: color 160ms ease;
}
.apt-hero__crumb:hover { color: #fff; }
.apt-hero h1 {
  font-size: var(--fs-h1);
  color: #fff;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.apt-hero__pills { display: flex; flex-wrap: wrap; gap: 8px; }
.apt-hero__pills span {
  background: rgba(255,255,255,0.95);
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}

.apt-detail__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 1024px) { .apt-detail__grid { grid-template-columns: 1.2fr 1fr; gap: 64px; } }
.apt-detail__text p {
  color: var(--ink-mid);
  line-height: 1.85;
  font-size: 1.02rem;
  margin-bottom: 1rem;
}
.apt-features {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem 2rem 2.25rem;
}
.apt-features h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  color: var(--moss);
}
.apt-features ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0.55rem 0;
  font-size: 0.95rem;
  color: var(--ink-mid);
  border-bottom: 1px dashed var(--border-soft);
}
.apt-features ul li:last-child { border-bottom: 0; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 768px) { .gallery { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .gallery { grid-template-columns: 1fr 1fr 1fr; } }
.gallery__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  cursor: zoom-in;
  transition: opacity 160ms ease, transform 400ms ease;
}
.gallery__img:hover { opacity: 0.9; transform: scale(1.01); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(20,28,10,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox--open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: background 200ms ease;
}
.lightbox__btn:hover { background: rgba(255,255,255,0.25); }
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }
.lightbox__close {
  top: 24px; right: 24px;
  transform: none;
  width: 40px;
  height: 40px;
}

/* ============================================================
   GENERIC SUB-PAGE HERO (Über uns, Sommer, Winter, Kinder, Preise…)
   ============================================================ */
.page-hero {
  padding: 140px 24px 60px;
  background: var(--beige-light);
  text-align: center;
}
.page-hero h1 {
  color: var(--moss);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 500;
  margin-bottom: 0.75rem;
  text-wrap: balance;
}
.page-hero p {
  color: var(--ink-mid);
  max-width: 56ch;
  margin: 0 auto;
  line-height: 1.7;
}

/* compact list block */
.feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
@media (min-width: 600px) { .feature-list { grid-template-columns: 1fr 1fr; } }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--ink-mid);
}
.feature-list .check-icon { color: var(--wine); }

/* ============================================================
   FORM — DATENSCHUTZ CONSENT CHECKBOX
   ============================================================ */
.form-row--consent { margin-top: 0.25rem; }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ink-mid);
}
.form-consent input {
  position: absolute;
  opacity: 0;
  width: 1px; height: 1px;
  margin: -1px;
  overflow: hidden;
}
.form-consent__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  flex-shrink: 0;
  margin-top: 1px;
  color: transparent;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}
.form-consent:hover .form-consent__check { border-color: var(--wine); }
.form-consent input:focus-visible + .form-consent__check {
  box-shadow: 0 0 0 3px rgba(90,30,33,0.18);
  border-color: var(--wine);
}
.form-consent input:checked + .form-consent__check {
  background: var(--wine);
  border-color: var(--wine);
  color: #fff;
}
.form-consent input:invalid:not(:placeholder-shown) + .form-consent__check,
.form-consent input.is-invalid + .form-consent__check {
  border-color: #b6362b;
  box-shadow: 0 0 0 3px rgba(182,54,43,0.12);
}
.form-consent__text { flex: 1 1 auto; min-width: 0; }
.form-consent__link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--wine);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.form-consent__link:hover { color: var(--wine-hover); }
.form-consent__req { color: var(--wine); margin-left: 1px; }

/* ============================================================
   COOKIE BANNER + SETTINGS MODAL
   ============================================================ */

/* --- Banner (bottom strip) --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1800;
  background: #fff;
  border-top: 3px solid var(--wine);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.18);
  transform: translateY(110%);
  transition: transform 360ms cubic-bezier(.22,1,.36,1);
}
.cookie-banner.is-open { transform: translateY(0); }
.cookie-banner[hidden] { display: none; }

.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
}
.cookie-banner__text {
  flex: 1 1 auto;
  min-width: 0;
}
.cookie-banner__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--wine);
  margin: 0 0 0.3rem;
}
.cookie-banner__text p {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--ink-mid);
  line-height: 1.55;
  margin: 0;
}
.cookie-banner__choose {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--wine);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  margin-left: 0.25rem;
}
.cookie-banner__choose:hover { color: var(--wine-hover); }

.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

/* --- Buttons --- */
.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
  white-space: nowrap;
}
.cookie-btn--accept {
  background: var(--wine);
  color: #fff;
  border-color: var(--wine);
}
.cookie-btn--accept:hover {
  background: var(--wine-hover);
  border-color: var(--wine-hover);
  transform: translateY(-1px);
}
.cookie-btn--reject {
  background: transparent;
  color: var(--wine);
  border-color: var(--wine);
}
.cookie-btn--reject:hover {
  background: var(--wine-light);
}
.cookie-btn--save {
  background: var(--moss);
  color: #fff;
  border-color: var(--moss);
}
.cookie-btn--save:hover {
  background: var(--moss-soft);
  border-color: var(--moss-soft);
  transform: translateY(-1px);
}

/* --- Settings modal --- */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1900;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 220ms ease;
}
.cookie-modal.is-open { opacity: 1; }
.cookie-modal[hidden] { display: none; }

.cookie-modal__panel {
  position: relative;
  background: #fff;
  color: var(--ink);
  border-radius: 10px;
  width: min(640px, 100%);
  max-height: 86vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
  transform: translateY(12px) scale(0.98);
  transition: transform 280ms cubic-bezier(.22,1,.36,1);
}
.cookie-modal.is-open .cookie-modal__panel { transform: translateY(0) scale(1); }

.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
}
.cookie-modal__header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--wine);
  margin: 0;
}
.cookie-modal__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--beige-light);
  color: var(--moss);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms ease;
  flex-shrink: 0;
}
.cookie-modal__close:hover { background: var(--beige); }

.cookie-modal__body {
  padding: 22px 26px 26px;
}
.cookie-modal__body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss);
  margin: 0 0 0.7rem;
}
.cookie-modal__body > p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-mid);
  margin: 0 0 1.5rem;
}
.cookie-modal__link {
  background: none;
  border: none;
  padding: 0;
  color: var(--wine);
  font: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.cookie-modal__link:hover { color: var(--wine-hover); }

/* --- Category row --- */
.cookie-cat {
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 0.95rem 1.1rem;
  margin-bottom: 10px;
  background: var(--beige-light);
}
.cookie-cat__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cookie-cat__title {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--moss);
}
.cookie-cat__desc {
  margin: 0.55rem 0 0;
  font-size: 0.82rem;
  color: var(--ink-mid);
  line-height: 1.55;
}

/* --- Toggle switch --- */
.cookie-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}
.cookie-toggle input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.cookie-toggle__slider {
  position: absolute;
  inset: 0;
  background: #c7c0b0;
  border-radius: 999px;
  transition: background 200ms ease;
}
.cookie-toggle__slider::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  transition: transform 200ms cubic-bezier(.22,1,.36,1);
}
.cookie-toggle input:checked + .cookie-toggle__slider { background: var(--wine); }
.cookie-toggle input:checked + .cookie-toggle__slider::before { transform: translateX(20px); }
.cookie-toggle input:disabled { cursor: not-allowed; }
.cookie-toggle--locked { cursor: not-allowed; opacity: 0.95; }

/* --- Modal action row --- */
.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
}
.cookie-modal__actions .cookie-btn { flex: 1 1 auto; min-width: 140px; }

/* When body has cookie modal open: hide banner */
body.cookie-settings-open .cookie-banner { display: none; }

/* Stack legal modal above cookie modal */
.legal-modal { z-index: 2200; }

/* --- Mobile --- */
@media (max-width: 767px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1rem 1.1rem;
    gap: 1rem;
  }
  .cookie-banner__title { font-size: 1.15rem; }
  .cookie-banner__text p { font-size: 0.85rem; }
  .cookie-banner__actions { flex-direction: row; }
  .cookie-banner__actions .cookie-btn { flex: 1 1 0; min-width: 0; padding: 0.7rem 0.8rem; font-size: 0.72rem; }

  .cookie-modal { padding: 12px; }
  .cookie-modal__header { padding: 14px 18px; }
  .cookie-modal__header h2 { font-size: 1.3rem; }
  .cookie-modal__body { padding: 18px 18px 22px; }
  .cookie-modal__actions { flex-direction: column; }
  .cookie-modal__actions .cookie-btn { width: 100%; }
  .cookie-cat { padding: 0.8rem 0.9rem; }
}

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

/* ============================================================
   RESPONSIVE TILES MODIFIERS
   ============================================================ */
.tiles--mt-lg { margin-top: 2rem; }
@media (min-width: 1024px) { .tiles--mt-lg { margin-top: 2.5rem; } }

/* tiles--3: 1 col mobile, 2 cols tablet portrait, 3 cols ≥900px */
.tiles.tiles--3 { grid-template-columns: 1fr; }
@media (min-width: 600px)  { .tiles.tiles--3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px)  { .tiles.tiles--3 { grid-template-columns: repeat(3, 1fr); } }

/* tiles--auto: auto-fit ≥220px to avoid cramped phone columns */
.tiles.tiles--auto { grid-template-columns: 1fr; }
@media (min-width: 520px)  { .tiles.tiles--auto { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); } }

/* ============================================================
   MOBILE / RESPONSIVE TWEAKS (≤1023px)
   ============================================================ */

/* ---------- iPad (≤1023px) ---------- */
@media (max-width: 1023px) {
  section { padding: 56px 0; }
  .section-head { margin-bottom: 40px; }

  /* Story columns: keep 1-col but cap media height so portraits don't dominate */
  .story__media { max-height: 70vh; }
  #panoramahof .story__media { aspect-ratio: 4/5; }
  #familie .story__media { max-height: 60vh; }

  /* Apt-tabs: tighter tab labels */
  .apt-tabs__name { font-size: 1.2rem; }
  .apt-tabs__tab.is-active .apt-tabs__name { font-size: 1.6rem; }
  .apt-tabs__num { font-size: 1.2rem; min-width: 1.8rem; }
  .apt-tabs__tab.is-active .apt-tabs__num { font-size: 1.4rem; }
  .apt-tabs__tab { gap: 1rem; padding: 0.9rem 0; }
  .apt-tabs__hl-val { font-size: 1.6rem; }
  .apt-tabs__hl-lbl { font-size: 0.68rem; }
  .apt-tabs__highlights { gap: 0.6rem; padding: 1rem 0; }
  .apt-tabs__price { gap: 1rem 1.5rem; }
  .apt-tabs__amt { font-size: 1.3rem; }
  .apt-tabs__sub { font-size: 1.25rem; margin-bottom: 1.25rem; }
}

/* ---------- Phone (≤767px) ---------- */
@media (max-width: 767px) {
  /* --- Topbar: shrink to fit phones without overlap --- */
  .topbar { padding: 14px 10px 10px; }
  .topbar__logo { top: 8px; padding: 6px 12px 5px; border-radius: 14px; }
  .topbar__logo img { width: 100px; }
  .topbar__actions { gap: 6px; }
  .topbar__action-btn { width: 42px; height: 42px; }
  .topbar__action-btn svg { width: 20px; height: 20px; }
  .menu-btn__icon { width: 42px; height: 42px; }
  .menu-btn__icon span { width: 22px; height: 2.5px; }
  .menu-btn__icon span:nth-child(1) { transform: translate(-50%, calc(-50% - 7px)); }
  .menu-btn__icon span:nth-child(2) { width: 14px; }
  .menu-btn__icon span:nth-child(3) { transform: translate(-50%, calc(-50% + 7px)); }

  /* --- Menu overlay: phone-friendly --- */
  .menu__logo { width: 180px; }
  .menu__title { font-size: 1.3rem; }
  .menu__link { font-size: 1.4rem; padding: 11px 0; }

  /* --- Sections: tighter padding --- */
  section { padding: 44px 0; }
  .section-head { margin-bottom: 28px; }
  .section-head p { font-size: 0.95rem; }
  .story { gap: 28px; }

  /* --- Hero slider arrows: smaller, closer to edge --- */
  .hero-slider__nav { width: 38px; height: 38px; }
  .hero-slider__nav--prev { left: 10px; }
  .hero-slider__nav--next { right: 10px; }
  .hero-slider__nav svg { width: 18px; height: 18px; }
  .hero-scroll-btn { width: 44px; height: 44px; bottom: 24px; }
  .hero-scroll-btn svg { width: 22px; height: 22px; }

  /* --- Story portraits not too tall on phone --- */
  .story__media { max-height: 60vh; }
  #panoramahof .story__media,
  #familie .story__media,
  #kinder .story__media,
  #wageralm .story__media,
  #winter .story__media { aspect-ratio: 4/5; max-height: 65vh; }
  /* decorative offset frame too wide on small screens */
  .story__media::after { inset: auto -8px -8px auto; width: 40%; height: 40%; }

  /* --- Apt-tabs: phone-friendly --- */
  .apt-tabs__gallery,
  .apt-gallery__viewport { min-height: 240px; }
  .apt-tabs__highlights { grid-template-columns: repeat(3, 1fr); gap: 0.4rem; }
  .apt-tabs__hl-val { font-size: 1.35rem; }
  .apt-tabs__hl-lbl { font-size: 0.6rem; letter-spacing: 0.06em; }
  .apt-tabs__spec { padding: 0.7rem 0; font-size: 0.88rem; }
  .apt-tabs__spec dt { font-size: 0.68rem; }
  .apt-tabs__price { flex-direction: column; gap: 0.8rem; }
  .apt-tabs__price > div { display: flex; align-items: baseline; gap: 0.5rem; }
  .apt-tabs__amt { font-size: 1.2rem; }
  .apt-tabs__season { font-size: 0.68rem; margin-right: 0; }
  .apt-tabs__name { font-size: 1.1rem; }
  .apt-tabs__tab.is-active .apt-tabs__name { font-size: 1.35rem; }
  .apt-tabs__tab.is-active .apt-tabs__num { font-size: 1.2rem; }
  .apt-tabs__nav { border-top-width: 1px; }

  /* CTA buttons stack and stretch */
  .apt-tabs__media > div[style*="display:flex"] { flex-direction: column; gap: 0.6rem !important; }
  .apt-tabs__media .btn { width: 100%; text-align: center; justify-content: center; }

  /* --- Hof "included" list: 1 col on phone, tighter --- */
  .included--inline { padding: 1rem 1.1rem 1.1rem; }
  .included__list { gap: 0.5rem; }
  .included__list li { font-size: 0.9rem; }

  /* --- Apt-card text & padding on phone --- */
  .apt-card__body { padding: 1.1rem 1.1rem 1.25rem; }
  .apt-card__body h3 { font-size: 1.25rem; }
  .apt-card__desc { font-size: 0.9rem; -webkit-line-clamp: unset; }

  /* --- Testimonials: tighter on small screens --- */
  .testimonials__viewport { padding: 0 4px; }
  .testimonial { padding: 0.25rem 0; }
  .testimonial__mark { font-size: 3.5rem; margin-bottom: 0.25rem; }
  .testimonial__quote { font-size: 1.15rem; line-height: 1.5; margin-bottom: 1.2rem; }
  .testimonial__author { font-size: 0.85rem; }
  .testimonial__sub { font-size: 0.7rem; }
  .testimonials__track { min-height: 420px; }

  /* --- Contact form: smaller padding & inputs --- */
  .contact__form { padding: 1.5rem 1.25rem; }
  .form-row input,
  .form-row select,
  .form-row textarea { font-size: 16px; padding: 0.75rem 0.9rem; } /* 16px prevents iOS zoom-on-focus */
  .contact__side h2 { margin-bottom: 0.75rem; }

  /* --- Logos bar tighter on phone --- */
  .logos-bar { padding: 32px 16px; }
  .logos-bar__inner { gap: 24px 32px; }
  .logos-bar__inner img { height: 56px; }

  /* --- Footer tighter --- */
  .footer__bottom { padding: 16px 0; font-size: 0.72rem; }
  .footer__bottom nav { gap: 1rem; }

  /* --- Legal modals: more breathing room on phones --- */
  .legal-modal { padding: 12px; }
  .legal-modal__panel { max-height: 88vh; border-radius: 8px; }
  .legal-modal__body { padding: 20px 20px 28px; }
  .legal-modal__body h2 { font-size: 1.5rem; }

  /* --- Headings scale better on phone --- */
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .story h2, .story__media + div h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
}

/* ---------- Small phones (≤380px) ---------- */
@media (max-width: 380px) {
  .topbar__action-btn { width: 38px; height: 38px; }
  .topbar__action-btn svg { width: 18px; height: 18px; }
  .menu-btn__icon { width: 38px; height: 38px; }
  .topbar__actions { gap: 4px; }
  .topbar__logo img { width: 88px; }
  .container { padding: 0 16px; }
  .apt-tabs__hl-val { font-size: 1.15rem; }
  .apt-tabs__hl-lbl { font-size: 0.55rem; }
}
