/* =====================================================================
   LATE CHECKOUT MERANO — Home V2 (clean, calm, handmade-but-crisp)
   Fonts: Tilt Warp (a few display moments) + Hanken Grotesk (rest)
   Accent: orange only. Lots of cream whitespace.
   ===================================================================== */

:root {
  --orange: #EB5027;
  --ink:    #000028;
  --cream:  #F4F1E0;
  --paper:  #FBF9F1;
  --line:   rgba(0,0,40,.14);
  --ink-60: rgba(0,0,40,.62);

  --font-display: "Tilt Warp", "Trebuchet MS", sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  --maxw: 1100px;
  --gut: clamp(24px, 5vw, 72px);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; overscroll-behavior-x: none; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  max-width: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
em { font-style: italic; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.disp { font-family: var(--font-display); font-weight: 400; line-height: 1.04; letter-spacing: -0.005em; }

/* crisp hand-drawn underline (non-scaling stroke = never blurry) */
.hand { position: relative; display: inline-block; }
.hand svg { position: absolute; left: -2%; bottom: -0.32em; width: 104%; height: 0.42em; overflow: visible; pointer-events: none; }
.hand svg path { fill: none; stroke: var(--orange); stroke-width: 3.4; stroke-linecap: round; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.82rem; letter-spacing: 0.13em; text-transform: uppercase;
  padding: 17px 40px; border-radius: 100px;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { transform: translateY(-2px); }
.btn-ghost { border: 1.5px solid var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

/* =====================================================================
   HEADER (slim, logo + one action)
   ===================================================================== */
.hdr {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--gut);
  flex-wrap: wrap;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: saturate(120%) blur(8px);
  border-bottom: 1px solid transparent; transition: border-color .3s ease;
}
.hdr.scrolled { border-color: var(--line); }
.hdr-logo { display: inline-flex; }
.hdr-logo img { height: clamp(56px, 6.4vw, 92px); width: auto; }
.hdr .btn { padding: 11px 24px; font-size: 0.72rem; }

/* primary nav */
.nav { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 28px); }
.nav a { font-weight: 800; font-size: 0.86rem; letter-spacing: .01em; color: var(--ink-60); padding: 6px 2px; border-bottom: 2px solid transparent; transition: color .15s ease, border-color .15s ease; }
.nav a:hover { color: var(--ink); }
.nav a.current { color: var(--ink); border-color: var(--orange); }
@media (max-width: 920px){
  .hdr { position: relative; }
  .nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 6px var(--gut) 18px;
    box-shadow: 0 10px 28px rgba(0,0,40,.10);
    z-index: 49;
  }
  .hdr.nav-open .nav { display: flex; }
  .nav a { padding: 13px 0; border-bottom: 1px solid var(--line); width: 100%; font-size: 1rem; }
  .nav a:last-child { border-bottom: none; }
}

/* burger button */
.burger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 36px; height: 36px; padding: 4px; border-radius: 6px;
  transition: background .15s ease;
}
.burger:hover { background: rgba(0,0,40,.07); }
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.hdr.nav-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr.nav-open .burger span:nth-child(2) { opacity: 0; }
.hdr.nav-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 920px) { .burger { display: flex; } }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  display: grid; grid-template-columns: 0.88fr 1.12fr; align-items: center;
  gap: clamp(30px, 5vw, 80px);
  max-width: 1340px; margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) var(--gut) clamp(36px, 5vw, 64px);
}
.hero h1 {
  font-family: var(--font-body); font-weight: 900; letter-spacing: -0.02em;
  font-size: clamp(2.7rem, 7.2vw, 6rem); line-height: 0.93; color: var(--ink);
}
.hero h1 .o { color: var(--orange); display: inline-block; }
.hero-sub {
  font-weight: 800; font-size: clamp(1.3rem, 3vw, 2.2rem); line-height: 1.05;
  margin: clamp(18px,2.6vw,28px) 0 clamp(8px,1.4vw,14px);
}
.hero-facts { color: var(--ink-60); font-weight: 600; font-size: 1rem; margin-bottom: clamp(22px,3vw,32px); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-media { position: relative; }
.hero-media img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; border-radius: 8px; }
@media (max-width: 860px){ .hero-media img { aspect-ratio: 5/4; } }

/* price sticker ("Störer") on the hero photo — sun-shaped */
.hero-price {
  position: absolute; top: -24px; right: -14px; z-index: 2;
  width: 152px; height: 152px;
  background: var(--orange); color: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  text-align: center; transform: rotate(7deg);
  clip-path: polygon(50.00% 0.00%, 57.55% 7.16%, 67.10% 3.02%, 71.75% 12.33%, 82.14% 11.70%, 83.32% 22.04%, 93.30% 25.00%, 90.88% 35.12%, 99.24% 41.32%, 93.50% 50.00%, 99.24% 58.68%, 90.88% 64.88%, 93.30% 75.00%, 83.32% 77.96%, 82.14% 88.30%, 71.75% 87.67%, 67.10% 96.98%, 57.55% 92.84%, 50.00% 100.00%, 42.45% 92.84%, 32.90% 96.98%, 28.25% 87.67%, 17.86% 88.30%, 16.68% 77.96%, 6.70% 75.00%, 9.12% 64.88%, 0.76% 58.68%, 6.50% 50.00%, 0.76% 41.32%, 9.12% 35.12%, 6.70% 25.00%, 16.68% 22.04%, 17.86% 11.70%, 28.25% 12.33%, 32.90% 3.02%, 42.45% 7.16%);
  filter: drop-shadow(0 8px 18px rgba(0,0,40,.25));
}
.hero-price .hp-big { font-family: var(--font-display); font-size: 1.7rem; line-height: 1; }
.hero-price .hp-small { font-weight: 700; font-size: 0.72rem; line-height: 1.25; letter-spacing: .02em; opacity: .95; padding-inline: 26px; }
@media (max-width: 860px){ .hero-price { top: -16px; right: 4px; width: 132px; height: 132px; } .hero-price .hp-big { font-size: 1.44rem; } .hero-price .hp-small { font-size: 0.66rem; padding-inline: 22px; } }

/* ratings pill (replaces the old “Opened 2024” badge) */
.hero-ratings {
  position: absolute; left: 16px; bottom: 16px; right: 16px;
  display: flex; gap: 10px; flex-wrap: wrap;
}
.rating {
  display: flex; align-items: center; gap: 9px;
  background: color-mix(in srgb, var(--cream) 94%, transparent);
  backdrop-filter: blur(6px);
  border-radius: 100px; padding: 8px 15px 8px 13px;
  box-shadow: 0 6px 18px rgba(0,0,40,.14);
}
.rating .src { font-weight: 800; font-size: 0.78rem; letter-spacing: .01em; color: var(--ink); }
.rating .score { font-weight: 900; font-size: 0.96rem; color: var(--ink); }
.rating .stars { color: var(--orange); font-size: 0.84rem; letter-spacing: 1px; }
.rating .meta { color: var(--ink-60); font-weight: 600; font-size: 0.74rem; }
.rating .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line); }
@media (max-width: 460px){ .rating .meta { display: none; } }

/* dark solid button (for “Anfragen”) */
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { transform: translateY(-2px); }

/* =====================================================================
   FEATURES (one calm grid)
   ===================================================================== */
.section { padding: clamp(56px, 8vw, 104px) 0; }
.eyebrow { font-weight: 800; letter-spacing: .16em; text-transform: uppercase; font-size: 0.76rem; color: var(--orange); margin-bottom: 14px; }
.section h2 { font-size: clamp(2rem, 4.6vw, 3.3rem); margin-bottom: clamp(34px,5vw,56px); max-width: 16ch; }

.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 3.5vw, 52px) clamp(32px,4vw,60px); }
.feat h3 { font-weight: 800; font-size: 1.18rem; margin-bottom: 8px; }
.feat p { color: var(--ink-60); font-weight: 500; }
/* Center lone last item in a 3-col grid */
.feat-grid > :last-child:nth-child(3n+1) { grid-column: 2; }
@media (max-width: 860px){ .feat-grid { grid-template-columns: 1fr; gap: 30px; } .feat-grid > :last-child:nth-child(3n+1) { grid-column: 1; } }

/* =====================================================================
   GALLERY
   ===================================================================== */
.gallery-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(26px,4vw,40px); }
.gallery-head p { color: var(--ink-60); font-weight: 500; max-width: 46ch; }
.gallery-grid { columns: 3; column-gap: clamp(14px,1.6vw,20px); }
.gallery-grid img { width: 100%; margin-bottom: clamp(14px,1.6vw,20px); border-radius: 6px; break-inside: avoid; }
@media (max-width: 860px){ .gallery-grid { columns: 2; } }
@media (max-width: 520px){ .gallery-grid { columns: 1; } }

/* Photo deck — click the top photo, it falls to the front and cycles to the back.
   Each card keeps its photo's natural proportion via --ar (width/height). */
.photo-deck {
  position: relative; max-width: 560px; margin: 0 auto; aspect-ratio: 1 / 1.3;
  cursor: pointer; -webkit-tap-highlight-color: transparent; outline-offset: 10px;
}
.deck-card {
  position: absolute; left: 50%; top: 50%; margin: 0;
  width: min(100%, calc(var(--ar, 1.333) * (100% - 64px)));
  display: flex; flex-direction: column; gap: 10px;
  background: #fff; padding: 12px; border-radius: 6px;
  box-shadow: 0 14px 34px rgba(31,26,18,.16), 0 2px 6px rgba(31,26,18,.08);
  transform: translate(-50%, -50%);
  transition: transform .55s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}
.deck-card img { width: 100%; height: auto; aspect-ratio: var(--ar, 1.333); object-fit: cover; border-radius: 3px; }
.deck-card figcaption { text-align: center; font-weight: 600; font-size: .92rem; color: var(--ink-60); padding-bottom: 2px; }
.deck-card.is-leaving {
  transition: transform .62s cubic-bezier(.5,-.02,.74,.42), opacity .26s ease .36s;
  transform: translate(calc(-50% + 5%), 110%) rotate(16deg) scale(1.06) !important;
  opacity: 0;
}
.deck-hint { text-align: center; margin-top: clamp(52px,7vw,68px); color: var(--ink-60); font-weight: 500; font-size: .95rem; }
.deck-hint .deck-count { display: inline-block; margin-left: 8px; font-weight: 700; color: var(--orange); font-variant-numeric: tabular-nums; }
@media (prefers-reduced-motion: reduce) {
  .deck-card, .deck-card.is-leaving { transition: none; }
}

/* Scannable grid built automatically from the deck (apartment page) */
.grid-lead { margin-top: clamp(40px,6vw,64px); margin-bottom: clamp(16px,2.5vw,24px); }
.gallery-grid img { cursor: zoom-in; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(31,26,18,.93); display: none; align-items: center; justify-content: center; padding: clamp(16px,4vw,48px); }
.lightbox.open { display: flex; }
.lightbox figure { margin: 0; display: flex; flex-direction: column; gap: 12px; align-items: center; max-width: min(92vw, 1000px); }
.lightbox img { max-width: 100%; max-height: 78vh; border-radius: 6px; }
.lightbox figcaption { color: var(--cream); font-weight: 600; }
.lightbox button { position: absolute; background: none; border: 0; color: var(--cream); font-size: 2rem; cursor: pointer; padding: 12px 16px; line-height: 1; min-width: 48px; min-height: 48px; }
.lightbox .lb-close { top: 12px; right: 14px; font-size: 2.4rem; }
.lightbox .lb-prev { left: 6px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 6px; top: 50%; transform: translateY(-50%); }

/* =====================================================================
   SUN / AREA (image + text)
   ===================================================================== */
.sun { background: var(--paper); }
.sun-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px,5vw,72px); align-items: center; }
.sun-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 6px; }
.sun-grid h2 { font-size: clamp(1.9rem,4.4vw,3rem); margin-bottom: 20px; }
.sun-grid p { color: var(--ink-60); font-weight: 500; margin-bottom: 16px; }
.sun-grid .disc { font-size: 0.86rem; }
.sun-grid .btn { margin-top: 10px; }
@media (max-width: 860px){ .sun-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   HONEST (what you won't get)
   ===================================================================== */
.honest h2 { margin-bottom: 14px; }
.honest .lead { color: var(--ink-60); font-weight: 500; max-width: 60ch; margin-bottom: clamp(30px,4vw,46px); }
.honest-list { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(22px,3vw,40px); }
.honest-item { border-top: 2px solid var(--ink); padding-top: 16px; }
.honest-item h4 { font-weight: 800; font-size: 1.1rem; margin-bottom: 6px; }
.honest-item p { color: var(--ink-60); font-weight: 500; font-size: 0.96rem; }
@media (max-width: 720px){ .honest-list { grid-template-columns: 1fr; } }

/* =====================================================================
   REVIEWS
   ===================================================================== */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(26px,3.5vw,48px); }
.review p:first-child { font-size: 1.06rem; font-weight: 600; margin-bottom: 14px; }
.review .by { color: var(--ink-60); font-weight: 700; font-size: 0.92rem; }
@media (max-width: 860px){ .reviews-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   ABOUT
   ===================================================================== */
.about-grid { display: grid; grid-template-columns: 0.55fr 1fr; gap: clamp(32px,5vw,72px); align-items: center; }
.about-grid img { width: 100%; max-width: 280px; aspect-ratio: 1; object-fit: cover; border-radius: 50%; outline: 2px solid var(--orange); outline-offset: 4px; }
.about-copy h2 { font-size: clamp(1.9rem,4.4vw,3rem); margin-bottom: 22px; }
.about-copy p { color: var(--ink-60); font-weight: 500; margin-bottom: 16px; }
.about-copy .ps { font-style: italic; font-size: 0.92rem; }
@media (max-width: 720px){ .about-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; } }

/* =====================================================================
   BOOKING
   ===================================================================== */
.booking { background: var(--ink); color: var(--cream); }
.booking-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(34px,5vw,72px); align-items: center; }
.booking h2 { font-size: clamp(2rem,4.6vw,3.2rem); margin-bottom: 18px; color: var(--cream); }
.booking .intro { color: rgba(244,241,224,.78); font-weight: 500; margin-bottom: 10px; }
.booking .nudge { color: var(--cream); font-weight: 700; margin-top: 14px; }
.card { background: var(--cream); color: var(--ink); border-radius: 12px; padding: clamp(24px,3vw,34px); overflow: hidden; max-width: 100%; }
.card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-weight: 700; font-size: 0.82rem; }
.field input, .field select {
  font-family: var(--font-body); font-weight: 500; font-size: 1rem; color: var(--ink);
  border: 1.5px solid rgba(0,0,40,.25); border-radius: 8px; padding: 12px 14px; background: #fff; width: 100%;
}
.field input:focus, .field select:focus { outline: 2px solid var(--orange); outline-offset: 1px; border-color: var(--orange); }
.card .btn { width: 100%; margin-top: 4px; }
.form-success { display: none; text-align: center; font-weight: 800; margin-top: 16px; }
.form-success.show { display: block; }
@media (max-width: 860px){ .booking-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq h2 { margin-bottom: clamp(20px,3vw,32px); }
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-weight: 800; font-size: clamp(1.05rem,2vw,1.32rem); padding: 22px 0; }
.faq-icon { font-weight: 400; font-size: 1.6rem; flex: none; transition: transform .3s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding-bottom: 22px; color: var(--ink-60); font-weight: 500; max-width: 70ch; }

/* =====================================================================
   FOOTER CTA + FOOTER
   ===================================================================== */
.cta { padding: clamp(28px,4vw,52px) var(--gut); }
.cta-card { max-width: 1240px; margin: 0 auto; background: var(--orange); color: var(--cream);
  border-radius: 22px; padding: clamp(40px,6vw,76px); text-align: center; }
.cta-card h2 { font-size: clamp(2.4rem,8vw,6.4rem); line-height: 0.96; margin-bottom: 20px; }
.cta-card p { font-weight: 700; font-size: clamp(1.05rem,1.8vw,1.3rem); margin-bottom: 24px; }
.cta-card a.mail { color: var(--cream); text-decoration: underline; text-underline-offset: 4px; font-weight: 800; }

.footer { padding: clamp(40px,6vw,72px) var(--gut) clamp(56px,8vw,90px); }
.footer-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.footer h4 { font-weight: 800; font-size: 1.04rem; margin-bottom: 14px; }
.footer p, .footer li { color: var(--ink-60); font-weight: 500; font-size: 0.96rem; line-height: 1.7; }
.footer a { text-decoration: underline; text-underline-offset: 3px; }
.footer a:hover { color: var(--orange); }
.footer .codes { font-size: 0.8rem; margin-top: 16px; }
@media (max-width: 640px){ .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* cookie banner */
.cookie-banner { position: fixed; right: 16px; bottom: 16px; z-index: 200; max-width: 340px;
  background: var(--cream); border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 12px 30px rgba(0,0,40,.16);
  padding: 16px 18px; transform: translateY(180%); transition: transform .45s cubic-bezier(.7,0,.2,1); }
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 0.82rem; font-weight: 500; color: var(--ink-60); margin-bottom: 12px; }
.cookie-banner a { color: var(--orange); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; justify-content: flex-end; }
.cookie-actions button { font-weight: 700; padding: 9px 18px; border-radius: 100px; font-size: 0.82rem; }
.cookie-decline { background: var(--orange); color: #fff; }
.cookie-accept { border: 1.5px solid var(--ink); }

/* =====================================================================
   RESPONSIVE POLISH (mobile / tablet)
   ===================================================================== */
@media (max-width: 860px){
  /* hero stacks: IMAGE first (friendlier), copy below */
  .hero {
    grid-template-columns: 1fr;
    gap: clamp(22px, 6vw, 34px);
    padding-top: clamp(14px, 4vw, 32px);
    padding-bottom: clamp(26px, 6vw, 44px);
  }
  .hero-media { order: -1; }
  .hero h1 { font-size: clamp(2.7rem, 10vw, 4.4rem); }
  .hero-media img { aspect-ratio: 4/3; }
}
@media (max-width: 600px){
  body { font-size: 17px; }
  /* tighter header on phones */
  .hdr { padding-top: 10px; padding-bottom: 10px; }
  .hdr-logo img { height: clamp(50px, 13vw, 62px); }
  /* full-width stacked hero CTAs = bigger tap targets */
  .hero-cta { gap: 10px; }
  .hero-cta .btn { flex: 1 1 100%; padding: 16px 24px; }
  /* booking form fields stack */
  .card-row { grid-template-columns: 1fr; gap: 0; }
  /* calmer rhythm */
  .section { padding: clamp(46px, 13vw, 68px) 0; }
  .section h2 { margin-bottom: clamp(26px, 7vw, 40px); }
}
@media (max-width: 420px){
  .hero-ratings { gap: 8px; }
  .rating { padding: 7px 12px; }
}

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

/* =====================================================================
   LANGUAGE SWITCH
   ===================================================================== */
.hdr-right { display: flex; align-items: center; gap: clamp(12px, 2vw, 22px); }
.lang-switch { display: flex; align-items: center; gap: 2px; }
.lang-btn { font-weight: 800; font-size: 0.8rem; letter-spacing: .03em; color: var(--ink-60); padding: 6px 7px; border-radius: 6px; transition: color .15s ease; }
.lang-btn:hover { color: var(--orange); }
.lang-btn.active { color: var(--ink); }
.lang-sep { color: var(--line); font-weight: 700; }
@media (max-width: 560px){ .hdr .btn { display: none; } }

/* =====================================================================
   SPECIAL FEATURES ("the little things")
   ===================================================================== */
.special-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px,2.2vw,26px) clamp(36px,5vw,72px); max-width: 920px; }
.special-item { border-top: 1px solid var(--line); padding-top: 15px; }
.special-item p { font-weight: 500; color: var(--ink-60); }
.special-item b { color: var(--ink); font-weight: 800; }
/* Center lone last item in a 2-col grid */
.special-grid > :last-child:nth-child(odd) { grid-column: 1 / -1; max-width: calc(50% - clamp(18px,2.5vw,36px)); }
@media (max-width: 680px){ .special-grid { grid-template-columns: 1fr; } .special-grid > :last-child:nth-child(odd) { grid-column: 1; max-width: 100%; } }

/* =====================================================================
   MASCOTS (hand-drawn line characters as accents)
   ===================================================================== */
.has-mascot { position: relative; overflow: hidden; }
.mascot { position: absolute; height: auto; pointer-events: none; z-index: 1;
  /* thicken the hand-drawn line art slightly */
  filter: drop-shadow(0.6px 0 0 #1747C8) drop-shadow(-0.6px 0 0 #1747C8) drop-shadow(0 0.6px 0 #1747C8) drop-shadow(0 -0.6px 0 #1747C8);
}
.mascot-sun { width: clamp(110px, 13vw, 168px); top: clamp(18px,4vw,44px); right: clamp(16px,4vw,56px); transform: rotate(4deg); }
.mascot-bear { width: clamp(130px, 16vw, 210px); top: clamp(14px,3vw,34px); right: clamp(10px,3vw,48px); }
.mascot-flower { width: clamp(96px, 11vw, 140px); top: clamp(16px,3vw,38px); right: clamp(16px,4vw,60px); transform: rotate(-5deg); }
@media (max-width: 900px){ .mascot { display: none; } }

/* =====================================================================
   SUBPAGE HEAD (big intro at top of Apartment / Meran / Good-to-know)
   ===================================================================== */
.page-head { padding-block: clamp(40px,6vw,84px) clamp(28px,4vw,44px); }
.page-head .eyebrow { margin-bottom: 16px; }
.page-head h1 { font-family: var(--font-body); font-weight: 900; letter-spacing: -0.02em;
  font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 0.96; color: var(--ink); max-width: 16ch; }
.page-head .lead { color: var(--ink-60); font-weight: 500; max-width: 56ch; margin-top: clamp(16px,2vw,22px); font-size: 1.08rem; }

/* page banner image under the head */
.page-banner { width: 100%; max-width: 1340px; margin: 0 auto; padding-inline: var(--gut); }
.page-banner img { width: 100%; aspect-ratio: 16/7; object-fit: cover; border-radius: 8px; }
@media (max-width: 720px){ .page-banner img { aspect-ratio: 4/3; } }

/* =====================================================================
   HOME PAGE CARDS (teasers that link to the three subpages)
   ===================================================================== */
.pagecards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px,2.4vw,30px); }
.pagecard { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line);
  border-radius: 12px; overflow: hidden; transition: transform .18s ease, box-shadow .18s ease; }
.pagecard:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,40,.12); }
.pagecard img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.pagecard-body { padding: clamp(20px,2.4vw,28px); display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pagecard h3 { font-weight: 800; font-size: 1.25rem; }
.pagecard p { color: var(--ink-60); font-weight: 500; font-size: 0.96rem; flex: 1; }
.pagecard .go { color: var(--orange); font-weight: 800; font-size: 0.82rem; letter-spacing: .12em; text-transform: uppercase; margin-top: 6px; }
@media (max-width: 860px){ .pagecards { grid-template-columns: 1fr; } }

/* =====================================================================
   MEDIA SPLIT (image + text rows used on the Meran page)
   ===================================================================== */
.media-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,72px); align-items: center; }
.media-split.flip > .ms-img { order: 2; }
.media-split .ms-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; }
.media-split h2 { font-size: clamp(1.8rem,4.2vw,2.8rem); margin-bottom: 18px; }
.media-split p { color: var(--ink-60); font-weight: 500; margin-bottom: 14px; }
.media-split .twin { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.media-split .twin img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 8px; }
@media (max-width: 820px){ .media-split { grid-template-columns: 1fr; } .media-split.flip > .ms-img { order: 0; } }

/* simple inline CTA row */
.cta-row { margin-top: clamp(18px,3vw,28px); display: flex; gap: 12px; flex-wrap: wrap; }

/* divider note (e.g. late checkout highlight) */
.note-band { background: var(--orange); color: var(--cream); border-radius: 16px;
  padding: clamp(28px,4vw,48px); text-align: center; max-width: 980px; margin: 0 auto; }
.note-band h2 { color: var(--cream); font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 12px; }
.note-band p { color: color-mix(in srgb, var(--cream) 88%, #000); font-weight: 600; max-width: 52ch; margin: 0 auto; }

/* =====================================================================
   DIRECT BOOKING WIDGET (quick availability bar under the hero)
   ===================================================================== */
.quickbook { padding: 0 0 clamp(8px,2vw,18px); }
.quickbook-wrap { max-width: 1040px; margin: 0 auto; padding-inline: var(--gut); }
.quickbook-bar {
  display: grid; grid-template-columns: 1fr 1fr 0.72fr auto; gap: clamp(12px,1.6vw,18px); align-items: end;
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
  padding: clamp(16px,2vw,24px) clamp(18px,2.4vw,28px);
  box-shadow: 0 14px 34px rgba(0,0,40,.07);
}
.qb-field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.qb-field label { font-weight: 800; font-size: 0.7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-60); }
.qb-field input, .qb-field select {
  font-family: var(--font-body); font-weight: 600; font-size: 1rem; color: var(--ink);
  border: 1.5px solid rgba(0,0,40,.22); border-radius: 9px; padding: 12px 14px; background: #fff; width: 100%;
}
.qb-field input:focus, .qb-field select:focus { outline: 2px solid var(--orange); outline-offset: 1px; border-color: var(--orange); }
.quickbook-bar .btn { height: 48px; padding-inline: clamp(22px,2.4vw,34px); white-space: nowrap; }
.quickbook-note { text-align: center; color: var(--ink-60); font-weight: 600; font-size: 0.88rem; margin-top: 14px; }
@media (max-width: 760px){
  .quickbook-bar { grid-template-columns: 1fr 1fr; }
  .quickbook-bar .btn { grid-column: 1 / -1; }
}
@media (max-width: 460px){ .quickbook-bar { grid-template-columns: 1fr; } }

/* =====================================================================
   OPEN DATES ("Noch frei" — availability framed as an invitation)
   ===================================================================== */
.openslots-intro { color: var(--ink-60); font-weight: 500; max-width: 56ch; margin: -22px 0 clamp(28px,4vw,44px); }
.slots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px,2vw,26px); }
.slot {
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px; text-align: left;
  background: var(--paper); border: 1px solid var(--line); border-radius: 16px;
  padding: clamp(20px,2.4vw,30px); cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.slot:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,40,.12); border-color: color-mix(in srgb, var(--orange) 40%, var(--line)); }
.slot-tag { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 0.72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); }
.slot-tag .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px color-mix(in srgb, var(--orange) 20%, transparent); }
.slot h3 { font-weight: 800; font-size: 1.3rem; }
.slot .range { color: var(--ink-60); font-weight: 500; font-size: 0.98rem; }
.slot .go { margin-top: auto; padding-top: 4px; color: var(--orange); font-weight: 800; font-size: 0.78rem; letter-spacing: .1em; text-transform: uppercase; }
@media (max-width: 820px){ .slots-grid { grid-template-columns: 1fr; } }

/* Booking.com live widget, now nested in the "love letters" reviews section */
.booking-reviews { margin-top: clamp(8px,2vw,16px); overflow: hidden; max-width: 100%; touch-action: pan-y; }

/* =====================================================================
   MAP / LOCATION
   ===================================================================== */
.map-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px,5vw,72px); align-items: center; }
.map-grid h2 { font-size: clamp(1.9rem,4.4vw,3rem); margin-bottom: 20px; }
.map-grid p { color: var(--ink-60); font-weight: 500; margin-bottom: 22px; max-width: 44ch; }
.map-embed iframe { width: 100%; aspect-ratio: 4/3; border: 0; border-radius: 8px; display: block; filter: grayscale(1) contrast(1.04); }
.map-embed iframe:hover { filter: grayscale(0.35); transition: filter .4s ease; }
/* consent placeholder (map loads only after click) */
.map-consent {
  width: 100%; aspect-ratio: 4/3; border-radius: 8px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  text-align: center; padding: 24px;
  background: repeating-linear-gradient(-45deg, rgba(31,26,18,.035) 0 10px, rgba(31,26,18,0) 10px 20px), #fff;
  border: 1px solid rgba(31,26,18,.08);
}
.map-pin {
  width: 38px; height: 38px; background: var(--orange);
  border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  box-shadow: 0 8px 18px rgba(235,80,39,.35); position: relative; margin-bottom: 6px;
}
.map-pin::after { content: ""; position: absolute; inset: 11px; background: #fff; border-radius: 50%; }
.map-consent .map-address { color: var(--ink); font-weight: 700; margin: 0; }
.map-consent .map-note { font-size: .85rem; max-width: 40ch; margin: 0; }
@media (max-width: 860px){ .map-grid { grid-template-columns: 1fr; } .map-embed iframe, .map-consent { aspect-ratio: 4/3.4; } }

/* =====================================================================
   DIRECT BOOKING (Okaygrazie/OOTB widget = primary) + inquiry (secondary)
   ===================================================================== */
.book-direct { display: flex; flex-direction: column; gap: 14px; }
.book-direct-label {
  font-weight: 800; font-size: 0.72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange); display: flex; align-items: center; gap: 8px;
}
.book-direct-label::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--orange);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--orange) 20%, transparent);
}
#ootb-booking { min-height: 320px; max-width: 100%; overflow: hidden; }
#ootb-booking iframe,
#ootb-booking > * { max-width: 100% !important; width: 100% !important; }
.book-direct-loading { color: var(--ink-60); font-weight: 600; padding: 24px 0; }

.booking-notice {
  margin-top: clamp(28px,4vw,44px);
  padding: 13px 18px;
  border-left: 3px solid rgba(244,241,224,.25);
  color: rgba(244,241,224,.62);
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.6;
}

.inquire {
  margin-top: clamp(40px,6vw,64px);
  border-top: 1px solid var(--line);
  padding-top: clamp(32px,5vw,52px);
}
.inquire > summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 24px;
}
.inquire > summary::-webkit-details-marker { display: none; }
.inquire-head { flex: 1; }
.inquire-head h3 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--cream); line-height: 1.05; margin-bottom: 12px;
}
.inquire-head p {
  color: rgba(244,241,224,.72); font-weight: 500;
  font-size: clamp(0.96rem, 1.6vw, 1.08rem); max-width: 52ch;
}
.inquire-chevron {
  flex: none; margin-top: 6px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid rgba(244,241,224,.3);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s ease, transform .3s ease;
}
.inquire-chevron::after {
  content: ""; display: block;
  width: 10px; height: 10px;
  border-right: 2px solid var(--cream);
  border-bottom: 2px solid var(--cream);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .3s ease;
}
.inquire[open] .inquire-chevron { border-color: var(--orange); }
.inquire[open] .inquire-chevron::after { transform: rotate(-135deg) translate(-2px, -2px); }
.inquire > summary:hover .inquire-chevron { border-color: rgba(244,241,224,.7); }
.inquire .card { margin-top: clamp(24px,3vw,36px); max-width: 620px; }

/* =====================================================================
   TRAIN PROMO
   ===================================================================== */
.train-promo {
  display: flex; align-items: center; gap: 20px;
  background: var(--paper); border: 1.5px solid var(--line);
  border-radius: 16px; padding: clamp(20px,3vw,28px) clamp(22px,3.5vw,36px);
  margin: clamp(32px,5vw,52px) 0;
}
.train-promo-title {
  font-weight: 800; font-size: 1.08rem; margin-bottom: 6px;
}
.train-promo p { color: var(--ink-60); font-weight: 500; font-size: 0.96rem; }
.train-promo strong { color: var(--ink); font-weight: 800; letter-spacing: .04em; }

/* =====================================================================
   SPOTIFY / LISTEN SECTION
   ===================================================================== */
.listen { background: var(--ink); color: var(--cream); padding: clamp(56px,8vw,96px) 0; }
.listen-grid {
  max-width: 1180px; margin: 0 auto; padding-inline: var(--gut);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px,5vw,70px); align-items: center;
}
.listen .eyebrow { color: var(--orange); opacity: 0.7; }
.listen h2 { color: var(--orange); margin-bottom: 16px; }
.listen p { font-weight: 500; font-size: clamp(1rem,1.6vw,1.15rem); opacity: 0.75; line-height: 1.6; }
.spotify { border-radius: 12px; overflow: hidden; }
.spotify iframe { width: 100%; height: 352px; border: 0; display: block; }
@media (max-width: 720px) { .listen-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   LEGAL PAGES (Impressum / AGB / Datenschutz) — same shell as the rest
   ===================================================================== */
.legal-page { max-width: 820px; margin: 0 auto; padding: clamp(36px,5vw,72px) var(--gut) clamp(60px,8vw,100px); min-height: 60vh; }
.legal-content h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.1rem, 5vw, 3.2rem); line-height: 1.06; margin-bottom: 26px; color: var(--orange); }
.legal-content h2 { font-weight: 800; font-size: 1.22rem; margin: 32px 0 10px; }
.legal-content p, .legal-content li { color: var(--ink-60); font-weight: 500; margin-bottom: 12px; font-size: 0.98rem; }
.legal-content ol { list-style: decimal; padding-left: 22px; }
.legal-content a { color: var(--orange); text-decoration: underline; word-break: break-word; }
.legal-divider { border: none; border-top: 2px solid var(--ink); margin: 28px 0; }

/* 404 */
.notfound { min-height: 62vh; display: grid; place-items: center; text-align: center; padding: clamp(48px,8vw,100px) var(--gut); }
.notfound h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(3rem, 10vw, 6.5rem); color: var(--orange); line-height: 1; margin-bottom: 16px; }
.notfound p { color: var(--ink-60); font-weight: 500; max-width: 52ch; margin: 0 auto 26px; }
.nf-code {
  font-family: var(--font-display); font-weight: 400; color: var(--orange); line-height: 1;
  font-size: clamp(5rem, 17vw, 11rem);
  display: flex; align-items: center; justify-content: center; gap: clamp(2px,.8vw,10px);
  margin-bottom: clamp(14px,2vw,24px);
}
.nf-zero { width: clamp(4.2rem, 14vw, 9.2rem); height: auto; animation: nf-spin 16s linear infinite; }
@keyframes nf-spin { to { transform: rotate(360deg); } }
.notfound h2.disp { margin-bottom: 14px; }
.notfound .nf-alt { font-size: .95rem; margin-bottom: 30px; }
.nf-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.nf-deck { margin-top: clamp(44px,7vw,80px); }
.nf-deck .photo-deck { max-width: 380px; }
.nf-deck .deck-hint { margin-top: 18px; }
